*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:    #073D7E;
      --blue:    #6491DE;
      --light:   #F1F1F1;
      --white:   #ffffff;
      --ink:     #0d1a2e;
      --muted:   #5a6a82;
      --blue-lt: #a8c0ee;
      --navy-d:  #052d5e;
      --blue-bg: #eef3fc;
      --serif: 'Playfair Display', Georgia, serif;
      --sans:  'DM Sans', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--sans); background: var(--light); color: var(--ink); overflow-x: hidden; }





/* ════════════════════════════════
   LOADER
   ════════════════════════════════ */
#siteLoader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.7s ease;
}

#siteLoader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-ring-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loaderLogo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: contain;
  animation: loaderPulse 1s ease-in-out infinite alternate;
  position: relative;
  z-index: 1;
}

.loader-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #e91e8c;
  border-right-color: #e91e8c;
  animation: loaderSpin 1s linear infinite;
}

.loader-ring-outer {
  inset: -18px;
  border-width: 2px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: rgba(233, 30, 140, 0.35);
  border-left-color: rgba(233, 30, 140, 0.35);
  animation: loaderSpinReverse 1.6s linear infinite;
}


.loader-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #aaa;
}

@keyframes loaderPulse {
  0%   { transform: scale(0.92); }
  100% { transform: scale(1.06); }
}
@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}
@keyframes loaderSpinReverse {
  to { transform: rotate(-360deg); }
}


    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.1rem 4rem;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(100,145,222,0.15);
      transition: padding 0.3s, box-shadow 0.3s;
    }
    nav.scrolled { padding: 0.65rem 4rem; box-shadow: 0 4px 24px rgba(7,61,126,0.09); }

    .nav-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
    .logo-img { height: 46px; width: auto; display: block; }

    .nav-logo-text .name {
      font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
      color: var(--navy); letter-spacing: -0.01em; display: block; line-height: 1.1;
    }
    .nav-logo-text .tag {
      font-size: 0.6rem; font-weight: 500; letter-spacing: 0.13em;
      text-transform: uppercase; color: var(--blue); display: block; margin-top: 1px;
    }

    .nav-links { display: flex; gap: 2.25rem; list-style: none; }
    .nav-links a {
      font-size: 0.83rem; font-weight: 500; letter-spacing: 0.06em;
      text-transform: uppercase; color: var(--ink); text-decoration: none; transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--blue); }
    .nav-cta {
      background: var(--navy) !important; color: var(--white) !important;
      padding: 0.6rem 1.4rem; border-radius: 5px;
    }
    .nav-cta:hover { background: var(--blue) !important; }

    .hamburger {
      display: none; cursor: pointer; flex-direction: column;
      gap: 5px; background: none; border: none; padding: 4px;
    }
    .hamburger span { width: 24px; height: 2px; background: var(--navy); transition: all 0.3s; display: block; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none; position: fixed; inset: 0; z-index: 99;
      background: var(--navy); flex-direction: column;
      align-items: center; justify-content: center; gap: 2.5rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: var(--serif); font-size: 2rem; font-weight: 600;
      color: var(--white); text-decoration: none; transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--blue-lt); }

    /* ── HERO ── */
    #hero {
      min-height: 100vh; background: var(--navy);
      display: grid; place-items: center;
      position: relative; overflow: hidden; padding: 8rem 2rem 6rem;
    }
    .hero-grid {
      position: absolute; inset: 0;
      background-image: url('../img/hero1a.jpg');
      linear-gradient(rgba(100,145,222,0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(100,145,222,0.07) 1px, transparent 1px);
      background-size: 60px 60px;
      min-height: 100vh;
      display: flex;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    isolation: isolate;
    }

    .hero-grid::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(7, 30, 60, 0.45); /* dark navy overlay */
    }
    .hero-glow {
      position: absolute; width: 700px; height: 700px; border-radius: 50%;
      background: radial-gradient(circle, rgba(100,145,222,0.22) 0%, transparent 70%);
      top: -180px; right: -150px; pointer-events: none;
    }
    .hero-glow2 {
      position: absolute; width: 420px; height: 420px; border-radius: 50%;
      background: radial-gradient(circle, rgba(100,145,222,0.1) 0%, transparent 70%);
      bottom: -80px; left: -80px; pointer-events: none;
    }
    .hero-inner { position: relative; z-index: 1; max-width: 920px; text-align: center; }

    .hero-logo-badge {
      display: inline-flex; align-items: center; gap: 1rem;
      margin-bottom: 2.5rem; padding: 0.9rem 1.5rem;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(100,145,222,0.25);
      border-radius: 12px; backdrop-filter: blur(6px);
    }
    .hero-logo-img { height: 52px; width: auto; border-radius: 8px; }
    .hero-logo-name { text-align: left; }
    .hero-logo-name .h-name {
      font-family: var(--serif); font-size: 1.45rem; font-weight: 700;
      color: var(--white); line-height: 1; display: block;
    }
    .hero-logo-name .h-tag {
      font-size: 0.66rem; font-weight: 500; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--blue-lt); margin-top: 4px; display: block;
    }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 0.75rem;
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--blue-lt); margin-bottom: 1.5rem;
    }
    .hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 36px; height: 1px; background: var(--blue); }

    .hero-h1 {
      font-family: var(--serif); font-size: clamp(2.4rem, 5.5vw, 4.8rem);
      font-weight: 900; line-height: 1.06; color: var(--white); margin-bottom: 1.75rem;
    }

    .hero-h1 {
      color: #ffffff;
      text-shadow:
        0 2px 4px rgba(0,0,0,0.6),
        0 4px 20px rgba(0,0,0,0.4);
    }
    .hero-h1 em { font-style: italic; color: var(--blue-lt); }

    .hero-sub {
      font-size: 1.08rem; line-height: 1.8; color: rgba(241,241,241,0.68);
      max-width: 620px; margin: 0 auto 3rem;
    }

    .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    .btn-primary {
      background: var(--blue); color: var(--white);
      font-family: var(--sans); font-weight: 600; font-size: 0.9rem;
      padding: 1rem 2.25rem; border: none; border-radius: 5px;
      cursor: pointer; text-decoration: none; display: inline-block;
      transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
    }
    .btn-primary:hover { background: #7aa5e8; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(100,145,222,0.35); }

    .btn-outline {
      background: transparent; color: var(--white);
      font-family: var(--sans); font-weight: 500; font-size: 0.9rem;
      padding: 1rem 2.25rem; border: 1.5px solid rgba(241,241,241,0.3);
      border-radius: 5px; cursor: pointer; text-decoration: none; display: inline-block;
      transition: border-color 0.25s, color 0.25s;
    }
    .btn-outline:hover { border-color: var(--blue-lt); color: var(--blue-lt); }

    .hero-scroll {
      position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    }
    .hero-scroll span { font-size: 0.66rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(241,241,241,0.3); }
    .scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--blue), transparent); animation: scrollpulse 2s ease-in-out infinite; }
    @keyframes scrollpulse { 0%,100%{opacity:.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(.55)} }

    /* ── SHARED ── */
    section { position: relative; z-index: 1; }
    .section-pad { padding: 7rem 2rem; }
    .container { max-width: 1120px; margin: 0 auto; }
    .section-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.9rem; }
    .section-title { font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; color: var(--navy); }

    /* ── ABOUT ── */
    #about { background: var(--white); }
    .about-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: center; }
    .about-img-wrap { position: relative; }
    .about-img-wrap img { width: 100%; border-radius: 8px; display: block; object-fit: contain;  }
    .about-img-badge {
      position: absolute; bottom: -1.5rem; right: -1.5rem;
      background: var(--navy); color: var(--white);
      padding: 1.25rem 1.5rem; border-radius: 8px;
      font-family: var(--serif);
    }
    .about-img-badge .badge-num { font-size: 2rem; font-weight: 900; color: var(--blue-lt); display: block; line-height: 1; }
    .about-img-badge .badge-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(241,241,241,0.55); margin-top: 0.25rem; display: block; }
    .about-text { padding-top: 1rem; }
    .about-text p { font-size: 1rem; line-height: 1.85; color: var(--muted); margin-top: 1.5rem; }
    .about-founder { display: flex; gap: 1rem; align-items: center; margin-top: 2.5rem; padding: 1.25rem 1.5rem; background: var(--blue-bg); border-radius: 8px; border-left: 3px solid var(--blue); }
    .founder-name { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--navy); }
    .founder-cred { font-size: 0.78rem; color: var(--blue); font-weight: 500; margin-top: 2px; }


    /* ── WHY ── */
    #why { background: var(--light); }
    .why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .why-quote { margin-top: 2.5rem; padding: 1.75rem 2rem; border-left: 3px solid var(--blue); background: var(--blue-bg); font-family: var(--serif); font-size: 1.08rem; font-style: italic; line-height: 1.75; color: var(--navy); }
    .why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .why-card { background: var(--white); border: 1px solid rgba(100,145,222,0.18); border-radius: 8px; padding: 1.75rem; transition: transform 0.25s, box-shadow 0.25s; }
    .why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(7,61,126,0.1); }
    .why-card-icon { width: 42px; height: 42px; background: var(--navy); border-radius: 7px; display: grid; place-items: center; margin-bottom: 1rem; }
    .why-card-icon svg { width: 20px; height: 20px; stroke: var(--blue-lt); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .why-card h3 { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.45rem; }
    .why-card p { font-size: 0.875rem; line-height: 1.65; color: var(--muted); }

    /* ── SERVICES ── */
    #services { background: var(--white); }
    .services-header { text-align: center; margin-bottom: 4rem; }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .service-card { background: var(--navy); color: var(--white); border-radius: 8px; padding: 2.5rem; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(7,61,126,0.28); }
    .service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
    .service-card:hover::after { transform: scaleX(1); }
    .service-num { font-family: var(--serif); font-size: 3.5rem; font-weight: 900; color: rgba(100,145,222,0.2); line-height: 1; margin-bottom: 1.25rem; }
    .service-card h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 0.35rem; }
    .service-badge { display: inline-block; font-size: 0.67rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-lt); background: rgba(100,145,222,0.15); padding: 0.2rem 0.65rem; border-radius: 3px; margin-bottom: 1.25rem; }
    .service-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
    .service-list li { font-size: 0.875rem; line-height: 1.5; color: rgba(241,241,241,0.72); padding-left: 1.2rem; position: relative; }
    .service-list li::before { content: '→'; position: absolute; left: 0; color: var(--blue); font-size: 0.78rem; }

    /* ── CLIENTS ── */
    #clients { background: var(--light); }
    .clients-intro { text-align: center; margin-bottom: 3.5rem; }
    .clients-intro p { font-size: 1rem; color: var(--muted); margin-top: 0.75rem; }
    .client-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; align-items: center; }
    .client-logo-card {
      background: var(--white); border: 1px solid rgba(100,145,222,0.18);
      border-radius: 8px; padding: 1.5rem 2.5rem;
      display: grid; place-items: center;
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .client-logo-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(7,61,126,0.08); }
    .client-logo-card img { max-height: 60px; width: auto; object-fit: contain; opacity: 0.8; filter: grayscale(30%); transition: opacity 0.2s, filter 0.2s; }
    .client-logo-card:hover img { opacity: 1; filter: grayscale(0%); }

    /* ── PRICING ── */
    #pricing { background: var(--white); }
    .pricing-header { text-align: center; margin-bottom: 4rem; }
    .pricing-header p { font-size: 1.05rem; line-height: 1.75; color: var(--muted); max-width: 580px; margin: 1.25rem auto 0; }
    .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
    .pricing-card { background: var(--light); border: 1px solid rgba(100,145,222,0.2); border-radius: 8px; padding: 2.5rem; position: relative; transition: transform 0.3s, box-shadow 0.3s; }
    .pricing-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(7,61,126,0.1); }
    .pricing-card.featured { background: var(--navy); border-color: var(--blue); }
    .pricing-card.featured .pricing-type { color: var(--blue-lt); }
    .pricing-card.featured h3 { color: var(--white); }
    .pricing-card.featured .pricing-tagline { color: rgba(241,241,241,0.6); }
    .pricing-card.featured .pricing-tier-label { color: rgba(241,241,241,0.55); }
    .pricing-card.featured .pricing-price { color: var(--blue-lt); }
    .pricing-card.featured .pricing-include-title { color: rgba(241,241,241,0.5); }
    .pricing-card.featured .pricing-item { color: rgba(241,241,241,0.78); }
    .pricing-card.featured .pricing-item::before { color: var(--blue); }
    .pricing-card.featured .pricing-tier { border-color: rgba(100,145,222,0.2); }
    .featured-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--blue); color: var(--white); font-size: 0.67rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.25rem 1rem; border-radius: 3px; }
    .pricing-type { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.5rem; }
    .pricing-card h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
    .pricing-tagline { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.5; }
    .pricing-tiers { display: flex; flex-direction: column; gap: 0; margin-bottom: 1.5rem; }
    .pricing-tier { display: flex; justify-content: space-between; align-items: baseline; padding: 0.6rem 0; border-bottom: 1px dashed rgba(100,145,222,0.2); }
    .pricing-tier-label { font-size: 0.8rem; color: var(--muted); }
    .pricing-price { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--navy); }
    .pricing-include-title { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.75rem; }
    .pricing-includes { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
    .pricing-item { font-size: 0.83rem; line-height: 1.5; color: var(--muted); padding-left: 1.2rem; position: relative; }
    .pricing-item::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-size: 0.75rem; }
    .addons-box { background: var(--light); border: 1px solid rgba(100,145,222,0.2); border-radius: 8px; padding: 2.5rem; }
    .addons-box h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
    .addons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
    .addon-item { padding: 1.25rem; background: var(--blue-bg); border-radius: 6px; }
    .addon-item h4 { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
    .addon-item p { font-size: 0.85rem; color: var(--blue); font-weight: 600; }

    /* ── DECISION ── */
    #decision { background: var(--light); }
    .decision-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .decision-quote { font-family: var(--serif); font-size: 1.15rem; font-style: italic; line-height: 1.8; color: var(--navy); border-left: 3px solid var(--blue); padding: 1.5rem 2rem; background: var(--blue-bg); margin-bottom: 2.5rem; }
    .benefits-list { display: flex; flex-direction: column; gap: 1rem; }
    .benefit-item { display: flex; gap: 1rem; align-items: flex-start; }
    .benefit-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex-shrink: 0; margin-top: 6px; }
    .benefit-item p { font-size: 0.95rem; line-height: 1.65; color: var(--ink); }
    .benefit-item strong { color: var(--navy); }
    .decision-visual { background: var(--navy); border-radius: 8px; padding: 3rem 2.5rem; position: relative; overflow: hidden; }
    .decision-visual::before { content: ''; position: absolute; top: -50px; right: -50px; width: 240px; height: 240px; border-radius: 50%; background: rgba(100,145,222,0.14); }
    .stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
    .stat-item { position: relative; z-index: 1; }
    .stat-num { font-family: var(--serif); font-size: 2.5rem; font-weight: 900; color: var(--blue-lt); line-height: 1; }
    .stat-label { font-size: 0.8rem; color: rgba(241,241,241,0.58); margin-top: 0.4rem; line-height: 1.4; }

    /* ── FAQ ── */
    #faq { background: var(--white); }
    .faq-header { text-align: center; margin-bottom: 3.5rem; }
    .faq-grid { display: flex; flex-direction: column; gap: 0; max-width: 760px; margin: 0 auto; border: 1px solid rgba(100,145,222,0.18); border-radius: 8px; overflow: hidden; }
    .faq-item { border-bottom: 1px solid rgba(100,145,222,0.12); }
    .faq-item:last-child { border-bottom: none; }
    .faq-question {
      width: 100%; text-align: left; background: none; border: none; cursor: pointer;
      padding: 1.4rem 2rem; font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
      color: var(--navy); display: flex; justify-content: space-between; align-items: center;
      gap: 1rem; transition: background 0.2s;
    }
    .faq-question:hover { background: var(--blue-bg); }
    .faq-question::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--blue); flex-shrink: 0; transition: transform 0.3s; }
    .faq-item.open .faq-question::after { transform: rotate(45deg); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
    .faq-answer p { padding: 0 2rem 1.5rem; font-size: 0.9rem; line-height: 1.8; color: var(--muted); }
    .faq-item.open .faq-answer { max-height: 300px; }

    /* ── CTA ── */
    #cta { background: var(--blue); padding: 7rem 2rem; }
    .cta-inner { text-align: center; max-width: 720px; margin: 0 auto; }
    .cta-inner h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 1.5rem; }
    .cta-inner p { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; line-height: 1.75; }
    .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .btn-dark { background: var(--navy); color: var(--white); font-family: var(--sans); font-weight: 600; font-size: 0.9rem; padding: 1rem 2.25rem; border: none; border-radius: 5px; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.25s, transform 0.2s; }
    .btn-dark:hover { background: var(--navy-d); transform: translateY(-2px); }
    .btn-ghost-light { background: transparent; color: var(--white); font-family: var(--sans); font-weight: 500; font-size: 0.9rem; padding: 1rem 2.25rem; border: 2px solid rgba(255,255,255,0.55); border-radius: 5px; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.25s, border-color 0.25s; }
    .btn-ghost-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

    /* ── CONTACT ── */
    #contact { background: var(--light); }
    .contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start; }
    .contact-info p.lead { font-size: 1.05rem; line-height: 1.8; color: var(--muted); margin: 1.5rem 0 2.5rem; }
    .contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
    .contact-detail { display: flex; gap: 1.25rem; align-items: flex-start; }
    .contact-icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--navy); border-radius: 7px; display: grid; place-items: center; }
    .contact-icon svg, .contact-icon i { width: 18px; height: 18px; stroke: var(--blue-lt); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; color: var(--blue-lt); font-size: 1rem; }
    .contact-detail-body span { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.2rem; }
    .contact-detail-body a, .contact-detail-body p { font-size: 0.95rem; color: var(--navy); font-weight: 500; text-decoration: none; transition: color 0.2s; }
    .contact-detail-body a:hover { color: var(--blue); }
    .contact-socials { display: flex; gap: 0.75rem; margin-top: 2.5rem; }
    .contact-social-link { width: 40px; height: 40px; background: var(--navy); border-radius: 6px; display: grid; place-items: center; color: var(--white); font-size: 0.88rem; text-decoration: none; transition: background 0.2s, transform 0.2s; }
    .contact-social-link:hover { background: var(--blue); transform: translateY(-3px); }
    .contact-form-wrap { background: var(--white); border: 1px solid rgba(100,145,222,0.18); border-radius: 8px; padding: 3rem;display: block;width: 100%; }
    .contact-form-wrap h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
    .contact-form-wrap > p { font-size: 0.875rem; color: var(--muted); margin-bottom: 2rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1rem; }
    .form-group label { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); }
    .form-group input, .form-group select, .form-group textarea { font-family: var(--sans); font-size: 0.9rem; color: var(--ink); background: var(--light); border: 1.5px solid rgba(100,145,222,0.25); border-radius: 5px; padding: 0.8rem 1rem; outline: none; width: 100%; transition: border-color 0.2s, box-shadow 0.2s; }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(100,145,222,0.14); background: var(--white); }
    .form-group textarea { resize: vertical; min-height: 130px; }
    .form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6a82' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
    .form-submit { width: 100%; padding: 1rem; background: var(--navy); color: var(--white); font-family: var(--sans); font-size: 0.95rem; font-weight: 600; border: none; border-radius: 5px; cursor: pointer; transition: background 0.25s, transform 0.2s; margin-top: 0.5rem; }
    .form-submit:hover { background: var(--blue); transform: translateY(-2px); }
    .form-success { display: none; text-align: center; padding: 2.5rem 1rem; }
    .form-success .success-icon { width: 58px; height: 58px; background: var(--blue); border-radius: 50%; display: grid; place-items: center; margin: 0 auto 1.25rem; }
    .form-success .success-icon svg { width: 24px; height: 24px; stroke: var(--white); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
    .form-success h4 { display: none; font-family: var(--serif); font-size: 1.3rem; color: var(--navy); margin-bottom: 0.5rem; }
    .form-success p { display: none; font-size: 0.9rem; color: var(--muted); }

    /* ── FOOTER ── */
    footer { background: var(--navy-d); padding: 5rem 2rem 2.5rem; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
    .footer-logo-area { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
    .footer-logo-img { height: 40px; width: auto; border-radius: 6px; }
    .footer-logo-text .f-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--white); display: block; line-height: 1; }
    .footer-logo-text .f-tag { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(100,145,222,0.7); margin-top: 2px; display: block; }
    .footer-brand p { font-size: 0.85rem; line-height: 1.75; color: rgba(241,241,241,0.44); max-width: 260px; }
    .footer-socials { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
    .social-link { width: 36px; height: 36px; background: rgba(241,241,241,0.07); border-radius: 5px; display: grid; place-items: center; color: rgba(241,241,241,0.55); text-decoration: none; font-size: 0.88rem; transition: background 0.2s, color 0.2s; }
    .social-link:hover { background: var(--blue); color: var(--white); }
    .footer-col h4 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 1.25rem; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
    .footer-col a { font-size: 0.875rem; color: rgba(241,241,241,0.44); text-decoration: none; transition: color 0.2s; }
    .footer-col a:hover { color: var(--white); }
    .footer-contact p { font-size: 0.875rem; color: rgba(241,241,241,0.44); line-height: 1.6; margin-bottom: 0.5rem; }
    .footer-contact a { color: rgba(241,241,241,0.44); text-decoration: none; transition: color 0.2s; }
    .footer-contact a:hover { color: var(--blue-lt); }
    .footer-bottom { border-top: 1px solid rgba(241,241,241,0.07); padding-top: 1.75rem; display: flex; justify-content: space-between; align-items: center; }
    .footer-bottom p { font-size: 0.8rem; color: rgba(241,241,241,0.27); }

    /* ── ANIMATIONS ── */
    .fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up-d1 { transition-delay: 0.1s; }
    .fade-up-d2 { transition-delay: 0.2s; }
    .fade-up-d3 { transition-delay: 0.3s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      nav { padding: 1.1rem 2rem; } nav.scrolled { padding: 0.65rem 2rem; }
      .nav-links { display: none; } .hamburger { display: flex; }
      .about-layout { grid-template-columns: 1fr; gap: 3rem; }
      .about-img-badge { right: 1rem; }
      .why-layout { grid-template-columns: 1fr; gap: 3rem; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .pricing-grid { grid-template-columns: 1fr 1fr; }
      .decision-layout { grid-template-columns: 1fr; gap: 3rem; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .addons-grid { grid-template-columns: 1fr 1fr; }
      .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
    }
    @media (max-width: 640px) {
      .section-pad { padding: 5rem 1.25rem; }
      .services-grid { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; }
      .why-cards { grid-template-columns: 1fr; }
      .stat-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .addons-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
      .form-row { grid-template-columns: 1fr; }
      .contact-form-wrap { padding: 2rem 1.5rem; }
      .hero-logo-badge { flex-direction: column; text-align: center; }
      .hero-logo-name { text-align: center; }
    }