/*!
 * BIG LOANS — main.css
 * https://bigloans.in/
 *
 * Brand: BIG LOANS Capital Advisors
 * Typography: Poppins (300-800)
 * Palette: Navy #003577 / Royal #0455A4 / Green #1E904A / Gold #FFD020
 *
 * Notes:
 *  - All Core Web Vital optimisations live here (content-visibility, will-change, etc.)
 *  - Uses CSS custom properties (--token-name) — see :root for palette and spacing
 *  - System font fallback (system-ui) is set before Poppins to avoid FOUC
 */

/* ---------- Design Tokens — finalised brand palette ---------- */
    :root {
      /* Brand colors */
      --blue-dark:    #003577;   /* deep navy — BIG, headlines, dark sections */
      --blue:         #0455A4;   /* primary blue — buttons, links */
      --blue-light:   #075EAD;   /* mid blue — gradients */
      --green-dark:   #1E904A;   /* deep green — LOANS, accents */
      --green:        #219E50;   /* primary green */
      --green-text:   #157033;   /* darker green — for small text on white (passes WCAG AA) */
      --green-light:  #4AB445;   /* bright green — gradient highlights */
      --gold:         #FFD020;   /* gold accent */
      --gold-deep:    #C99500;   /* darker gold — for text on light */
      --gold-soft:    #FFE680;

      /* Neutrals */
      --bg:           #FFFFFF;
      --bg-soft:      #F5F9FD;   /* very faint blue tint for alt sections */
      --bg-warm:      #FFFBEC;   /* faint gold tint */
      --ink:          #0E1B2E;
      --ink-soft:     #1F2A40;
      --body:         #2C3441;
      --muted:        #6B7280;
      --rule:         #E5E9F0;
      --rule-soft:    #EFF2F7;

      --container: 1280px;
      --gutter: clamp(1.25rem, 4vw, 2.5rem);

      --radius-xs: 4px;
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 22px;
      --radius-xl: 28px;

      --shadow-sm: 0 1px 2px rgba(0, 53, 119, 0.05);
      --shadow-md: 0 8px 28px rgba(0, 53, 119, 0.07);
      --shadow-lg: 0 20px 60px rgba(0, 53, 119, 0.10);

      --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --ease: cubic-bezier(0.22, 1, 0.36, 1);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      margin: 0;
      font-family: var(--font);
      font-size: 16px;
      line-height: 1.6;
      font-weight: 400;
      color: var(--body);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    img, svg { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; }
    ::selection { background: var(--gold); color: var(--blue-dark); }

    /* ---------- Typography ---------- */
    h1, h2, h3, h4 {
      font-family: var(--font);
      color: var(--blue-dark);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.12;
      margin: 0;
    }
    .display-1 {
      font-size: clamp(2.5rem, 6vw, 4.75rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.035em;
    }
    .display-2 {
      font-size: clamp(2rem, 4.2vw, 3.25rem);
      font-weight: 700;
      letter-spacing: -0.028em;
    }
    .display-3 {
      font-size: clamp(1.5rem, 2.5vw, 1.875rem);
      font-weight: 700;
    }
    .accent-green { color: var(--green); }
    .accent-blue { color: var(--blue); }
    .accent-gold { color: var(--gold); }
    .accent-underline {
      position: relative;
      display: inline-block;
    }
    .accent-underline::after {
      content: "";
      position: absolute;
      left: 0; right: 0; bottom: 0.05em;
      height: 0.32em;
      background: var(--gold);
      z-index: -1;
      opacity: 0.55;
      border-radius: 4px;
    }
    .eyebrow {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--blue);
    }
    .lead {
      font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
      line-height: 1.62;
      color: var(--ink-soft);
      max-width: 62ch;
      font-weight: 400;
    }
    .small { font-size: 0.875rem; }

    /* ---------- Layout ---------- */
    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }
    section { padding: clamp(4rem, 8vw, 6.5rem) 0; position: relative; }
    .section-soft { background: var(--bg-soft); }
    .section-warm { background: var(--bg-warm); }
    .section-dark {
      background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
      color: #E8EEF6;
    }
    .section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
    .section-dark .eyebrow { color: var(--gold); }

    .section-head { display: flex; flex-direction: column; gap: 1.25rem; max-width: 70ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
    .section-num {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      color: var(--muted);
      text-transform: uppercase;
    }
    .section-num::before {
      content: "";
      width: 28px; height: 2px;
      background: var(--gold);
      display: inline-block;
    }

    /* ---------- Buttons ---------- */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.95rem 1.6rem;
      border-radius: 999px;
      font-family: var(--font);
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.005em;
      border: 1.5px solid transparent;
      transition: all 0.3s var(--ease);
      cursor: pointer;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--blue-dark);
      color: #fff;
      box-shadow: 0 4px 14px rgba(0, 53, 119, 0.25);
    }
    .btn-primary:hover {
      background: var(--blue);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 53, 119, 0.35);
    }
    .btn-gold {
      background: var(--gold);
      color: var(--blue-dark);
      box-shadow: 0 4px 14px rgba(255, 208, 32, 0.35);
    }
    .btn-gold:hover {
      background: #FFC700;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 208, 32, 0.5);
    }
    .btn-green {
      background: var(--green);
      color: #fff;
    }
    .btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }
    .btn-ghost {
      background: transparent;
      color: var(--blue-dark);
      border-color: var(--blue-dark);
      border-width: 1.5px;
    }
    .btn-ghost:hover {
      border-color: var(--blue-dark);
      background: var(--blue-dark);
      color: #fff;
    }
    .section-dark .btn-ghost,
    .cta-big .btn-ghost {
      color: #fff;
      border-color: rgba(255,255,255,0.7);
      background: rgba(255,255,255,0.08);
    }
    .section-dark .btn-ghost:hover,
    .cta-big .btn-ghost:hover {
      border-color: var(--gold);
      color: var(--blue-dark);
      background: var(--gold);
    }
    .btn .arr { transition: transform 0.3s var(--ease); }
    .btn:hover .arr { transform: translateX(4px); }

    /* ---------- Announcement Bar ---------- */
    .announce {
      background: linear-gradient(90deg, var(--blue-dark) 0%, var(--blue) 50%, var(--green-dark) 100%);
      color: #fff;
      font-size: 0.825rem;
      font-weight: 500;
    }
    .announce .container {
      display: flex; align-items: center; justify-content: center;
      gap: 0.75rem;
      padding-top: 0.625rem; padding-bottom: 0.625rem;
      text-align: center;
      flex-wrap: wrap;
    }
    .announce .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s ease-in-out infinite; }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.3); }
    }
    .announce a { color: var(--gold); border-bottom: 1px solid transparent; font-weight: 600; }
    .announce a:hover { border-bottom-color: var(--gold); }

    /* ---------- Header / Nav ---------- */
    .site-header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: saturate(180%) blur(14px);
      -webkit-backdrop-filter: saturate(180%) blur(14px);
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    .site-header.scrolled {
      border-bottom-color: var(--rule);
      box-shadow: var(--shadow-sm);
    }
    .nav {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0.9rem 0;
    }
    .brand {
      display: flex; align-items: center; gap: 0.7rem;
      font-weight: 800;
      font-size: 1.35rem;
      letter-spacing: -0.02em;
    }
    .brand-mark { width: 44px; height: 44px; flex-shrink: 0; }
    .brand-text .big { color: var(--blue-dark); }
    .brand-text .loans { color: var(--green); }
    .nav-links {
      display: flex; align-items: center; gap: 2rem;
      list-style: none; margin: 0; padding: 0;
    }
    .nav-links a {
      font-size: 0.925rem;
      color: var(--ink-soft);
      font-weight: 500;
      transition: color 0.2s;
      position: relative;
    }
    .nav-links a:hover { color: var(--blue); }
    .nav-links a::after {
      content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
      height: 2px; background: var(--gold);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s var(--ease);
    }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-cta-wrap { display: flex; align-items: center; gap: 0.75rem; }
    .nav-toggle {
      display: none;
      background: transparent;
      border: 1.5px solid var(--rule);
      width: 44px; height: 44px;
      border-radius: 999px;
      align-items: center; justify-content: center;
    }
    @media (max-width: 980px) {
      .nav-links { display: none; }
      .nav-toggle { display: inline-flex; }
      .nav-cta-wrap .btn { display: none; }
    }

    /* Mobile menu */
    .mobile-menu {
      position: fixed; inset: 0;
      background: var(--bg);
      z-index: 200;
      padding: 2rem var(--gutter);
      transform: translateX(100%);
      transition: transform 0.4s var(--ease);
      overflow-y: auto;
    }
    .mobile-menu.open { transform: translateX(0); }
    .mobile-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem; }
    .mobile-menu ul { list-style: none; padding: 0; margin: 0; }
    .mobile-menu li { padding: 1rem 0; border-bottom: 1px solid var(--rule); }
    .mobile-menu li a {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--blue-dark);
    }
    .mobile-menu .btn { margin-top: 2rem; width: 100%; justify-content: center; }

    /* ---------- HERO ---------- */
    .hero {
      padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 7vw, 6rem);
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: "";
      position: absolute;
      top: -200px; right: -200px;
      width: 700px; height: 700px;
      background: radial-gradient(circle at center, rgba(74, 180, 69, 0.10) 0%, transparent 60%);
      pointer-events: none; z-index: 0;
    }
    .hero::after {
      content: "";
      position: absolute;
      bottom: -200px; left: -150px;
      width: 600px; height: 600px;
      background: radial-gradient(circle at center, rgba(7, 94, 173, 0.08) 0%, transparent 60%);
      pointer-events: none; z-index: 0;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: clamp(2.5rem, 5vw, 5rem);
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 0.6rem;
      padding: 0.5rem 1rem;
      border: 1.5px solid var(--rule);
      border-radius: 999px;
      background: #fff;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--blue-dark);
      margin-bottom: 1.5rem;
      box-shadow: var(--shadow-sm);
    }
    .hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
    .hero h1 { margin-bottom: 1.5rem; }
    .hero-sub {
      font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
      line-height: 1.6;
      color: var(--ink-soft);
      max-width: 56ch;
      margin: 0 0 2rem 0;
    }
    .hero-ctas { display: flex; gap: 0.875rem; flex-wrap: wrap; align-items: center; }
    .hero-trust {
      margin-top: 2.25rem;
      display: flex; align-items: center; gap: 1.25rem;
      flex-wrap: wrap;
      font-size: 0.825rem; color: var(--muted);
      font-weight: 500;
    }
    .hero-trust .item { display: inline-flex; align-items: center; gap: 0.4rem; }
    .hero-trust .check {
      width: 16px; height: 16px;
      background: var(--green); color: #fff;
      border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 10px; font-weight: 700;
    }

    /* Hero visual */
    .hero-visual {
      position: relative;
      width: 100%;
      max-width: 560px;
      margin-left: auto;
      aspect-ratio: 1 / 1;
    }
    .hero-visual::before {
      content: "";
      position: absolute;
      inset: 5%;
      background: radial-gradient(circle at center, rgba(255, 208, 32, 0.12), transparent 65%);
      border-radius: 50%;
      animation: gentleBreath 6s ease-in-out infinite;
    }
    @keyframes gentleBreath {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.05); opacity: 0.7; }
    }
    .hero-svg {
      position: relative;
      width: 100%;
      height: 100%;
      filter: drop-shadow(0 10px 30px rgba(0, 53, 119, 0.10));
    }
    .hero-tag {
      position: absolute;
      background: #fff;
      border: 1px solid var(--rule);
      border-radius: var(--radius-md);
      padding: 0.85rem 1.1rem;
      box-shadow: var(--shadow-md);
      font-size: 0.825rem;
      z-index: 2;
      animation: floatTag 6s ease-in-out infinite;
    }
    .hero-tag .label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; margin-bottom: 0.2rem; }
    .hero-tag .val { font-size: 1.15rem; font-weight: 700; color: var(--blue-dark); }
    .hero-tag .val.green { color: var(--green-text); }
    .hero-tag-1 { top: 30%; left: -8%; animation-delay: 0s; }
    .hero-tag-2 { top: 42%; right: -7%; animation-delay: 1.5s; }
    .hero-tag-3 { bottom: 28%; right: -4%; animation-delay: 3s; }
    @keyframes floatTag {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    @media (max-width: 900px) {
      .hero-grid { grid-template-columns: 1fr; }
      .hero-visual { max-width: 420px; margin: 0 auto; }
    }
    @media (max-width: 520px) {
      .hero-tag-1 { left: -2%; top: 32%; }
      .hero-tag-2 { right: -2%; }
      .hero-tag-3 { right: 0; bottom: 30%; }
    }

    /* ---------- Trust strip ---------- */
    .trust-strip {
      border-top: 1px solid var(--rule);
      border-bottom: 1px solid var(--rule);
      background: var(--bg-soft);
      padding: 2.25rem 0;
    }
    .trust-strip-inner {
      display: flex; align-items: center; gap: clamp(1.5rem, 4vw, 3rem);
      flex-wrap: wrap; justify-content: space-between;
    }
    .trust-label {
      font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--blue-dark);
      max-width: 22ch;
    }
    .trust-logos {
      display: flex; align-items: center; gap: clamp(1.25rem, 3vw, 2.5rem);
      flex-wrap: wrap; flex: 1; justify-content: space-around;
    }
    .trust-logo {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--ink-soft);
      opacity: 0.6;
      transition: opacity 0.3s, color 0.3s;
      letter-spacing: -0.01em;
    }
    .trust-logo:hover { opacity: 1; color: var(--blue); }

    /* ---------- Stats counter ---------- */
    .stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      margin-top: 3rem;
    }
    .stat {
      background: #fff;
      border: 1px solid var(--rule);
      border-radius: var(--radius-lg);
      padding: 2rem 1.5rem;
      position: relative;
      overflow: hidden;
      transition: all 0.3s var(--ease);
    }
    .stat:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--gold);
    }
    .stat::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 4px;
      background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
    }
    .stat:nth-child(2)::before { background: linear-gradient(90deg, var(--green) 0%, var(--gold) 100%); }
    .stat:nth-child(3)::before { background: linear-gradient(90deg, var(--gold) 0%, var(--blue) 100%); }
    .stat:nth-child(4)::before { background: linear-gradient(90deg, var(--blue-dark) 0%, var(--green-light) 100%); }
    .stat-num {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 800;
      color: var(--blue-dark);
      letter-spacing: -0.03em;
      line-height: 1;
      display: flex; align-items: baseline; gap: 0.2rem;
    }
    .stat-num .unit { font-size: 0.55em; color: var(--green); font-weight: 700; }
    .stat-label {
      font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--muted);
      margin-top: 0.75rem;
    }
    @media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }

    /* ---------- Services Grid ---------- */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .service {
      background: #fff;
      border: 1px solid var(--rule);
      border-radius: var(--radius-lg);
      padding: 2rem 1.75rem 2.25rem;
      position: relative;
      transition: all 0.35s var(--ease);
      cursor: pointer;
      display: flex; flex-direction: column;
      min-height: 240px;
      overflow: hidden;
    }
    .service::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--blue);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s var(--ease);
    }
    .service:nth-child(3n+2)::before { background: var(--green); }
    .service:nth-child(3n)::before { background: var(--gold); }
    .service:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: transparent;
    }
    .service:hover::before { transform: scaleX(1); }
    .service-head {
      display: flex; justify-content: space-between; align-items: flex-start;
      margin-bottom: 1.5rem;
    }
    .service-num {
      font-size: 0.8rem; font-weight: 700;
      color: var(--green-text);
      letter-spacing: 0.08em;
    }
    .service-arrow {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--bg-soft);
      color: var(--blue-dark);
      display: flex; align-items: center; justify-content: center;
      transition: all 0.3s var(--ease);
      font-weight: 700;
    }
    .service:hover .service-arrow {
      background: var(--gold);
      color: var(--blue-dark);
      transform: rotate(-45deg) scale(1.1);
    }
    .service h3 {
      font-size: 1.375rem; font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--blue-dark);
    }
    .service p {
      font-size: 0.92rem;
      color: var(--muted);
      line-height: 1.55;
      margin: 0;
      margin-top: auto;
    }
    @media (max-width: 920px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

    /* ---------- Why Us — pillars ---------- */
    .pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem 2rem;
      margin-top: 3rem;
    }
    .pillar {
      padding: 1.75rem;
      background: #fff;
      border-radius: var(--radius-md);
      border: 1px solid var(--rule);
      transition: all 0.3s var(--ease);
    }
    .pillar:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: transparent;
    }
    .pillar-icon-wrap {
      width: 56px; height: 56px;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.25rem;
    }
    .pillar:nth-child(1) .pillar-icon-wrap { background: rgba(4, 85, 164, 0.10); color: var(--blue); }
    .pillar:nth-child(2) .pillar-icon-wrap { background: rgba(33, 158, 80, 0.12); color: var(--green); }
    .pillar:nth-child(3) .pillar-icon-wrap { background: rgba(255, 208, 32, 0.18); color: #B8860B; }
    .pillar:nth-child(4) .pillar-icon-wrap { background: rgba(4, 85, 164, 0.10); color: var(--blue); }
    .pillar:nth-child(5) .pillar-icon-wrap { background: rgba(33, 158, 80, 0.12); color: var(--green); }
    .pillar:nth-child(6) .pillar-icon-wrap { background: rgba(255, 208, 32, 0.18); color: #B8860B; }
    .pillar-icon { width: 28px; height: 28px; }
    .pillar h3 {
      font-size: 1.25rem; font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--blue-dark);
    }
    .pillar p {
      font-size: 0.95rem; color: var(--muted);
      line-height: 1.6; margin: 0;
    }
    @media (max-width: 920px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }

    /* ---------- Why-Us split layout with ecosystem visual ---------- */
    .why-grid {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: center;
      margin-bottom: clamp(3rem, 6vw, 4.5rem);
    }
    .why-grid .section-head { margin-bottom: 0; }
    .ecosystem-wrap {
      position: relative;
      width: 100%;
      max-width: 480px;
      margin: 0 auto;
      aspect-ratio: 1 / 1;
    }
    .ecosystem-svg { width: 100%; height: 100%; }
    @media (max-width: 920px) {
      .why-grid { grid-template-columns: 1fr; }
      .ecosystem-wrap { max-width: 380px; }
    }

    /* ---------- Process timeline ---------- */
    .process { display: flex; flex-direction: column; margin-top: 2rem; }
    .process-step {
      display: grid;
      grid-template-columns: 100px 1fr 180px;
      gap: 2rem;
      padding: 2rem 0;
      border-top: 1px solid rgba(255,255,255,0.15);
      align-items: start;
      transition: padding-left 0.4s var(--ease);
      position: relative;
    }
    .process-step:hover { padding-left: 1.25rem; }
    .process-step:hover .process-num { color: var(--gold); }
    .process-step:last-child { border-bottom: 1px solid rgba(255,255,255,0.15); }
    .process-num {
      font-size: 3rem;
      font-weight: 800;
      color: var(--green-light);
      letter-spacing: -0.04em;
      line-height: 1;
      transition: color 0.3s;
    }
    .process-body h3 {
      font-size: 1.5rem; font-weight: 700;
      margin-bottom: 0.5rem;
      color: #fff;
    }
    .process-body p {
      color: rgba(232, 238, 246, 0.80);
      font-size: 0.95rem;
      margin: 0;
      max-width: 60ch;
    }
    .process-time {
      font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--gold);
      text-align: right;
      padding-top: 0.5rem;
      text-transform: uppercase;
    }
    @media (max-width: 920px) {
      .process-step { grid-template-columns: 60px 1fr; gap: 1rem; padding: 1.5rem 0; }
      .process-num { font-size: 2.25rem; }
      .process-time { grid-column: 2; text-align: left; padding-top: 0.75rem; }
    }

    /* ---------- Industries ---------- */
    .industries-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      margin-top: 3rem;
    }
    .industry {
      padding: 1.5rem 1.25rem;
      background: #fff;
      border: 1px solid var(--rule);
      border-radius: var(--radius-md);
      transition: all 0.3s;
      display: flex; align-items: center; gap: 0.75rem;
      font-weight: 500;
      color: var(--blue-dark);
      cursor: pointer;
    }
    .industry:hover {
      background: var(--blue-dark);
      color: #fff;
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
      border-color: transparent;
    }
    .industry .num {
      font-size: 0.72rem; font-weight: 700;
      color: var(--green-text);
      letter-spacing: 0.1em;
    }
    .industry:hover .num { color: var(--gold); }
    @media (max-width: 920px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 480px) { .industries-grid { grid-template-columns: 1fr; } }

    /* ---------- Locations ---------- */
    .locations-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0.875rem;
      margin-top: 3rem;
    }
    .location {
      padding: 1.5rem 1.25rem;
      background: #fff;
      border: 1px solid var(--rule);
      border-radius: var(--radius-md);
      transition: all 0.3s var(--ease);
      position: relative; overflow: hidden;
    }
    .location::before {
      content: ""; position: absolute;
      top: 0; left: 0; width: 4px; height: 100%;
      background: var(--gold);
      transform: scaleY(0); transform-origin: top;
      transition: transform 0.35s var(--ease);
    }
    .location:hover {
      border-color: var(--blue);
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }
    .location:hover::before { transform: scaleY(1); }
    .location-name {
      font-size: 1.125rem; font-weight: 700;
      color: var(--blue-dark);
      margin-bottom: 0.25rem;
    }
    .location-region {
      font-size: 0.72rem; font-weight: 500;
      color: var(--muted);
      letter-spacing: 0.06em; text-transform: uppercase;
    }
    @media (max-width: 1024px) { .locations-grid { grid-template-columns: repeat(4, 1fr); } }
    @media (max-width: 720px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }

    /* ---------- Testimonials ---------- */
    .testimonials {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }
    .testi {
      padding: 2.25rem 2rem;
      background: #fff;
      border: 1px solid var(--rule);
      border-radius: var(--radius-lg);
      position: relative;
      transition: all 0.3s;
    }
    .testi:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .testi-mark {
      font-size: 3rem; line-height: 0.5;
      color: var(--gold-deep);
      font-weight: 800;
      margin-bottom: 0.75rem;
      display: inline-block;
    }
    .testi-quote {
      font-size: 1.0625rem; line-height: 1.55;
      font-weight: 500;
      color: var(--ink-soft);
      margin: 0 0 1.5rem;
    }
    .testi-attr {
      display: flex; flex-direction: column; gap: 0.125rem;
      padding-top: 1.25rem;
      border-top: 1px solid var(--rule);
    }
    .testi-name { font-weight: 700; color: var(--blue-dark); font-size: 0.95rem; }
    .testi-meta { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
    @media (max-width: 920px) { .testimonials { grid-template-columns: 1fr; } }

    /* ---------- FAQ ---------- */
    .faq-list {
      margin-top: 3rem;
      border-top: 1px solid var(--rule);
    }
    .faq-item { border-bottom: 1px solid var(--rule); }
    .faq-q {
      width: 100%;
      text-align: left;
      background: transparent;
      border: 0;
      padding: 1.5rem 0;
      display: flex; justify-content: space-between; align-items: center;
      gap: 1.5rem;
      font-family: var(--font);
      font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
      font-weight: 600;
      color: var(--blue-dark);
      transition: color 0.2s;
    }
    .faq-q:hover { color: var(--blue); }
    .faq-icon {
      flex-shrink: 0;
      width: 36px; height: 36px;
      background: var(--bg-soft);
      border-radius: 50%;
      position: relative;
      transition: background 0.3s;
    }
    .faq-q:hover .faq-icon { background: var(--gold); }
    .faq-icon::before, .faq-icon::after {
      content: ""; position: absolute;
      top: 50%; left: 50%;
      width: 14px; height: 2px;
      background: var(--blue-dark);
      transform: translate(-50%, -50%);
      transition: transform 0.3s var(--ease);
    }
    .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
    .faq-item.open .faq-icon { background: var(--green); }
    .faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: #fff; }
    .faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(0); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
    .faq-a-inner {
      padding-bottom: 1.75rem;
      font-size: 1rem; line-height: 1.65;
      color: var(--muted);
      max-width: 75ch;
    }
    .faq-item.open .faq-a { max-height: 400px; }

    /* ---------- CTA Big ---------- */
    .cta-big {
      text-align: center;
      padding: clamp(4rem, 8vw, 7rem) 0;
      background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--green-dark) 100%);
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .cta-big::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 30%, rgba(255, 208, 32, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(74, 180, 69, 0.12), transparent 40%);
    }
    .cta-big-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; padding: 0 var(--gutter); }
    .cta-big h2 {
      color: #fff;
      font-size: clamp(2.25rem, 5vw, 3.75rem);
      font-weight: 800;
      margin-bottom: 1.5rem;
      letter-spacing: -0.03em;
    }
    .cta-big h2 .gold { color: var(--gold); }
    .cta-big p {
      font-size: 1.125rem;
      color: rgba(232, 238, 246, 0.85);
      max-width: 56ch;
      margin: 0 auto 2.5rem;
    }
    .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    /* ---------- Footer ---------- */
    footer {
      background: #FAFBFC;
      border-top: 1px solid var(--rule);
      padding: 4rem 0 2rem;
      font-size: 0.92rem;
    }
    .foot-grid {
      display: grid;
      grid-template-columns: 1.4fr repeat(4, 1fr);
      gap: 2.5rem;
      margin-bottom: 3rem;
    }
    .foot-brand p { color: var(--muted); margin: 1rem 0 1.5rem; max-width: 32ch; line-height: 1.6; }
    .foot-col h4 {
      font-size: 0.78rem;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--blue-dark);
      font-weight: 700;
      margin: 0 0 1.25rem;
    }
    .foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.625rem; }
    .foot-col li a { color: var(--muted); transition: color 0.2s; }
    .foot-col li a:hover { color: var(--blue); }
    .social-links { display: flex; gap: 0.625rem; }
    .social-link {
      width: 38px; height: 38px;
      border: 1.5px solid var(--rule);
      border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      color: var(--blue-dark);
      transition: all 0.3s;
    }
    .social-link:hover {
      background: var(--blue);
      color: #fff;
      border-color: var(--blue);
      transform: translateY(-2px);
    }

    .foot-disclaimer {
      padding: 1.75rem 0;
      border-top: 1px solid var(--rule);
      border-bottom: 1px solid var(--rule);
      font-size: 0.78rem;
      line-height: 1.65;
      color: var(--muted);
    }
    .foot-disclaimer strong { color: var(--blue-dark); font-weight: 600; }
    .foot-bottom {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 1.75rem; gap: 1rem; flex-wrap: wrap;
      font-size: 0.78rem; color: var(--muted);
    }
    .foot-bottom a { color: var(--muted); }
    .foot-bottom a:hover { color: var(--blue); }
    .foot-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
    @media (max-width: 1024px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px) { .foot-grid { grid-template-columns: 1fr; } }

    /* ---------- Reveal Animations ---------- */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
    }
    .reveal.in { opacity: 1; transform: translateY(0); }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      .hero-tag, .hero-svg, .hero-visual::before { animation: none; }
      .hero-svg * { animation: none !important; }
    }

    /* ---------- Skip link ---------- */
    .skip-link {
      position: absolute; left: -9999px; top: 0;
      background: var(--blue-dark); color: #fff;
      padding: 0.75rem 1rem;
      z-index: 1000;
    }
    .skip-link:focus { left: 0; }

/* ============================================================
 * CORE WEB VITALS — performance helpers
 * Appended after the main stylesheet
 * ============================================================ */

/* font-smoothing fallback for crisp rendering */
html { text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }

/* Reduce layout cost for off-screen sections (LCP / Speed Index optimisation).
   The browser skips rendering until they scroll into view. The intrinsic-size
   reserves space so CLS stays at zero. */
section.section-soft,
section[aria-labelledby="industries-title"],
section[aria-labelledby="locations-title"],
section[aria-labelledby="testi-title"],
section[aria-labelledby="faq-title"],
footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

/* GPU hints — promote animated layers off the main thread (TBT optimisation) */
.hero-tag,
.process-step,
.service,
.stat,
.location {
  will-change: transform;
}
/* Drop the hint after animation completes (avoid wasted GPU memory) */
.reveal.in { will-change: auto; }

/* Reserve hero illustration aspect-ratio to prevent CLS while SVG paints */
.hero-svg { aspect-ratio: 1 / 1; }
.ecosystem-svg { aspect-ratio: 1 / 1; }

/* Disable hover-only animations on devices that can't hover (mobile) — TBT fix */
@media (hover: none) {
  .service:hover,
  .stat:hover,
  .location:hover,
  .pillar:hover { transform: none; box-shadow: none; }
}

/* Honour user data-saving preference */
@media (prefers-reduced-data: reduce) {
  .hero-visual::before { display: none; }
}


/* ============================================================
 * MEGA MENU — desktop & mobile responsive
 * Replaces the simple .nav-links list with a full mega menu
 * ============================================================ */

/* ---- Desktop: nav menu primary list ---- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav { position: relative; }
.nav-item { /* relies on .primary-nav as positioning ancestor */ }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 1rem;
  font-size: 0.925rem;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  cursor: pointer;
  border: 0;
  background: transparent;
  font-family: var(--font);
  line-height: 1;
}
.nav-link:hover, .nav-link[aria-expanded="true"] { color: var(--blue); }
.nav-link .chev {
  width: 10px; height: 10px;
  transition: transform 0.25s var(--ease);
  margin-top: 1px;
}
.nav-link[aria-expanded="true"] .chev { transform: rotate(180deg); }
.nav-link::after {
  content: ""; position: absolute; left: 1rem; right: 1rem; bottom: 0.4rem;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover::after, .nav-link[aria-expanded="true"]::after { transform: scaleX(1); }

/* ---- Mega Panel: the dropdown ---- */
.mega-panel {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: min(1180px, calc(100vw - 4rem));
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 53, 119, 0.12), 0 4px 16px rgba(0, 53, 119, 0.04);
  padding: 2rem 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s linear 0.25s;
  z-index: 90;
}
.nav-item.open .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s linear 0s;
}

/* ---- Mega Grid layout ---- */
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 0.85fr;
  gap: 2rem;
}
.mega-grid--wide { grid-template-columns: repeat(4, 1fr) 0.85fr; }
.mega-grid--compact { grid-template-columns: repeat(2, 1fr) 0.85fr; }

.mega-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-text);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--rule);
}
.mega-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.125rem; }
.mega-col li { margin: 0; }

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s;
  color: var(--ink-soft);
}
.mega-item:hover { background: var(--bg-soft); transform: translateX(4px); }

.mega-item-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  transition: background 0.2s, color 0.2s;
}
.mega-item:hover .mega-item-icon { background: var(--blue); color: var(--gold); }
.mega-item-icon svg { width: 18px; height: 18px; }

.mega-item-text { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.mega-item-text strong {
  font-size: 0.9rem; font-weight: 600;
  color: var(--blue-dark);
  letter-spacing: -0.005em;
}
.mega-item-text small {
  font-size: 0.78rem; color: var(--muted);
  line-height: 1.35;
  font-weight: 400;
}

/* ---- Mega featured panel (right column) ---- */
.mega-featured {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.mega-featured::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(255, 208, 32, 0.25), transparent 70%);
  pointer-events: none;
}
.mega-featured-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem;
  position: relative;
}
.mega-featured h5 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
  position: relative;
}
.mega-featured p {
  font-size: 0.85rem;
  color: rgba(232, 238, 246, 0.85);
  margin: 0 0 1.25rem;
  line-height: 1.5;
  position: relative;
}
.mega-featured .btn {
  align-self: flex-start;
  padding: 0.6rem 1.1rem;
  font-size: 0.82rem;
  position: relative;
}

/* ---- Mega panel bottom strip (sometimes used) ---- */
.mega-foot {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.mega-foot a { color: var(--blue); font-weight: 600; }
.mega-foot a:hover { color: var(--blue-dark); }

/* ---- Responsive: mobile mega menu ---- */
@media (max-width: 980px) {
  .nav-menu { display: none; }
  .mega-panel { display: none; }
}

/* ---- Mobile menu — nested accordion structure ---- */
.mobile-menu ul.mobile-mega { list-style: none; padding: 0; margin: 0; }
.mobile-menu .mobile-nav-item { border-bottom: 1px solid var(--rule); padding: 0; }
.mobile-menu .mobile-nav-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 0;
  padding: 1.1rem 0;
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-dark);
  letter-spacing: -0.01em;
  cursor: pointer;
}
.mobile-menu .mobile-nav-link .chev {
  width: 14px; height: 14px;
  transition: transform 0.3s var(--ease);
}
.mobile-menu .mobile-nav-item.open .mobile-nav-link .chev { transform: rotate(180deg); }

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.mobile-menu .mobile-nav-item.open .mobile-submenu { max-height: 800px; }

.mobile-submenu-inner { padding: 0 0 1rem; }
.mobile-submenu-group { margin-bottom: 1rem; }
.mobile-submenu-group h5 {
  font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-text);
  margin: 0 0 0.5rem;
  font-weight: 700;
}
.mobile-menu .mobile-submenu ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu .mobile-submenu li { padding: 0; border: 0; }
.mobile-menu .mobile-submenu a {
  display: block;
  padding: 0.55rem 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 8px;
  letter-spacing: 0;
  transition: background 0.2s;
}
.mobile-menu .mobile-submenu a:hover { background: var(--bg-soft); color: var(--blue); }


/* ============================================================
 * PAGE HEROES — inner pages (about, contact, service pages)
 * ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #F5F9FD 0%, #FFFFFF 100%);
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle at center, rgba(74, 180, 69, 0.08), transparent 60%);
  pointer-events: none;
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
.page-hero-eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--gold);
}
.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.page-hero p.lead {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  max-width: 70ch;
  margin: 0 0 2rem;
}
.page-hero-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.5rem;
}
.page-hero-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-dark);
}
.page-hero-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { color: var(--rule); }
.breadcrumb .current { color: var(--blue-dark); font-weight: 600; }


/* ============================================================
 * CONTACT FORM
 * ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 880px) { .form-grid { grid-template-columns: 1fr; } }

.lead-form {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.lead-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.lead-form > p { font-size: 0.92rem; color: var(--muted); margin: 0 0 1.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 0.375rem; }
.form-field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--blue-dark);
}
.form-field label .req { color: var(--green); margin-left: 2px; }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--rule);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(4, 85, 164, 0.12);
}
.form-field textarea { resize: vertical; min-height: 120px; }

.form-consent {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-soft);
  border-radius: 10px;
  margin: 1rem 0 1.5rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  flex-shrink: 0;
}

.form-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.form-submit-row .meta { font-size: 0.78rem; color: var(--muted); }

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  padding: 1.5rem 1.5rem;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.3s;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.contact-card-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.contact-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--blue-dark);
}
.contact-card p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.contact-card a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
.contact-card a:hover { color: var(--blue-dark); }


/* ============================================================
 * SERVICE PAGE PATTERNS
 * ============================================================ */
.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) { .split-feature { grid-template-columns: 1fr; } }
.split-feature h2 { margin-bottom: 1.25rem; }

.feature-bullets {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.feature-bullets li {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.feature-bullets li::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 6L5 9L10 3' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 580px) { .spec-grid { grid-template-columns: 1fr; } }
.spec-item {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
}
.spec-item .label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.spec-item .value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--blue-dark);
}

/* Use-case cards */
.usecases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (max-width: 920px) { .usecases { grid-template-columns: 1fr; } }
.usecase {
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
}
.usecase-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--blue-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.usecase h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--blue-dark);
}
.usecase p { font-size: 0.92rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* Related products */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 720px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transition: all 0.3s;
}
.related-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.related-card-name {
  font-weight: 700;
  color: var(--blue-dark);
  font-size: 0.95rem;
}
.related-card-arrow {
  color: var(--blue);
  transition: transform 0.3s;
}
.related-card:hover .related-card-arrow { transform: translateX(4px); color: var(--green); }
