/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 27 мая 2026 г., 22:11:24
    Author     : Svyatoslav Belimov
*/

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

  :root {
    --green: #4CAF88;
    --green-dark: #3a9c78;
    --orange: #FF8C42;
    --orange-dark: #f17a2e;
    --dark: #1A1A2E;
    --dark-2: #16213E;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --light: #F7F9FC;
    --light-2: #EEF2F7;
    --white: #FFFFFF;
    --border: #E5E7EB;
    --red: #EF4444;
    --red-light: #FCA5A5;
    --gold: #F59E0B;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Nunito', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── 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(--border);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
  }
  .nav-logo {
    font-size: 1.5rem; font-weight: 900; color: var(--dark);
    text-decoration: none;
  }
  .nav-logo span { color: var(--green); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    color: var(--gray); text-decoration: none; font-weight: 600;
    font-size: 0.95rem; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--green); }
  .nav-cta {
    background: var(--green); color: #fff;
    padding: 0.5rem 1.4rem; border-radius: 50px;
    font-weight: 700; text-decoration: none; font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(76,175,136,0.35); }

  /* ─── SECTIONS ─── */
  section { padding: 90px 5%; }
  .container { max-width: 1140px; margin: 0 auto; }

  .section-label {
    display: inline-block;
    background: rgba(76,175,136,0.12);
    color: var(--green);
    font-size: 0.8rem; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.3rem 1rem; border-radius: 50px;
    margin-bottom: 1rem;
  }

  h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    font-weight: 900; line-height: 1.15;
    margin-bottom: 1rem;
  }
  .sub {
    color: var(--gray); font-size: 1.1rem;
    max-width: 640px; margin-bottom: 3rem;
  }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    display: flex; align-items: center;
    background: linear-gradient(135deg, #f0fdf6 0%, #fff8f2 50%, #fff 100%);
    padding-top: 110px;
    position: relative;
    overflow: hidden;
  }
  #hero::before {
    content: ''; position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,140,66,0.15), transparent 70%);
    border-radius: 50%;
  }
  #hero::after {
    content: ''; position: absolute;
    bottom: -150px; left: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(76,175,136,0.12), transparent 70%);
    border-radius: 50%;
  }
  .hero-inner {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center;
    max-width: 1140px; margin: 0 auto; width: 100%;
    position: relative; z-index: 1;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(76,175,136,0.1); border: 1px solid rgba(76,175,136,0.3);
    border-radius: 50px; padding: 0.4rem 1.1rem;
    font-size: 0.85rem; font-weight: 700; color: var(--green);
    margin-bottom: 1.5rem;
  }
  .hero-title {
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    font-weight: 900; line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
  }
  .hero-title .accent { color: var(--green); }
  .hero-title .accent2 { color: var(--orange); }
  .hero-desc {
    color: var(--gray); font-size: 1.15rem;
    line-height: 1.7; margin-bottom: 2rem;
    max-width: 540px;
  }
  .hero-features {
    display: flex; flex-wrap: wrap; gap: 0.6rem;
    margin-bottom: 2rem;
  }
  .hero-feature {
    background: white; border: 1px solid var(--border);
    border-radius: 50px; padding: 0.4rem 0.95rem;
    font-size: 0.85rem; font-weight: 700; color: var(--dark);
    display: inline-flex; align-items: center; gap: 0.4rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--green); color: #fff;
    padding: 0.95rem 2rem; border-radius: 50px;
    font-weight: 800; font-size: 1rem; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(76,175,136,0.4); }
  .btn-secondary {
    background: transparent; color: var(--dark);
    padding: 0.95rem 2rem; border-radius: 50px;
    font-weight: 800; font-size: 1rem; text-decoration: none;
    border: 2px solid var(--border);
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
  }
  .btn-secondary:hover { border-color: var(--green); color: var(--green); }

  .hero-stats {
    display: flex; gap: 2.5rem; margin-top: 2.5rem;
    padding-top: 2rem; border-top: 1px solid var(--border);
  }
  .stat { }
  .stat-num { font-size: 1.7rem; font-weight: 900; color: var(--dark); line-height: 1; }
  .stat-num .unit { font-size: 1rem; color: var(--green); }
  .stat-label { font-size: 0.82rem; color: var(--gray); font-weight: 600; margin-top: 0.3rem; }

  /* ─── PHONE MOCKUP ─── */
  .phone-wrap {
    position: relative;
    display: flex; justify-content: center;
  }
  .phone {
    width: 320px;
    background: var(--dark);
    border-radius: 38px;
    padding: 12px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.05);
    position: relative;
  }
  .phone::before {
    content: ''; position: absolute;
    top: 18px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 22px;
    background: var(--dark); border-radius: 12px;
    z-index: 3;
  }
  .phone-screen {
    background: linear-gradient(180deg, #f0fdf6 0%, #fff 100%);
    border-radius: 28px;
    overflow: hidden;
    height: 600px;
    position: relative;
  }
  .tg-header {
    background: white; padding: 14px 16px;
    display: flex; align-items: center; gap: 0.7rem;
    border-bottom: 1px solid var(--border);
    padding-top: 40px;
  }
  .tg-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--orange));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
  }
  .tg-title { font-weight: 800; font-size: 0.92rem; }
  .tg-sub { font-size: 0.72rem; color: var(--green); font-weight: 700; }

  .app-content { padding: 16px; }
  .balance-card {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
  }
  .balance-card::after {
    content: '🐾'; position: absolute;
    right: -10px; bottom: -20px;
    font-size: 6rem; opacity: 0.1;
  }
  .balance-label { font-size: 0.7rem; opacity: 0.85; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
  .balance-amount { font-size: 2rem; font-weight: 900; margin: 0.2rem 0; }
  .balance-amount span { font-size: 0.9rem; opacity: 0.85; }
  .balance-info { font-size: 0.72rem; opacity: 0.85; }

  .reminder-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  .reminder-head {
    display: flex; align-items: center; gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .reminder-icon { font-size: 1.2rem; }
  .reminder-title { font-weight: 800; font-size: 0.78rem; }
  .reminder-text { font-size: 0.75rem; color: var(--gray); margin-bottom: 0.5rem; line-height: 1.4; }
  .reminder-text b { color: var(--dark); }
  .reminder-btn {
    background: var(--orange); color: white;
    font-size: 0.72rem; font-weight: 800;
    padding: 0.4rem 0.8rem; border-radius: 50px;
    border: none;
    display: inline-block;
  }

  .mini-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
    margin-bottom: 10px;
  }
  .mini-tile {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px;
    font-size: 0.7rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  }
  .mini-tile-icon { font-size: 1.3rem; margin-bottom: 0.3rem; }
  .mini-tile-title { font-weight: 800; font-size: 0.72rem; margin-bottom: 0.15rem; }
  .mini-tile-sub { color: var(--gray); font-size: 0.68rem; }

  .floating-card {
    position: absolute;
    background: white;
    border-radius: 14px;
    padding: 0.7rem 0.95rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    font-size: 0.78rem;
    font-weight: 700;
    display: flex; align-items: center; gap: 0.5rem;
    white-space: nowrap;
    z-index: 5;
  }
  .floating-1 {
    top: 60px; left: -40px;
    animation: float 4s ease-in-out infinite;
  }
  .floating-2 {
    bottom: 80px; right: -30px;
    animation: float 4s ease-in-out infinite 2s;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .float-icon { font-size: 1.2rem; }
  .float-meta { font-size: 0.7rem; color: var(--gray); font-weight: 600; }

  /* ─── PROBLEM ─── */
  #problem {
    background: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
  }
  #problem::before {
    content: ''; position: absolute;
    top: 20%; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,140,66,0.15), transparent 70%);
    border-radius: 50%;
  }
  #problem h2 { color: white; }
  #problem .sub { color: rgba(255,255,255,0.6); }
  #problem .section-label {
    background: rgba(255,140,66,0.15);
    color: var(--orange);
  }

  .market-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
    position: relative; z-index: 1;
  }
  .market-text p { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 1rem; font-size: 1.05rem; }
  .market-text strong { color: white; }

  .market-stat-row {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem; margin-top: 2rem;
  }
  .market-stat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; padding: 1.2rem; text-align: center;
  }
  .market-stat-num {
    font-size: 2rem; font-weight: 900; color: var(--orange);
  }
  .market-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 0.3rem; line-height: 1.4; }

  .vs-block {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; padding: 2rem;
    backdrop-filter: blur(10px);
  }
  .vs-title { font-size: 0.78rem; font-weight: 800; color: rgba(255,255,255,0.5);
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem; text-align: center; }
  .vs-row {
    display: grid; grid-template-columns: 1fr auto 1fr;
    align-items: center; gap: 0.6rem; margin-bottom: 0.7rem;
  }
  .vs-item {
    border-radius: 10px;
    padding: 0.7rem 0.85rem; font-size: 0.82rem; font-weight: 700;
  }
  .vs-item.bad { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: var(--red-light); }
  .vs-item.good { background: rgba(76,175,136,0.12); border: 1px solid rgba(76,175,136,0.3); color: #6EE7B7; }
  .vs-sep { color: var(--orange); font-weight: 900; font-size: 1rem; text-align: center; }

  /* ─── PAINS ─── */
  #pains { background: var(--light); }
  .pains-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.3rem;
  }
  .pain-card {
    background: var(--white); border-radius: 20px;
    padding: 1.8rem; border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .pain-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
  .pain-icon { font-size: 2rem; margin-bottom: 0.8rem; }
  .pain-card h4 { font-weight: 800; margin-bottom: 0.5rem; font-size: 1.02rem; line-height: 1.3; }
  .pain-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

  /* ─── MINI APP SHOWCASE ─── */
  #miniapp {
    background: linear-gradient(135deg, #f0fdf6 0%, #fff8f2 100%);
    position: relative;
    overflow: hidden;
  }
  .miniapp-grid {
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center;
  }
  .miniapp-features {
    display: flex; flex-direction: column; gap: 1rem;
    margin-top: 2rem;
  }
  .mf-row {
    background: white; border-radius: 16px;
    padding: 1.2rem;
    display: flex; gap: 1rem; align-items: flex-start;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    border: 1px solid var(--border);
    transition: transform 0.2s;
  }
  .mf-row:hover { transform: translateX(4px); }
  .mf-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
  }
  .mf-text h4 { font-weight: 800; font-size: 1rem; margin-bottom: 0.3rem; }
  .mf-text p { font-size: 0.88rem; color: var(--gray); line-height: 1.55; }

  .platforms {
    display: flex; gap: 0.8rem; margin-top: 1.5rem; flex-wrap: wrap;
  }
  .platform-badge {
    background: white; border: 1px solid var(--border);
    border-radius: 50px; padding: 0.5rem 1rem;
    font-size: 0.85rem; font-weight: 700;
    display: inline-flex; align-items: center; gap: 0.4rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }

  /* ─── MECHANICS ─── */
  #mechanics { background: var(--white); }
  .mech-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  }
  .mech-card {
    background: var(--light);
    border-radius: 20px;
    padding: 1.8rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .mech-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--green), var(--orange));
    transform: scaleX(0); transition: transform 0.3s;
  }
  .mech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    background: white;
  }
  .mech-card:hover::before { transform: scaleX(1); }
  .mech-num {
    font-size: 0.75rem; font-weight: 800; color: var(--orange);
    letter-spacing: 0.1em; margin-bottom: 0.7rem;
  }
  .mech-icon { font-size: 2.4rem; margin-bottom: 0.8rem; }
  .mech-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.7rem; }
  .mech-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin-bottom: 1rem; }
  .mech-example {
    background: white;
    border-left: 3px solid var(--green);
    padding: 0.7rem 0.9rem;
    border-radius: 8px;
    font-size: 0.82rem;
    color: var(--dark);
    font-style: italic;
    line-height: 1.5;
  }
  .mech-card:hover .mech-example {
    background: var(--light);
  }

  /* ─── SCENARIO ─── */
  #scenario {
    background: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
  }
  #scenario::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 600px; height: 600px;
    transform: translate(-50%, -30%);
    background: radial-gradient(circle, rgba(76,175,136,0.2), transparent 70%);
    border-radius: 50%;
  }
  #scenario h2 { color: white; }
  #scenario .sub { color: rgba(255,255,255,0.6); }
  #scenario .section-label { background: rgba(76,175,136,0.2); color: #6EE7B7; }

  .scenario-flow {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
  }
  .scenario-step {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 1.3rem 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    transition: transform 0.2s, background 0.2s;
  }
  .scenario-step:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.1);
  }
  .scenario-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -16px; top: 50%;
    transform: translateY(-50%);
    color: var(--orange);
    font-size: 1.4rem;
    font-weight: 900;
    z-index: 2;
  }
  .scenario-num {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--green), var(--orange));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900;
    font-size: 0.95rem;
    margin: 0 auto 0.8rem;
  }
  .scenario-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
  .scenario-step h4 { font-size: 0.92rem; font-weight: 800; margin-bottom: 0.3rem; color: white; }
  .scenario-step p { font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.4; }

  /* ─── ECONOMICS ─── */
  #economics {
    background: linear-gradient(135deg, #f0fdf6, #fff8f2);
  }
  .econ-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  }
  .calc-card {
    background: white;
    border-radius: 24px;
    padding: 2.2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  }
  .calc-title {
    font-size: 0.78rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: 1.5rem;
  }
  .calc-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px dashed var(--border);
    font-size: 0.95rem;
  }
  .calc-row:last-of-type { border-bottom: none; }
  .calc-row.highlight {
    background: rgba(76,175,136,0.08);
    margin: 0.5rem -1rem 0;
    padding: 1rem;
    border-radius: 12px;
    border: none;
  }
  .calc-label { color: var(--gray); font-weight: 600; }
  .calc-value { font-weight: 800; color: var(--dark); }
  .calc-value.green { color: var(--green); font-size: 1.1rem; }
  .calc-value.red { color: var(--red); }

  .calc-total {
    margin-top: 1rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    border-radius: 16px;
    text-align: center;
  }
  .calc-total-label { font-size: 0.8rem; opacity: 0.9; }
  .calc-total-value { font-size: 2.3rem; font-weight: 900; line-height: 1; margin-top: 0.3rem; }

  .econ-points { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
  .econ-point {
    display: flex; gap: 1rem; align-items: flex-start;
  }
  .ep-check {
    width: 28px; height: 28px; min-width: 28px;
    background: var(--green); border-radius: 50%;
    color: white; font-weight: 900; font-size: 0.95rem;
    display: flex; align-items: center; justify-content: center;
  }
  .ep-text h4 { font-weight: 800; font-size: 1rem; margin-bottom: 0.2rem; }
  .ep-text p { font-size: 0.9rem; color: var(--gray); line-height: 1.55; }

  /* ─── FEATURES (5 MODULES) ─── */
  #features { background: var(--white); }
  .features-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
  }
  .feature-card {
    background: var(--light);
    border-radius: 18px;
    padding: 1.6rem 1.3rem;
    border: 1px solid var(--border);
    transition: all 0.2s;
    position: relative; overflow: hidden;
    text-align: center;
  }
  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    background: white;
  }
  .feature-icon {
    font-size: 2rem; margin-bottom: 0.8rem;
    display: inline-block;
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(76,175,136,0.15), rgba(255,140,66,0.1));
    border-radius: 16px;
    line-height: 56px;
  }
  .feature-card h3 { font-size: 0.98rem; font-weight: 800; margin-bottom: 0.5rem; }
  .feature-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.55; }

  /* ─── HOW IT WORKS ─── */
  #how { background: var(--light); }
  .steps { display: flex; gap: 0; flex-direction: column; max-width: 760px; }
  .step {
    display: flex; gap: 2rem; align-items: flex-start;
    position: relative; padding-bottom: 2.5rem;
  }
  .step:last-child { padding-bottom: 0; }
  .step:not(:last-child)::after {
    content: '';
    position: absolute; left: 25px; top: 52px; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, var(--green), transparent);
  }
  .step-num {
    width: 50px; height: 50px; min-width: 50px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 1.1rem; z-index: 1;
    box-shadow: 0 6px 16px rgba(76,175,136,0.3);
  }
  .step-content h3 { font-weight: 800; font-size: 1.2rem; margin-bottom: 0.5rem; }
  .step-content p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }
  .step-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.8rem; }
  .step-badge {
    background: rgba(255,140,66,0.1); color: var(--orange);
    font-size: 0.76rem; font-weight: 700;
    padding: 0.25rem 0.8rem; border-radius: 50px;
  }
  .step-badge.green {
    background: rgba(76,175,136,0.1); color: var(--green);
  }

  /* ─── RETAIL ─── */
  #retail {
    background: linear-gradient(135deg, #f0fdf6, #fff8f2);
  }
  .retail-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  }
  .retail-points { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
  .retail-point {
    display: flex; gap: 1rem; align-items: flex-start;
    background: white; border-radius: 16px; padding: 1.2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s;
  }
  .retail-point:hover { transform: translateX(4px); }
  .rp-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: linear-gradient(135deg, rgba(76,175,136,0.15), rgba(255,140,66,0.1));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  }
  .rp-text h4 { font-weight: 800; font-size: 0.98rem; margin-bottom: 0.3rem; }
  .rp-text p { font-size: 0.87rem; color: var(--gray); line-height: 1.55; }

  .retail-visual {
    background: white; border-radius: 24px;
    box-shadow: 0 16px 50px rgba(0,0,0,0.08);
    padding: 2rem;
  }
  .funnel-title {
    font-weight: 800; font-size: 0.82rem;
    color: var(--gray); text-transform: uppercase;
    letter-spacing: 0.08em; margin-bottom: 1rem;
  }
  .funnel {
    display: flex; flex-direction: column; gap: 0.5rem;
  }
  .funnel-step {
    border-radius: 12px; padding: 1rem 1.3rem;
    display: flex; align-items: center; justify-content: space-between;
    color: white; font-weight: 700; font-size: 0.88rem;
  }
  .funnel-step:nth-child(1) { background: #4CAF88; }
  .funnel-step:nth-child(2) { background: #5BB897; margin: 0 0.8rem; }
  .funnel-step:nth-child(3) { background: #6AC1A6; margin: 0 1.6rem; }
  .funnel-step:nth-child(4) { background: var(--orange); margin: 0 2.4rem; }
  .funnel-num { font-size: 1.15rem; font-weight: 900; }

  .funnel-note {
    margin-top: 1.5rem;
    background: rgba(255,140,66,0.08);
    border-left: 3px solid var(--orange);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    font-size: 0.85rem; color: var(--dark);
  }
  .funnel-note b { color: var(--orange); }

  /* ─── PRICING ─── */
  #pricing { background: var(--white); }
  .pricing-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
    align-items: stretch;
  }
  .price-card {
    border-radius: 22px; padding: 1.8rem 1.6rem;
    border: 2px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex; flex-direction: column;
  }
  .price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
  .price-card.featured {
    border-color: var(--green);
    background: linear-gradient(135deg, #f0fdf6, #fff);
    position: relative;
    transform: scale(1.02);
  }
  .price-card.featured:hover { transform: scale(1.02) translateY(-4px); }
  .popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--green), var(--orange));
    color: white;
    font-size: 0.75rem; font-weight: 800;
    padding: 0.35rem 1rem; border-radius: 50px; white-space: nowrap;
    box-shadow: 0 6px 16px rgba(76,175,136,0.3);
  }
  .price-name { font-weight: 800; font-size: 1.1rem; margin-bottom: 0.3rem; }
  .price-desc { font-size: 0.82rem; color: var(--gray); margin-bottom: 1.2rem; min-height: 38px; }
  .price-amount {
    font-size: 2rem; font-weight: 900; color: var(--dark);
    line-height: 1;
  }
  .price-amount span { font-size: 0.95rem; font-weight: 600; color: var(--gray); }
  .price-amount .from { font-size: 0.8rem; font-weight: 700; color: var(--gray); display: block; margin-bottom: 0.2rem; }
  .price-period { font-size: 0.82rem; color: var(--gray); margin-bottom: 1.5rem; margin-top: 0.4rem; }
  .price-features { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.5rem; flex-grow: 1; }
  .price-features li {
    display: flex; align-items: flex-start; gap: 0.5rem;
    font-size: 0.85rem; color: var(--dark);
    line-height: 1.4;
  }
  .price-features li::before { content: '✓'; color: var(--green); font-weight: 900; min-width: 14px; }
  .price-features li.no { color: var(--gray-light); }
  .price-features li.no::before { content: '–'; color: var(--border); }
  .btn-plan {
    display: block; text-align: center;
    padding: 0.8rem; border-radius: 50px;
    font-weight: 800; font-size: 0.92rem; text-decoration: none;
    transition: all 0.2s;
  }
  .btn-plan-outline {
    border: 2px solid var(--border); color: var(--dark);
  }
  .btn-plan-outline:hover { border-color: var(--green); color: var(--green); }
  .btn-plan-solid {
    background: var(--green); color: white;
  }
  .btn-plan-solid:hover { box-shadow: 0 8px 25px rgba(76,175,136,0.4); }

  /* ─── TESTIMONIALS ─── */
  #testimonials { background: var(--light); }
  .testi-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  }
  .testi-card {
    background: white; border-radius: 20px; padding: 1.8rem;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .testi-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(0,0,0,0.08); }
  .testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
  .testi-result {
    background: rgba(76,175,136,0.1);
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
  }
  .testi-text {
    font-size: 0.92rem; color: var(--dark); line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  .testi-author { display: flex; align-items: center; gap: 0.8rem; }
  .testi-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--orange));
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 800; font-size: 0.92rem;
  }
  .testi-name { font-weight: 800; font-size: 0.92rem; }
  .testi-role { font-size: 0.8rem; color: var(--gray); }

  /* ─── FAQ ─── */
  #faq { background: var(--white); }
  .faq-list { max-width: 760px; display: flex; flex-direction: column; gap: 0.7rem; }
  .faq-item {
    border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
    transition: border-color 0.2s;
  }
  .faq-item.open { border-color: var(--green); }
  .faq-q {
    padding: 1.2rem 1.5rem;
    font-weight: 700; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    transition: background 0.2s;
    font-size: 0.98rem;
    gap: 1rem;
  }
  .faq-q:hover { background: var(--light); }
  .faq-q .arrow { color: var(--green); font-size: 1.3rem; transition: transform 0.3s; min-width: 20px; }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
    padding: 0 1.5rem;
    font-size: 0.92rem; color: var(--gray); line-height: 1.7;
  }
  .faq-item.open .faq-a { max-height: 400px; padding: 0 1.5rem 1.3rem; }
  .faq-item.open .arrow { transform: rotate(45deg); }

  /* ─── CTA FINAL ─── */
  #cta {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    text-align: center; color: white;
    position: relative;
    overflow: hidden;
  }
  #cta::before {
    content: ''; position: absolute;
    top: -100px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(76,175,136,0.2), transparent 70%);
    border-radius: 50%;
  }
  #cta h2 { color: white; position: relative; z-index: 1; }
  #cta .sub { color: rgba(255,255,255,0.65); max-width: 560px; margin: 1rem auto 0; text-align: center; position: relative; z-index: 1; }
  .cta-inner { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; }
  .cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }
  .btn-white {
    background: white; color: var(--dark);
    padding: 0.95rem 2.2rem; border-radius: 50px;
    font-weight: 800; font-size: 1rem; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,255,255,0.15); }
  .btn-ghost {
    background: transparent; color: white;
    padding: 0.95rem 2.2rem; border-radius: 50px;
    font-weight: 800; font-size: 1rem; text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    transition: border-color 0.2s;
  }
  .btn-ghost:hover { border-color: white; }
  .cta-note { margin-top: 1.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--dark); border-top: 1px solid rgba(255,255,255,0.08);
    padding: 2rem 5%; color: rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.85rem; flex-wrap: wrap; gap: 1rem;
  }
  .footer-logo { font-weight: 900; color: white; font-size: 1.2rem; }
  .footer-logo span { color: var(--green); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1000px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .scenario-flow { grid-template-columns: repeat(2, 1fr); }
    .scenario-step:not(:last-child)::after { display: none; }
  }
  @media (max-width: 900px) {
    .hero-inner, .market-grid, .miniapp-grid, .econ-grid, .retail-grid { grid-template-columns: 1fr; }
    .phone-wrap { margin-top: 2rem; }
    .mech-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
    nav .nav-links { display: none; }
    .market-stat-row { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    section { padding: 60px 5%; }
    .mech-grid, .testi-grid, .pricing-grid, .features-grid { grid-template-columns: 1fr; }
    .scenario-flow { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .floating-card { display: none; }
    .price-card.featured { transform: none; }
    .price-card.featured:hover { transform: translateY(-4px); }
  }

