@layer reset, tokens, layout, components, utilities;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
  body { min-height: 100vh; display: flex; flex-direction: column; }
  img, video { max-width: 100%; height: auto; display: block; }
  input, button, textarea, select { font: inherit; }
  ul[role="list"] { list-style: none; }
  a { color: inherit; text-decoration: none; }
  h1, h2, h3, h4, h5, h6 { text-wrap: balance; }
  p { text-wrap: pretty; }
}

@layer tokens {
  :root {
    --primary: oklch(52% 0.18 250);
    --primary-dark: oklch(38% 0.18 250);
    --primary-light: oklch(72% 0.14 250);
    --secondary: oklch(62% 0.16 185);
    --secondary-dark: oklch(45% 0.16 185);
    --accent: oklch(70% 0.18 75);
    --accent-dark: oklch(55% 0.18 75);

    --bg: oklch(98% 0.008 250);
    --bg-alt: oklch(95% 0.012 250);
    --surface: oklch(99% 0.005 250);
    --surface-2: oklch(96% 0.01 250);

    --txt: oklch(22% 0.02 250);
    --txt-muted: oklch(48% 0.02 250);
    --txt-light: oklch(62% 0.015 250);

    --border: oklch(88% 0.015 250);
    --border-strong: oklch(78% 0.02 250);

    --shadow-sm: 0 1px 3px oklch(22% 0.02 250 / 0.08), 0 1px 2px oklch(22% 0.02 250 / 0.06);
    --shadow-md: 0 4px 12px oklch(22% 0.02 250 / 0.1), 0 2px 6px oklch(22% 0.02 250 / 0.07);
    --shadow-lg: 0 12px 32px oklch(22% 0.02 250 / 0.12), 0 4px 12px oklch(22% 0.02 250 / 0.08);
    --shadow-xl: 0 24px 48px oklch(22% 0.02 250 / 0.14), 0 8px 20px oklch(22% 0.02 250 / 0.1);
    --shadow-primary: 0 8px 24px oklch(52% 0.18 250 / 0.25);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    --nav-h: 72px;
    --transition: 0.22s ease;
    --transition-slow: 0.4s ease;
  }
}

@layer layout {
  body {
    font-family: 'Figtree', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--txt);
    background: var(--bg);
  }

  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
  }

  main { flex: 1; }

  .sec {
    padding: var(--space-20) 0;
  }

  .sec-alt {
    background: var(--bg-alt);
  }
}

@layer components {

  
  .skip-to-content {
    position: absolute;
    top: 0; left: 0;
    background: var(--primary);
    color: #fff;
    padding: var(--space-3) var(--space-6);
    border-radius: 0 0 var(--radius-sm) 0;
    font-weight: 600;
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform var(--transition);
  }
  .skip-to-content:focus { transform: translateY(0); }

  
  .hdr {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--surface);
    box-shadow: none;
    transition: box-shadow var(--transition);
    height: var(--nav-h);
  }

  .hdr-nav {
    display: flex;
    align-items: center;
    height: var(--nav-h);
    gap: var(--space-8);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
  }

  .hdr-logo { flex-shrink: 0; display: flex; align-items: center; }
  .hdr-logo img { height: 40px; width: auto; }

  .hdr-links {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-left: auto;
  }

  .nav-link {
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--txt-muted);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
  }
  .nav-link:hover { color: var(--primary); background: color-mix(in oklch, var(--primary), white 92%); }
  .nav-link.active { color: var(--primary); background: color-mix(in oklch, var(--primary), white 88%); font-weight: 600; }

  .hdr-actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-shrink: 0;
  }

  .hdr-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--txt-muted);
    padding: var(--space-2);
    border-radius: var(--radius-full);
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    transition: color var(--transition), background var(--transition);
  }
  .hdr-search-btn:hover { color: var(--primary); background: color-mix(in oklch, var(--primary), white 92%); }

  .hdr-cta {
    background: var(--primary);
    color: #fff;
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
    box-shadow: var(--shadow-primary);
  }
  .hdr-cta:hover {
    background: var(--primary-dark);
    box-shadow: 0 12px 28px oklch(52% 0.18 250 / 0.35);
    transform: translateY(-1px);
  }

  .hdr-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
  }
  .hdr-burger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--txt);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
  }

  
  .search-overlay {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--surface);
    z-index: 1100;
    padding: var(--space-4) var(--space-6);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: var(--nav-h);
    display: flex;
    align-items: center;
  }
  .search-overlay.open { transform: translateY(0); }
  .search-inner {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
  .search-input {
    flex: 1;
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-5);
    font-size: 1rem;
    background: var(--bg);
    color: var(--txt);
    transition: border-color var(--transition);
    outline: none;
  }
  .search-input:focus { border-color: var(--primary); }
  .search-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--txt-muted);
    font-size: 1.25rem;
    padding: var(--space-2);
    border-radius: var(--radius-full);
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    transition: color var(--transition), background var(--transition);
  }
  .search-close:hover { color: var(--primary); background: color-mix(in oklch, var(--primary), white 92%); }

  
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: var(--nav-h);
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
      oklch(38% 0.18 250) 0%,
      oklch(45% 0.18 270) 30%,
      oklch(52% 0.16 200) 60%,
      oklch(48% 0.14 230) 100%
    );
    background-size: 400% 400%;
    animation: heroShift 14s ease-in-out infinite;
    z-index: 0;
  }

  @keyframes heroShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 20% 30%, oklch(62% 0.16 185 / 0.25) 0%, transparent 60%),
      radial-gradient(ellipse 60% 80% at 80% 70%, oklch(70% 0.18 75 / 0.15) 0%, transparent 60%);
  }

  .hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-20) var(--space-6);
    position: relative;
    z-index: 1;
  }

  .hero-panel {
    background: oklch(99% 0.005 250 / 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid oklch(99% 0.005 250 / 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-12) var(--space-16);
    max-width: 680px;
    text-align: center;
    box-shadow: 0 24px 64px oklch(22% 0.02 250 / 0.3), inset 0 1px 0 oklch(99% 0.005 250 / 0.3);
  }

  .hero-tag {
    display: inline-block;
    background: oklch(70% 0.18 75 / 0.9);
    color: oklch(20% 0.04 75);
    padding: var(--space-1) var(--space-4);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-5);
  }

  .hero-h1 {
    font-family: 'Literata', Georgia, serif;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: var(--space-5);
    text-shadow: 0 2px 12px oklch(22% 0.02 250 / 0.3);
  }

  .hero-lead {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: oklch(92% 0.01 250);
    line-height: 1.7;
    margin-bottom: var(--space-8);
  }

  .hero-btns {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    padding: 0 var(--space-6) var(--space-8);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    margin-top: -var(--space-8);
  }

  .hcrd {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
  }
  .hcrd:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
  }
  .hcrd header { margin-bottom: var(--space-3); }
  .hcrd-ico {
    width: 44px; height: 44px;
    background: color-mix(in oklch, var(--primary), white 88%);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1.125rem;
    margin-bottom: var(--space-3);
  }
  .hcrd h3 {
    font-family: 'Literata', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--txt);
  }
  .hcrd p { font-size: 0.875rem; color: var(--txt-muted); line-height: 1.6; }

  
  .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    text-decoration: none;
    white-space: nowrap;
  }
  .btn:hover { transform: translateY(-1px); }

  .btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-primary);
  }
  .btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 12px 28px oklch(52% 0.18 250 / 0.35);
  }

  .btn-ghost {
    background: oklch(99% 0.005 250 / 0.15);
    color: #fff;
    border-color: oklch(99% 0.005 250 / 0.4);
    backdrop-filter: blur(8px);
  }
  .btn-ghost:hover {
    background: oklch(99% 0.005 250 / 0.25);
    border-color: oklch(99% 0.005 250 / 0.6);
  }

  .btn-ghost-light {
    background: transparent;
    color: #fff;
    border-color: oklch(99% 0.005 250 / 0.5);
  }
  .btn-ghost-light:hover {
    background: oklch(99% 0.005 250 / 0.15);
    border-color: #fff;
  }

  .btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
  }
  .btn-outline:hover {
    background: color-mix(in oklch, var(--primary), white 92%);
  }

  
  .sec-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary-dark);
    margin-bottom: var(--space-3);
  }

  .sec-title {
    font-family: 'Literata', Georgia, serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--txt);
    line-height: 1.2;
    margin-bottom: var(--space-4);
  }

  .sec-desc {
    font-size: 1.0625rem;
    color: var(--txt-muted);
    max-width: 560px;
    margin-bottom: var(--space-12);
  }

  .sec-head {
    text-align: center;
    margin-bottom: var(--space-12);
  }
  .sec-head .sec-desc { margin-left: auto; margin-right: auto; }

  
  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
  }

  .intro-text p { color: var(--txt-muted); margin-bottom: var(--space-4); line-height: 1.7; }
  .intro-text .sec-title { margin-bottom: var(--space-5); }
  .intro-text .btn { margin-top: var(--space-4); }

  .intro-fig {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
  }
  .intro-fig img { width: 100%; height: 100%; object-fit: cover; }

  
  .triggers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }

  .trig-crd {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
  }
  .trig-crd:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

  .trig-crd header { margin-bottom: var(--space-4); }
  .trig-ico {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.375rem;
    margin-bottom: var(--space-4);
  }
  .trig-crd--boredom .trig-ico { background: color-mix(in oklch, var(--secondary), white 82%); color: var(--secondary-dark); }
  .trig-crd--stress .trig-ico { background: color-mix(in oklch, oklch(60% 0.18 30), white 82%); color: oklch(42% 0.18 30); }
  .trig-crd--celebrate .trig-ico { background: color-mix(in oklch, var(--accent), white 82%); color: var(--accent-dark); }

  .trig-crd h3 {
    font-family: 'Literata', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--txt);
  }
  .trig-crd p { color: var(--txt-muted); margin-bottom: var(--space-4); line-height: 1.65; font-size: 0.9375rem; }
  .trig-list { list-style: none; padding: 0; }
  .trig-list li {
    font-size: 0.875rem;
    color: var(--txt-muted);
    padding: var(--space-1) 0;
    padding-left: var(--space-5);
    position: relative;
  }
  .trig-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 6px;
    border-radius: var(--radius-full);
    background: var(--border-strong);
  }

  
  .bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-4);
  }

  .bento-crd {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    overflow: hidden;
  }
  .bento-crd:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

  .bento-crd--lg {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    align-items: center;
    padding: 0;
    overflow: hidden;
  }

  .bento-crd--wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-6);
    align-items: center;
    padding: 0;
    overflow: hidden;
  }

  .bento-crd--accent {
    background: linear-gradient(135deg, color-mix(in oklch, var(--primary), white 88%), color-mix(in oklch, var(--secondary), white 88%));
    border-color: color-mix(in oklch, var(--primary), white 75%);
  }

  .bento-fig {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin: 0;
  }
  .bento-crd--lg .bento-fig { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
  .bento-crd--wide .bento-fig { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
  .bento-fig img { width: 100%; height: 100%; object-fit: cover; }
  .bento-fig--sm { aspect-ratio: 1; }

  .bento-txt { padding: var(--space-6); }
  .bento-crd--lg .bento-txt, .bento-crd--wide .bento-txt { padding: var(--space-8); }

  .bento-num {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: var(--space-2);
  }

  .bento-ico {
    width: 48px; height: 48px;
    background: color-mix(in oklch, var(--primary), white 88%);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: var(--space-4);
  }

  .bento-crd h3 {
    font-family: 'Literata', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--txt);
    margin-bottom: var(--space-3);
  }
  .bento-crd p { font-size: 0.9rem; color: var(--txt-muted); line-height: 1.65; }

  
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
  }

  .why-fig {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
    margin: 0;
  }
  .why-fig img { width: 100%; height: 100%; object-fit: cover; }

  .why-text p { color: var(--txt-muted); margin-bottom: var(--space-4); line-height: 1.7; }
  .why-text .sec-title { margin-bottom: var(--space-5); }

  .why-features { margin-top: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); }
  .why-feat {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 0.9375rem;
    color: var(--txt);
  }
  .why-feat i { color: var(--secondary-dark); font-size: 1rem; flex-shrink: 0; }

  
  .modules-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }

  .mod-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-6) var(--space-8);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
  }
  .mod-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 0 2px 2px 0;
  }
  .mod-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-color: color-mix(in oklch, var(--primary), white 75%); }

  .mod-hdr { display: flex; align-items: center; gap: var(--space-4); margin-bottom: var(--space-3); }
  .mod-num {
    background: color-mix(in oklch, var(--primary), white 88%);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }
  .mod-hdr h3 {
    font-family: 'Literata', Georgia, serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--txt);
  }
  .mod-item p { font-size: 0.9rem; color: var(--txt-muted); line-height: 1.65; margin-bottom: var(--space-3); }
  .mod-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary-dark);
    background: color-mix(in oklch, var(--secondary), white 88%);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
  }

  
  .sec-cta-band {
    background: linear-gradient(135deg, var(--primary-dark), oklch(45% 0.18 270), var(--secondary-dark));
    padding: var(--space-16) 0;
  }
  .sec-cta-band .sec-title { color: #fff; }

  .cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
    flex-wrap: wrap;
  }
  .cta-band-text h2 {
    font-family: 'Literata', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-2);
  }
  .cta-band-text p { color: oklch(90% 0.01 250); font-size: 1.0625rem; }
  .cta-band-btns { display: flex; gap: var(--space-4); flex-wrap: wrap; flex-shrink: 0; }

  
  .pg-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, oklch(45% 0.18 260) 50%, var(--secondary-dark) 100%);
    padding: calc(var(--nav-h) + var(--space-16)) 0 var(--space-16);
    margin-bottom: 0;
  }
  .pg-hero--sm { padding: calc(var(--nav-h) + var(--space-12)) 0 var(--space-12); }

  .pg-hero-h1 {
    font-family: 'Literata', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-4);
    line-height: 1.2;
  }
  .pg-hero-lead {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: oklch(88% 0.01 250);
    max-width: 640px;
    line-height: 1.7;
  }

  
  .phil-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
  }
  .phil-grid--rev .phil-text { order: 2; }
  .phil-grid--rev .phil-fig { order: 1; }

  .phil-fig {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
    margin: 0;
  }
  .phil-fig img { width: 100%; height: 100%; object-fit: cover; }

  .phil-text .sec-title { margin-bottom: var(--space-5); }
  .phil-text p { color: var(--txt-muted); margin-bottom: var(--space-4); line-height: 1.7; }
  .phil-list {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0;
  }
  .phil-list li {
    padding: var(--space-2) 0 var(--space-2) var(--space-6);
    position: relative;
    color: var(--txt-muted);
    font-size: 0.9375rem;
  }
  .phil-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 8px; height: 8px;
    border-radius: var(--radius-full);
    background: var(--primary);
  }

  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
  }

  .val-crd {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
  }
  .val-crd:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

  .val-crd header { margin-bottom: var(--space-4); }
  .val-ico {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, color-mix(in oklch, var(--primary), white 85%), color-mix(in oklch, var(--secondary), white 85%));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1.125rem;
    margin-bottom: var(--space-3);
  }
  .val-crd h3 {
    font-family: 'Literata', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--txt);
  }
  .val-crd p { font-size: 0.875rem; color: var(--txt-muted); line-height: 1.65; }

  
  .pause-feature {
    display: flex;
    gap: var(--space-10);
    align-items: flex-start;
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--space-10) var(--space-12);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .pause-icon-wrap {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-primary);
  }
  .pause-content .sec-title { margin-bottom: var(--space-4); }
  .pause-content p { color: var(--txt-muted); margin-bottom: var(--space-4); line-height: 1.7; }

  
  .offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    align-items: start;
  }

  .offer-crd {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
  }
  .offer-crd:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

  .offer-crd--feat figure { aspect-ratio: 16/9; overflow: hidden; }
  .offer-crd--feat figure img { width: 100%; height: 100%; object-fit: cover; }
  .offer-crd--feat header { display: flex; align-items: center; gap: var(--space-4); padding: var(--space-6) var(--space-6) 0; }
  .offer-crd--feat h2 {
    font-family: 'Literata', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--txt);
  }
  .offer-crd--feat > p { padding: var(--space-4) var(--space-6); color: var(--txt-muted); line-height: 1.65; }

  .offer-ico {
    width: 48px; height: 48px;
    background: color-mix(in oklch, var(--primary), white 88%);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
  }
  .offer-ico--sm { width: 40px; height: 40px; font-size: 1rem; }

  .offer-list {
    list-style: none;
    padding: 0 var(--space-6) var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
  }
  .offer-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 0.9rem;
    color: var(--txt-muted);
  }
  .offer-list li i { color: var(--secondary-dark); font-size: 0.875rem; flex-shrink: 0; }

  .offer-side { display: flex; flex-direction: column; gap: var(--space-4); }
  .offer-side .offer-crd { padding: var(--space-5) var(--space-6); }
  .offer-side .offer-crd header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
  }
  .offer-side .offer-crd h3 {
    font-family: 'Literata', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--txt);
  }
  .offer-side .offer-crd p { font-size: 0.875rem; color: var(--txt-muted); line-height: 1.6; }

  
  .tools-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-4);
  }

  .tool-crd {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
  }
  .tool-crd:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
  .tool-crd header { margin-bottom: var(--space-3); }
  .tool-num {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Literata', Georgia, serif;
    color: color-mix(in oklch, var(--primary), white 65%);
    line-height: 1;
    margin-bottom: var(--space-2);
  }
  .tool-crd h3 {
    font-family: 'Literata', Georgia, serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--txt);
  }
  .tool-crd p { font-size: 0.8125rem; color: var(--txt-muted); line-height: 1.6; margin-bottom: var(--space-3); }
  .tool-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--primary);
    background: color-mix(in oklch, var(--primary), white 92%);
    padding: 2px var(--space-2);
    border-radius: var(--radius-sm);
  }

  
  .faq-intro {
    max-width: 700px;
    margin: 0 auto var(--space-12);
    text-align: center;
    font-size: 1.0625rem;
    color: var(--txt-muted);
    line-height: 1.7;
  }

  .difficulties-list { display: flex; flex-direction: column; gap: var(--space-6); }

  .diff-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
  }
  .diff-item:hover { box-shadow: var(--shadow-md); }

  .diff-hdr {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    padding: var(--space-6) var(--space-8);
    background: color-mix(in oklch, var(--primary), white 94%);
    border-bottom: 1px solid var(--border);
  }
  .diff-ico {
    width: 44px; height: 44px;
    background: color-mix(in oklch, var(--primary), white 85%);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1.125rem;
    flex-shrink: 0;
  }
  .diff-hdr h2 {
    font-family: 'Literata', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--txt);
  }

  .diff-body { padding: var(--space-6) var(--space-8); }
  .diff-body p { color: var(--txt-muted); margin-bottom: var(--space-4); line-height: 1.7; font-size: 0.9375rem; }

  .diff-insight {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    background: color-mix(in oklch, var(--secondary), white 88%);
    border-radius: var(--radius-md);
    padding: var(--space-4) var(--space-5);
    margin-top: var(--space-2);
  }
  .diff-insight i { color: var(--secondary-dark); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
  .diff-insight p { color: var(--secondary-dark); font-size: 0.875rem; margin: 0; }

  .faq-note {
    display: flex;
    gap: var(--space-6);
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-8) var(--space-10);
    box-shadow: var(--shadow-sm);
  }
  .faq-note-ico {
    font-size: 2rem;
    color: var(--accent-dark);
    flex-shrink: 0;
    margin-top: var(--space-1);
  }
  .faq-note h2 {
    font-family: 'Literata', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--txt);
    margin-bottom: var(--space-3);
  }
  .faq-note p { color: var(--txt-muted); font-size: 0.9375rem; line-height: 1.7; margin-bottom: var(--space-3); }
  .faq-note p:last-child { margin-bottom: 0; }

  
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
    align-items: start;
  }

  .contact-info h2 {
    font-family: 'Literata', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--txt);
    margin-bottom: var(--space-6);
  }

  .contact-details--lg { font-style: normal; }
  .ci-item {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--border);
  }
  .ci-item:last-child { border-bottom: none; }
  .ci-ico {
    width: 40px; height: 40px;
    background: color-mix(in oklch, var(--primary), white 90%);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
  }
  .ci-item strong { display: block; font-weight: 600; color: var(--txt); font-size: 0.875rem; margin-bottom: var(--space-1); }
  .ci-item p { color: var(--txt-muted); font-size: 0.9rem; margin: 0; }
  .ci-item a { color: var(--primary); transition: color var(--transition); }
  .ci-item a:hover { color: var(--primary-dark); }

  .consult-box {
    background: linear-gradient(135deg, color-mix(in oklch, var(--primary), white 92%), color-mix(in oklch, var(--secondary), white 92%));
    border: 1px solid color-mix(in oklch, var(--primary), white 78%);
    border-radius: var(--radius-xl);
    padding: var(--space-6) var(--space-8);
    margin-top: var(--space-8);
  }
  .consult-box h3 {
    font-family: 'Literata', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--txt);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-3);
  }
  .consult-box h3 i { color: var(--primary); }
  .consult-box p { font-size: 0.9rem; color: var(--txt-muted); line-height: 1.65; margin-bottom: var(--space-4); }

  .consult-steps { display: flex; flex-direction: column; gap: var(--space-3); }
  .cs-step { display: flex; align-items: center; gap: var(--space-3); }
  .cs-step span {
    width: 28px; height: 28px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-full);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
  }
  .cs-step p { font-size: 0.875rem; color: var(--txt-muted); margin: 0; }

  
  .contact-form-wrap h2 {
    font-family: 'Literata', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--txt);
    margin-bottom: var(--space-6);
  }

  .wizard-steps {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-8);
    gap: 0;
  }

  .wz-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
  }
  .wz-step span {
    width: 36px; height: 36px;
    border-radius: var(--radius-full);
    background: var(--bg-alt);
    border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--txt-muted);
    transition: background var(--transition), border-color var(--transition), color var(--transition);
  }
  .wz-step small { font-size: 0.6875rem; color: var(--txt-light); font-weight: 500; }
  .wz-step.active span { background: var(--primary); border-color: var(--primary); color: #fff; }
  .wz-step.done span { background: var(--secondary-dark); border-color: var(--secondary-dark); color: #fff; }

  .wz-divider {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin-bottom: var(--space-4);
    transition: background var(--transition);
  }
  .wz-divider.done { background: var(--secondary-dark); }

  .wz-panel { display: none; }
  .wz-panel.active { display: block; }

  .frm-grp { margin-bottom: var(--space-5); }
  .frm-grp label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--txt);
    margin-bottom: var(--space-2);
  }
  .frm-grp label span[aria-hidden] { color: oklch(55% 0.18 30); }

  .frm-grp input,
  .frm-grp select,
  .frm-grp textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg);
    color: var(--txt);
    font-size: 0.9375rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
  }
  .frm-grp input:focus,
  .frm-grp select:focus,
  .frm-grp textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px color-mix(in oklch, var(--primary), white 85%);
  }
  .frm-grp textarea { resize: vertical; min-height: 120px; }
  .frm-grp select { cursor: pointer; }

  .frm-grp--check { margin-bottom: var(--space-4); }
  .frm-check {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--txt-muted);
    line-height: 1.5;
  }
  .frm-check input[type="checkbox"] {
    width: 18px; height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
  }
  .frm-check a { color: var(--primary); text-decoration: underline; }

  .wz-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-4);
    gap: var(--space-3);
  }

  #form-status {
    display: block;
    min-height: 1.5rem;
    font-size: 0.875rem;
    margin-bottom: var(--space-3);
    color: oklch(42% 0.18 30);
    font-weight: 500;
  }
  #form-status:empty { display: none; }

  
  .sec-map { padding: 0 0 var(--space-20); }
  .map-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
  }

  
  .thanks-pg { background: linear-gradient(135deg, oklch(95% 0.015 250) 0%, oklch(96% 0.012 185) 100%); }
  .thanks-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-h) + var(--space-16)) var(--space-6) var(--space-16);
    min-height: 70vh;
  }
  .thanks-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--space-12) var(--space-16);
    max-width: 560px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
  }
  .thanks-ico {
    font-size: 3.5rem;
    color: var(--secondary-dark);
    margin-bottom: var(--space-5);
  }
  .thanks-card h1 {
    font-family: 'Literata', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--txt);
    margin-bottom: var(--space-4);
  }
  .thanks-card p { color: var(--txt-muted); margin-bottom: var(--space-4); line-height: 1.7; }
  .thanks-card p a { color: var(--primary); }
  .thanks-card .btn { margin-top: var(--space-4); }

  
  .legal-doc {
    max-width: 820px;
    margin: 0 auto;
  }
  .legal-intro {
    font-size: 1rem;
    color: var(--txt-muted);
    line-height: 1.75;
    margin-bottom: var(--space-8);
    padding: var(--space-6);
    background: color-mix(in oklch, var(--primary), white 94%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
  }
  .legal-doc h2 {
    font-family: 'Literata', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--txt);
    margin: var(--space-8) 0 var(--space-3);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid var(--border);
  }
  .legal-doc p {
    color: var(--txt-muted);
    line-height: 1.75;
    margin-bottom: var(--space-4);
    font-size: 0.9375rem;
  }

  
  .ftr {
    background: oklch(18% 0.02 250);
    color: oklch(80% 0.01 250);
    padding: var(--space-16) 0 0;
    margin-top: auto;
  }

  .ftr-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-12);
    padding-bottom: var(--space-12);
    border-bottom: 1px solid oklch(30% 0.015 250);
  }

  .ftr-logo { filter: brightness(0) invert(1); opacity: 0.9; }
  .ftr-brand p {
    font-size: 0.875rem;
    color: oklch(65% 0.01 250);
    line-height: 1.7;
    margin: var(--space-4) 0;
  }

  .ftr-brand .contact-details {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
  }
  .ftr-brand .contact-details p {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    color: oklch(65% 0.01 250);
    margin: 0;
  }
  .ftr-brand .contact-details i { color: var(--primary-light); font-size: 0.875rem; width: 14px; flex-shrink: 0; }
  .ftr-brand .contact-details a { color: oklch(65% 0.01 250); transition: color var(--transition); }
  .ftr-brand .contact-details a:hover { color: var(--primary-light); }

  .ftr-nav h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: oklch(75% 0.01 250);
    margin-bottom: var(--space-4);
  }
  .ftr-nav ul { display: flex; flex-direction: column; gap: var(--space-2); }
  .ftr-nav a {
    font-size: 0.875rem;
    color: oklch(60% 0.01 250);
    transition: color var(--transition);
    padding: var(--space-1) 0;
  }
  .ftr-nav a:hover { color: var(--primary-light); }

  .ftr-bottom {
    padding: var(--space-5) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-3);
  }
  .ftr-bottom small { font-size: 0.8125rem; color: oklch(50% 0.01 250); }

  
  .mob-tab-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    z-index: 900;
    box-shadow: 0 -4px 16px oklch(22% 0.02 250 / 0.1);
    padding: var(--space-2) var(--space-2) calc(var(--space-2) + env(safe-area-inset-bottom, 0px));
  }

  .mob-tab-bar { display: none; }

  .mob-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: var(--space-2) var(--space-2);
    border-radius: var(--radius-md);
    color: var(--txt-muted);
    font-size: 0.625rem;
    font-weight: 500;
    transition: color var(--transition), background var(--transition);
    min-height: 44px;
    justify-content: center;
  }
  .mob-tab i { font-size: 1.125rem; }
  .mob-tab.active { color: var(--primary); }
  .mob-tab:hover { color: var(--primary); background: color-mix(in oklch, var(--primary), white 94%); }

  
  .back-top {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 48px; height: 48px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.125rem;
    z-index: 500;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity var(--transition), transform var(--transition), background var(--transition), box-shadow var(--transition);
    pointer-events: none;
  }
  .back-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .back-top:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
  }

  
  .cookie-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: oklch(16% 0.02 250);
    color: oklch(85% 0.01 250);
    z-index: 9000;
    padding: var(--space-4) var(--space-6);
    box-shadow: 0 -4px 24px oklch(22% 0.02 250 / 0.3);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .cookie-bar.visible { transform: translateY(0); }

  .cookie-bar-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }

  .cookie-bar-text {
    flex: 1;
    min-width: 200px;
  }
  .cookie-bar-text p {
    font-size: 0.875rem;
    color: oklch(78% 0.01 250);
    line-height: 1.5;
  }
  .cookie-bar-text a { color: var(--primary-light); text-decoration: underline; }

  .cookie-bar-btns {
    display: flex;
    gap: var(--space-2);
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
  }

  .cookie-btn {
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background var(--transition), color var(--transition), transform var(--transition);
  }
  .cookie-btn:hover { transform: translateY(-1px); }
  .cookie-btn--accept { background: var(--primary); color: #fff; }
  .cookie-btn--accept:hover { background: var(--primary-dark); }
  .cookie-btn--reject { background: oklch(30% 0.015 250); color: oklch(80% 0.01 250); }
  .cookie-btn--reject:hover { background: oklch(35% 0.015 250); }
  .cookie-btn--customize { background: transparent; color: oklch(70% 0.01 250); border: 1px solid oklch(40% 0.015 250); }
  .cookie-btn--customize:hover { background: oklch(25% 0.015 250); }

  .cookie-bar-expand {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: var(--space-4);
    border-top: 1px solid oklch(28% 0.015 250);
    display: none;
  }
  .cookie-bar-expand.open { display: block; }

  .cookie-categories {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
    margin-bottom: var(--space-4);
  }

  .cookie-cat {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 0.875rem;
    color: oklch(78% 0.01 250);
  }
  .cookie-cat label { display: flex; align-items: center; gap: var(--space-2); cursor: pointer; }
  .cookie-cat input[type="checkbox"] { accent-color: var(--primary); width: 16px; height: 16px; }
  .cookie-cat span { font-weight: 500; }
  .cookie-cat small { color: oklch(58% 0.01 250); display: block; font-size: 0.75rem; }
  .cookie-cat-disabled { opacity: 0.6; cursor: not-allowed; }

  .cookie-save-btn {
    background: var(--secondary-dark);
    color: #fff;
    padding: var(--space-2) var(--space-5);
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
  }
  .cookie-save-btn:hover { background: var(--secondary); }

  
  .sec-intro { background: var(--bg); }

}

@layer utilities {
  
  @media (max-width: 1100px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .tools-grid { grid-template-columns: repeat(3, 1fr); }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-crd--lg { grid-column: span 2; }
    .bento-crd--wide { grid-column: span 2; }
  }

  @media (max-width: 900px) {
    .hero-cards { grid-template-columns: repeat(2, 1fr); }
    .triggers-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .intro-grid, .why-grid, .phil-grid { grid-template-columns: 1fr; gap: var(--space-10); }
    .phil-grid--rev .phil-text { order: 0; }
    .phil-grid--rev .phil-fig { order: 0; }
    .offer-grid { grid-template-columns: 1fr; }
    .modules-list { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .pause-feature { flex-direction: column; gap: var(--space-5); }
    .cta-band { flex-direction: column; text-align: center; }
    .cta-band-btns { justify-content: center; }
    .ftr-grid { grid-template-columns: 1fr 1fr; }
    .ftr-brand { grid-column: span 2; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-crd--lg, .bento-crd--wide { grid-column: span 1; grid-template-columns: 1fr; }
    .bento-crd--lg .bento-fig, .bento-crd--wide .bento-fig { border-radius: var(--radius-lg) var(--radius-lg) 0 0; aspect-ratio: 16/9; }
  }

  @media (max-width: 768px) {
    :root { --nav-h: 64px; }

    .hdr-links { display: none; }
    .hdr-cta { display: none; }
    .hdr-burger { display: flex; }

    .mob-tab-bar {
      display: flex;
      justify-content: space-around;
    }

    body { padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px)); }

    .back-top { bottom: calc(70px + var(--space-4)); }

    .hero-panel {
      padding: var(--space-8) var(--space-6);
      margin: var(--space-4);
    }

    .hero-cards { grid-template-columns: 1fr 1fr; padding: 0 var(--space-4) var(--space-6); }

    .container { padding: 0 var(--space-4); }

    .sec { padding: var(--space-12) 0; }

    .tools-grid { grid-template-columns: repeat(2, 1fr); }

    .values-grid { grid-template-columns: 1fr; }

    .pause-feature { padding: var(--space-6); }

    .ftr-grid { grid-template-columns: 1fr; }
    .ftr-brand { grid-column: span 1; }

    .ftr-bottom { flex-direction: column; align-items: flex-start; }

    .wizard-steps { gap: 0; }

    .diff-hdr { padding: var(--space-4) var(--space-5); }
    .diff-body { padding: var(--space-5); }

    .faq-note { flex-direction: column; gap: var(--space-4); padding: var(--space-6); }

    .thanks-card { padding: var(--space-8) var(--space-6); }

    .cookie-bar-main { flex-direction: column; align-items: flex-start; }
    .cookie-bar-btns { width: 100%; justify-content: flex-start; }

    .pg-hero { padding: calc(var(--nav-h) + var(--space-10)) 0 var(--space-10); }

    .consult-box { padding: var(--space-5); }

    .contact-form-wrap h2, .contact-info h2 { font-size: 1.25rem; }
  }

  @media (max-width: 480px) {
    .hero-cards { grid-template-columns: 1fr; }
    .tools-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; align-items: stretch; }
    .hero-btns .btn { justify-content: center; }
    .wz-nav { flex-direction: column; }
    .wz-nav .btn { width: 100%; justify-content: center; }
    .cta-band-btns { flex-direction: column; width: 100%; }
    .cta-band-btns .btn { justify-content: center; }
    .hero-h1 { font-size: 2rem; }
    .hero-panel { padding: var(--space-6) var(--space-5); }
    .cookie-categories { flex-direction: column; }
  }
}