
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #12212f;
  background-color: #f7fafc;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #0055ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.logo img {
  height: 120px;      /* Bigger logo */
  width: auto;
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
}

.main-nav {
  display: flex;
  gap: 0.9rem;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.main-nav a {
  padding: 0.3rem 0.4rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  background: #ebf4ff;
  text-decoration: none;
}

.header-search {
  display: flex;
  align-items: center;
}

.header-search input {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #cbd5e0;
  font-size: 0.8rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
}

.hero {
  background: linear-gradient(135deg, #f0f9ff, #e0f7f4);
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-text h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: #047857;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.section {
  padding: 2.5rem 0;
}

.section.alt {
  background: #ffffff;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.page-hero {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 2rem 0 1.5rem;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
}

.grid-2 {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.cards-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.card h3 {
  margin-top: 0;
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  margin-bottom: 0.75rem;
  padding-left: 1.4rem;
  position: relative;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 600;
}

.steps {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.step {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #1d4ed8;
  color: #ffffff;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #2563eb, #16a34a);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.btn.primary:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(37, 99, 235, 0.3);
}

.btn.secondary {
  background: #ffffff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}

.btn.secondary:hover {
  background: #eff6ff;
  text-decoration: none;
}

.link-arrow {
  font-weight: 500;
}

.link-arrow::after {
  content: " →";
}

.site-footer {
  background: #020617;
  color: #e2e8f0;
  margin-top: 2rem;
}

.footer-inner {
  display: grid;
  gap: 1.75rem;
  padding: 2rem 0 1.5rem;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 2fr 2fr 1.5fr;
  }
}

.footer-col h4 {
  margin-top: 0;
}

.footer-logo {
  height: 100px;
  width: auto;
  margin-bottom: 0.75rem;
}

.site-footer a {
  color: #e2e8f0;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 0.75rem 0;
  font-size: 0.85rem;
}

.brand-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
  padding-top: 1rem;
}

.brand-logos img {
  max-height: 48px;
  object-fit: contain;
}

.blog-search {
  margin: 1.25rem 0;
}

.blog-search input {
  width: 100%;
  max-width: 360px;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #cbd5e0;
}

.blog-list {
  display: grid;
  gap: 1rem;
}

.blog-item {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 1rem 1.2rem;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.04);
}

.blog-item h2 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
}

.blog-category {
  margin: 0;
  font-size: 0.85rem;
  color: #4b5563;
}

.contact-form {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.contact-form label {
  display: block;
  margin-top: 0.75rem;
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.45rem 0.6rem;
  border-radius: 0.6rem;
  border: 1px solid #cbd5e0;
  font-size: 0.9rem;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: #4b5563;
}

.cta-section {
  background: linear-gradient(135deg, #1d4ed8, #16a34a);
  color: #ffffff;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem 0;
}

.cta-inner p {
  margin: 0.3rem 0 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .header-search {
    display: none;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    background: #ffffff;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    padding: 0.5rem 1.5rem 1rem;
    border-bottom: 1px solid #e2e8f0;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 2.5rem 0 2rem;
  }

  .cta-inner {
    align-items: stretch;
  }
}
