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

  :root {
    --bg: #fafaf8;
    --bg2: #f4f3ef;
    --white: #ffffff;
    --ink: #1a1a18;
    --ink2: #3d3d3a;
    --muted: #7a7a75;
    --accent: #1d5c3a;
    --accent-light: #e8f0eb;
    --accent2: #c8973a;
    --border: #e2e0d8;
    --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
    --shadow-hover: 0 4px 8px rgba(0,0,0,0.08), 0 12px 32px rgba(0,0,0,0.08);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px;
  }

  /* ---- Nav ---- */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 3rem;
    height: 68px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(250,250,248,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  nav ul { display: flex; gap: 2.5rem; list-style: none; align-items: center; }

  nav a {
    color: var(--ink2);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
  }

  nav a:hover { color: var(--accent); }

  .nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 0.55rem 1.3rem;
    border-radius: 6px;
    font-weight: 600 !important;
  }

  .nav-cta:hover { background: #174d30 !important; color: #fff !important; }

  /* ---- Hero ---- */
  .hero {
    padding: 10rem 3rem 7rem;
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
  }

  .eyebrow-line {
    display: inline-block;
    width: 28px;
    height: 1.5px;
    background: var(--accent);
  }

  h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.6rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 1.5rem;
  }

  h1 em { font-style: italic; color: var(--accent); }

  .hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 480px;
  }

  .hero-actions { display: flex; gap: 1rem; align-items: center; }

  .btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 0.85rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: inline-block;
  }

  .btn-primary:hover {
    background: #174d30;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(29,92,58,0.25);
  }

  .btn-ghost {
    color: var(--ink2);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
  }

  .btn-ghost:hover { color: var(--accent); }

  /* Trust card */
  .hero-trust {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
  }

  .trust-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.25rem;
  }

  .trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-item:last-child { border-bottom: none; padding-bottom: 0; }
  .trust-item:first-of-type { padding-top: 0; }

  .trust-icon {
    width: 36px; height: 36px;
    background: var(--accent-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .trust-title { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.2rem; }
  .trust-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

  /* Live indicator */
  .live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

  .live-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
  }

  /* ---- Stats bar ---- */
  .stats-bar {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .stats-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    display: flex;
  }

  .stat {
    flex: 1;
    padding: 0 2.5rem;
    border-right: 1px solid var(--border);
  }

  .stat:first-child { padding-left: 0; }
  .stat:last-child { border-right: none; }

  .stat-num {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  .stat-num span { color: var(--accent); }
  .stat-label { font-size: 0.825rem; color: var(--muted); }

  /* ---- Sections ---- */
  section { padding: 6rem 3rem; }
  .container { max-width: 1140px; margin: 0 auto; }

  .section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3.5rem;
  }

  .section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1.5px;
    background: var(--accent);
  }

  h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--ink);
  }

  .section-sub {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.75;
    font-weight: 300;
    max-width: 360px;
    margin-top: 0.5rem;
  }

  /* ---- Process ---- */
  .process-bg {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .process-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 5rem 3rem;
  }

  .process-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }

  .process-label::before, .process-label::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1.5px;
    background: var(--accent);
  }

  .process-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 3.5rem;
  }

  .process-steps {
    display: grid;
    grid-template-columns: 1fr 80px 1fr 80px 1fr;
    align-items: start;
  }

  .process-connector {
    display: flex;
    align-items: center;
    padding-top: 1.5rem;
  }

  .process-line {
    width: 100%;
    height: 1px;
    background: var(--border);
    position: relative;
    overflow: hidden;
  }

  .process-line-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0%;
    background: var(--accent);
    transition: width 0.9s ease 0.5s;
  }

  .process-line-fill.animate { width: 100%; }

  .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

  .process-step.visible { opacity: 1; transform: translateY(0); }
  .process-step:nth-child(1) { transition-delay: 0s; }
  .process-step:nth-child(3) { transition-delay: 0.18s; }
  .process-step:nth-child(5) { transition-delay: 0.36s; }

  .step-circle {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--accent-light);
    border: 1.5px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
  }

  .step-title {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }

  .step-desc {
    font-size: 0.825rem;
    color: var(--muted);
    line-height: 1.65;
    max-width: 210px;
  }

  .step-badge {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.22rem 0.65rem;
    background: var(--accent-light);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.02em;
  }

  /* ---- Services grid ---- */
  .services-bg { background: var(--bg2); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
  }

  .service-card {
    background: var(--white);
    padding: 2rem;
    transition: background 0.2s;
  }

  .service-card:hover { background: var(--accent-light); }

  .service-num {
    font-family: 'Fraunces', serif;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.5;
  }

  .service-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--ink);
    line-height: 1.3;
  }

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

  /* ---- Cases ---- */
  .cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .case-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
  }

  .case-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
  }

  .case-sector {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent2);
    margin-bottom: 1rem;
  }

  .case-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--ink);
    line-height: 1.35;
  }

  .case-card p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.5rem;
  }

  .case-result {
    padding: 0.75rem 1rem;
    background: var(--accent-light);
    border-radius: 6px;
    font-size: 0.825rem;
    color: var(--accent);
    font-weight: 600;
  }

  /* ---- Dark section ---- */
  .dark-bg { background: var(--ink); }

  .dark-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .dark-bg .section-eyebrow { color: var(--accent2); }
  .dark-bg .section-eyebrow::before { background: var(--accent2); }
  .dark-bg h2 { color: #fff; margin-bottom: 1.5rem; }

  .dark-text p {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.2rem;
  }

  .dark-text p strong { color: rgba(255,255,255,0.8); font-weight: 500; }

  .dark-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
  }

  .dark-stat {
    background: rgba(255,255,255,0.04);
    padding: 1.75rem;
    transition: background 0.2s;
  }

  .dark-stat:hover { background: rgba(255,255,255,0.07); }

  .dark-stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 0.4rem;
  }

  .dark-stat-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    line-height: 1.35;
  }

  /* ---- FAQ ---- */
  .faq-list { display: flex; flex-direction: column; gap: 0; max-width: 720px; }

  .faq-item {
    border-bottom: 1px solid var(--border);
  }

  .faq-item:first-child { border-top: 1px solid var(--border); }

  .faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    transition: color 0.2s;
  }

  .faq-q:hover { color: var(--accent); }

  .faq-icon {
    width: 20px; height: 20px;
    flex-shrink: 0;
    position: relative;
    color: var(--accent);
  }

  .faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .faq-icon::before { width: 12px; height: 1.5px; top: 9px; left: 4px; }
  .faq-icon::after  { width: 1.5px; height: 12px; top: 4px; left: 9px; }

  .faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
  }

  .faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.25rem; }

  .faq-a p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
  }

  .faq-a p strong { color: var(--ink2); font-weight: 500; }

  /* ---- CTA band ---- */
  .cta-band {
    background: var(--accent);
    padding: 5rem 3rem;
    text-align: center;
  }

  .cta-band h2 {
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
  }

  .cta-band p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 2rem;
  }

  .btn-white {
    background: #fff;
    color: var(--accent);
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.2s;
  }

  .btn-white:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
  }

  /* ---- Footer ---- */
  footer {
    background: var(--ink);
    color: rgba(255,255,255,0.35);
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.825rem;
  }

  .footer-logo {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
  }

  .footer-logo span { color: #4fa86e; }

  /* ---- Fade-in ---- */
  .fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-in.visible { opacity: 1; transform: translateY(0); }


  /* ---- Mobile nav ---- */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 200;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: rgba(250,250,248,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    z-index: 99;
    flex-direction: column;
    gap: 0.25rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: var(--ink2);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
  }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a:hover { color: var(--accent); }
  .mobile-menu .nav-cta {
    margin-top: 0.5rem;
    background: var(--accent);
    color: #fff !important;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    border-bottom: none;
  }

  /* ---- Responsive ---- */
  @media (max-width: 900px) {
    nav { padding: 0 1.5rem; }
    nav ul { display: none; }
    .hamburger { display: flex; }
    .hero { grid-template-columns: 1fr; gap: 3rem; padding: 8rem 1.5rem 4rem; }
    .hero-trust { display: none; }
    .stats-inner { flex-wrap: wrap; gap: 2rem; padding: 2rem 1.5rem; }
    .stat { border-right: none; padding: 0; flex: none; width: 45%; }
    section { padding: 4rem 1.5rem; }
    .section-header { flex-direction: column; gap: 1rem; }
    .section-sub { max-width: 100%; }
    .services-grid { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: 1fr; }
    .dark-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    footer { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1.5rem; }
    .process-steps { grid-template-columns: 1fr; gap: 2.5rem; }
    .process-connector { display: none; }
    .process-inner { padding: 3.5rem 1.5rem; }
    .process-step { transition-delay: 0s !important; }
    .cta-band { padding: 4rem 1.5rem; }
  }
