    /* ═══════════════════════════════════════════════════════════════ */
    /* RESET & BASE                                                    */
    /* ═══════════════════════════════════════════════════════════════ */

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

    html {
      scroll-behavior: smooth;
      font-size: 18px;
    }

    :root {
      --blue-500: #3b82f6;
      --blue-600: #2563eb;
      --blue-700: #1d4ed8;
      --blue-400: #60a5fa;
      --slate-900: #0f172a;
      --slate-800: #1e293b;
      --slate-700: #334155;
      --slate-600: #475569;
      --slate-500: #64748b;
      --slate-400: #94a3b8;
      --slate-300: #cbd5e1;
      --slate-200: #e2e8f0;
      --slate-100: #f1f5f9;
      --green-500: #10b981;
      --amber-500: #f59e0b;
      --red-500: #ef4444;
    }

    body {
      font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
      background: var(--slate-900);
      color: var(--slate-100);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font-family: inherit;
      cursor: pointer;
    }

    /* ─── SCROLLBAR ─── */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: var(--slate-800);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--slate-600);
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--slate-500);
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-16px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-8px);
      }
    }

    @keyframes pulse-ring {
      0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
      }
      70% {
        transform: scale(1);
        box-shadow: 0 0 0 12px rgba(59, 130, 246, 0);
      }
      100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      height: 64px;
      background: rgba(15, 23, 42, 0.8);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      animation: slideDown 0.6s ease;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      font-size: 20px;
      letter-spacing: -0.5px;
    }

    .logo-icon {
      width: 40px;
      height: 40px;
      background: var(--blue-500);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .logo-icon svg {
      width: 20px;
      height: 20px;
      color: white;
    }

    .nav-center {
      display: flex;
      align-items: center;
      gap: 40px;
      list-style: none;
      margin-left: auto;
      margin-right: auto;
    }

    .nav-center a {
      font-size: 19px;
      font-weight: 500;
      color: var(--slate-400);
      transition: color 0.2s;
    }

    .nav-center a:hover {
      color: var(--slate-100);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-left: auto;
      margin-right: 16px;
    }

    .lang-switcher {
      display: flex;
      gap: 8px;
      background: rgba(148, 163, 184, 0.08);
      padding: 4px;
      border-radius: 6px;
      border: 1px solid rgba(148, 163, 184, 0.15);
    }

    .lang-btn {
      background: none;
      border: none;
      padding: 5px 11px;
      font-size: 12px;
      font-weight: 700;
      color: var(--slate-400);
      border-radius: 5px;
      transition: all 0.2s;
      cursor: pointer;
    }

    .lang-btn.active {
      background: var(--blue-500);
      color: white;
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }

    .lang-btn:hover:not(.active) {
      color: var(--slate-200);
    }

    .nav-cta {
      background: var(--blue-500);
      color: white;
      padding: 8px 16px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 15px;
      border: none;
      transition: all 0.2s;
    }

    .nav-cta:hover {
      background: var(--blue-600);
      transform: translateY(-1px);
      box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
    }

    .nav-mobile-toggle {
      display: none;
      position: relative;
      background: none;
      border: none;
      width: 32px;
      height: 32px;
      padding: 0;
      color: var(--slate-100);
    }

    .nav-mobile-toggle span {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 24px;
      line-height: 1;
      color: currentColor;
    }

    .hamburger-icon {
      opacity: 1;
      transition: opacity 0.3s ease;
    }

    .close-icon {
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .nav-mobile-toggle.active .hamburger-icon {
      opacity: 0;
    }

    .nav-mobile-toggle.active .close-icon {
      opacity: 1;
    }

    .nav-menu-mobile {
      display: none;
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: rgba(15, 23, 42, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(148, 163, 184, 0.2);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      z-index: 99;
    }

    .nav-menu-mobile.active {
      max-height: 400px;
    }

    .nav-menu-mobile ul {
      list-style: none;
      padding: 20px 5%;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .nav-menu-mobile a {
      font-size: 16px;
      color: var(--slate-400);
    }

    /* ─── MAIN ─── */
    main {
      position: relative;
    }

    /* ─── HERO ─── */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 100px 5% 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 50% 100%, rgba(59, 130, 246, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(96, 165, 250, 0.05) 0%, transparent 60%);
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .hero-text {
      animation: fadeUp 0.8s ease both;
    }

    .hero-eyebrow {
      font-size: 17px;
      letter-spacing: 2px;
      color: var(--blue-400);
      text-transform: uppercase;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hero-eyebrow::before {
      content: '';
      display: inline-block;
      width: 24px;
      height: 1px;
      background: var(--blue-400);
    }

    .hero-h1 {
      font-size: clamp(44px, 6vw, 64px);
      line-height: 1.1;
      letter-spacing: -1px;
      margin-bottom: 20px;
      color: var(--slate-100);
      font-weight: 700;
    }

    .hero-h1 .accent {
      color: transparent;
      background: linear-gradient(135deg, var(--blue-400) 0%, #60a5fa 100%);
      -webkit-background-clip: text;
      background-clip: text;
    }

    .hero-sub {
      font-size: 18px;
      font-weight: 300;
      color: var(--slate-400);
      line-height: 1.7;
      max-width: 420px;
      margin-bottom: 32px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 16px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--blue-500);
      color: white;
      font-weight: 600;
      font-size: 16px;
      padding: 14px 28px;
      border-radius: 6px;
      border: none;
      transition: all 0.2s;
      animation: pulse-ring 2.5s infinite;
    }

    .btn-primary:hover {
      background: var(--blue-600);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(59, 130, 246, 0.3);
      animation: none;
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--slate-400);
      font-size: 16px;
      font-weight: 500;
      transition: color 0.2s;
    }

    .btn-secondary:hover {
      color: var(--slate-100);
    }

    .btn-secondary svg {
      transition: transform 0.2s;
    }

    .btn-secondary:hover svg {
      transform: translateX(3px);
    }

    .hero-note {
      font-size: 16px;
      color: var(--slate-500);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .hero-note::before {
      content: '✓';
      color: var(--green-500);
      font-weight: 600;
    }

    .hero-visual {
      animation: fadeUp 1s ease 0.3s both;
      position: relative;
    }

    .mockup-card {
      background: linear-gradient(135deg, var(--slate-800) 0%, var(--slate-700) 100%);
      border: 1px solid rgba(148, 163, 184, 0.2);
      border-radius: 12px;
      padding: 16px;
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 32px 64px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(59, 130, 246, 0.08);
      animation: float 6s ease-in-out infinite;
      position: relative;
    }

    .mockup-header {
      display: flex;
      gap: 6px;
      margin-bottom: 12px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    }

    .mockup-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
    }

    .mockup-dot:nth-child(1) { background: #ef4444; }
    .mockup-dot:nth-child(2) { background: #f59e0b; }
    .mockup-dot:nth-child(3) { background: #10b981; }

    .mockup-club-name {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--slate-400);
      padding: 0 4px 12px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.12);
      margin-bottom: 4px;
    }

    .mockup-stats {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 8px;
      margin-bottom: 12px;
    }

    .mockup-stat {
      background: rgba(148, 163, 184, 0.08);
      border: 1px solid rgba(148, 163, 184, 0.1);
      border-radius: 8px;
      padding: 10px;
      text-align: center;
    }

    .mockup-stat-label {
      font-size: 9px;
      color: var(--slate-500);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 4px;
    }

    .mockup-stat-val {
      font-size: 20px;
      font-weight: 700;
      color: var(--slate-100);
      white-space: nowrap;
    }

    .mockup-stat-val.blue { color: var(--blue-400); }
    .mockup-stat-val.green { color: var(--green-500); }

    /* ─── SECTIONS ─── */
    section {
      padding: 80px 5%;
      position: relative;
    }

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

    .section-tag {
      display: inline-block;
      font-size: 17px;
      letter-spacing: 2px;
      color: var(--blue-400);
      text-transform: uppercase;
      margin-bottom: 12px;
      padding: 4px 10px;
      background: rgba(59, 130, 246, 0.08);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: 20px;
    }

    .section-h2 {
      font-size: clamp(38px, 6vw, 56px);
      line-height: 1.1;
      letter-spacing: -0.5px;
      margin-bottom: 16px;
      font-weight: 700;
    }

    .section-h2 .accent {
      color: transparent;
      background: linear-gradient(135deg, var(--blue-400) 0%, #60a5fa 100%);
      -webkit-background-clip: text;
      background-clip: text;
    }

    .section-sub {
      font-size: 17px;
      color: var(--slate-400);
      max-width: 600px;
      margin: 0 auto;
    }

    /* ─── TRUST STRIP ─── */
    .trust-strip {
      padding: 60px 5%;
      text-align: center;
      border-top: 1px solid rgba(148, 163, 184, 0.1);
      border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    }

    .trust-label {
      font-size: 17px;
      color: var(--slate-500);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 24px;
    }

    .trust-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .trust-logo {
      width: 130px;
      height: 120px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(148, 163, 184, 0.15);
      border-radius: 12px;
      opacity: 0.85;
      transition: all 0.3s;
    }

    .trust-logo:hover {
      opacity: 1;
      border-color: rgba(148, 163, 184, 0.35);
      background: rgba(255, 255, 255, 0.08);
    }

    .trust-logo svg {
      width: 40px;
      height: 40px;
      color: var(--slate-400);
    }

    .trust-logo img {
      width: 72px;
      height: 72px;
      object-fit: contain;
    }

    .trust-logo-label {
      font-size: 11px;
      font-weight: 500;
      color: var(--slate-400);
      margin-top: 6px;
      letter-spacing: 0.03em;
    }

    /* ─── STATS ─── */
    .stats-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      text-align: center;
    }

    .stat-item {
      opacity: 0;
      animation: fadeUp 0.6s ease both;
    }

    .stat-num {
      font-size: clamp(42px, 6vw, 60px);
      font-weight: 700;
      background: linear-gradient(135deg, var(--blue-400) 0%, #60a5fa 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat-num span {
      font-size: 0.5em;
      opacity: 0.8;
      color: var(--slate-100);
    }

    .stat-label {
      font-size: 16px;
      color: var(--slate-400);
      font-weight: 300;
    }

    /* ─── FEATURES GRID ─── */
    .features-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }

    .feat-card {
      background: rgba(148, 163, 184, 0.04);
      border: 1px solid rgba(148, 163, 184, 0.1);
      border-radius: 10px;
      padding: 28px;
      text-align: center;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .feat-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(600px at 50% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 80%);
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
    }

    .feat-card:hover {
      border-color: rgba(59, 130, 246, 0.4);
      background: rgba(59, 130, 246, 0.06);
      box-shadow: 0 0 32px rgba(59, 130, 246, 0.08);
    }

    .feat-card:hover::before {
      opacity: 1;
    }

    .feat-icon {
      font-size: 42px;
      margin-bottom: 12px;
    }

    .feat-card h3 {
      font-size: 16px;
      margin-bottom: 10px;
      color: var(--slate-100);
      font-weight: 600;
    }

    .feat-card p {
      font-size: 17px;
      color: var(--slate-400);
      line-height: 1.6;
    }

    /* ─── PLAYER PORTAL ─── */
    .player-section {
      background: rgba(59, 130, 246, 0.04);
      border-top: 1px solid rgba(59, 130, 246, 0.1);
      border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    }

    .player-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .player-text h2 {
      font-size: clamp(38px, 6vw, 50px);
      line-height: 1.1;
      margin-bottom: 16px;
      font-weight: 700;
    }

    .player-text p {
      font-size: 17px;
      color: var(--slate-400);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .player-features {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .player-feature {
      display: flex;
      gap: 12px;
      font-size: 17px;
      color: var(--slate-200);
    }

    .player-feature svg {
      width: 18px;
      height: 18px;
      color: var(--green-500);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .player-visual {
      height: 380px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .phone-mockup {
      width: 260px;
      height: 360px;
      background: var(--slate-800);
      border: 12px solid var(--slate-900);
      border-radius: 36px;
      padding: 6px;
      box-shadow:
        0 0 0 1px rgba(148, 163, 184, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.3);
      position: relative;
      overflow: hidden;
    }

    .phone-mockup::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 140px;
      height: 20px;
      background: var(--slate-900);
      border-radius: 0 0 16px 16px;
      z-index: 10;
    }

    .phone-screen {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--slate-800) 0%, var(--slate-700) 100%);
      border-radius: 28px;
      padding: 16px 12px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding-top: 26px;
    }

    .phone-stat {
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: 8px;
      padding: 10px;
      text-align: center;
    }

    .phone-stat-val {
      font-size: 20px;
      font-weight: 700;
      color: var(--blue-400);
    }

    .phone-stat-label {
      font-size: 8px;
      color: var(--slate-500);
      margin-top: 2px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* ─── TESTIMONIALS ─── */
    .testimonials-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }

    .testimonial-card {
      background: rgba(148, 163, 184, 0.04);
      border: 1px solid rgba(148, 163, 184, 0.1);
      border-radius: 10px;
      padding: 28px;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      transition: all 0.3s;
    }

    .testimonial-card:hover {
      border-color: rgba(59, 130, 246, 0.3);
      background: rgba(59, 130, 246, 0.06);
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .testimonial-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue-400) 0%, #60a5fa 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 600;
      font-size: 16px;
      flex-shrink: 0;
    }

    .testimonial-info h4 {
      font-size: 17px;
      color: var(--slate-100);
      margin-bottom: 2px;
      font-weight: 600;
    }

    .testimonial-info p {
      font-size: 17px;
      color: var(--slate-500);
    }

    .testimonial-text {
      font-size: 17px;
      color: var(--slate-400);
      line-height: 1.7;
      margin-bottom: 12px;
      font-style: italic;
    }

    .testimonial-stars {
      display: flex;
      gap: 3px;
    }

    .star {
      color: var(--amber-500);
      font-size: 17px;
    }

    /* ─── HOW IT WORKS ─── */
    .how-section {
      background: var(--slate-800);
      border-top: 1px solid rgba(148, 163, 184, 0.1);
    }

    .steps-list {
      max-width: 700px;
      margin: 60px auto 0;
      position: relative;
    }

    .steps-list::before {
      content: '';
      position: absolute;
      left: 19px;
      top: 32px;
      bottom: 0;
      width: 1px;
      background: linear-gradient(180deg, var(--blue-400) 0%, transparent 100%);
    }

    .step-row {
      display: grid;
      grid-template-columns: 40px 1fr;
      gap: 24px;
      margin-bottom: 40px;
      opacity: 0;
      animation: fadeUp 0.6s ease forwards;
    }

    .step-circle {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--blue-500);
      border: 2px solid var(--slate-900);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 600;
      font-size: 16px;
      position: relative;
      z-index: 1;
      flex-shrink: 0;
    }

    .step-content h3 {
      font-size: 16px;
      margin-bottom: 8px;
      color: var(--slate-100);
      font-weight: 600;
    }

    .step-content p {
      font-size: 17px;
      color: var(--slate-400);
      line-height: 1.6;
      margin-bottom: 10px;
    }

    .step-chip {
      display: inline-block;
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: 6px;
      padding: 6px 10px;
      font-size: 17px;
      color: var(--blue-400);
    }

    /* ─── PRICING ─── */
    #pricing {
      background: var(--slate-800);
    }

    .pricing-note {
      text-align: center;
      font-size: 16px;
      color: var(--slate-500);
      max-width: 600px;
      margin: 0 auto 32px;
    }

    .pricing-toggle {
      display: flex;
      justify-content: center;
      margin-bottom: 48px;
    }

    .pricing-toggle-inner {
      display: inline-flex;
      background: rgba(148, 163, 184, 0.08);
      border: 1px solid rgba(148, 163, 184, 0.12);
      border-radius: 50px;
      padding: 4px;
      gap: 4px;
    }

    .toggle-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 22px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      font-size: 15px;
      font-weight: 500;
      transition: all 0.2s;
      background: transparent;
      color: var(--slate-400);
      font-family: inherit;
    }

    .toggle-btn:hover {
      color: var(--slate-200);
    }

    .toggle-btn.active {
      background: var(--slate-600);
      color: var(--slate-100);
      box-shadow: 0 1px 4px rgba(0,0,0,0.3);
    }

    .toggle-savings-badge {
      display: inline-block;
      background: rgba(34, 197, 94, 0.15);
      color: #4ade80;
      font-size: 11px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 20px;
      letter-spacing: 0.3px;
    }

    .plan-align-spacer {
      display: none;
    }

    @media (min-width: 780px) {
      .plan-align-spacer {
        display: block;
        height: 35px;
      }
    }

    .plan-savings-badge {
      display: inline-block;
      background: rgba(34, 197, 94, 0.12);
      color: #4ade80;
      font-size: 11px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 20px;
      margin-bottom: 14px;
    }

    .pricing-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
      margin-bottom: 48px;
    }

    .price-card {
      background: rgba(148, 163, 184, 0.04);
      border: 1px solid rgba(148, 163, 184, 0.1);
      border-radius: 10px;
      padding: 28px;
      text-align: center;
      transition: all 0.3s;
      position: relative;
      display: flex;
      flex-direction: column;
      opacity: 0;
      animation: fadeUp 0.6s ease forwards;
    }

    .price-card:hover {
      border-color: rgba(59, 130, 246, 0.3);
      background: rgba(59, 130, 246, 0.06);
    }

    .price-card.featured {
      border: 2px solid var(--blue-500);
      background: rgba(59, 130, 246, 0.08);
      box-shadow: 0 0 32px rgba(59, 130, 246, 0.12);
      transform: translateY(-8px);
    }

    .featured-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, var(--blue-400) 0%, #60a5fa 100%);
      color: white;
      padding: 4px 12px;
      border-radius: 16px;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .plan-name {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--slate-100);
    }

    .plan-range {
      font-size: 17px;
      color: var(--slate-500);
      margin-bottom: 18px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .plan-price {
      font-size: 40px;
      font-weight: 700;
      color: var(--blue-400);
      line-height: 1;
      margin-bottom: 2px;
    }

    .plan-price.free {
      color: var(--green-500);
      font-size: 30px;
      padding: 4px 0;
    }

    .plan-price-note {
      font-size: 17px;
      color: var(--slate-500);
      margin-bottom: 20px;
    }

    .plan-features {
      list-style: none;
      margin-bottom: 20px;
      flex: 1;
      text-align: left;
    }

    .plan-features li {
      font-size: 16px;
      color: var(--slate-400);
      padding: 8px 0;
      border-bottom: 1px solid rgba(148, 163, 184, 0.1);
      position: relative;
      padding-left: 20px;
    }

    .plan-features li:last-child {
      border-bottom: none;
    }

    .plan-features li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--green-500);
      font-weight: 700;
    }

    .plan-cta {
      background: var(--blue-500);
      color: white;
      font-weight: 600;
      font-size: 17px;
      padding: 10px 20px;
      border-radius: 6px;
      border: none;
      transition: all 0.2s;
      margin-top: auto;
    }

    .plan-cta:hover {
      background: var(--blue-600);
      transform: translateY(-1px);
    }

    .price-card.featured .plan-cta {
      background: transparent;
      border: 1px solid var(--blue-400);
      color: var(--blue-400);
    }

    .price-card.featured .plan-cta:hover {
      background: var(--blue-400);
      color: white;
    }

    /* ─── ABOUT ─── */
    .about-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-text h2 {
      font-size: clamp(38px, 6vw, 50px);
      line-height: 1.1;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .about-text p {
      font-size: 16px;
      color: var(--slate-400);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .about-values {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .value-item {
      display: flex;
      gap: 14px;
    }

    .value-icon {
      font-size: 28px;
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(59, 130, 246, 0.1);
      border-radius: 8px;
    }

    .value-item h4 {
      display: block;
      color: var(--slate-100);
      margin-bottom: 4px;
      font-weight: 600;
      font-size: 17px;
    }

    .value-item p {
      font-size: 16px;
      color: var(--slate-500);
      margin: 0;
    }

    /* ─── CTA BANNER ─── */
    .cta-banner {
      text-align: center;
      animation: fadeUp 0.8s ease;
    }

    .cta-banner h2 {
      font-size: clamp(32px, 6vw, 48px);
      line-height: 1.1;
      margin-bottom: 12px;
      font-weight: 700;
    }

    .cta-banner p {
      font-size: 17px;
      color: var(--slate-400);
      margin-bottom: 28px;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--slate-800);
      border-top: 1px solid rgba(148, 163, 184, 0.1);
      padding: 60px 5% 30px;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
    }

    .footer-brand .nav-logo {
      margin-bottom: 12px;
    }

    .footer-brand p {
      font-size: 16px;
      color: var(--slate-400);
      line-height: 1.6;
    }

    .footer-col h4 {
      font-size: 17px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--slate-500);
      margin-bottom: 14px;
      font-weight: 600;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col a {
      font-size: 16px;
      color: var(--slate-400);
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: var(--slate-100);
    }

    .email-copy {
      display: block;
      font-size: 14px;
      color: var(--slate-500);
      cursor: pointer;
      margin-top: 2px;
      transition: color 0.2s;
      user-select: none;
    }
    .email-copy:hover { color: var(--slate-200); }
    .email-copy.copied { color: var(--green-500); }

    .footer-bottom {
      text-align: center;
      font-size: 17px;
      color: var(--slate-500);
      padding-top: 20px;
    }

    .footer-social {
      display: flex;
      gap: 12px;
      margin-top: 16px;
    }

    .footer-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(148, 163, 184, 0.1);
      color: var(--slate-400);
      transition: background 0.2s, color 0.2s;
      text-decoration: none;
    }

    .footer-social a:hover {
      background: rgba(148, 163, 184, 0.2);
      color: var(--slate-100);
    }

    .footer-social svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      nav {
        padding: 0 4%;
      }

      .nav-center {
        display: none;
      }

      .nav-mobile-toggle {
        display: flex;
      }

      .nav-menu-mobile {
        display: block;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .hero-visual {
        order: -1;
      }

      .mockup-card {
        max-width: 100%;
      }

      .player-inner,
      .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .trust-logos {
        gap: 20px;
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }

      section {
        padding: 60px 4%;
      }

      .trust-strip {
        padding: 40px 4%;
      }
    }

    @media (max-width: 480px) {
      nav {
        padding: 0 4%;
        height: 56px;
      }

      .nav-logo {
        font-size: 16px;
        gap: 8px;
      }

      .logo-icon {
        width: 32px;
        height: 32px;
      }

      .logo-icon svg {
        width: 18px;
        height: 18px;
      }

      .nav-cta {
        padding: 8px 16px;
        font-size: 15px;
      }

      .nav-right {
        gap: 8px;
        flex: 0 1 auto;
      }

      .lang-switcher {
        display: none;
      }

      .nav-mobile-toggle {
        width: 32px;
        height: 32px;
        z-index: 101;
        position: relative;
        flex-shrink: 0;
      }

      .nav-menu-mobile {
        top: 56px;
      }

      .hero-actions {
        flex-direction: column;
        width: 100%;
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
        justify-content: center;
      }

      .features-grid,
      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

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

      .plan-align-spacer {
        display: none !important;
      }

      .price-card.featured {
        transform: translateY(0);
      }

      .hero-h1 {
        font-size: 38px;
        word-break: keep-all;
      }

      .hero-sub {
        font-size: 16px;
      }

      .section-h2 {
        font-size: 28px;
      }

      section {
        padding: 48px 4%;
      }

      .player-visual,
      .phone-mockup {
        max-width: 100%;
      }

      .phone-mockup {
        width: 230px;
        height: 340px;
      }
    }
