:root {
      --black: #000000;
      --white: #ffffff;
      --gray-50: #f7f7f7;
      --gray-100: #efefef;
      --gray-200: #e0e0e0;
      --gray-300: #c0c0c0;
      --gray-400: #707070;
      --gray-500: #484848;
      --gray-600: #2a2a2a;
      --accent: #000000;
      --accent-light: #f0f0f0;
    }

    /* ============ OVNI SUIVEUR ============ */
    #ufo-follower {
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    #ufo-follower.in-hero { right: 8%; top: 50%; width: 280px; height: 280px; }
    #ufo-follower.in-hero.float { animation: ufo-float-hero 3s ease-in-out infinite; }
    #ufo-follower.in-section { width: 90px; height: 90px; }
    #ufo-follower.pos-top-right { right: 32px; top: 120px; }
    #ufo-follower.pos-mid-right { right: 32px; top: 40%; }
    #ufo-follower.pos-low-right { right: 32px; top: 55%; }
    #ufo-follower.pos-center { right: 50%; top: 50%; transform: translate(50%, -50%); }

    /* Light beam */
    #ufo-follower .ufo-beam { opacity: 0; transition: opacity 0.2s; }
    #ufo-follower .ufo-beam line { stroke-dasharray: 4, 4; animation: beam-dash 0.5s linear infinite; }
    #ufo-follower.beam .ufo-beam { opacity: 1; }
    @keyframes beam-dash { 0% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 8; } }

    /* Signal from antenna */
    #ufo-follower .ufo-signal { opacity: 0; transform-origin: 45px 19px; }
    #ufo-follower.signal .ufo-signal { opacity: 1; animation: signal-emit 0.6s ease-out infinite; }
    @keyframes signal-emit { 0% { transform: scale(0.5); opacity: 1; } 100% { transform: scale(2); opacity: 0; } }

    /* Animations */
    #ufo-follower.wave { animation: ufo-wave 0.5s ease-in-out; }
    #ufo-follower.excited { animation: ufo-excited 0.25s ease-in-out 2; }
    #ufo-follower.spin { animation: ufo-spin 0.5s ease-in-out; }
    #ufo-follower.dance { animation: ufo-dance 0.4s ease-in-out infinite; }
    #ufo-follower.float { animation: ufo-float 2.5s ease-in-out infinite; }
    #ufo-follower.chill { animation: ufo-chill 3s ease-in-out infinite; }

    @keyframes ufo-wave { 0%, 100% { transform: rotate(0deg); } 25% { transform: rotate(-10deg); } 75% { transform: rotate(10deg); } }
    @keyframes ufo-excited { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
    @keyframes ufo-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
    @keyframes ufo-dance { 0%, 100% { transform: rotate(-4deg) translateY(0); } 50% { transform: rotate(4deg) translateY(-4px); } }
    @keyframes ufo-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
    @keyframes ufo-float-hero { 0%, 100% { transform: translateY(-50%); } 50% { transform: translateY(calc(-50% - 15px)); } }
    @keyframes ufo-chill { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-6px) rotate(2deg); } }

    /* Speech bubble */
    #ufo-speech {
      position: fixed;
      background: var(--black);
      color: var(--white);
      border-radius: 16px;
      padding: 10px 16px;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 700;
      z-index: 10000;
      opacity: 0;
      transform: scale(0.8) translateX(-50%);
      transition: all 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
      pointer-events: none;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
      white-space: nowrap;
    }
    #ufo-speech.visible { opacity: 1; transform: scale(1) translateX(-50%); }
    #ufo-speech::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      border: 8px solid transparent;
      border-top-color: var(--black);
    }
    #ufo-speech.on-dark {
      background: var(--white);
      color: var(--black);
      box-shadow: 0 4px 20px rgba(255,255,255,0.15);
    }
    #ufo-speech.on-dark::after {
      border-top-color: var(--white);
    }

    /* OVNI on dark background */
    #ufo-follower.on-dark svg {
      stroke: #fff;
    }
    #ufo-follower.on-dark svg .ufo-eye-left,
    #ufo-follower.on-dark svg .ufo-eye-right {
      fill: #fff;
    }
    #ufo-follower.on-dark svg circle[fill="#000"] {
      fill: rgba(255,255,255,0.2);
    }
    #ufo-follower.on-dark .ufo-beam line {
      stroke: #fff;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: 17px;
      line-height: 1.65;
      color: var(--gray-600);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }

    /* ============ LAYOUT ============ */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .container--narrow {
      max-width: 800px;
    }

    section {
      padding: 100px 0;
    }

    /* ============ TYPOGRAPHY ============ */
    .eyebrow {
      font-size: 12px;
      font-weight: 700;
      color: var(--gray-400);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 12px;
    }

    h1 {
      font-size: clamp(36px, 6vw, 62px);
      font-weight: 800;
      line-height: 1.1;
      color: var(--black);
      letter-spacing: -0.03em;
    }

    h2 {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 800;
      line-height: 1.15;
      color: var(--black);
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }

    h3 {
      font-size: 22px;
      font-weight: 700;
      line-height: 1.3;
      color: var(--black);
      margin-bottom: 12px;
    }

    h4 {
      font-size: 18px;
      font-weight: 700;
      color: var(--gray-600);
      margin-bottom: 8px;
    }

    p {
      margin-bottom: 16px;
    }

    .lead {
      font-size: 19px;
      line-height: 1.7;
      color: var(--gray-500);
    }

    .text-center {
      text-align: center;
    }

    .highlight {
      background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.08) 60%);
    }

    /* ============ BUTTONS ============ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 32px;
      font-family: inherit;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.15s ease;
      border: none;
    }

    .btn--primary {
      background: var(--black);
      color: var(--white) !important;
    }

    .btn--primary:hover {
      background: var(--gray-600);
      transform: translateY(-2px);
    }

    .btn--secondary {
      background: var(--white);
      color: var(--black);
      border: 2px solid var(--gray-200);
    }

    .btn--secondary:hover {
      border-color: var(--black);
    }

    .btn--large {
      padding: 20px 40px;
      font-size: 18px;
    }

    /* ============ NAV ============ */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--gray-100);
      padding: 16px 0;
    }

    nav .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 800;
      color: var(--black);
      text-decoration: none;
    }

    .nav-logo svg {
      width: 32px;
      height: 32px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-links a {
      font-size: 15px;
      font-weight: 600;
      color: var(--gray-500);
      text-decoration: none;
      transition: color 0.15s;
    }

    .nav-links a:hover {
      color: var(--black);
    }

    /* ============ HERO ============ */
    .hero {
      padding: 160px 0 100px;
      position: relative;
      overflow: hidden;
    }

    .hero-content {
      max-width: 700px;
    }

    .hero h1 {
      margin-bottom: 24px;
    }

    .hero .lead {
      margin-bottom: 40px;
      max-width: 600px;
    }

    .hero-ctas {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-stats {
      display: flex;
      gap: 48px;
      margin-top: 60px;
      padding-top: 40px;
      border-top: 1px solid var(--gray-200);
    }

    .hero-stat {
      text-align: left;
    }

    .hero-stat-number {
      font-size: 36px;
      font-weight: 800;
      color: var(--black);
      line-height: 1;
    }

    .hero-stat-label {
      font-size: 14px;
      color: var(--gray-400);
      margin-top: 4px;
    }

    /* ============ PROBLEM SECTION ============ */
    .problem {
      background: var(--gray-50);
    }

    .problem-intro {
      max-width: 700px;
      margin: 0 auto 60px;
      text-align: center;
    }

    .problem-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .problem-card {
      background: var(--white);
      border-radius: 12px;
      padding: 32px;
      border: 2px solid var(--gray-200);
      transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: default;
    }

    .problem-card:hover {
      border-color: var(--black);
      transform: translate(-4px, -4px);
      box-shadow: 6px 6px 0 0 var(--black);
    }

    .problem-card-icon {
      font-size: 32px;
      margin-bottom: 16px;
    }

    .problem-card h4 {
      color: var(--black);
      margin-bottom: 12px;
    }

    .problem-card p {
      color: var(--gray-500);
      font-size: 15px;
      margin: 0;
    }

    .problem-question {
      text-align: center;
      margin-top: 60px;
      padding: 40px;
      background: var(--black);
      color: var(--white);
      border-radius: 12px;
    }

    .problem-question p {
      font-size: 22px;
      font-weight: 600;
      margin: 0;
    }

    /* ============ SOLUTION SECTION ============ */
    .solution-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
    }

    .pillars-visual {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 60px;
    }

    .pillar-card {
      background: var(--white);
      border: 2px solid var(--gray-200);
      border-radius: 16px;
      padding: 32px 24px;
      text-align: center;
      transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: default;
    }

    .pillar-card:hover {
      border-color: var(--black);
      transform: translate(-4px, -4px);
      box-shadow: 6px 6px 0 0 var(--black);
      background: var(--white);
    }

    .pillar-letter {
      font-size: 56px;
      font-weight: 800;
      color: var(--black);
      line-height: 1;
      margin-bottom: 8px;
    }

    .pillar-name {
      font-size: 18px;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 8px;
    }

    .pillar-tagline {
      font-size: 14px;
      font-style: italic;
      color: var(--gray-400);
      margin-bottom: 16px;
    }

    .pillar-desc {
      font-size: 14px;
      color: var(--gray-500);
      line-height: 1.6;
    }

    .pillar-card--featured {
      position: relative;
    }

    .pillar-tools {
      margin-top: 16px;
      padding-top: 12px;
      border-top: 1px dashed var(--gray-200);
    }

    .pillar-tools-label {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--white);
      background: var(--black);
      padding: 6px 12px;
      border-radius: 100px;
    }

    /* ============ SAC SECTION ============ */
    .sac {
      background: var(--black);
      color: var(--white);
    }

    .sac h2 {
      color: var(--white);
    }

    .sac .lead {
      color: rgba(255,255,255,0.7);
    }

    .sac-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .sac-text h3 {
      color: var(--white);
      font-size: 28px;
      margin-bottom: 20px;
    }

    .sac-text p {
      color: rgba(255,255,255,0.7);
      font-size: 17px;
    }

    .sac-steps {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 32px;
    }

    .sac-step {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .sac-step-number {
      width: 32px;
      height: 32px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .sac-step-text {
      font-size: 15px;
      color: rgba(255,255,255,0.8);
    }

    .sac-visual {
      position: relative;
    }

    .sac-loop {
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
    }

    /* ============ RECIPES SECTION ============ */
    .recipes-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
    }

    .recipes-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .recipe-card {
      background: var(--gray-50);
      border-radius: 14px;
      padding: 32px;
      position: relative;
      border: 2px solid transparent;
      transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: default;
    }

    .recipe-card:hover {
      background: var(--white);
      border-color: var(--black);
      transform: translate(-4px, -4px);
      box-shadow: 6px 6px 0 0 var(--black);
    }

    .recipe-number {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 48px;
      height: 48px;
      background: var(--white);
      border: 2px solid var(--black);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 800;
    }

    .recipe-range {
      font-size: 12px;
      font-weight: 700;
      color: var(--gray-400);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 8px;
    }

    .recipe-name {
      font-size: 24px;
      font-weight: 800;
      color: var(--black);
      margin-bottom: 8px;
    }

    .recipe-tagline {
      font-size: 15px;
      font-style: italic;
      color: var(--gray-400);
      margin-bottom: 16px;
    }

    .recipe-desc {
      font-size: 15px;
      color: var(--gray-500);
      line-height: 1.6;
    }

    /* ============ TOOLS SECTION ============ */
    .tools {
      background: var(--gray-50);
    }

    .tools-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
    }

    .tools-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .tool-card {
      background: var(--white);
      border-radius: 12px;
      padding: 28px;
      text-align: center;
      border: 2px solid var(--gray-200);
      transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: default;
    }

    .tool-card:hover {
      border-color: var(--black);
      transform: translate(-4px, -4px);
      box-shadow: 6px 6px 0 0 var(--black);
    }

    .tool-number {
      font-size: 42px;
      font-weight: 800;
      color: var(--black);
      line-height: 1;
      margin-bottom: 8px;
    }

    .tool-label {
      font-size: 15px;
      font-weight: 600;
      color: var(--gray-500);
    }

    .tools-examples {
      margin-top: 48px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
    }

    .tool-tag {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 100px;
      padding: 10px 20px;
      font-size: 14px;
      color: var(--gray-500);
    }

    .tool-tag--exclusive {
      background: var(--black);
      border-color: var(--black);
      color: var(--white);
      font-weight: 600;
    }

    /* Exclusive Tools Section */
    .tools-exclusive {
      margin-top: 60px;
      padding-top: 48px;
      border-top: 2px solid var(--gray-200);
    }

    .tools-exclusive-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .tools-exclusive-badge {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--white);
      background: var(--black);
      padding: 10px 20px;
      border-radius: 100px;
      margin-bottom: 16px;
    }

    .tools-exclusive-intro {
      font-size: 17px;
      color: var(--gray-500);
      max-width: 600px;
      margin: 0 auto;
    }

    .tools-exclusive-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .exclusive-tool-card {
      background: var(--white);
      border: 2px solid var(--black);
      border-radius: 14px;
      padding: 28px;
      position: relative;
      transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: default;
    }

    .exclusive-tool-card:hover {
      transform: translate(-4px, -4px);
      box-shadow: 6px 6px 0 0 var(--black);
    }

    .exclusive-tool-icon {
      font-size: 32px;
      margin-bottom: 16px;
    }

    .exclusive-tool-name {
      font-size: 18px;
      font-weight: 800;
      color: var(--black);
      margin-bottom: 12px;
    }

    .exclusive-tool-desc {
      font-size: 14px;
      color: var(--gray-500);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .exclusive-tool-output {
      font-size: 13px;
      font-weight: 600;
      color: var(--black);
      background: var(--gray-100);
      padding: 8px 14px;
      border-radius: 6px;
      display: inline-block;
    }

    @media (max-width: 768px) {
      .tools-exclusive-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ============ FOR WHO SECTION ============ */
    .for-who-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
    }

    .profiles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .profile-card {
      border: 2px solid var(--gray-200);
      border-radius: 14px;
      padding: 32px;
      transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: default;
      background: var(--white);
    }

    .profile-card:hover {
      border-color: var(--black);
      transform: translate(-4px, -4px);
      box-shadow: 6px 6px 0 0 var(--black);
    }

    .profile-icon {
      font-size: 40px;
      margin-bottom: 16px;
    }

    .profile-title {
      font-size: 20px;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 8px;
    }

    .profile-desc {
      font-size: 15px;
      color: var(--gray-500);
      margin-bottom: 16px;
    }

    .profile-recipe {
      font-size: 13px;
      font-weight: 600;
      color: var(--gray-400);
    }

    /* ============ STORY SECTION ============ */
    .story {
      background: var(--gray-50);
    }

    .story-content {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 80px;
      align-items: center;
    }

    .story-visual {
      text-align: center;
    }

    .story-ovni {
      width: 200px;
      height: 200px;
      margin-bottom: 24px;
    }

    .story-author {
      font-size: 18px;
      font-weight: 700;
      color: var(--black);
    }

    .story-role {
      font-size: 14px;
      color: var(--gray-400);
    }

    .story-text blockquote {
      font-size: 22px;
      line-height: 1.6;
      color: var(--gray-600);
      font-style: italic;
      margin-bottom: 24px;
    }

    .story-text p {
      font-size: 17px;
      color: var(--gray-500);
    }

    /* ============ COMPATIBILITY SECTION ============ */
    .compat-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
    }

    .compat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .compat-card {
      background: var(--gray-50);
      border-radius: 12px;
      padding: 32px;
      text-align: center;
      border: 2px solid transparent;
      transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: default;
    }

    .compat-card:hover {
      background: var(--white);
      border-color: var(--black);
      transform: translate(-4px, -4px);
      box-shadow: 6px 6px 0 0 var(--black);
    }

    .compat-logo {
      font-size: 28px;
      font-weight: 800;
      color: var(--black);
      margin-bottom: 12px;
    }

    .compat-desc {
      font-size: 15px;
      color: var(--gray-500);
    }

    /* ============ QUIZ SECTION ============ */
    .quiz-section {
      background: var(--black);
      color: var(--white);
      text-align: center;
    }

    .quiz-section h2 {
      color: var(--white);
    }

    .quiz-section .lead {
      color: rgba(255,255,255,0.7);
      max-width: 600px;
      margin: 0 auto 40px;
    }

    .quiz-features {
      display: flex;
      justify-content: center;
      gap: 48px;
      margin-bottom: 40px;
    }

    .quiz-feature {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 16px;
      color: rgba(255,255,255,0.8);
    }

    .quiz-feature-icon {
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    .quiz-btn {
      background: var(--white);
      color: var(--black);
      padding: 20px 48px;
      font-size: 18px;
    }

    .quiz-btn:hover {
      background: var(--gray-100);
      transform: translateY(-2px);
    }

    /* ============ CTA SECTION ============ */
    .cta-section {
      text-align: center;
    }

    .cta-section h2 {
      margin-bottom: 16px;
    }

    .cta-section .lead {
      max-width: 600px;
      margin: 0 auto 40px;
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 16px;
    }

    /* ============ FOOTER ============ */
    footer {
      background: var(--gray-50);
      padding: 60px 0;
      text-align: center;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 800;
      color: var(--black);
      margin-bottom: 16px;
    }

    .footer-logo svg {
      width: 28px;
      height: 28px;
    }

    .footer-text {
      font-size: 14px;
      color: var(--gray-400);
      margin-bottom: 8px;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-top: 24px;
    }

    .footer-links a {
      font-size: 14px;
      color: var(--gray-500);
      text-decoration: none;
    }

    .footer-links a:hover {
      color: var(--black);
    }

    /* ============ QUIZ MODAL ============ */
    .quiz-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(0,0,0,0.8);
      backdrop-filter: blur(4px);
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .quiz-modal.active {
      display: flex;
    }

    .quiz-container {
      background: var(--white);
      border-radius: 20px;
      width: 100%;
      max-width: 700px;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
    }

    .quiz-header {
      padding: 32px 32px 24px;
      border-bottom: 1px solid var(--gray-100);
      position: relative;
    }

    .quiz-close {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 40px;
      height: 40px;
      background: var(--gray-100);
      border: none;
      border-radius: 50%;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.15s;
    }

    .quiz-close:hover {
      background: var(--gray-200);
    }

    .quiz-progress {
      margin-top: 20px;
    }

    .quiz-progress-bar {
      height: 6px;
      background: var(--gray-100);
      border-radius: 3px;
      overflow: hidden;
    }

    .quiz-progress-fill {
      height: 100%;
      background: var(--black);
      transition: width 0.3s ease;
    }

    .quiz-progress-text {
      font-size: 13px;
      font-weight: 700;
      color: var(--gray-400);
      margin-top: 8px;
    }

    .quiz-body {
      padding: 32px;
    }

    .quiz-question {
      display: none;
    }

    .quiz-question.active {
      display: block;
    }

    .quiz-pillar-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gray-400);
      background: var(--gray-100);
      padding: 6px 12px;
      border-radius: 4px;
      margin-bottom: 16px;
    }

    .quiz-question-text {
      font-size: 22px;
      font-weight: 700;
      color: var(--black);
      line-height: 1.4;
      margin-bottom: 28px;
    }

    .quiz-options {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .quiz-option {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 18px 20px;
      background: var(--gray-50);
      border: 2px solid transparent;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.15s;
    }

    .quiz-option:hover {
      background: var(--white);
      border-color: var(--gray-200);
    }

    .quiz-option.selected {
      background: var(--white);
      border-color: var(--black);
    }

    .quiz-option-letter {
      width: 32px;
      height: 32px;
      background: var(--white);
      border: 2px solid var(--gray-300);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      flex-shrink: 0;
      transition: all 0.15s;
    }

    .quiz-option.selected .quiz-option-letter {
      background: var(--black);
      border-color: var(--black);
      color: var(--white);
    }

    .quiz-option-text {
      font-size: 16px;
      color: var(--gray-600);
      padding-top: 4px;
    }

    .quiz-footer {
      padding: 24px 32px;
      border-top: 1px solid var(--gray-100);
      display: flex;
      justify-content: space-between;
    }

    .quiz-nav-btn {
      padding: 14px 28px;
      font-size: 15px;
      font-weight: 700;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.15s;
    }

    .quiz-nav-btn--prev {
      background: transparent;
      border: 2px solid var(--gray-200);
      color: var(--gray-500);
    }

    .quiz-nav-btn--prev:hover:not(:disabled) {
      border-color: var(--gray-400);
      color: var(--gray-600);
    }

    .quiz-nav-btn--next {
      background: var(--black);
      border: none;
      color: var(--white);
    }

    .quiz-nav-btn--next:hover:not(:disabled) {
      background: var(--gray-600);
    }

    .quiz-nav-btn:disabled {
      opacity: 0.4;
      cursor: not-allowed;
    }

    /* Quiz Results */
    .quiz-results {
      display: none;
      padding: 40px;
      text-align: center;
    }

    .quiz-results.active {
      display: block;
    }

    .result-badge {
      width: 100px;
      height: 100px;
      background: var(--black);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 42px;
      font-weight: 800;
      margin: 0 auto 24px;
      animation: pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    @keyframes pop {
      0% { transform: scale(0); }
      100% { transform: scale(1); }
    }

    .result-recipe-name {
      font-size: 32px;
      font-weight: 800;
      color: var(--black);
      margin-bottom: 8px;
    }

    .result-recipe-tagline {
      font-size: 18px;
      font-style: italic;
      color: var(--gray-400);
      margin-bottom: 24px;
    }

    .result-description {
      font-size: 17px;
      color: var(--gray-500);
      max-width: 500px;
      margin: 0 auto 32px;
      line-height: 1.7;
    }

    .result-scores {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 40px;
      text-align: center;
    }

    .result-score {
      background: var(--gray-50);
      border-radius: 12px;
      padding: 20px;
    }

    .result-score-letter {
      font-size: 28px;
      font-weight: 800;
      color: var(--black);
      margin-bottom: 8px;
    }

    .result-score-bar {
      height: 8px;
      background: var(--gray-200);
      border-radius: 4px;
      overflow: hidden;
      margin-bottom: 8px;
    }

    .result-score-fill {
      height: 100%;
      background: var(--black);
      border-radius: 4px;
      transition: width 0.6s ease;
    }

    .result-score-label {
      font-size: 12px;
      color: var(--gray-400);
    }

    .result-insight {
      background: var(--gray-50);
      border-radius: 12px;
      padding: 24px;
      margin-bottom: 32px;
      text-align: left;
    }

    .result-insight h4 {
      margin-bottom: 12px;
    }

    .result-insight p {
      font-size: 15px;
      color: var(--gray-500);
      margin: 0;
    }

    .result-ctas {
      display: flex;
      justify-content: center;
      gap: 16px;
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 1024px) {
      .pillars-visual,
      .recipes-grid,
      .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .sac-content,
      .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 60px 0;
      }

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

      .recipes-grid,
      .profiles-grid {
        grid-template-columns: 1fr;
      }

      .hero-stats {
        flex-direction: column;
        gap: 24px;
      }

      .quiz-features {
        flex-direction: column;
        gap: 16px;
      }

      .nav-links {
        display: none;
      }

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

      #ufo-follower.in-hero {
        right: 5%;
        width: 140px;
        height: 140px;
      }
      
      #ufo-follower.in-section {
        width: 70px;
        height: 70px;
      }
    }

    @media (max-width: 480px) {
      .pillars-visual,
      .tools-grid {
        grid-template-columns: 1fr;
      }

      .hero-ctas,
      .cta-buttons,
      .result-ctas {
        flex-direction: column;
      }

      .quiz-body {
        padding: 24px;
      }
    }
/* ============ DOWNLOAD FORM MODAL ============ */
.download-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.download-modal.active { display: flex; }
.download-modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modalAppear 0.3s ease-out;
}
@keyframes modalAppear {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.download-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--gray-100);
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  color: var(--gray-500);
  transition: all 0.2s;
}
.download-modal-close:hover { background: var(--gray-200); color: var(--black); }
.download-form-header { text-align: center; margin-bottom: 28px; }
.download-form-icon { font-size: 48px; display: block; margin-bottom: 12px; }
.download-form-header h3 { font-size: 24px; font-weight: 800; margin: 0 0 8px 0; color: var(--black); }
.download-form-header p { color: var(--gray-500); margin: 0; font-size: 15px; }
.download-form .form-group { margin-bottom: 16px; }
.download-form input, .download-form select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--white);
}
.download-form input:focus, .download-form select:focus {
  outline: none;
  border-color: var(--black);
}
.download-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23707070' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.btn--full { width: 100%; justify-content: center; }
.download-form-privacy { text-align: center; font-size: 12px; color: var(--gray-400); margin: 16px 0 0 0; }
.download-success { text-align: center; }
.download-success-icon { font-size: 56px; display: block; margin-bottom: 16px; }
.download-success h3 { font-size: 24px; font-weight: 800; margin: 0 0 8px 0; }
.download-success p { color: var(--gray-500); margin: 0 0 24px 0; }
.download-success-note { font-size: 13px; color: var(--gray-400); margin-top: 16px !important; }
@media (max-width: 480px) {
  .download-modal-content { padding: 28px 20px; }
}
