    /* ── TOKENS ──────────────────────────────────────── */
    :root {
      --accent:     #ff7e12;
      --accent2:    #aeaeae;
      --transition: 0.3s ease;
    }
    [data-theme="dark"] {
      --bg:       #111111;
      --bg2:      #181818;
      --bg3:      #222222;
      --border:   rgba(255,255,255,.08);
      --text:     #efefef;
      --text2:    #888888;
      --card-bg:  #161616;
      --nav-bg:   rgba(17,17,17,.92);
    }
    [data-theme="light"] {
      --bg:       #fafafa;
      --bg2:      #ffffff;
      --bg3:      #f0f0f0;
      --border:   rgba(0,0,0,.08);
      --text:     #111111;
      --text2:    #666666;
      --card-bg:  #ffffff;
      --nav-bg:   rgba(250,250,250,.92);
    }

    /* ── RESET ───────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      line-height: 1.65;
      font-weight: 400;
      transition: background var(--transition), color var(--transition);
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }

    /* ── UTILITY ─────────────────────────────────────── */
    .label {
      font-size: .7rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--text2);
      font-weight: 500;
    }
    .section-inner { max-width: 1080px; margin: 0 auto; }
    section { padding: 96px 1.5rem; }

    /* ── NAV ─────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: var(--nav-bg);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      transition: background var(--transition);
    }
    .nav-inner {
      max-width: 1080px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 1.5rem; height: 60px;
    }
    .nav-logo {
      font-size: 1rem; font-weight: 600; letter-spacing: -.01em;
    }
    .nav-logo span { color: var(--accent); }
    .nav-links {
      display: flex; align-items: center; gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      font-size: .8rem; color: var(--text2);
      transition: color .2s; font-weight: 400;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-right { display: flex; align-items: center; gap: 1rem; }

    /* theme toggle */
    .theme-toggle {
      width: 44px; height: 24px;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 12px;
      cursor: pointer; position: relative;
      transition: background var(--transition);
      flex-shrink: 0;
    }
    .theme-toggle::after {
      content: '';
      position: absolute; top: 3px; left: 3px;
      width: 16px; height: 16px;
      background: var(--accent);
      border-radius: 50%;
      transition: transform var(--transition);
    }
    [data-theme="light"] .theme-toggle::after {
      transform: translateX(20px);
      background: var(--accent2);
    }
    .toggle-label { font-size: .7rem; color: var(--text2); }

    .btn-cta {
      background: var(--accent);
      color: #fff !important;
      font-size: 1rem; font-weight: 500;
      padding: .55rem 1.25rem;
      border: none; border-radius: 4px;
      cursor: pointer;
      transition: opacity .2s;
      display: inline-block;
    }
    .btn-cta:hover { opacity: .85; }

    .btn-outline {
      background: transparent; color: var(--text);
      font-size: .9rem; font-weight: 500;
      padding: .55rem 1.25rem;
      border: 1px solid var(--border); border-radius: 4px;
      cursor: pointer;
      transition: border-color .2s;
      display: inline-block;
    }
    .btn-outline:hover { border-color: var(--text2); }

    /* hamburger */
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 4px;
    }
    .hamburger span {
      display: block; width: 20px; height: 1.5px;
      background: var(--text); border-radius: 2px;
      transition: transform .3s, opacity .3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed; top: 60px; left: 0; right: 0;
      background: var(--nav-bg);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      padding: 1.5rem;
      flex-direction: column; gap: 1.2rem;
      z-index: 99;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-size: 1rem; color: var(--text2); }

    /* ── HERO ────────────────────────────────────────── */
    .hero {
      min-height: 65vh;
      display: flex; align-items: center;
      padding: 75px 1.5rem 1rem;
    }
    .hero-inner { 
      max-width: 1080px;
      margin: 0 auto;
      width: 100%;
      position: relative;
      top: 2rem;
    }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: .5rem;
      margin-bottom: 2rem;
    }

    .hero h1 {
      font-size: clamp(2.6rem, 6vw, 5rem);
      font-weight: 300; letter-spacing: -.03em;
      line-height: 1.08; margin-bottom: 1.5rem;
      color: var(--text);
    }
    .hero h1 strong { font-weight: 600; }
    .hero h1 .accent { color: var(--accent); font-weight: 600; }
    .hero-sub {
      /*max-width: 460px;*/ color: var(--text2);
      font-size: 1rem; line-height: 1.8; margin-bottom: 0rem;
    }

    .hero-ul {
      /*max-width: 460px;*/ color: var(--text2);
      font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; padding-left: 1rem;;
    }


    .hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 4rem; }
    .hero-stats {
      display: flex; gap: 3rem; flex-wrap: wrap;
      padding-top: 3rem;
      border-top: 1px solid var(--border);
    }
    .stat-val {
      font-size: 1.8rem; font-weight: 300; letter-spacing: -.03em;
      color: var(--text); line-height: 1;
    }
    .stat-val strong { color: var(--accent); font-weight: 500; }
    .stat-desc { font-size: .7rem; color: var(--text2); margin-top: .3rem; letter-spacing: .06em; text-transform: uppercase; }

    /* ── SERVICES ────────────────────────────────────── */
    #services { background: var(--bg2); }
    .section-header { margin-bottom: 2rem; }
    .section-header h2 {
      font-size: clamp(1.7rem, 3.5vw, 2.6rem);
      font-weight: 300; letter-spacing: -.03em;
      margin-top: .6rem; line-height: 1.15;
    }
    .section-header h2 strong { font-weight: 600; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 8px; overflow: hidden;
    }
    .service-card {
      background: var(--card-bg);
      padding: 2rem 2rem 2.2rem;
      transition: background var(--transition);
    }
    .service-card:hover { background: var(--bg3); }
    .service-icon {
      width: 20px; height: 20px;
      color: var(--accent); margin-bottom: 1.2rem;
    }
    .service-card h3 {
      font-size: .95rem; font-weight: 600;
      margin-bottom: .5rem; letter-spacing: -.01em;
    }
    .service-card p { color: var(--text2); font-size: .82rem; line-height: 1.75; }
    .service-tag {
      display: inline-block; margin-top: 1.2rem;
      font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
      color: var(--accent2); border: 1px solid var(--border);
      padding: .2rem .6rem; border-radius: 3px;
    }

    /* ── PROCESS ─────────────────────────────────────── */
    #process { background: var(--bg); }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 2.5rem;
      counter-reset: step;
    }
    .step { border-top: 1px solid var(--border); padding-top: 1.2rem; }
    .step-num {
      font-size: .7rem; letter-spacing: .12em;
      color: var(--accent); text-transform: uppercase; font-weight: 500;
      margin-bottom: .8rem;
    }

    .process-steps p .accent { color: var(--accent); }

    
    .step h3 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }
    .step p { color: var(--text2); font-size: .92rem; line-height: 1.75; }

    /* ── TESTIMONIALS ────────────────────────────────── */
    #testimonials { background: var(--bg2); }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
      gap: 1.5rem;
    }
    .testimonial {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 8px; padding: 1.75rem;
    }
    .stars { color: var(--accent); font-size: .8rem; margin-bottom: .9rem; letter-spacing: .1em; }
    .testimonial blockquote {
      font-size: .84rem; color: var(--text2);
      line-height: 1.8; margin-bottom: 1.4rem;
      font-style: italic; font-weight: 300;
    }
    .reviewer { display: flex; align-items: center; gap: .75rem; }
    .reviewer-avatar {
      width: 34px; height: 34px; border-radius: 50%;
      background: var(--bg3);
      display: flex; align-items: center; justify-content: center;
      font-size: .72rem; font-weight: 600; color: var(--accent2);
      flex-shrink: 0;
    }
    .reviewer-name { font-size: .84rem; font-weight: 600; }
    .reviewer-role { font-size: .7rem; color: var(--text2); margin-top: .1rem; }
    .testimonial-img {
      width: 100%; aspect-ratio: 1 / 1;
      object-fit: cover; border-radius: 6px;
      background: var(--bg3);
      margin-bottom: 1.25rem;
      display: block;
    }

    /* ── CTA BANNER ──────────────────────────────────── */
    #cta { background: var(--bg); padding: 72px 1.5rem; }
    .cta-box {
      max-width: 1080px; margin: 0 auto;
      border: 1px solid var(--border);
      border-radius: 8px; padding: 4rem 3rem;
      display: flex; align-items: center; justify-content: space-between;
      gap: 2rem; flex-wrap: wrap;
    }
    .cta-box h2 {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 300; letter-spacing: -.025em;
      line-height: 1.2;
    }
    .cta-box h2 strong { font-weight: 600; }
    .cta-box p { color: var(--text2); font-size: 1rem; margin-top: .5rem; max-width: 420px; }
    .cta-actions { display: flex; gap: .75rem; flex-wrap: wrap; flex-shrink: 0; }

    /* ── CONTACT ─────────────────────────────────────── */
    #contact { background: var(--bg2); }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: start;
    }
    .contact-info h3 {
      font-size: 1.1rem; font-weight: 600;
      margin-bottom: .75rem; letter-spacing: -.01em;
    }
    .contact-info p { color: var(--text2); font-size: .84rem; line-height: 1.8; margin-bottom: 2rem; }
    .contact-item {
      display: flex; align-items: center; gap: .75rem;
      margin-bottom: .85rem; font-size: .82rem; color: var(--text2);
    }
    .contact-item svg { color: var(--accent); flex-shrink: 0; }

    form { display: flex; flex-direction: column; gap: .9rem; }
    .input-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
    .field { display: flex; flex-direction: column; gap: .3rem; }
    .field label { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text2); font-weight: 500; }
    .field input, .field textarea, .field select {
      background: var(--bg3);
      border: 1px solid var(--border);
      color: var(--text);
      font-family: 'Inter', sans-serif; font-size: .84rem;
      padding: .7rem .9rem; border-radius: 4px;
      transition: border-color .2s, background var(--transition);
      outline: none; resize: vertical;
    }
    .field input:focus, .field textarea:focus, .field select:focus {
      border-color: var(--accent);
    }
    .field textarea { min-height: 100px; }
    .field select { appearance: none; cursor: pointer; }

    /* ── FOOTER ──────────────────────────────────────── */
    footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 2.5rem 1.5rem;
    }
    .footer-inner {
      max-width: 1080px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-logo { font-size: 1.3rem; font-weight: 600; }
    .footer-logo span { color: var(--accent); }
    .footer-copy { font-size: 0.85rem; color: var(--text2); }
    .footer-links { display: flex; gap: 1.8rem; list-style: none; }
    .footer-links a { font-size: 1rem; color: var(--text2); transition: color .2s; }
    .footer-links a:hover { color: var(--text); }

    /* ── SCROLL ANIMATIONS ───────────────────────────── */
    .fade-up {
      opacity: 0; transform: translateY(18px);
      transition: opacity .5s ease, transform .5s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ──────────────────────────────────── */
    @media (max-width: 900px) {
      .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      .cta-box { flex-direction: column; text-align: left; }
    }
    @media (max-width: 680px) {
      .nav-links, .nav-right .btn-cta, .toggle-label { display: none; }
      .hamburger { display: flex; }
      .theme-toggle { display: flex; }
      .input-row { grid-template-columns: 1fr; }
      .hero-stats { gap: 2rem; }
      .cta-box { padding: 2.5rem 1.5rem; }
    }