
    :root {
      --navy: #0f2a44;
      --green: #2e7d32;
      --gold: #f4b400;
      --bg: #f6f8fb;
      --card: #ffffff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Inter", sans-serif;
      background: var(--bg);
      color: var(--navy);
    }

    /* HERO */
    .hero {
      text-align: center;
      padding: 100px 20px 80px;
      background: linear-gradient(135deg, #ffffff, #eef3f8);
    }

    .logo {
      display: block;
      max-width: 140px;
      margin: 0 auto 25px;
    }

    .hero h1 {
      font-size: clamp(30px, 6vw, 52px);
      margin-bottom: 15px;
    }

    .hero p {
      font-size: clamp(16px, 2.5vw, 19px);
      color: #445;
      margin-bottom: 35px;
      max-width: 768px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-buttons {
      margin-top: 10px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .highlight {
      color: var(--gold);
      font-weight: 700;
      display: inline-block;
      transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.5s ease;
    }

    .word-container {
      display: inline-block;
      overflow: hidden;
      vertical-align: bottom;
      height: 1.2em; /* Ensures the container matches the line height */
    }

    .slide-out {
      transform: translateY(-100%);
      opacity: 0;
    }

    .slide-in {
      transform: translateY(100%);
      opacity: 0;
    }

    .nowrap {
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
a:focus-visible, .btn:focus-visible, .plan-button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
    /*NAVBAR*/
    /* Enable Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Desktop offset - covers ~80px navbar */
h1, h2, h3, section[id], div[id] {
  scroll-margin-top: 100px;
}

/* Mobile offset - navbar stacks to ~120–130px tall */
@media (max-width: 768px) {
  h1, h2, h3, section[id], div[id] {
    scroll-margin-top: 150px !important;
  }
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9); /* More solid glassmorphism for clarity */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  padding: 8px 30px; /* Generous side padding for corner placement */
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-container {
  max-width: 100%; /* Logo goes to the far left corner */
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-info {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
  color: #5a6b7d;
}

.nav-info a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
  font-weight: 500;
}

.nav-info a:hover {
  color: var(--green);
}

.nav-info .sep {
  color: #e2e8f0;
}

.nav-logo img {
  height: 60px; /* Polished size */
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
  white-space: nowrap; /* Prevent "Our Process" from wrapping */
}

.nav-links a:hover {
  color: var(--green);
}

.nav-links a.active {
  color: var(--green);
  border-bottom: 2px solid var(--gold);
}

.nav-cta {
  padding: 10px 20px;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Desktop spacing logic */
.desktop-only {
  display: flex;
}

/* Mobile Fix */
@media (max-width: 1100px) {
  .nav-info.desktop-only {
    display: none;
  }
  .nav-left, .nav-right {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 8px 12px;
  }
  
  @media (max-width: 768px) {
  .nav-container {
    flex-direction: row; 
    justify-content: space-between;
    gap: 5px;
    overflow: hidden;
  }
}
  .nav-left { gap: 0; }
  .nav-right { flex: 1; justify-content: flex-end; gap: 5px; }

  .nav-cta.desktop-only {
    display: none;
  }

  .nav-logo img {
    height: 48px; 
  }

  .nav-links {
    gap: 10px; 
    font-size: 0.8rem; 
    overflow-x: visible;
  flex-wrap: wrap;
    padding-bottom: 0;
    justify-content: flex-end; 
    -webkit-overflow-scrolling: touch; 
  }
  
  .nav-links a {
    padding: 5px 0;
  }
}

/* Extra tight fix for 360px and below */
@media (max-width: 380px) {
  .nav-links {
    gap: 8px;
    font-size: 0.75rem;
  }
  .nav-logo img {
    height: 42px;
  }
}
body {
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .navbar {
    overflow: hidden;
  }
}
/* Updated Card Shadows & Hover */
.support-card, .plan-card, .addon-card {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 42, 68, 0.05); /* Softer Navy shadow */
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.support-card:hover, .plan-card:hover, .addon-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(15, 42, 68, 0.12);
}

/* Icon Animations */
.support-card:hover .card-icon svg {
  transform: scale(1.1);
  transition: transform 0.4s ease;
}

/* Gear Rotation */
@keyframes rotate-gear {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.support-card:hover .card-icon svg g[fill="#0f2a44"] {
  transform-origin: 50px 40px;
  animation: rotate-gear 8s linear infinite;
}

/* Pulse for Gold Accents */
@keyframes pulse-gold {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}
.support-card:hover .card-icon svg g[stroke="#f4b400"] {
  animation: pulse-gold 2s ease-in-out infinite;
}

/* Scroll Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* 3-Step Process Styling */
.process-grid {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 250px;
  position: relative;
  text-align: center;
}

.step-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -30px;
  display: block;
}

.process-step h3 {
  color: var(--navy);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.process-step p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}
    /* BUTTONS */
    .btn {
      display: inline-block;
      padding: 14px 22px;
      border-radius: 8px;
      font-weight: 600;
      margin: 0;
      text-decoration: none;
      transition: 0.2s;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--green);
      color: white;
    }

    .btn-primary:hover {
      background: #256428;
    }

    .btn-secondary {
      border: 2px solid var(--gold);
      color: var(--navy);
      background: transparent;
    }

    .btn-secondary:hover {
      background: var(--gold);
      color: white;
    }

    /* SECTIONS */
    .section {
      padding: 100px 20px;
      text-align: center;
      background: #ffffff;
    }

    .section h2 {
      font-size: clamp(24px, 4vw, 34px);
      margin-bottom: 10px;
    }

    .sub {
      color: #64748b;
      margin-bottom: 50px;
      font-size: clamp(14px, 2vw, 17px);
    }

    /* Support section gets a subtle tint to make cards pop */
    #support {
      background: #f8fafc;
      border-top: 1px solid #eef2f6;
      border-bottom: 1px solid #eef2f6;
    }

    #about {
      background-color: var(--navy); 
      color: #ffffff;
      padding: 120px 20px;
      text-align: center;
      border: none;
    }

    #about h2 {
      color: #ffffff;
    }

    #about .sub {
      color: rgba(255, 255, 255, 0.7);
    }

    #about .about-text p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.15rem;
    }

    #about .signature {
      font-family: 'Great Vibes', cursive;
      font-size: 2.8rem;
      color: var(--gold);
      margin-top: 15px;
      display: block;
    }

    #about .btn {
      display: inline-block;
      margin-top: 30px;
      background-color: var(--green);
      color: white;
      padding: 14px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.3s ease;
    }

    #about .btn:hover {
      background-color: #256428;
    }

    /* CONTACT SECTION REDESIGN */
.support-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Service Cards */
.support-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 30px 40px;
  flex: 1;
  min-width: 300px;
  max-width: 360px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f6;
  transition: all 0.3s ease;
}

.support-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Circle Numbers */
.card-number {
  background-color: #0f2a44;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  position: absolute;
  top: 20px;
  left: 20px;
}

/* Icon Styling */
.card-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
  display:flex;
  align-items: center;
  justify-content: center;
}

.support-card p {
  color: #4a5568;
  line-height: 1.6;
  font-size: 1rem;
}

    /* Pricing Section */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto 40px;
  margin-bottom: 40px;
  align-items: stretch; /* Align cards to equal height */
}

.plan-card {
  position: relative;
  background: var(--card, #fff);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 14px 35px rgba(15,42,68,.08);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.plan-card:hover { transform: translateY(-10px); box-shadow: 0 20px 45px rgba(15,42,68,.12); }
.plan-card.popular {
  border: 2px solid var(--gold, #f4b400);
  box-shadow: 0 28px 70px rgba(244,180,0,.26), 0 10px 30px rgba(15,42,68,.12);
  z-index: 2;
  background: linear-gradient(180deg,#fffdf6 0%,#fff 26%);
}
.plan-card.popular::before {
  content:"Most Popular"; position:static; top:18px; right:18px;
  background:var(--gold,#f4b400); color:var(--navy,#0f2a44);
  font-size:.75rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
  padding:8px 12px; border-radius:999px; box-shadow:0 8px 20px rgba(244,180,0,.3);
}
.plan-card.popular::after {
  content:""; position:absolute; inset:0;
  background:radial-gradient(circle at top,rgba(244,180,0,.18),transparent 38%);
  pointer-events:none;
}
.plan-card.popular:hover { transform:scale(1.08) translateY(-10px); }
.plan-content { position:relative; z-index:1; padding:42px 32px 36px; }
.plan-icon-wrap { display:flex; justify-content:center; margin-bottom:12px; }
.plan-icon {
  width:120px; height:120px;
  display:inline-flex; align-items:center; justify-content:center;
}
.plan-icon svg { width:100%; height:100%; }
.plan-medal { font-size:1.55rem; margin-bottom:8px; text-align:center; font-weight:700; }
.plan-tier  { font-size:.98rem; font-weight:700; color:#64748b; margin-bottom:10px; text-align:center; letter-spacing:.06em; }
.plan-tagline { font-size:.98rem; color:#64748b; margin-bottom:24px; font-weight:500; text-align:center; }
.plan-features { border-top:1px solid #e2e8f0; padding-top:24px; margin-bottom:24px; text-align: center; }
.feature-item { display: flex; justify-content: center; align-items: center; gap: 12px; margin-bottom: 16px; font-size: .95rem; color: #334155; text-align: center;}
.feature-item:last-child { margin-bottom:0; }
.check-icon { width:20px; height:20px; flex-shrink:0; }
.plan-card:not(.popular) .feature-check { color:var(--green,#2e7d32); }
.plan-card.popular       .feature-check { color:#d69200; }
.plan-button {
  width:100%; display:inline-block; text-align:center; text-decoration:none;
  padding:14px 24px; border:none; border-radius:12px;
  font-size:1rem; font-weight:700; letter-spacing:.3px; transition:all .3s ease;
}
.plan-card:not(.popular) .plan-button { background:#eef3f8; color:var(--navy,#0f2a44); }
.plan-card:not(.popular) .plan-button:hover { background:#e4edf6; }
.plan-card.popular .plan-button {
  background:linear-gradient(135deg,var(--green,#2e7d32) 0%,#256428 100%);
  color:#fff; box-shadow:0 12px 24px rgba(46,125,50,.25);
}
.plan-card.popular .plan-button:hover { box-shadow:0 16px 30px rgba(46,125,50,.32); }
.plan-price { font-size:1rem; font-weight:700; color:#64748b; text-align:center; padding-top:16px; border-top:1px solid #e2e8f0; margin-top:24px; }
.plan-card.popular .plan-price { color:#c78b00; font-size:1.05rem; }
#pricing {
  padding-bottom: 0;
}
.pricing-footer-cta {
  text-align: center;
  padding: 40px 20px 0;
}
.pricing-footer-cta p { color:#64748b; font-size:1rem; }
.pricing-footer-cta a { color:var(--green,#2e7d32); font-weight:600; text-decoration:none; }
@media(max-width:1024px){
  .plans-grid { grid-template-columns:1fr;}
  .plan-card.popular, .plan-card.popular:hover { transform:scale(1); }
}

/* ── Add-on services ── */
  .addons-section {
    margin-top: 80px;
    padding: 80px 20px;
    background: #f8fafc;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: 0px;
  }
  .addons-label {
    text-align: center;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 6px;
  }
  .addons-heading {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .addons-sub {
    text-align: center;
    color: #64748b;
    font-size: .93rem;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .addons-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .addon-card {
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensures all cards in the row stay the same height */
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #eef2f6; /* Subtle start */
    position: relative;
    transition: all 0.3s ease;
    text-align: left; /* Looks more professional for service lists */
  }
  .addon-card:hover {
    border-color: #f4b400; 
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
  .addon-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    background: #eef5fb; /* Default: Light Blue */
    color: #0f2a44;      /* Default: Swift Navy */
  }
  .addon-badge.soon {
    background: #fff9db; /* Gold Tint */
    color: #856404;
  }
  .addon-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .addon-desc {
    font-size: .88rem;
    color: #64748b;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 20px;
  }
  .addon-price {
    font-size: .88rem;
    font-weight: 700;
    color: var(--green);
    margin-top: auto; /* A secondary safety net to keep it at the bottom */
    display: inline-block;
  }
.addon-badge.project {
    background: #dff2e1; /* Green Tint */
    color: #2e7d32;}
    /* Making the links look like buttons or clean arrows */
.addon-card a {
    display: inline-block;
    margin-top: 15px;
    color: #0f2a44;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
}

.addon-card a:hover {
    color: #2e7d32; /* Turns green on hover */
}

  @media(max-width: 1024px) {
    .addons-grid { grid-template-columns: 1fr; }
  }

    /* GRID */
    .grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      max-width: 1000px;
      margin: auto;
    }

    /* CARDS */
    .card {
      background: var(--card);
      padding: 25px;
      border-radius: 14px;
      width: clamp(220px, 45%, 260px);
      flex: 1 1 220px;
      max-width: 300px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: 0.25s ease;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
    }

    .card i {
      font-size: 28px;
      margin-bottom: 10px;
      color: var(--green);
    }
    .card h3 {
  color: var(--green);
}

    .cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 30px;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

/* Specific styling for the labels if you want to tweak colors further */
.support-card h3 {
  font-weight: 700;
  color: #0f2a44;
  margin-top: 10px;
}

/* Soft hover effect for the whole card */
.support-card:hover {
  background-color: #ffffff;
  border-color: #f4b400;
  box-shadow: 0 15px 40px rgba(0, 51, 102, 0.1);
}

    /* ABOUT */
    .about-image img {
    /* Set the new source via HTML, style it here */
    border-radius: 20px;
    border-bottom: 8px solid #f4b400; /* Subtle gold footer on the image */
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    
    /* Ensure the image stays responsive within its container */
    max-width: 350px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}
.about-image img:hover {
    transform: scale(1.02);
}
    .about-text {
    max-width: 700px;      /* Prevents text from spreading too wide */
    margin: 0 auto;       /* Centers the text block under the image */
    text-align: center;   /* Keeps text aligned with the centered photo */
    line-height: 1.7;     /* Adds breathing room between lines */
    padding: 20px;        /* Adds space so it doesn't touch the screen edges */
}

    /* SWIFT INQUIRY HUB */
    .contact-hub {
      position: relative;
      max-width: 1100px;
      margin: 0 auto;
      background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(15, 42, 68, 0.1);
      border: 2px solid var(--gold);
    }

    .contact-hub-main {
      display: flex;
    }

    .what-to-expect-badge {
      position: absolute;
      bottom: 74px; 
      left: 45.45%; 
      transform: translate(-50%, 50%);
      background: var(--gold);
      color: var(--navy);
      padding: 8px 16px;
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      z-index: 10;
      white-space: nowrap;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .contact-info-panel {
      flex: 1;
      background-color: white; /* Unified with form side */
      color: var(--navy);
      padding: 60px;
      position: relative;
      border-right: 1px solid #e2e8f0;
      opacity: 0.85; /* Reduced visual weight */
    }

    .info-content {
      position: relative;
      z-index: 1;
    }

    .contact-info-panel h3 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      color: var(--navy);
      text-align: center;
    }

    .contact-info-panel p {
      color: #1f3a5f; /* Deep Slate Navy */
      line-height: 1.7;
      margin-bottom: 40px;
      font-size: 1.05rem;
      text-align: center;
    }

    .contact-methods-flex {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .contact-method-item.centered-method {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .method-icon-wrap {
      width: 48px;
      height: 48px;
      background: white;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border: 1px solid rgba(15, 42, 68, 0.2);
      margin-bottom: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .method-details strong {
      display: block;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--navy); 
      margin-bottom: 4px;
    }

    .method-details a {
      color: var(--navy);
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: 600;
      transition: color 0.2s;
    }

    .method-details a:hover {
      color: var(--green);
    }

    .contact-form-panel {
      flex: 1.5; /* More dominant */
      padding: 60px;
      background: white;
      box-shadow: -10px 0 30px rgba(15, 42, 68, 0.05); /* Subtle emphasis */
      z-index: 5;
    }

    .form-header.centered {
      text-align: center;
    }

    .form-group {
      margin-bottom: 24px;
    }

    .form-group label {
      display: block;
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--navy);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .form-group input, 
    .form-group textarea {
      width: 100%;
      padding: 14px 16px;
      border: 2px solid #f1f5f9;
      border-radius: 12px;
      font-family: inherit;
      font-size: 1rem;
      background: #f8fafc;
      transition: all 0.3s ease;
      color: var(--navy);
    }

    .form-group input:focus, 
    .form-group textarea:focus {
      outline: none;
      border-color: var(--gold);
      background: white;
      box-shadow: 0 0 0 4px rgba(244, 180, 0, 0.1);
    }

    .submit-btn {
      width: 100%;
      border: none;
      cursor: pointer;
      font-family: inherit;
      font-size: 1.05rem;
      box-shadow: 0 10px 20px rgba(46, 125, 50, 0.15);
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 15px 30px rgba(46, 125, 50, 0.25);
    }

    .contact-hub-footer {
      background: white;
      border-top: 1px solid #eef2f6;
      padding: 25px 40px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .perk-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-width: 0;
      text-align: center;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--navy);
    }

    .perk-check {
      color: var(--green);
      font-weight: bold; /* Match head styles */
    }

    @media (max-width: 992px) {
      .contact-hub-main {
        flex-direction: column;
      }
      .contact-info-panel, .contact-form-panel {
        padding: 40px;
      }
      .contact-info-panel {
        border-right: none;
        border-bottom: 1px solid #e2f0e4;
      }
      .what-to-expect-badge {
        top: auto;
        bottom: 170px; 
        left: 50%;
        transform: translate(-50%, 50%);
      }
      .contact-hub-footer {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 15px;
        padding: 30px 20px;
      }
      .perk-item {
        width: min(100%, 320px);
        justify-content: flex-start;
        text-align: left;
      }
      .perk-check {
        flex-shrink: 0;
      }
    }

    @media (max-width: 600px) {
      .contact-info-panel, .contact-form-panel {
        padding: 40px 20px;
      }
      .contact-info-panel h3 {
        font-size: 1.5rem;
      }
    }

    /* CTA REDESIGN */
    .cta {
      background: #f8fafc; /* Lighter background for less "heavy" feel but distinct */
      border-top: 1px solid #e2e8f0;
      border-bottom: 1px solid #e2e8f0;
      color: var(--navy);
      text-align: center;
      padding: 100px 20px;
    }

    .cta-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .cta h2 {
      font-size: clamp(26px, 5vw, 38px);
      color: var(--navy);
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .cta-subtext {
      font-size: clamp(16px, 2.5vw, 18px);
      color: #475569;
      margin-bottom: 40px;
      line-height: 1.6;
    }

    .cta-actions {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .btn-cta {
      background: var(--green);
      color: white;
      padding: 18px 40px;
      font-size: 1.1rem;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }

    .btn-cta:hover {
      background: #256428;
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }

    .cta-reassurance {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      font-size: 0.9rem;
      color: #64748b;
      margin-top: 10px;
    }

    .cta-reassurance span {
      display: inline-flex;
      align-items: center;
    }

    /* FOOTER */
    footer {
      background: #0b1f33;
      color: #aaa;
      text-align: center;
      padding: 25px 20px;
      font-size: 14px;
    }

    footer a {
      color: #aaa;
    }

    /* MODALS */
    .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      padding: 20px;
      overflow-y: auto;
    }

    .modal-content {
      background: white;
      color: var(--navy);
      max-width: 800px;
      width: 100%;
      margin: 40px auto;
      padding: clamp(20px, 4vw, 30px);
      border-radius: 12px;
      position: relative;
    }

    .modal-content h1 {
      font-size: clamp(20px, 4vw, 28px);
      margin-bottom: 10px;
    }

    .modal-content h2 {
      font-size: clamp(16px, 3vw, 20px);
      margin-top: 20px;
      margin-bottom: 6px;
    }

    .modal-content p,
    .modal-content ul {
      font-size: clamp(14px, 2vw, 15px);
      line-height: 1.7;
    }

    .modal-content ul {
      padding-left: 20px;
    }

    .close {
      position: absolute;
      top: 15px;
      right: 18px;
      font-size: 26px;
      cursor: pointer;
      line-height: 1;
    }

    /* ── RESPONSIVE BREAKPOINTS ── */

    /* Tablet */
    @media (max-width: 1024px) {
      .hero {
        padding: 70px 24px 60px;
      }

      .about-image {
        flex-direction: column;
        text-align: center;
        align-items: center;
      }

      .about-image img {
        width: 150px;
      }

      .about-text {
        text-align: center;
      }

      .grid {
        gap: 16px;
      }

      .card {
        width: 100%;
        max-width: 420px;
      }
    }

    /* Mobile */
    @media (max-width: 768px) {
      .hero {
        padding: 55px 18px 50px;
      }

      .logo {
        max-width: 110px;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
      }

      #about .btn {
        display: block;
        margin: 30px auto 0 auto;
        white-space: normal;
      }

      .section {
        padding: 50px 18px;
      }

      .card {
        max-width: 100%;
        flex: 1 1 100%;
      }

      .cta {
        padding: 55px 18px;
      }

      .modal {
        padding: 12px;
      }

      .modal-content {
        margin: 20px auto;
      }
      .plan-content {
    padding: 28px 20px;
      }
  .feature-item {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  @media (max-width: 600px) {
  html body h1, 
  html body h2,
  html body section[id] { scroll-margin-top: 150px; }
}
}

