/* --- RESET & BASE ------------------------------- */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:       #0a2540;
      --navy-mid:   #0e3560;
      --blue:       #1a6ef5;
      --blue-light: #3a8bfd;
      --red:        #e8342a;
      --red-hover:  #c9231a;
      --sand:       #f5f0e8;
      --sand-dark:  #ede7d9;
      --white:      #ffffff;
      --text:       #1c2b3a;
      --text-muted: #5a7087;
      --border:     #dde4ed;
      --radius-sm:  6px;
      --radius-md:  12px;
      --radius-lg:  20px;
      --shadow-sm:  0 2px 8px rgba(10,37,64,.07);
      --shadow-md:  0 6px 24px rgba(10,37,64,.12);
      --shadow-lg:  0 16px 48px rgba(10,37,64,.18);
      --transition: 200ms ease;
      --font-head:  'Sora', sans-serif;
      --font-body:  'DM Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--white);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    /* --- NAV ---------------------------------------- */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(10,37,64,.96);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,.08);
      transition: box-shadow var(--transition);
    }

    .nav.scrolled { box-shadow: 0 4px 24px rgba(10,37,64,.4); }

    .nav-inner {
      max-width: 1180px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 24px; height: 68px;
    }

    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      font-family: var(--font-head); font-size: 1.2rem;
      font-weight: 700; color: var(--white); letter-spacing: -.3px;
    }

    .nav-logo-img {
      height: 42px;
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex; align-items: center; gap: 4px;
      list-style: none;
    }

    .nav-links a {
      padding: 8px 14px; border-radius: var(--radius-sm);
      font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.75);
      transition: color var(--transition), background var(--transition);
    }

    .nav-links a:hover { color: white; background: rgba(255,255,255,.08); }

    .nav-cta {
      background: #d62d24 !important;
      color: white !important;
      border-radius: var(--radius-sm) !important;
      font-weight: 600 !important;
      padding: 8px 18px !important;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
      box-shadow: 0 2px 8px rgba(232,52,42,.35);
    }
    .nav-cta:hover {
      background: var(--red-hover) !important;
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(232,52,42,.45) !important;
    }

    /* Hamburger */
    .nav-hamburger {
      display: none; flex-direction: column; justify-content: center;
      gap: 5px; cursor: pointer; padding: 8px; border: none;
      background: none; width: 40px; height: 40px;
    }
    .nav-hamburger span {
      display: block; height: 2px; width: 22px;
      background: white; border-radius: 2px;
      transition: transform var(--transition), opacity var(--transition);
      transform-origin: center;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-mobile {
      display: none; flex-direction: column;
      background: var(--navy); padding: 16px 24px 24px;
      border-top: 1px solid rgba(255,255,255,.08);
      animation: slideDown 200ms ease;
    }
    .nav-mobile.open { display: flex; }
    .nav-mobile a {
      padding: 12px 0; color: rgba(255,255,255,.8); font-weight: 500;
      font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,.06);
      transition: color var(--transition);
    }
    .nav-mobile a:last-child { border-bottom: none; }
    .nav-mobile a:hover { color: white; }
    .nav-mobile .mobile-cta {
      margin-top: 16px;
      background: var(--red); color: white;
      text-align: center; padding: 14px; border-radius: var(--radius-md);
      font-weight: 600; font-size: 1rem;
      border-bottom: none !important;
    }

    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-8px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* --- HERO --------------------------------------- */
    .hero {
      min-height: 100vh;
      background: linear-gradient(160deg, var(--navy) 0%, #0e3260 55%, #0a1f3d 100%);
      display: flex; flex-direction: column; justify-content: center;
      position: relative; overflow: hidden;
      padding: 120px 24px 80px;
    }

    /* Decorative blobs */
    .hero::before, .hero::after {
      content: ''; position: absolute; border-radius: 50%;
      pointer-events: none;
    }
    .hero::before {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(26,110,245,.18) 0%, transparent 70%);
      top: -150px; right: -150px;
    }
    .hero::after {
      display: none;
    }

    .hero-inner {
      position: relative; z-index: 1;
      max-width: 1180px; margin: 0 auto; width: 100%;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(26,110,245,.18); border: 1px solid rgba(26,110,245,.35);
      color: #7eb8ff; font-size: .82rem; font-weight: 600; letter-spacing: .06em;
      text-transform: uppercase; padding: 6px 14px; border-radius: 100px;
      margin-bottom: 28px;
      animation: fadeUp .6s ease both;
    }
    .hero-badge-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: #7eb8ff;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: .4; }
    }

    .hero h1 {
      font-family: var(--font-head);
      font-size: clamp(2.4rem, 5.5vw, 4rem);
      font-weight: 700; color: white;
      line-height: 1.15; letter-spacing: -.03em;
      max-width: 680px; margin-bottom: 24px;
      animation: fadeUp .6s .1s ease both;
    }

    .hero h1 em {
      font-style: normal;
      color: #7eb8ff;
    }

    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.15rem);
      color: rgba(255,255,255,.65);
      max-width: 520px; margin-bottom: 40px;
      animation: fadeUp .6s .2s ease both;
      line-height: 1.75;
    }

    .hero-actions {
      display: flex; flex-wrap: wrap; gap: 14px;
      animation: fadeUp .6s .3s ease both;
    }

    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 28px; border-radius: var(--radius-md);
      font-family: var(--font-head); font-size: .95rem; font-weight: 600;
      cursor: pointer; border: none; transition: all var(--transition);
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--red); color: white;
      box-shadow: 0 4px 16px rgba(232,52,42,.4);
    }
    .btn-primary:hover {
      background: var(--red-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(232,52,42,.45);
    }
    .btn-ghost {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.18);
      color: white;
    }
    .btn-ghost:hover {
      background: rgba(255,255,255,.14);
      transform: translateY(-2px);
    }
    .btn-arrow { 
      font-size: 1em; 
      transition: transform var(--transition);
      margin-left: 8px;
    }
    .btn:hover .btn-arrow { transform: translateX(3px); }

    .hero-promo {
      display: inline-flex; align-items: center; gap: 10px;
      margin-top: 36px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius-md); padding: 14px 20px;
      animation: fadeUp .6s .4s ease both;
    }
    .hero-promo-icon {
      font-size: 1.4rem;
    }
    .hero-promo-text { font-size: .9rem; color: rgba(255,255,255,.7); }
    .hero-promo-text strong { color: white; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* --- SECTION SCAFFOLD --------------------------- */
    .section { padding: 96px 24px; }
    .section-inner { max-width: 1180px; margin: 0 auto; }

    .section-label {
      display: inline-block;
      font-size: .78rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: var(--blue);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: var(--font-head);
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 700; color: var(--navy);
      letter-spacing: -.025em; line-height: 1.2;
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 1.05rem; color: var(--text-muted);
      max-width: 560px; line-height: 1.75;
    }

    /* --- SERVICES ----------------------------------- */
    #services { background: var(--sand); }

    .services-header {
      display: flex; flex-wrap: wrap; align-items: flex-end;
      justify-content: space-between; gap: 24px; margin-bottom: 56px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 24px;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
      position: relative; overflow: hidden;
    }

    .service-card::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--blue-light));
      opacity: 0; transition: opacity var(--transition);
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(26,110,245,.2);
    }
    .service-card:hover::before { opacity: 1; }

    .service-icon {
      width: 52px; height: 52px; border-radius: var(--radius-md);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; margin-bottom: 24px;
      background: linear-gradient(135deg, rgba(26,110,245,.1), rgba(26,110,245,.04));
      border: 1px solid rgba(26,110,245,.12);
    }

    .service-card h3 {
      font-family: var(--font-head);
      font-size: 1.1rem; font-weight: 600;
      color: var(--navy); margin-bottom: 10px;
    }

    .service-card p {
      font-size: .93rem; color: var(--text-muted); line-height: 1.7;
    }

    /* --- ABOUT -------------------------------------- */
    #about { background: var(--white); }

    .about-layout {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 72px; align-items: center;
    }

    .about-visual {
      position: relative;
    }

    .about-card {
      background: linear-gradient(145deg, var(--navy) 0%, #0e3260 100%);
      border-radius: var(--radius-lg);
      padding: 48px 40px;
      color: white;
      box-shadow: var(--shadow-lg);
    }

    .about-card-quote {
      font-size: 2.2rem; margin-bottom: 12px;
    }

    .about-card-text {
      font-size: 1.05rem; line-height: 1.7;
      color: rgba(255,255,255,.8); margin-bottom: 28px;
    }

    .about-stats {
      display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
      border-top: 1px solid rgba(255,255,255,.12); padding-top: 28px;
    }

    .about-stat-num {
      font-family: var(--font-head); font-size: 2rem; font-weight: 700;
      color: #7eb8ff; line-height: 1;
    }
    .about-stat-label {
      font-size: .82rem; color: rgba(255,255,255,.55); margin-top: 4px;
    }

    .about-floating {
      position: absolute; bottom: -20px; right: -20px;
      background: var(--red); color: white;
      border-radius: var(--radius-md); padding: 16px 20px;
      font-family: var(--font-head); font-weight: 700; font-size: .95rem;
      box-shadow: var(--shadow-md);
      display: flex; align-items: center; gap: 10px;
    }

    .about-content .section-sub { margin-bottom: 32px; }

    .about-pillars { display: flex; flex-direction: column; gap: 20px; }

    .about-pillar {
      display: flex; gap: 16px; align-items: flex-start;
    }

    .pillar-icon {
      width: 42px; height: 42px; flex-shrink: 0;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(26,110,245,.12), rgba(26,110,245,.04));
      border: 1px solid rgba(26,110,245,.14);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }

    .pillar-body h3 {
      font-family: var(--font-head); font-size: .95rem;
      font-weight: 600; color: var(--navy); margin-bottom: 4px;
    }
    .pillar-body p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

    /* --- FREE MONTH BANNER -------------------------- */
    .banner {
      background: linear-gradient(135deg, #0e3260 0%, var(--navy) 100%);
      padding: 72px 24px;
    }

    .banner-inner {
      max-width: 760px; margin: 0 auto;
      text-align: center;
    }

    .banner h2 {
      font-family: var(--font-head);
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700; color: white;
      letter-spacing: -.02em; margin-bottom: 16px;
    }

    .banner p {
      color: rgba(255,255,255,.65); font-size: 1rem;
      margin-bottom: 36px; line-height: 1.7;
    }

    .banner-disclaimer {
      font-size: .78rem; color: rgba(255,255,255,.35);
      margin-top: 14px;
    }

    /* --- CONTACT ------------------------------------ */
    #contact { background: var(--sand); }

    .contact-layout {
      max-width: 700px;
      margin: 0 auto;
      width: 100%;
    }

    .contact-info h2 { margin-bottom: 16px; }
    .contact-info .section-sub { margin-bottom: 36px; }

    .contact-detail {
      display: flex; align-items: center; gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
    }
    .contact-detail:last-of-type { border-bottom: none; }
    .contact-detail-icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: white; border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; flex-shrink: 0;
    }
    .contact-detail-label { font-size: .78rem; color: var(--text-muted); }
    .contact-detail-val { font-size: .95rem; font-weight: 500; color: var(--navy); }

    .contact-form {
      background: white; border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 40px;
      box-shadow: var(--shadow-sm);
    }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    .form-group {
      display: flex; flex-direction: column; gap: 6px;
      margin-bottom: 20px;
    }
    .form-group:last-of-type { margin-bottom: 0; }

    label {
      font-size: .82rem; font-weight: 600; color: var(--navy);
      letter-spacing: .02em;
    }

    input, textarea, select {
      padding: 12px 16px; border-radius: var(--radius-sm);
      border: 1.5px solid var(--border); font-family: var(--font-body);
      font-size: .93rem; color: var(--text);
      background: var(--white);
      transition: border-color var(--transition), box-shadow var(--transition);
      outline: none;
    }

    input:focus, textarea:focus, select:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(26,110,245,.1);
    }

    textarea { resize: vertical; min-height: 120px; }

    .form-submit {
      width: 100%; margin-top: 8px;
      padding: 15px 28px; font-size: 1rem;
    }

    /* --- FOOTER ------------------------------------- */
    footer {
      background: var(--navy);
      padding: 56px 24px 32px;
      color: rgba(255,255,255,.55);
    }

    .footer-inner {
      max-width: 1180px; margin: 0 auto;
    }

    .footer-top {
      display: flex; flex-wrap: wrap;
      justify-content: space-between; gap: 40px;
      padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08);
      margin-bottom: 32px;
    }

    .footer-brand { max-width: 280px; }
    .footer-brand-name {
      font-family: var(--font-head); font-size: 1.1rem;
      font-weight: 700; color: white; margin-bottom: 10px;
      display: flex; align-items: center; gap: 10px;
    }
    .footer-brand p { font-size: .88rem; line-height: 1.7; }

    .footer-links h4 {
      font-family: var(--font-head); font-size: .85rem;
      font-weight: 600; color: white; letter-spacing: .06em;
      text-transform: uppercase; margin-bottom: 16px;
    }
    .footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a {
      font-size: .88rem; color: rgba(255,255,255,.5);
      transition: color var(--transition);
    }
    .footer-links a:hover { color: white; }

    .footer-bottom {
      display: flex; flex-wrap: wrap;
      justify-content: space-between; align-items: center; gap: 12px;
      font-size: .82rem;
    }
    .footer-bottom a { color: rgba(255,255,255,.65); transition: color var(--transition); }
    .footer-bottom a:hover { color: rgba(255,255,255,.95); }
    .footer-bottom-links { display: flex; gap: 20px; }

    /* --- RESPONSIVE --------------------------------- */
    @media (max-width: 900px) {
      .about-layout, .contact-layout { grid-template-columns: 1fr; }
      .about-visual { order: -1; }
      .about-floating { right: 0; bottom: -16px; }
      .form-row { grid-template-columns: 1fr; }
    }

    @media (max-width: 700px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .section { padding: 72px 20px; }
      .hero { padding: 100px 20px 60px; }
      .services-header { flex-direction: column; }
      .footer-top { flex-direction: column; }
    }

    /* --- SCROLL REVEAL ------------------------------ */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity .55s ease, transform .55s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
/* --- PAGE HERO (for contact page) --- */
.page-hero {
  background: var(--sand);
  padding: 144px 24px 80px;
  position: relative;
}
.page-hero-inner { 
  max-width: 1180px; 
  margin: 0 auto; 
  position: relative;
}
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700; color: var(--navy);
  letter-spacing: -.03em; line-height: 1.15;
  margin-bottom: 12px;
}
.page-hero-sub { 
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--text-muted); 
  line-height: 1.75;
  max-width: 600px;
}

.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-form {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.form-grid { display: flex; flex-direction: column; gap: 0; }
.form-row-dual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: .82rem; font-weight: 600; color: var(--navy);
  letter-spacing: .02em; display: block;
}
.form-group input,
.form-group textarea,
.form-group select {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); font-family: var(--font-body);
  font-size: .93rem; color: var(--text); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,110,245,.1);
}
.form-group textarea { resize: vertical; font-family: var(--font-body); }

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 700px) {
}

@media (max-width: 700px) {
  .page-hero {
    padding: 100px 20px 60px;
  }
  .contact-layout {
    max-width: 100%;
  }
  .form-row-dual {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 24px 16px;
    border-radius: var(--radius-md);
  }
}



/* --- PRIVACY PAGE --- */
.privacy-page-container {
  max-width: 900px;
}

.privacy-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.privacy-box h2 {
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 16px;
  margin-top: 0;
}

.privacy-box h3 {
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 12px;
  margin-top: 24px;
}

.privacy-box h3:first-of-type {
  margin-top: 16px;
}

.privacy-box p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--text);
}

.privacy-box p:last-child {
  margin-bottom: 0;
}

.privacy-box ul {
  margin-bottom: 20px;
  padding-left: 24px;
  line-height: 1.8;
}

.privacy-box ul:last-child {
  margin-bottom: 0;
}

.privacy-box ul li {
  margin-bottom: 8px;
  color: var(--text);
}

.privacy-box a {
  color: var(--blue);
  transition: color var(--transition);
}

.privacy-box a:hover {
  color: var(--blue-light);
}

.contact-box {
  background: var(--sand);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  margin: 20px 0;
}

.contact-box p {
  margin-bottom: 8px;
}

.contact-box p:last-child {
  margin-bottom: 0;
}

.disclaimer {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 24px;
  margin-bottom: 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

@media (max-width: 700px) {
  .privacy-page-container {
    padding: 0;
  }
  
  .section {
    padding: 72px 16px !important;
  }
  
  .privacy-box {
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  
  .privacy-box h2 {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
  
  .privacy-box h3 {
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 12px;
  }
  
  .privacy-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 18px;
  }
  
  .privacy-box ul {
    font-size: 0.95rem;
    padding-left: 22px;
    margin-bottom: 24px;
    line-height: 1.75;
  }
  
  .privacy-box ul li {
    margin-bottom: 10px;
  }
  
  .contact-box {
    padding: 20px;
    margin: 24px 0;
  }
  
  .disclaimer {
    font-size: 0.85rem;
    margin-top: 24px;
    padding-top: 20px;
  }
}