/* ======================
   RESET & GLOBAL
===================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f4f5f7;
  color: #222;
  overflow-x: hidden;
}

main {
  padding: 0 0 64px;
  padding-top: 0;
}

/* ======================
   TYPOGRAPHY
====================== */
h1, h2, h3, h4 {
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.3px;
  margin-top: 0;
}

h1 { font-size: 2.6rem; line-height: 1.1; }
h2 { font-size: 1.9rem; line-height: 1.2; }
h3 { font-size: 1.3rem; line-height: 1.3; }
p  { font-size: 1rem; line-height: 1.7; color: #374151; }

/* ======================
   HEADER & NAV
====================== */
.site-header {
  background: #111827;
  color: #F9FAFB;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 70px;
  box-shadow: 0 3px 18px rgba(0,0,0,0.28);
  transition: all 0.25s ease;
}

.site-header.shrink {
  min-height: 48px;
  background: rgba(17,24,39, 0.95);
  box-shadow: 0 3px 22px rgba(0,0,0,0.38);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.25s ease;
}

.site-header.shrink .nav-container {
  padding: 6px 24px;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.25s ease;
}

.site-header.shrink .logo {
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links a {
  color: #D1D5DB;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
}

.nav-links a.active {
  background: #F97316;
  color: #111827;
  font-weight: 600;
}

.site-header.shrink .nav-links a {
  font-size: 0.82rem;
}

.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #F9FAFB;
  cursor: pointer;
}

/* ======================
   HERO
====================== */
.hero {
  background: linear-gradient(135deg, #081625, #0f213a);
  padding: 80px 32px;
  border-radius: 20px;
  margin: 0 auto 24px;
  max-width: 1100px;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.hero-content {
  max-width: 540px;
  margin: 0 auto;
  padding-top: 12px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 6px;
  color: #FFFFFF;
  text-shadow: 0 0 6px rgba(0,0,0,0.45);
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.55;
  margin-top: 14px;
  margin-bottom: 16px;
  color: #F0F6FF;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 8px;
}

.hero-pricing {
  margin-top: 12px;
  font-size: 0.75rem;
  color: #cdd6e3;
  opacity: 0.9;
}
/* hero button layout adjustments */
/* Primary CTA (no change, just here for reference) */
.hero-main-btn {
  display: block;
  margin: 22px auto 14px;
  width: 88%;
  max-width: 420px;
}

/* Secondary CTA — improved */
.hero-sub-btn {
  display: block;
  margin: 18px auto 0;
  width: 72%;
  max-width: 360px;
  padding: 12px 22px;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #E8EEF8;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  font-weight: 600;
  backdrop-filter: blur(3px);
  transition: 0.25s ease;

  /* subtle glow */
  box-shadow:
    0 6px 18px rgba(120, 160, 255, 0.25),   /* outer blue-ish glow */
    0 0 8px rgba(120,160,255,0.25);        /* soft inner glow */
}

.hero-sub-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.75);
  color: #ffffff;
  box-shadow:
    0 8px 22px rgba(140, 180, 255, 0.35),
    0 0 10px rgba(140,180,255,0.35);
}
.hero-divider {
  width: 60%;                 /* not full width, keeps it elegant */
  max-width: 260px;
  margin: 16px auto;
  height: 1px;
  background: rgba(255,255,255,0.18);  /* soft white line */
  border-radius: 2px;
}
/* ======================
   TRUST BAR
====================== */
.trust-bar {
  max-width: 1100px;
  margin: 40px auto;
  padding: 32px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  display: grid;                        /* use grid instead of flex */
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 18px 30px;/* tighter row gap, wider column gap */
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  padding-bottom: 14px;              /* add spacing before separator */
  border-bottom: 1px solid #E5E7EB;  /* light separator */
}

.trust-row:last-child {
  margin-bottom: 0;
  border-bottom: none;               /* no separator after last */
  padding-bottom: 0;                 /* remove extra space */
}

.trust-row svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke-width: 1.75;
}
.trust-bar {
  position: relative;
  overflow: hidden;    /* keeps rounded corners clean */
  border-top: none;    /* ensure no conflicting border */
}

/* orange accent bar */
.trust-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: #F97316;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 0 12px rgba(249,115,22,0.55),
              0 0 24px rgba(249,115,22,0.35);
}

@media (max-width: 768px) {
     .trust-bar {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    margin: 24px auto;
  }
}
/* ======================
   BUTTONS
====================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: #F97316;
  border-color: #F97316;
  color: #111827;
  box-shadow: 0 10px 25px rgba(248,113,22,0.55);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(148,163,184,0.9);
  color: #E5E7EB;
}

/* ======================
   WHY SECTION (feature cards)
====================== */

.section.why {
  max-width: 1100px;
  margin: 48px auto;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 40px 32px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);

  position: relative;
  overflow: hidden;     /* THIS clips the orange to the curve */
  border-top: none;     /* we no longer use border-top */
}

/* perfect orange accent bar */
.section.why::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;       /* full width — no offsets */
  right: 0;
  height: 6px;
  background: #F97316;
box-shadow: 0 0 12px rgba(249,115,22,0.55),
              0 0 24px rgba(249,115,22,0.35);
}

.section.why h2 {
  border-bottom: none;
  margin-bottom: 28px;
  font-size: 1.9rem;
}

.section.why .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.section.why .feature {
  flex: 1 1 calc(33.33% - 24px);
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 6px 18px rgba(15,23,42,0.06);
  text-align: left;
  background: repeating-linear-gradient(
      45deg,
      #FAFAFC,
      #FAFAFC 6px,
      #F7F8FA 6px,
      #F7F8FA 12px
  );
}

/* ICON SUPPORT */
.section.why .feature-icon {
  background: #fff;
  border-radius: 6px;
  padding: 6px;
  border: 1px solid #FEECDC;
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  color: #F97316;
}

.section.why .feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
}

.section.why h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  color: #111827;
}

.section.why p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.5;
}

/* optional muted subtitle */
.section.why .why-sub {
  font-size: 1.05rem;
  color: #4B5563;
  margin-top: -8px;
  margin-bottom: 32px;
}

/* Desktop hover interaction */
@media (min-width: 769px) {
  .section.why .feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(15,23,42,0.12);
    transition: all 0.25s ease;
  }
}

/* MOBILE COLLAPSE */
@media (max-width: 768px) {
  .section.why .feature {
    flex: 1 1 100%;
  }

  .section.why {
    margin: 24px 16px;
    width: calc(100% - 32px);
  }
}
/* ======================
   PROCESS SECTION (steps)
====================== */

.section.section-alt {
  max-width: 1100px;
  margin: 48px auto;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 40px 32px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);

  position: relative;
  overflow: hidden;
  border-top: none;
}

/* perfect matching orange accent */
.section.section-alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: #F97316;
  box-shadow: 0 0 12px rgba(249,115,22,0.55),
              0 0 24px rgba(249,115,22,0.35);
}

.section.section-alt h2 {
  border-bottom: none;
  margin-bottom: 28px;
  font-size: 1.9rem;
}

/* MATCH width + gap to WHY section */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px; /* changed from 22px — MATCH */
}

.step {
  flex: 1 1 calc(33.33% - 24px); /* MATCH exact width formula */
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(15,23,42,0.06);
  text-align: left;
}

/* numbered badge */
.step-number {
  display: inline-block;
  background: #fff;
  border: 2px solid #F97316;
  color: #F97316;
  font-weight: bold;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  text-align: center;
  line-height: 30px;
  font-size: 1rem;
  margin-bottom: 12px;
}

/* titles + text */
.step h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
  color: #111827;
}

.step p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.55;
}

.section-alt .section-cta {
  text-align: center;
  margin-top: 32px;
}

/* MOBILE MATCH */
@media (max-width: 768px) {
  .step {
    flex: 1 1 100%;
  }

  .section.section-alt {
    margin: 24px 16px;  /* MATCHES WHY SECTION */
    width: calc(100% - 32px);
  }
}
/* ======================
   MINI PRICING SECTION
====================== */

.section.pricing {
  max-width: 1100px;
  margin: 48px auto;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 40px 32px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);

  position: relative;
  overflow: hidden;
  border-top: none;
}

/* orange accent bar */
.section.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: #F97316;
  box-shadow: 0 0 12px rgba(249,115,22,0.55),
              0 0 24px rgba(249,115,22,0.35);
}

.section.pricing h2 {
  border-bottom: none;
  margin-bottom: 12px;
  text-align: center;
}

.pricing-sub {
  text-align: center;
  font-size: 1.05rem;
  color: #4B5563;
  margin-bottom: 32px;
}

.pricing-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 calc(33.33% - 24px);
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(15,23,42,0.06);
}

.price-card h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
  color: #111827;
}

.price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #F97316;
  margin-bottom: 8px;
}

.section.pricing p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #374151;
}

/* CTA */
.pricing-cta {
  text-align: center;
  margin-top: 32px;
}

/* Mobile collapse */
@media (max-width: 768px) {
  .price-card {
    flex: 1 1 100%;
  }

  .section.pricing {
    margin: 24px 16px;
    width: calc(100% - 32px);
  }
}
/* ======================
   TESTIMONIALS SECTION
====================== */

.section.testimonials {
  max-width: 1100px;
  margin: 48px auto;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 40px 32px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);

  position: relative;
  overflow: hidden;
  border-top: none;
}

/* orange top accent */
.section.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: #F97316;
  box-shadow: 0 0 12px rgba(249,115,22,0.55),
              0 0 24px rgba(249,115,22,0.35);
}

.section.testimonials h2 {
  border-bottom: none;
  margin-bottom: 28px;
  text-align: center;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.testimonial {
  flex: 1 1 calc(33.33% - 24px);
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(15,23,42,0.06);
}

.testimonial .quote {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #374151;
  margin-bottom: 12px;
  font-style: italic;
}

.testimonial .author {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
}

/* Mobile collapse */
@media (max-width: 768px) {
  .testimonial {
    flex: 1 1 100%;
  }

  .section.testimonials {
    margin: 24px 16px;
    width: calc(100% - 32px);
  }
}
/* ======================
   FAQ SECTION
====================== */
.section.faq {
  max-width: 1100px;
  margin: 48px auto;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 40px 32px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);

  position: relative;
  overflow: hidden;
  border-top: none;
}

/* accent bar matches WHY + PROCESS */
.section.faq::before {
content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: #F97316;
  box-shadow:
    0 0 12px rgba(249,115,22,0.55),
    0 0 24px rgba(249,115,22,0.35);
}

/* FAQ items */
.faq-item {
  border-bottom: 1px solid #E5E7EB;
  padding: 14px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.05rem;
  color: #111827;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  color: #F97316;
  font-size: 1.4rem;
  font-weight: bold;
}

.faq-answer {
  display: none;
  padding-top: 8px;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.55;
}
/* mobile match */
@media (max-width: 768px) {
  .section.faq {
    margin: 24px 16px;
    width: calc(100% - 32px);
}
}
/* ======================
   CONTACT FORM
====================== */
.contact-form {
  max-width: 520px;
  margin-top: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 9px 10px;
  border-radius: 6px;
  border: 1px solid #D1D5DB;
}
/* ======================
   FOOTER
====================== */
.site-footer {
  background: #020617;
  border-top: 1px solid #0f172a;
  padding: 36px 20px;
  text-align: center;
  margin-top: 48px;
  color: #94A3B8;
}

.site-footer::before {
  content:"";
  display:block;
  width: 110px;
  height: 3px;
  margin: 0 auto 18px;
  background: #F97316;
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(249,115,22,0.55);
}

.footer-inner p {
  margin: 4px 0;
}

.footer-brand {
  font-size: 0.98rem;
  font-weight: 600;
}

.footer-sub {
  font-size: 0.85rem;
  color: #64748B;
}

.footer-contact a,
.footer-legal a {
  color: #E5E7EB;
  text-decoration: none;
  transition: 0.2s;
}

.footer-contact a:hover,
.footer-legal a:hover {
  color: #F97316;
}

/* Social icons */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 14px 0;
}

.footer-social a svg {
  width: 22px;
  height: 22px;
  stroke: #E5E7EB;
  fill: none;
  stroke-width: 1.7;
  transition: 0.25s;
}

.footer-social a:hover svg {
  stroke: #F97316;
}

/* Small legal link */
.footer-legal {
  margin-top: 10px;
  font-size: 0.8rem;
}

/* ======================
   Mobile NAV
====================== */
@media (max-width: 768px) {

  #nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #111827;
    flex-direction: column;
    width: 100%;
    text-align: center;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 12px 30px rgba(15,23,42,0.7);
  }

  #nav-links.open {
    display: flex;
  }

  #nav-links a {
    width: 100%;
    padding: 18px 0;
    color: #E5E7EB;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    font-size: 1.05rem;
    letter-spacing: 0.3px;
  }

  #nav-links a:last-child {
    border-bottom: none;
  }

  .hamburger {
    display: block;
  }

  .hero {
    padding: 40px 32px 32px;
    border-radius: 20px;
    width: calc(100% - 32px);
    margin: 16px auto;
  }

  .hero h1 { font-size: 1.9rem; }
  .hero p { line-height: 1.45; }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-pricing {
    font-size: 0.9rem;
  }

  .features,
  .steps,
  .card-grid {
    flex-direction: column;
  }
}