 /* ─── TOKENS ─────────────────────────────────────────── */
  :root {
    --blue-50:  #EFF4FF;
    --blue-100: #DBEAFE;
    --blue-400: #60A5FA;
    --blue-500: #3B82F6;
    --blue-600: #2563EB;
    --blue-700: #1D4ED8;
    --blue-900: #1E3A8A;

    --purple-50:  #F5F3FF;
    --purple-100: #EDE9FE;
    --purple-400: #A78BFA;
    --purple-500: #8B5CF6;
    --purple-600: #7C3AED;
    --purple-900: #2E1065;

    --teal-400: #2DD4BF;
    --teal-500: #14B8A6;

    --amber-400: #FBBF24;
    --amber-500: #F59E0B;

    --slate-50:  #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-400: #94A3B8;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1E293B;
    --slate-900: #0F172A;

    --white: #FFFFFF;

    --font-display: Georgia, 'Times New Roman', serif;
    --font-body:    system-ui, -apple-system, 'Segoe UI', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --shadow-sm: 0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
    --shadow-md: 0 4px 16px rgba(15,23,42,.08), 0 2px 6px rgba(15,23,42,.05);
    --shadow-lg: 0 12px 40px rgba(15,23,42,.12), 0 4px 12px rgba(15,23,42,.06);
  }

  /* ─── RESET ──────────────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }

  /* ─── SKIP LINK ──────────────────────────────────────── */
  .skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--blue-600);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-size: .9375rem;
    font-weight: 600;
    z-index: 999;
    text-decoration: none;
    transition: top .15s;
  }
  .skip-link:focus { top: 0; }

  /* ─── FOCUS STYLES ───────────────────────────────────── */
  :focus-visible {
    outline: 3px solid var(--blue-500);
    outline-offset: 3px;
    border-radius: 4px;
  }
  /* Remove default outline when :focus-visible is supported */
  :focus:not(:focus-visible) { outline: none; }

  /* ─── REDUCED MOTION ─────────────────────────────────── */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: .01ms !important;
      transition-duration: .01ms !important;
    }
    html { scroll-behavior: auto; }
    .fade-up { opacity: 1; transform: none; }
  }

  /* ─── IMAGE PLACEHOLDERS ─────────────────────────────── */
  /* These are replaced by real images — see HTML comments  */
  .img-placeholder {
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--purple-900) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.4);
    font-size: .8125rem;
    font-weight: 500;
    text-align: center;
    padding: 16px;
    border-radius: var(--radius-md);
  }
  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .18;
    z-index: 0;
  }

  /* ─── LAYOUT HELPERS ─────────────────────────────────── */
  .container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .section { padding: 88px 0; }
  .section--sm { padding: 64px 0; }

  /* ─── TYPOGRAPHY ─────────────────────────────────────── */
  .display {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.15;
    color: var(--slate-900);
    letter-spacing: -.01em;
  }
  .display em { font-style: italic; color: var(--blue-600); }

  .h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    line-height: 1.2;
    color: var(--slate-900);
    letter-spacing: -.01em;
  }
  .h2 em { font-style: italic; color: var(--purple-600); }

  .lead {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--slate-600);
    font-weight: 300;
  }

  .eyebrow {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--blue-600);
    margin-bottom: 12px;
    display: block;
  }

  /* ─── BUTTONS ────────────────────────────────────────── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: .9375rem;
    font-weight: 500;
    border-radius: 100px;
    padding: 13px 28px;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    border: none;
    text-decoration: none;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn:active { transform: translateY(0); }

  .btn-primary {
    background: var(--blue-600);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37,99,235,.35);
  }
  .btn-primary:hover {
    background: var(--blue-700);
    box-shadow: 0 6px 20px rgba(37,99,235,.45);
  }

  .btn-outline {
    background: transparent;
    color: var(--blue-600);
    border: 1.5px solid var(--blue-200, #BFDBFE);
    box-shadow: none;
  }
  .btn-outline:hover {
    background: var(--blue-50);
    border-color: var(--blue-400);
  }

  .btn-ghost {
    background: rgba(255,255,255,.12);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.3);
    backdrop-filter: blur(8px);
  }
  .btn-ghost:hover {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.5);
  }

  /* ─── NAV ────────────────────────────────────────────── */
  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--slate-200);
    padding: 16px 0;
    transition: box-shadow .2s;
  }
  .nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .nav__logo-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
  }
  .nav__logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }
  .nav__logo-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--slate-900);
    line-height: 1.1;
    letter-spacing: -0.01em;
  }
  .nav__logo-tagline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate-500);
    line-height: 1.2;
  }
  .nav__cta { font-size: .875rem; padding: 10px 22px; }

  /* ─── HERO ───────────────────────────────────────────── */
  .hero {
    padding: 96px 0 80px;
    background: linear-gradient(160deg, var(--blue-900) 0%, var(--purple-900) 55%, #1a1040 100%);
    position: relative;
    overflow: hidden;
  }

  /* Decorative mesh blobs */
  .hero::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96,165,250,.18) 0%, transparent 70%);
    top: -200px; right: -100px;
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(167,139,250,.15) 0%, transparent 70%);
    bottom: -100px; left: 10%;
    pointer-events: none;
  }

  .hero__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
  }

  .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: .8125rem;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
  }
  .hero__badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--teal-400);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .6; transform: scale(.8); }
  }

  .hero .display {
    color: var(--white);
    margin-bottom: 20px;
  }
  .hero .display em { color: var(--teal-400); }

  .hero .lead {
    color: rgba(255,255,255,.7);
    max-width: 560px;
    margin-bottom: 36px;
  }

  .hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

  /* ─── PROBLEM ────────────────────────────────────────── */
  .problem {
    background: var(--slate-50);
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
  }
  .problem__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .problem__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  .stat-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s, transform .2s;
  }
  .stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
  .stat-card__number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--blue-600);
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-card__label {
    font-size: .8125rem;
    color: var(--slate-600);
    line-height: 1.4;
  }

  .problem__visual {
    position: relative;
  }
  .profile-mock {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    border: 1px solid var(--slate-200);
  }
  .profile-mock__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
  }
  .profile-mock__avatar {
    width: 48px; height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--blue-400), var(--purple-500));
    flex-shrink: 0;
  }
  .profile-mock__name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--slate-900);
    margin-bottom: 2px;
  }
  .profile-mock__cat {
    font-size: .8125rem;
    color: var(--slate-600);
  }
  .profile-mock__field {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--slate-100);
    font-size: .875rem;
  }
  .profile-mock__field:last-child { border-bottom: none; }
  .field-label { color: var(--slate-600); width: 90px; flex-shrink: 0; }
  .field-value { color: var(--slate-700); flex: 1; }
  .field-status {
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .65rem;
    font-weight: 700;
    flex-shrink: 0;
  }
  .field-status.ok  { background: #DCFCE7; color: #15803D; }
  .field-status.warn { background: #FEF3C7; color: #B45309; }
  .field-status.bad { background: #FEE2E2; color: #B91C1C; }

  /* ─── HONEST PITCH ───────────────────────────────────── */
  .honest {
    background: var(--white);
  }
  .honest__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }
  .honest__quote {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-style: italic;
    color: var(--slate-700);
    line-height: 1.5;
    margin: 28px 0;
    padding: 28px 36px;
    border-left: 4px solid var(--purple-400);
    text-align: left;
    background: var(--purple-50);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    position: relative;
  }
  .honest__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 28px 0;
    text-align: left;
  }
  .honest__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .9375rem;
    color: var(--slate-600);
  }
  .honest__list li::before {
    content: '→';
    color: var(--blue-500);
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .honest__closer {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--slate-800);
    margin-top: 28px;
  }
  .honest__closer em { font-style: italic; color: var(--blue-600); }

  /* ─── SERVICES ───────────────────────────────────────── */
  .services {
    background: linear-gradient(175deg, var(--blue-50) 0%, var(--purple-50) 100%);
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
  }
  .services__header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
  }
  .services__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
  }
  .service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-md);
    border: 1.5px solid transparent;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
  }
  .service-card--blue::before  { background: linear-gradient(90deg, var(--blue-500), var(--blue-400)); }
  .service-card--purple::before { background: linear-gradient(90deg, var(--purple-500), var(--purple-400)); }

  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  .service-card--blue:hover  { border-color: var(--blue-200,  #BFDBFE); }
  .service-card--purple:hover { border-color: var(--purple-200, #DDD6FE); }

  .service-card__icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .service-card--blue   .service-card__icon { background: var(--blue-50); }
  .service-card--purple .service-card__icon { background: var(--purple-50); }

  .service-card__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--slate-900);
    margin-bottom: 12px;
  }
  .service-card__body {
    font-size: .9375rem;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .service-card__tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 4px;
  }
  .service-card--blue   .service-card__tag { background: var(--blue-50);   color: var(--blue-700); }
  .service-card--purple .service-card__tag { background: var(--purple-50); color: var(--purple-600); }

  .service-card__best {
    font-size: .8125rem;
    color: var(--slate-500);
    margin-top: 6px;
  }

  .services__note {
    text-align: center;
    margin-top: 28px;
    font-size: .9375rem;
    color: var(--slate-500);
  }
  .services__note a {
    color: var(--blue-600);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  /* ─── WHY US ─────────────────────────────────────────── */
  .why {
    background: var(--white);
  }
  .why__header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
  }
  .why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .why-item {
    padding: 28px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-200);
    background: var(--slate-50);
    transition: box-shadow .2s, transform .2s;
  }
  .why-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
  .why-item__icon {
    font-size: 1.6rem;
    margin-bottom: 14px;
    display: block;
  }
  .why-item__title {
    font-weight: 600;
    font-size: .9375rem;
    color: var(--slate-900);
    margin-bottom: 8px;
  }
  .why-item__body {
    font-size: .875rem;
    color: var(--slate-600);
    line-height: 1.65;
  }

  /* ─── CONTACT ────────────────────────────────────────── */
  .contact {
    background: linear-gradient(160deg, var(--blue-900) 0%, var(--purple-900) 100%);
    position: relative;
    overflow: hidden;
  }
  .contact::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96,165,250,.12) 0%, transparent 65%);
    top: -150px; right: -100px;
    pointer-events: none;
  }

  .contact__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
  }
  .contact__left { padding-top: 8px; }
  .contact__left .h2 { color: var(--white); margin-bottom: 16px; }
  .contact__left .h2 em { color: var(--teal-400); }
  .contact__left .lead { color: rgba(255,255,255,.65); margin-bottom: 32px; }

  .contact__detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.8);
    font-size: .9375rem;
    margin-bottom: 14px;
  }
  .contact__detail-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    font-size: .875rem;
    flex-shrink: 0;
  }
  .contact__detail a {
    color: var(--teal-400);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .contact__promise {
    margin-top: 28px;
    padding: 16px 20px;
    background: rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,.12);
    font-size: .875rem;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
  }

  /* Contact form */
  .form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
  }
  .form-card__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--slate-900);
    margin-bottom: 6px;
  }
  .form-card__sub {
    font-size: .875rem;
    color: var(--slate-500);
    margin-bottom: 24px;
  }
  .form-group {
    margin-bottom: 16px;
  }
  .form-group label {
    display: block;
    font-size: .8125rem;
    font-weight: 500;
    color: var(--slate-700);
    margin-bottom: 6px;
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: .9375rem;
    color: var(--slate-800);
    background: var(--slate-50);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    outline: none;
    transition: border-color .15s, box-shadow .15s, background .15s;
    resize: vertical;
  }
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--blue-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(59,130,246,.12);
  }
  .form-group textarea { min-height: 110px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  .form-submit {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    margin-top: 8px;
    justify-content: center;
  }

  .form-success {
    display: none;
    text-align: center;
    padding: 32px 0;
  }
  .form-success__icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }
  .form-success__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--slate-900);
    margin-bottom: 8px;
  }
  .form-success__body {
    font-size: .9375rem;
    color: var(--slate-600);
  }
  .form-error {
  color: #910a0a; font-size: 0.875rem; margin-top: 4px; 
  }

  /* ─── FOOTER ─────────────────────────────────────────── */
  .footer {
    background: var(--slate-900);
    padding: 28px 0;
  }
  .footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer__logo {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1rem;
    opacity: .9;
  }
  .footer__tagline {
    font-size: .8125rem;
    color: var(--slate-400);
  }
  .footer__copy {
    font-size: .8125rem;
    color: var(--slate-500);
  }

  /* ─── SCREEN READER ONLY ─────────────────────────────── */
  .sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }

  /* ─── ANIMATIONS ─────────────────────────────────────── */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .fade-up:nth-child(1) { transition-delay: 0s; }
  .fade-up:nth-child(2) { transition-delay: .08s; }
  .fade-up:nth-child(3) { transition-delay: .16s; }

  /* ─── RESPONSIVE ─────────────────────────────────────── */
  @media (max-width: 768px) {
    .problem__grid,
    .services__cards,
    .contact__inner { grid-template-columns: 1fr; gap: 40px; }
    .why__grid { grid-template-columns: 1fr; }
    .form-row  { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
    .nav__cta { display: none; }
    .problem__stats { grid-template-columns: 1fr 1fr; }
  }
