

  /* Fonts via <link> */

  :root {
    --navy: #0a1628;
    --navy-mid: #112240;
    --navy-light: #1e3a5f;
    --blue: #1a6fd4;
    --blue-bright: #2e86de;
    --blue-pale: #e8f2fc;
    --orange: #f4722b;
    --orange-light: #fff3ec;
    --font-display: 'Sora', 'Helvetica Neue', system-ui, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    --white: #ffffff;
    --off-white: #f7f8fa;
    --gray-50: #f0f2f5;
    --gray-100: #e2e6ec;
    --gray-300: #b0bac8;
    --gray-500: #6b7a94;
    --gray-700: #3d4d63;
    --text: #0a1628;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: 0.01em;
  }

  /* ─── HERO ─── */
  .hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }
  .hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(26, 111, 212, 0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(26, 111, 212, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
  }
  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 111, 212, 0.15);
    border: 1px solid rgba(26, 111, 212, 0.3);
    color: #7ab8f5;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
  }
  .hero-eyebrow span { width: 6px; height: 6px; background: #7ab8f5; border-radius: 50%; display: block; }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--orange);
    position: relative;
  }
  .hero-sub {
    font-size: 17px;
    color: var(--gray-300);
    line-height: 1.75;
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 480px;
  }
  .hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
  }
  .btn-primary {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-primary:hover { background: #e05e1a; transform: translateY(-2px); }
  .btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }
  .hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  .hero-trust-item {
    display: flex;
    flex-direction: column;
  }
  .hero-trust-num {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .hero-trust-label {
    font-size: 12px;
    color: var(--gray-300);
    margin-top: 3px;
  }
  .hero-trust-divider {
    width: 1px;
    background: rgba(255,255,255,0.1);
    align-self: stretch;
  }

  /* hero drawing card */
  .hero-visual {
    position: relative;
  }
  .drawing-card {
    background: #0f1e38;
    border: 1px solid rgba(26, 111, 212, 0.2);
    border-radius: var(--radius-xl);
    overflow: hidden;
  }
  .drawing-card-bar {
    background: var(--navy-light);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(26,111,212,0.15);
  }
  .drawing-card-title {
    font-size: 12px;
    color: #7ab8f5;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .drawing-card-title svg { width: 13px; height: 13px; }
  .wdots { display: flex; gap: 5px; }
  .wdot { width: 8px; height: 8px; border-radius: 50%; }
  .wdot-r { background: #e05c5c; }
  .wdot-y { background: #f4c842; }
  .wdot-g { background: #4caf7d; }
  .drawing-canvas {
    padding: 20px;
    background: #060e1c;
  }
  .drawing-meta {
    padding: 14px 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(26,111,212,0.12);
  }
  .drawing-tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(26,111,212,0.12);
    color: #7ab8f5;
    border: 1px solid rgba(26,111,212,0.2);
  }
  .drawing-tag.orange {
    background: rgba(244,114,43,0.12);
    color: #f4a06b;
    border-color: rgba(244,114,43,0.2);
  }



  /* ─── LOGOS BAR ─── */
  .logos-bar {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
    padding: 16px 0;
  }
  .std-ref {
    max-width: 1200px;
    margin: 8px auto 0;
    padding: 0 2rem;
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.6;
    text-align: center;
  }
  .std-ref a {
    color: var(--blue);
    text-decoration: none;
  }
  .std-ref a:hover {
    text-decoration: underline;
  }
  .logos-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .logos-label {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }
  .std-badge {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--navy);
    letter-spacing: 0.05em;
  }
  .std-badge span { color: var(--blue); }

  /* ─── SECTION WRAPPER ─── */
  .section {
    padding: 2.5rem 0;
  }
  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  .section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
  }
  .section-heading {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }
  .section-sub {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 540px;
    line-height: 1.7;
  }

  /* ─── SERVICES ─── */
  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.25rem;
    gap: 0.5rem 2rem;
    flex-wrap: wrap;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .svc-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: border-color 0.2s, transform 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
  }
  .svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--blue);
    transform: scaleX(0);
    transition: transform 0.2s;
    transform-origin: left;
  }
  .svc-card:hover { border-color: var(--blue-bright); transform: translateY(-3px); }
  .svc-card:hover::before { transform: scaleX(1); }
  .svc-card.featured {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
  }
  .svc-card.featured::before { background: var(--orange); transform: scaleX(1); }
  .svc-num {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gray-300);
    margin-bottom: 1.25rem;
    font-family: var(--font-display);
  }
  .svc-card.featured .svc-num { color: rgba(255,255,255,0.4); }
  .svc-icon {
    width: 44px;
    height: 44px;
    background: var(--blue-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
  .svc-icon svg { width: 22px; height: 22px; color: var(--blue); }
  .svc-card.featured .svc-icon { background: rgba(26,111,212,0.2); }
  .svc-card.featured .svc-icon svg { color: #7ab8f5; }
  .svc-name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: 0;
  }
  .svc-card.featured .svc-name { color: var(--white); }
  .svc-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }
  .svc-card.featured .svc-desc { color: var(--gray-300); }
  .svc-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .svc-card.featured .svc-link { color: var(--orange); }
  .svc-standards {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
  .svc-std {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(26,111,212,0.08);
    color: var(--blue);
    letter-spacing: 0.05em;
    font-family: var(--font-display);
  }
  .svc-card.featured .svc-std {
    background: rgba(26,111,212,0.25);
    color: #7ab8f5;
  }

  /* ─── WHY US ─── */
  .why-section { background: var(--navy); }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .why-left .section-heading { color: var(--white); }
  .why-left .section-sub { color: var(--gray-300); }
  .why-features {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .why-feature {
    display: flex;
    gap: 16px;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    align-items: flex-start;
  }
  .why-feature:last-child { border-bottom: none; }
  .why-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(26,111,212,0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .why-feature-icon svg { width: 20px; height: 20px; color: #7ab8f5; }
  .why-feature-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
  }
  .why-feature-desc {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.6;
  }
  .why-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .stat-card {
    background: #112240;
    border: 1px solid rgba(26,111,212,0.15);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
  }
  .stat-card.accent {
    background: var(--orange);
    border-color: transparent;
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .stat-num {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
  }
  .stat-card.accent .stat-num { font-size: 38px; }
  .stat-card.accent .btn-stat {
    background: var(--white);
    color: var(--orange);
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.1s;
  }
  .stat-card.accent .btn-stat:hover { transform: translateY(-1px); }

  /* ─── PROCESS ─── */
  .process-section { background: var(--off-white); }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 3rem;
    position: relative;
  }
  .process-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 1px;
    background: var(--gray-100);
    z-index: 0;
  }
  .process-step {
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
  }
  .step-bubble {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.25rem;
    transition: background 0.2s, border-color 0.2s;
  }
  .process-step:hover .step-bubble {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
  }
  .step-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .step-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.65;
  }

  /* ─── SERVICES FULL LIST ─── */
  .full-services { background: var(--white); }
  .full-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    margin-top: 2.5rem;
  }
  .fsvc-card {
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    background: var(--white);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: border-color 0.2s, background 0.2s;
  }
  .fsvc-card:hover { border-color: var(--blue); background: var(--blue-pale); }
  .fsvc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .fsvc-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--gray-50);
    color: var(--gray-500);
  }
  .fsvc-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .fsvc-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.55;
  }

  /* ─── TESTIMONIALS ─── */
  .testimonials { background: var(--gray-50); }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 2.5rem;
  }
  .testi-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
  }
  .testi-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
  }
  .testi-stars svg { width: 14px; height: 14px; color: var(--orange); }
  .testi-quote {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
  }
  .testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .testi-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .testi-name { font-size: 13px; font-weight: 600; color: var(--navy); }
  .testi-role { font-size: 12px; color: var(--gray-500); }

  /* ─── LOCATIONS ─── */
  .locations-section { background: var(--white); }
  .locations-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 2rem;
  }
  .location-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid var(--gray-100);
    border-radius: 100px;
    text-decoration: none;
    color: var(--navy);
    font-size: 14px;
    font-weight: 500;
    transition: border-color 0.2s, background 0.2s;
  }
  .location-pill svg { width: 15px; height: 15px; color: var(--blue); }
  .location-pill:hover { border-color: var(--blue); background: var(--blue-pale); }

  /* ─── BLOG ─── */
  .blog-section { background: var(--off-white); }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 2.5rem;
  }
  .blog-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: border-color 0.2s, transform 0.2s;
  }
  .blog-card:hover { border-color: var(--gray-300); transform: translateY(-2px); }
  .blog-card-img {
    height: 160px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .blog-card-img-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(26,111,212,0.1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(26,111,212,0.1) 1px, transparent 1px);
    background-size: 24px 24px;
  }
  .blog-card-img {
    background-color: var(--navy);
    background-size: cover !important;
    background-position: center !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
    padding: 12px;
  }
  .blog-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.65) 0%, rgba(10,22,40,0.15) 50%, transparent 100%);
    z-index: 0;
    pointer-events: none;
  }
  .blog-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--blue);
    padding: 4px 10px;
    border-radius: 4px;
    position: relative;
    z-index: 2;
  }
  .blog-card-body { padding: 1.25rem; }
  .blog-meta {
    font-size: 11px;
    color: var(--gray-500);
    margin-bottom: 8px;
  }
  .blog-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 8px;
  }
  .blog-excerpt {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
  }

  /* ─── CTA BAND ─── */
  .cta-band {
    background: var(--orange);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
  }
  .cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }
  .cta-text h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0;
    margin-bottom: 8px;
    line-height: 1.15;
  }
  .cta-text p { font-size: 16px; color: rgba(255,255,255,0.8); }
  .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-cta-white {
    background: var(--white);
    color: var(--orange);
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.1s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-cta-white:hover { transform: translateY(-2px); }
  .btn-cta-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--navy);
    padding: 4rem 0 0;
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .footer-brand {
    font-family: 'Space Grotesk', 'Helvetica Neue', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    line-height: 1;
  }
  .footer-brand .dft-mark {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #2e86de;
    transform: skewX(-15deg);
    border-radius: 2px;
    margin-right: 10px;
    flex-shrink: 0;
  }
  .footer-brand .dft-word1 { color: #fff; }
  .footer-brand .dft-word2 { color: #2e86de; margin-left: 9px; }
  .footer-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  .footer-phone {
    font-size: 20px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
    transition: color 0.15s;
  }
  .footer-phone:hover { color: var(--orange); }
  .footer-email {
    font-size: 13px;
    color: var(--gray-500);
    text-decoration: none;
  }
  .footer-col-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-300);
    margin-bottom: 1.25rem;
    font-family: var(--font-display);
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-links a {
    font-size: 13px;
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.15s;
  }
  .footer-links a:hover { color: var(--white); }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .footer-copy { font-size: 12px; color: var(--gray-500); }
  .footer-std-badges { display: flex; gap: 8px; }
  .footer-std-badge {
    font-size: 10px;
    font-weight: 700;
    color: var(--gray-500);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3px 8px;
    border-radius: 4px;
    font-family: var(--font-display);
    letter-spacing: 0.05em;
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-content > * {
    animation: fadeUp 0.6s ease both;
  }
  .hero-eyebrow { animation-delay: 0s; }
  .hero h1 { animation-delay: 0s; }
  .hero-sub { animation-delay: 0.25s; }
  .hero-ctas { animation-delay: 0.35s; }
  .hero-trust { animation-delay: 0.45s; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; gap: 3rem; }
    .why-right { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  }
  @media (max-width: 768px) {
    .topbar { display: none; }
    .nav-links { display: none; }
    .nav-phone { display: none; }
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .hero-eyebrow { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; flex-wrap: wrap; }
    .hero-trust { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .process-grid {
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
    .process-grid::before { display: none; }
    .testi-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; align-items: center; }
    .cta-actions { justify-content: center; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .why-right { grid-template-columns: 1fr 1fr; }
  }

  .mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--orange);
    z-index: 9999;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  }
  .mobile-cta-bar a {
    display: block; text-align: center; padding: 16px;
    color: #fff; font-size: 15px; font-weight: 600; text-decoration: none;
  }
  @media (max-width: 768px) {
    .mobile-cta-bar { display: block; }
    body { padding-bottom: 56px; }
  }


  @media (max-width: 768px) {
    .seo-two-col { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .logos-inner {
      flex-wrap: nowrap;
      overflow-x: auto;
      justify-content: flex-start;
      gap: 0.75rem;
      padding: 0 1rem;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .logos-inner::-webkit-scrollbar { display: none; }
    .logos-label {
      flex-shrink: 0;
      font-size: 11px;
    }
    .std-badge {
      flex-shrink: 0;
      font-size: 11px;
      padding: 4px 10px;
    }
    .logos-bar {
      padding: 12px 0;
    }
  }

  
