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

  :root {
    --accent: #EB5A4A;
    --accent-bright: #FF6A5A;
    --accent-soft: rgba(235, 90, 74, 0.15);
    --accent-glow: rgba(235, 90, 74, 0.4);
    --ink: #ffffff;
    --ink-soft: rgba(255, 255, 255, 0.72);
    --ink-mute: rgba(255, 255, 255, 0.5);
    --glass-bg: rgba(18, 10, 10, 0.45);
    --glass-bg-strong: rgba(18, 10, 10, 0.65);
    --glass-light: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-border-strong: rgba(255, 255, 255, 0.18);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    --font-display: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --header-height: 76px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: #000;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }

  /* ===== FIXED VIDEO BACKGROUND ===== */
  .video-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #000;
  }
  .video-bg video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
  }
  .video-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
  }
  /* mobile: contain video, with black bars */
  @media (max-width: 720px) {
    .video-bg video {
      object-fit: contain;
      object-position: center bottom;
    }
  }

  /* ===== HEADER, real full-width header ===== */
  header.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-height);
    z-index: 100;
    background: rgba(10, 6, 6, 0.55);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
  }
  .header-inner {
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  @media (max-width: 720px) {
    .header-inner { padding: 0 20px; gap: 12px; }
  }
  .brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
  .brand-logo {
    height: 28px;
    width: auto;
    display: block;
  }
  @media (max-width: 720px) {
    .brand-logo { height: 24px; }
  }

  nav.primary {
    display: flex;
    gap: 4px;
    align-items: center;
  }
  nav.primary a {
    padding: 9px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    transition: all 0.2s ease;
  }
  nav.primary a:hover {
    background: var(--glass-light);
    color: var(--ink);
  }
  @media (max-width: 900px) {
    nav.primary { display: none; }
  }

  .header-actions {
    display: flex; align-items: center; gap: 12px;
    flex-shrink: 0;
  }
  .header-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: var(--accent);
    color: #000;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
  }
  .header-cta:hover {
    transform: translateY(-1px);
    background: var(--accent-bright);
  }
  .header-cta svg {
    width: 14px; height: 14px;
  }
  /* hamburger only on mobile */
  .menu-toggle {
    display: none;
    width: 40px; height: 40px;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    color: var(--ink);
  }
  @media (max-width: 900px) {
    .menu-toggle { display: inline-grid; place-items: center; }
  }
  .menu-toggle svg { width: 18px; height: 18px; }

  /* ===== MAIN CONTENT ===== */
  .content {
    position: relative;
    z-index: 2;
  }

  /* ===== HERO, extra padding top for breathing room ===== */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center;
    padding: calc(var(--header-height) + 120px) 24px 100px;
    position: relative;
  }
  @media (max-width: 720px) {
    .hero { padding: calc(var(--header-height) + 60px) 20px 60px; min-height: auto; }
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 16px 6px 6px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 12px;
    color: var(--ink-soft);
    margin-bottom: 32px;
  }
  .hero-eyebrow .eb-ico {
    width: 22px; height: 22px;
    background: var(--accent);
    border-radius: 50%;
    display: grid; place-items: center;
    color: #000; font-weight: 800; font-size: 11px;
  }
  .hero-eyebrow .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34,197,94,0.2);
    animation: pulse 2s ease-in-out infinite;
    margin-left: 4px;
  }
  @keyframes pulse {
    0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.25); }
    50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.05); }
  }

  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(52px, 9vw, 120px);
    line-height: 0.98;
    letter-spacing: -0.045em;
    font-weight: 700;
    margin-bottom: 24px;
    max-width: 1000px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.55);
  }
  .hero h1 .italic { font-style: italic; font-weight: 300; color: var(--accent); }

  .hero p.sub {
    font-size: 18px;
    color: rgba(255,255,255,0.88);
    max-width: 560px;
    margin-bottom: 36px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.55);
  }

  .hero-cta {
    display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 8px 14px 24px;
    background: var(--accent);
    color: #000;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    box-shadow: 0 8px 32px var(--accent-glow);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--accent-glow);
    background: var(--accent-bright);
  }
  .btn-primary .arr {
    width: 30px; height: 30px;
    background: #000;
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--accent);
    transition: transform 0.3s ease;
  }
  .btn-primary .arr svg { width: 14px; height: 14px; }
  .btn-primary:hover .arr { transform: rotate(45deg); }

  .btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 22px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    transition: all 0.25s ease;
  }
  .btn-ghost:hover {
    background: var(--glass-light);
    transform: translateY(-1px);
    border-color: var(--glass-border-strong);
  }

  .scroll-hint {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: var(--ink-mute);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
    animation: bob 2s ease-in-out infinite;
  }
  .scroll-hint::after {
    content: '';
    width: 1px; height: 30px;
    background: linear-gradient(to bottom, var(--ink-mute), transparent);
  }
  @keyframes bob {
    0%,100% { transform: translate(-50%, 0); opacity: 0.6; }
    50% { transform: translate(-50%, 4px); opacity: 1; }
  }
  @media (max-width: 720px) { .scroll-hint { display: none; } }

  /* ===== SECTIONS ===== */
  section.glass-section {
    padding: 60px 24px;
    position: relative;
  }
  @media (max-width: 720px) {
    section.glass-section { padding: 40px 16px; }
  }
  .wrap { max-width: 1100px; margin: 0 auto; }

  .sec-head {
    text-align: center;
    margin-bottom: 48px;
  }
  .sec-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 12px;
    color: var(--ink-soft);
    margin-bottom: 18px;
  }
  .sec-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
  }
  .sec-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.2vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    font-weight: 700;
    margin-bottom: 14px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  }
  .sec-title .italic { font-style: italic; font-weight: 300; color: var(--accent); }
  .sec-sub {
    font-size: 16px;
    color: var(--ink-soft);
    max-width: 540px;
    margin: 0 auto;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  }

  .glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    box-shadow: var(--shadow-glass);
    position: relative;
    overflow: hidden;
  }
  .glass-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 40%);
    pointer-events: none;
  }

  .glass-wrap {
    margin: 60px auto;
    max-width: 1100px;
    padding: 60px 40px;
  }
  @media (max-width: 720px) {
    .glass-wrap { padding: 36px 20px; margin: 40px 12px; }
  }

  /* ===== USP GRID ===== */
  .usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 800px) { .usp-grid { grid-template-columns: 1fr; } }
  .usp {
    padding: 32px 28px;
    transition: transform 0.3s ease;
  }
  .usp:hover { transform: translateY(-4px); }
  .usp-ico {
    width: 56px; height: 56px;
    background: var(--accent-soft);
    border: 1px solid rgba(235, 90, 74, 0.3);
    border-radius: 18px;
    display: grid; place-items: center;
    margin-bottom: 20px;
    position: relative;
    color: var(--accent);
  }
  .usp-ico svg { width: 26px; height: 26px; }
  .usp h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    position: relative;
  }
  .usp p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
    position: relative;
  }

  /* ===== SERVICES GRID ===== */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
  .service {
    padding: 28px 26px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  .service:hover { transform: translateY(-4px); }
  .service-ico {
    width: 48px; height: 48px;
    background: var(--accent-soft);
    border: 1px solid rgba(235, 90, 74, 0.3);
    border-radius: 14px;
    display: grid; place-items: center;
    margin-bottom: 18px;
    position: relative;
    color: var(--accent);
    flex-shrink: 0;
  }
  .service-ico svg { width: 22px; height: 22px; }
  .service h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    position: relative;
  }
  .service > p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 16px;
    position: relative;
  }
  .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    position: relative;
  }
  .service-tag {
    font-size: 11px;
    font-weight: 500;
    padding: 5px 10px;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
  }

  /* ===== STEPS ===== */
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
  .step {
    padding: 36px 28px;
    position: relative;
    transition: transform 0.3s ease;
  }
  .step:hover { transform: translateY(-4px); }
  .step-num {
    font-family: var(--font-display);
    font-size: 72px;
    font-style: italic;
    font-weight: 700;
    color: var(--accent);
    line-height: 0.85;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    position: relative;
  }
  .step h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    position: relative;
  }
  .step p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
    position: relative;
  }

  /* ===== PRICING ===== */
  .plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 880px;
    margin: 0 auto;
  }
  @media (max-width: 800px) { .plans { grid-template-columns: 1fr; max-width: 520px; } }
  .plan {
    padding: 36px 32px;
    display: flex; flex-direction: column;
    position: relative;
  }
  .plan.featured {
    background: rgba(235, 90, 74, 0.18);
    border-color: rgba(235, 90, 74, 0.35);
  }
  .plan-badge {
    align-self: flex-start;
    padding: 5px 12px;
    background: var(--accent);
    color: #000;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
    position: relative;
  }
  .plan-name {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
    position: relative;
  }
  .plan-desc {
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 24px;
    min-height: 42px;
    position: relative;
  }
  .plan-price-block {
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
  }
  .plan-price {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
  }
  .plan-price .per { font-size: 18px; color: var(--ink-mute); font-family: var(--font-sans); }
  .plan-setup {
    font-size: 13px;
    color: var(--ink-soft);
    margin-top: 8px;
  }
  .plan-setup strong { color: var(--ink); font-weight: 600; }
  .plan-time {
    font-size: 13px;
    color: var(--ink-mute);
    margin-top: 6px;
  }
  .plan ul.feat {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
    position: relative;
  }
  .plan ul.feat li {
    padding: 9px 0;
    font-size: 14px;
    display: flex; align-items: center; gap: 10px;
    color: var(--ink-soft);
  }
  .plan ul.feat li svg {
    width: 16px; height: 16px;
    color: var(--accent);
    flex-shrink: 0;
  }
  .plan-cta {
    display: inline-flex; align-items: center; justify-content: space-between;
    padding: 14px 8px 14px 22px;
    background: var(--accent);
    color: #000;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.2s ease;
    position: relative;
  }
  .plan:not(.featured) .plan-cta {
    background: rgba(255,255,255,0.94);
    color: #000;
  }
  .plan-cta:hover { transform: translateY(-2px); }
  .plan-cta .arr {
    width: 28px; height: 28px;
    background: #000;
    color: var(--accent);
    border-radius: 50%;
    display: grid; place-items: center;
    transition: transform 0.3s ease;
  }
  .plan-cta .arr svg { width: 13px; height: 13px; }
  .plan:not(.featured) .plan-cta .arr { background: var(--accent); color: #000; }
  .plan-cta:hover .arr { transform: rotate(45deg); }

  /* ===== FAQ ===== */
  .faq-list { max-width: 700px; margin: 0 auto; }
  .faq-item {
    margin-bottom: 10px;
    border-radius: 18px;
    overflow: hidden;
  }
  .faq-item summary {
    padding: 18px 24px;
    cursor: pointer;
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 15px;
    font-weight: 500;
    gap: 16px;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--glass-light);
    display: grid; place-items: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: var(--ink-soft);
  }
  .faq-icon svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
  .faq-item[open] .faq-icon {
    background: var(--accent);
    color: #000;
  }
  .faq-item[open] .faq-icon svg { transform: rotate(45deg); }
  .faq-item p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.65;
  }

  /* ===== CTA ===== */
  .cta-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 56px 40px;
  }
  @media (max-width: 720px) { .cta-card { padding: 40px 24px; } }
  .cta-card .sec-title { margin-bottom: 16px; }
  .cta-card .sec-sub { margin-bottom: 32px; }
  .cta-row {
    display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
    position: relative;
  }
  .cta-direct {
    margin-top: 28px;
    font-size: 13px;
    color: var(--ink-mute);
    position: relative;
  }
  .cta-direct a {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    display: inline-block;
    margin-top: 4px;
    transition: color 0.2s ease;
  }
  .cta-direct a:hover { color: var(--accent); }

  /* ===== FOOTER ===== */
  footer {
    padding: 32px 24px 28px;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  footer .copy {
    font-size: 12px;
    color: var(--ink-mute);
  }

  /* mobile reveal-spacer: extra scroll room so the fixed video can be
     fully revealed below the last content block */
  .reveal-spacer {
    display: none;
    width: 100%;
    pointer-events: none;
  }
  @media (max-width: 720px) {
    .reveal-spacer { display: block; height: 20vh; }
    footer { padding-bottom: 20px; }
  }

  /* ===== PLAN FOOT NOTE ===== */
  .plan-foot {
    text-align: center;
    max-width: 700px;
    margin: 28px auto 0;
    font-size: 13px;
    color: var(--ink-mute);
    line-height: 1.65;
    position: relative;
  }
  .support-note {
    max-width: 760px;
    margin: 24px auto 0;
    padding: 18px 22px;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.6;
    position: relative;
  }
  .support-note strong {
    display: block;
    color: var(--ink);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
  }

  /* ===== OP AANVRAAG GRID ===== */
  .ondemand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 880px;
    margin: 0 auto;
  }
  @media (max-width: 800px) { .ondemand-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .ondemand-grid { grid-template-columns: 1fr; } }
  .ondemand-item {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: transform 0.25s ease, border-color 0.25s ease;
  }
  .ondemand-item:hover {
    transform: translateY(-2px);
    border-color: var(--glass-border-strong);
  }
  .ondemand-item .label {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    position: relative;
  }
  .ondemand-item .pill-mini {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid rgba(235,90,74,0.3);
    border-radius: 99px;
    flex-shrink: 0;
    position: relative;
  }
  .ondemand-foot {
    text-align: center;
    max-width: 640px;
    margin: 24px auto 0;
    font-size: 13px;
    color: var(--ink-mute);
    line-height: 1.6;
    position: relative;
  }
  .ondemand-foot a {
    color: var(--ink);
    border-bottom: 1px solid var(--accent);
    transition: color 0.2s ease;
  }
  .ondemand-foot a:hover { color: var(--accent); }

  /* ===== ONS WERK SLIDER ===== */
  .work-slider {
    position: relative;
  }
  .work-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 4px 28px;
    margin: 0 -4px;
    scroll-padding-left: 4px;
  }
  .work-track::-webkit-scrollbar { display: none; }
  .work-item {
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 0;
    scroll-snap-align: start;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  @media (max-width: 900px) { .work-item { flex: 0 0 calc((100% - 18px) / 2); } }
  @media (max-width: 600px) { .work-item { flex: 0 0 calc(100% - 32px); } }
  .work-item:hover { transform: translateY(-4px); }
  .work-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: rgba(255,255,255,0.04);
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .work-img.placeholder {
    display: grid;
    place-items: center;
    color: var(--ink-mute);
  }
  .work-img.placeholder svg { width: 36px; height: 36px; opacity: 0.4; }
  .work-body {
    padding: 20px 22px 22px;
    position: relative;
  }
  .work-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
  }
  .work-title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
  }
  .work-desc {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.55;
  }

  /* Slider controls */
  .slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
  }
  .slider-dots {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
  }
  .slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    flex-shrink: 0;
  }
  .slider-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    width: 22px;
    border-radius: 99px;
  }
  .slider-arrows {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    color: var(--ink);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    font-family: inherit;
  }
  .slider-arrow:hover:not(:disabled) {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }
  .slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }
  .slider-arrow svg { width: 18px; height: 18px; stroke-width: 2.5; }
  .slider-hint {
    text-align: center;
    font-size: 12px;
    color: var(--ink-mute);
    margin-top: 12px;
    display: none;
  }
  @media (max-width: 600px) { .slider-hint { display: block; } }
  .slider-hint svg {
    width: 14px;
    height: 14px;
    vertical-align: -2px;
    margin-right: 4px;
    opacity: 0.7;
  }

  /* ===== WIZARD ===== */
  .wizard-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 40px 36px;
    position: relative;
  }
  @media (max-width: 720px) { .wizard-card { padding: 28px 22px 26px; } }

  .wizard-progress {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    position: relative;
  }
  .wizard-bar {
    height: 4px;
    flex: 1;
    background: var(--glass-light);
    border-radius: 99px;
    overflow: hidden;
    position: relative;
  }
  .wizard-bar.active::after,
  .wizard-bar.done::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    border-radius: 99px;
  }

  .wizard-step {
    display: none;
    animation: stepIn 0.4s ease;
  }
  .wizard-step.active { display: block; }
  @keyframes stepIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .wizard-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    position: relative;
  }
  .wizard-q {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.6vw, 34px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 8px;
    position: relative;
  }
  .wizard-q .italic { font-style: italic; font-weight: 300; color: var(--accent); }
  .wizard-help {
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 24px;
    position: relative;
  }

  .pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    position: relative;
  }
  .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: 99px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
  }
  .pill:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--glass-border-strong);
  }
  .pill svg {
    width: 16px; height: 16px;
    stroke-width: 2;
    opacity: 0.7;
  }
  .pill.selected {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }
  .pill.selected svg { opacity: 1; }

  .wizard-input,
  .wizard-textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    transition: border-color 0.2s ease, background 0.2s ease;
    margin-bottom: 14px;
  }
  .wizard-input:focus,
  .wizard-textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.1);
  }
  .wizard-input::placeholder,
  .wizard-textarea::placeholder { color: var(--ink-mute); }
  .wizard-textarea { resize: vertical; min-height: 90px; }
  .wizard-fields { margin-bottom: 24px; position: relative; }

  .wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 8px;
    position: relative;
  }
  .wizard-back {
    background: transparent;
    border: none;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 6px;
    cursor: pointer;
    transition: color 0.2s ease;
  }
  .wizard-back:hover { color: var(--ink); }
  .wizard-back:disabled { opacity: 0; pointer-events: none; }
  .wizard-next {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 13px 26px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .wizard-next:hover { background: var(--accent-bright); transform: translateX(2px); }
  .wizard-next svg { width: 16px; height: 16px; stroke-width: 2.5; }
  .wizard-next:disabled {
    opacity: 0.4;
    pointer-events: none;
  }

  .wizard-done {
    text-align: center;
    padding: 16px 0;
  }
  .wizard-done .done-ico {
    width: 64px; height: 64px;
    background: var(--accent-soft);
    border: 1px solid rgba(235,90,74,0.4);
    border-radius: 50%;
    display: grid; place-items: center;
    margin: 0 auto 18px;
    color: var(--accent);
  }
  .wizard-done .done-ico svg { width: 28px; height: 28px; stroke-width: 2.5; }

  /* ===== FLOATING WHATSAPP ===== */
  .wa-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(0,0,0,0.3);
    z-index: 90;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .wa-float:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5), 0 4px 16px rgba(0,0,0,0.35);
  }
  .wa-float svg { width: 28px; height: 28px; color: #fff; }
  @media (max-width: 720px) {
    .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
    .wa-float svg { width: 26px; height: 26px; }
  }

  /* ===== CONTACT SOCIAL ICONS ===== */
  .social-row {
    display: inline-flex;
    gap: 12px;
    margin-top: 24px;
    position: relative;
  }
  .social-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    display: grid;
    place-items: center;
    color: var(--ink);
    transition: all 0.2s ease;
  }
  .social-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
  }
  .social-btn svg { width: 20px; height: 20px; }

  /* ===== FULLSCREEN MOBILE MENU ===== */
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(10, 6, 6, 0.92);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    display: flex;
    flex-direction: column;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: calc(var(--header-height) - 24px);
  }
  .mobile-menu-close {
    width: 40px; height: 40px;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--ink);
    cursor: pointer;
  }
  .mobile-menu-close svg { width: 18px; height: 18px; }
  .mobile-menu-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    gap: 4px;
    text-align: center;
  }
  .mobile-menu-nav a {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    padding: 14px 20px;
    color: var(--ink);
    transition: color 0.2s ease;
    opacity: 0;
    transform: translateY(20px);
  }
  .mobile-menu.open .mobile-menu-nav a {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .mobile-menu.open .mobile-menu-nav a:nth-child(1) { transition-delay: 0.05s; }
  .mobile-menu.open .mobile-menu-nav a:nth-child(2) { transition-delay: 0.1s; }
  .mobile-menu.open .mobile-menu-nav a:nth-child(3) { transition-delay: 0.15s; }
  .mobile-menu.open .mobile-menu-nav a:nth-child(4) { transition-delay: 0.2s; }
  .mobile-menu.open .mobile-menu-nav a:nth-child(5) { transition-delay: 0.25s; }
  .mobile-menu.open .mobile-menu-nav a:nth-child(6) { transition-delay: 0.3s; }
  .mobile-menu-nav a:hover { color: var(--accent); }
  .mobile-menu-foot {
    padding-bottom: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .mobile-menu-foot .social-row { margin-top: 0; }
  .mobile-menu-cta {
    background: var(--accent);
    color: #fff;
    padding: 14px 32px;
    border-radius: 99px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .mobile-menu-cta svg { width: 16px; height: 16px; stroke-width: 2.5; }
  body.menu-open { overflow: hidden; }

  /* ===== GOOGLE REVIEWS ===== */
  .reviews-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    position: relative;
  }
  .reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 12px;
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    border-radius: 99px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
  }
  .reviews-badge .g-logo {
    width: 20px; height: 20px;
    flex-shrink: 0;
  }
  .reviews-badge .score {
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
  }
  .reviews-badge .stars {
    display: inline-flex;
    gap: 1px;
  }
  .reviews-badge .stars svg {
    width: 14px; height: 14px;
    color: #FBBC04;
    fill: #FBBC04;
  }
  .reviews-badge .meta {
    font-size: 13px;
    color: var(--ink-soft);
  }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  @media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }
  .review {
    padding: 24px 24px 22px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
  }
  .review:hover { transform: translateY(-4px); }
  .review-stars {
    display: inline-flex;
    gap: 2px;
    margin-bottom: 14px;
    position: relative;
  }
  .review-stars svg {
    width: 16px; height: 16px;
    color: #FBBC04;
    fill: #FBBC04;
  }
  .review-text-wrap {
    position: relative;
    margin-bottom: 14px;
    flex: 1;
  }
  .review-text {
    font-size: 14px;
    color: var(--ink);
    line-height: 1.6;
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .review.expanded .review-text {
    -webkit-line-clamp: unset;
    display: block;
  }
  .review-fade {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 40px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(20,16,15,0), rgba(20,16,15,0.95));
    display: none;
  }
  .review.collapsible .review-fade { display: block; }
  .review.expanded .review-fade { display: none; }
  .review-toggle {
    background: transparent;
    border: none;
    color: var(--accent);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0 0 4px;
    margin-bottom: 14px;
    align-self: flex-start;
    display: none;
    transition: opacity 0.2s ease;
  }
  .review-toggle:hover { opacity: 0.8; }
  .review.collapsible .review-toggle { display: inline-block; }
  .review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
  }
  .review-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--accent-soft);
    border: 1px solid rgba(235,90,74,0.3);
    color: var(--accent);
    display: grid; place-items: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
  }
  .review-info { display: flex; flex-direction: column; gap: 2px; }
  .review-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
  }
  .review-date {
    font-size: 12px;
    color: var(--ink-mute);
  }
  .reviews-cta {
    text-align: center;
    margin-top: 28px;
    position: relative;
  }
  .reviews-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    padding: 10px 18px;
    border: 1px solid var(--glass-border);
    border-radius: 99px;
    transition: all 0.2s ease;
  }
  .reviews-cta a:hover {
    color: var(--ink);
    border-color: var(--glass-border-strong);
  }
  .reviews-cta a svg { width: 14px; height: 14px; }

  ::selection { background: var(--accent); color: #000; }
