/* ===== RESET & VARIABLES ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #16A34A;
    --primary-dark: #15803D;
    --primary-light: #DCFCE7;
    --secondary: #0F172A;
    --accent: #F59E0B;
    --accent-dark: #D97706;
    --bg: #F8FAFC;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    --danger: #EF4444;
    --success: #16A34A;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius: 10px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
}

.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow);
}
.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

/* Light-context ghost — navbar/login (readable on light & dark via settings.css gray flip) */
.btn-soft {
    background: var(--gray-100);
    color: var(--gray-800);
    border: 1px solid var(--gray-200);
}
.btn-soft:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: transparent;
    transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: var(--gray-900);
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(22,163,74,0.3);
}

.logo-light { color: var(--white); }

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

/* Auth buttons only appear inside the mobile dropdown */
.nav-auth { display: none; }

.nav-link {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 15px;
    color: var(--gray-700);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(22,163,74,0.08), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245,158,11,0.06), transparent 50%);
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-300);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 3px solid var(--white);
    margin-left: -10px;
    box-shadow: var(--shadow-sm);
}
.avatar:first-child { margin-left: 0; }

.avatar-lg {
    width: 48px;
    height: 48px;
    font-size: 18px;
    margin: 0;
}

.trust-text {
    font-size: 14px;
    color: var(--gray-600);
}

.trust-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--accent);
    margin-top: 4px;
}

.trust-stars span {
    color: var(--gray-600);
    font-weight: 600;
    margin-left: 6px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    min-height: 480px;
}

.hero-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}

.hero-card-1 {
    top: 20px;
    left: 30px;
    width: 340px;
    padding: 0;
    overflow: hidden;
}

.hero-card-2 {
    bottom: 40px;
    right: 10px;
    padding: 16px 20px;
    animation-delay: -2s;
    z-index: 2;
}

.hc-header {
    background: var(--gray-100);
    padding: 12px 16px;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid var(--gray-200);
}

.hc-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.hc-dot.red { background: #EF4444; }
.hc-dot.yellow { background: #F59E0B; }
.hc-dot.green { background: #16A34A; }

.hc-body { padding: 20px; }

.hc-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}
.hc-row:last-child { border-bottom: none; }

.hc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}
.hc-icon.green { background: var(--primary); }
.hc-icon.yellow { background: var(--accent); }
.hc-icon.primary { background: var(--secondary); }

.hc-title { font-weight: 600; font-size: 14px; color: var(--gray-900); }
.hc-sub { font-size: 13px; color: var(--gray-500); }

.hc-mini {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hc-mini i {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hc-mini strong {
    display: block;
    font-size: 14px;
    color: var(--gray-900);
}
.hc-mini span {
    font-size: 12px;
    color: var(--gray-500);
}

.hero-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(22,163,74,0.15), transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

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

/* ===== STATS ===== */
.stats-section {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 12px;
}

.stat-number {
    font-family: 'Nunito', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}
.stat-number span { font-size: 22px; color: var(--gray-400); }

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

/* ===== SECTION COMMON ===== */
section {
    padding: 100px 0;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray-600);
}

/* ===== APPS ===== */
.apps-section { background: var(--bg); }

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

.app-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.app-card.popular {
    border-color: var(--primary);
    transform: scale(1.03);
}
.app-card.popular:hover { transform: scale(1.03) translateY(-8px); }

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(245,158,11,0.4);
}

.app-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin-bottom: 20px;
}
.app-icon.shop { background: linear-gradient(135deg, #DCFCE7, #BBF7D0); }
.app-icon.food { background: linear-gradient(135deg, #FEF3C7, #FDE68A); }
.app-icon.coffee { background: linear-gradient(135deg, #FEE2E2, #FECACA); }

/* Dinamik logo (admin tomonidan yuklangan) */
.app-icon-wrap {
    width: 84px;
    height: 84px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-light), #BBF7D0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}
.app-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.app-logo-emoji {
    font-size: 42px;
    line-height: 1;
}

/* Ilova interfeys screenshotlari */
.app-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 0 0 18px;
}
.app-thumb {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
    transition: var(--transition);
    cursor: pointer;
}
.app-thumb:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.app-card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-title {
    font-size: 24px;
    margin-bottom: 6px;
}

.app-desc {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 24px;
}

.app-features {
    margin-bottom: 28px;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-700);
}

.app-features i {
    width: 20px;
    height: 20px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.app-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 20px;
}

.price-value {
    font-family: 'Nunito', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-900);
}

.price-unit {
    color: var(--gray-500);
    font-size: 14px;
}

/* Individual narx ko'rsatkichi (Custom price tag) */
.app-price-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: var(--radius);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}
.app-price-custom i { font-size: 16px; }

.custom-price-note {
    margin-top: 36px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #FFF7E6;
    border: 1px solid #FFE0A3;
    padding: 18px 22px;
    border-radius: var(--radius-lg);
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}
.custom-price-note i {
    color: var(--accent);
    font-size: 22px;
    margin-top: 2px;
}
.custom-price-note p {
    font-size: 14.5px;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}
.custom-price-note strong { color: var(--gray-900); }

/* Ilova kartasidagi narx tegi */
.app-price-tag {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
    border: 1.5px solid var(--primary-light);
    border-radius: var(--radius);
    padding: 10px 16px;
}
.app-price-tag .price-num {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-dark);
}
.app-price-tag .price-lbl {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}

/* Bepul yorlig'i (obuna o'rniga) */
.app-free-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
    border: 1.5px solid var(--primary-light);
    border-radius: var(--radius);
    padding: 10px 16px;
    font-weight: 700;
    font-size: 15px;
    color: var(--primary-dark);
}
.app-free-tag i { color: var(--primary); }

/* ===== APP DETAIL MODAL ===== */
.app-detail-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.app-detail-overlay.show {
    opacity: 1;
    visibility: visible;
}
.app-detail-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.app-detail-overlay.show .app-detail-box {
    transform: translateY(0) scale(1);
}
.app-detail-close {
    position: sticky;
    top: 16px;
    float: right;
    margin: 16px 16px 0 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1;
}
.app-detail-close:hover { background: var(--gray-200); color: var(--gray-900); }

.app-detail-inner {
    padding: 28px 32px 32px;
    clear: both;
}

.detail-app-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}
.detail-app-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-light), #BBF7D0);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.detail-app-logo-img { width: 100%; height: 100%; object-fit: cover; }
.detail-app-logo-emoji { font-size: 38px; line-height: 1; }

.detail-app-title-wrap { display: flex; flex-direction: column; gap: 6px; }
.detail-app-name { font-size: 26px; margin: 0; }
.detail-popular-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    width: fit-content;
}

.detail-app-desc {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--gray-100);
}
.detail-app-desc h4,
.detail-app-features h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    margin-bottom: 10px;
}
.detail-app-desc p { color: var(--gray-600); font-size: 15px; line-height: 1.7; }

.detail-app-features { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-100); }
.detail-features-list { columns: 2; gap: 0 24px; }
.detail-features-list li { break-inside: avoid; }

.detail-app-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.detail-price-block { display: flex; flex-direction: column; gap: 6px; }
.detail-price-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-400);
}
.detail-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 6px;
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
    border: 1.5px solid var(--primary-light);
    border-radius: var(--radius);
    padding: 12px 18px;
    width: fit-content;
}
.detail-price-num {
    font-family: 'Nunito', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--primary-dark);
}
.detail-price-lbl { font-size: 14px; color: var(--gray-500); }

.detail-app-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.detail-app-actions .btn { flex: 1; min-width: 160px; }

@media (max-width: 520px) {
    .app-detail-inner { padding: 20px; }
    .detail-features-list { columns: 1; }
    .detail-app-actions { flex-direction: column; }
    .detail-app-actions .btn { width: 100%; }
}

/* ===== HOW IT WORKS ===== */
.how-section { background: var(--white); }

.how-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 24px;
    align-items: center;
}

.how-step {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}
.how-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.how-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--gray-200);
    line-height: 1;
}

.how-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.how-step h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.how-step p {
    color: var(--gray-600);
    font-size: 14px;
}

.how-step code {
    background: var(--gray-100);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}

.how-arrow {
    color: var(--gray-300);
    font-size: 24px;
}

/* ===== REVIEWS ===== */
.reviews-section { background: var(--bg); }

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

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.review-stars {
    display: flex;
    gap: 4px;
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 16px;
}

.review-text {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-name {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 15px;
}

.author-role {
    color: var(--gray-500);
    font-size: 13px;
}

/* ===== PRICING ===== */
.pricing-section { background: var(--white); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: linear-gradient(180deg, var(--gray-900), #1E293B);
    border-color: var(--gray-900);
    color: var(--white);
    transform: scale(1.04);
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-6px);
}

.pricing-card.featured h3 { color: var(--white); }
.pricing-card.featured .pricing-head p { color: var(--gray-400); }
.pricing-card.featured .pricing-features { color: var(--gray-200); }
.pricing-card.featured .amount { color: var(--white); }
.pricing-card.featured .period { color: var(--gray-400); }

.featured-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--accent);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(245,158,11,0.4);
}

.pricing-head {
    margin-bottom: 24px;
}

.pricing-head h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.pricing-head p {
    color: var(--gray-500);
    font-size: 14px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-card.featured .pricing-price {
    border-bottom-color: var(--gray-700);
}

.amount {
    font-family: 'Nunito', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--gray-900);
}

.period {
    color: var(--gray-500);
    font-size: 14px;
}

.pricing-features {
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
}

.pricing-features i {
    width: 20px;
    text-align: center;
}
.pricing-features i.ok { color: var(--primary); }
.pricing-features i.no { color: var(--gray-400); }

.pricing-card.featured .btn-primary {
    background: var(--accent);
    box-shadow: 0 4px 14px rgba(245,158,11,0.4);
}
.pricing-card.featured .btn-primary:hover {
    background: var(--accent-dark);
}

/* ===== CTA ===== */
.cta-section { padding: 60px 0 100px; background: var(--bg); }

.cta-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-xl);
    padding: 60px 60px;
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(22,163,74,0.3);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
    border-radius: 50%;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-decor {
    font-size: 120px;
    opacity: 0.15;
    line-height: 1;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-desc {
    margin: 20px 0 24px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-400);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    color: var(--gray-300);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links li, .footer-contacts li {
    padding: 6px 0;
    font-size: 14px;
}

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
}
.footer-contacts li a {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}
.footer-contacts li a:hover { color: var(--primary); }

.footer-contacts i {
    color: var(--primary);
    width: 16px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--gray-500);
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gray-900);
    color: var(--white);
    padding: 14px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    transform: translateX(400px);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 360px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success { background: var(--primary); }
.toast.error { background: var(--danger); }

/* ===== SCROLL TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: var(--transition);
    z-index: 998;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Stagger delays */
.reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal:nth-child(2) { transition-delay: 0.15s; }
.reveal:nth-child(3) { transition-delay: 0.25s; }
.reveal:nth-child(4) { transition-delay: 0.35s; }

/* ===== OBUNA PAGE STYLES ===== */
.subscribe-page {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: var(--bg);
}

.subscribe-container {
    max-width: 880px;
    margin: 0 auto;
}

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

.subscribe-header h1 {
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 10px;
}

.subscribe-header p {
    color: var(--gray-600);
    font-size: 16px;
}

/* Progress Bar */
.progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    gap: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.progress-step .step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-300);
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.progress-step.active .step-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 0 0 6px rgba(22,163,74,0.15);
}

.progress-step.completed .step-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.progress-step.completed .step-circle::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.progress-step.completed .step-circle .step-num { display: none; }

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

.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: var(--primary);
}

.progress-line {
    flex: 1;
    height: 2px;
    background: var(--gray-300);
    margin: 0 12px;
    margin-bottom: 22px;
    position: relative;
    overflow: hidden;
    max-width: 140px;
}

.progress-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.progress-line.filled::after { transform: translateX(0); }

/* Form Card */
.form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow);
}

.form-step {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.form-step.active { display: block; }

.form-step h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.form-step .step-desc {
    color: var(--gray-500);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group.full { grid-column: 1 / -1; }

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-label .required { color: var(--danger); }

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 15px;
    color: var(--gray-800);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(22,163,74,0.1);
}

.form-input.error,
.form-select.error {
    border-color: var(--danger);
    background: #FEF2F2;
}

.error-msg {
    font-size: 13px;
    color: var(--danger);
    margin-top: 6px;
    display: none;
    align-items: center;
    gap: 6px;
}

.form-group.has-error .error-msg { display: flex; }

/* Plan cards (in step 2) */
.plan-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.plan-card {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    background: var(--white);
}

.plan-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

.plan-card.selected {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(22,163,74,0.1);
}

.plan-card .check-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}

.plan-card.selected .check-icon {
    background: var(--primary);
    color: var(--white);
}

.plan-card .plan-emoji {
    font-size: 32px;
    margin-bottom: 12px;
}

.plan-card .plan-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.plan-card .plan-price-label {
    color: var(--gray-500);
    font-size: 13px;
    margin-bottom: 8px;
}

.plan-card .plan-amount {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--primary);
}

/* Billing toggle */
.billing-toggle {
    display: flex;
    background: var(--gray-100);
    padding: 4px;
    border-radius: var(--radius);
    margin-bottom: 28px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.billing-option {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    background: transparent;
    position: relative;
}

.billing-option.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.save-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: var(--white);
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 100px;
    font-weight: 700;
}

/* Summary (step 3) */
.summary-list {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 28px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}
.summary-row:last-child { border-bottom: none; }

.summary-row.total {
    padding-top: 16px;
    margin-top: 8px;
    border-top: 2px solid var(--gray-300);
    border-bottom: none;
}

.summary-label {
    color: var(--gray-600);
    font-size: 14px;
}

.summary-value {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 15px;
}

.summary-row.total .summary-label {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 16px;
}

.summary-row.total .summary-value {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    color: var(--primary);
}

/* Payment options */
.payment-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.payment-option {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
}

.payment-option:hover {
    border-color: var(--primary-light);
}

.payment-option.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

.payment-option .pay-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--gray-900);
}

.payment-option .pay-sub {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 2px;
}

/* Terms checkbox */
.terms-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.terms-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.terms-row label {
    font-size: 14px;
    color: var(--gray-700);
    cursor: pointer;
}

.terms-row a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

/* Form navigation */
.form-nav {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
}

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

/* ===== PLAN CARD PRICE ===== */
.plan-price-num {
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark);
}
.plan-price-per { color: var(--gray-500); font-size: 13px; }
.plan-card.selected .plan-price-num { color: var(--white); }
.plan-card.selected .plan-price-per { color: rgba(255,255,255,0.75); }

/* ===== SUBDOMAIN STEP ===== */
.subdomain-suggestions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.subdomain-chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
}
.subdomain-chip:hover { border-color: var(--primary); background: var(--primary-light); }
.subdomain-chip.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
}
.subdomain-chip-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}
.subdomain-chip-inner > i {
    font-size: 20px;
    color: var(--primary);
    width: 24px;
    text-align: center;
}
.subdomain-chip-inner strong {
    display: block;
    font-size: 15px;
    color: var(--gray-900);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}
.subdomain-chip-inner span {
    font-size: 12px;
    color: var(--gray-500);
}
.subdomain-chip-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: transparent;
    transition: var(--transition);
}
.subdomain-chip.selected .subdomain-chip-check {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.subdomain-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    color: var(--gray-400);
    font-size: 13px;
}
.subdomain-divider::before,
.subdomain-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.subdomain-custom-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.subdomain-input-row {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 200px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    transition: var(--transition);
}
.subdomain-input-row:focus-within { border-color: var(--primary); }
.subdomain-input-row .form-input {
    border: none;
    border-radius: 0;
    padding: 10px 14px;
    font-size: 14px;
    flex: 1;
    min-width: 0;
    background: transparent;
}
.subdomain-input-row .form-input:focus { outline: none; box-shadow: none; }
.subdomain-dot-uz {
    padding: 10px 14px;
    font-size: 13px;
    color: var(--gray-400);
    white-space: nowrap;
    background: var(--gray-50);
    border-left: 1px solid var(--gray-200);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

.subdomain-error {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--danger);
    font-size: 13px;
    width: 100%;
}

.selected-subdomain-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-light);
    border: 1.5px solid var(--primary);
    border-radius: var(--radius);
    padding: 12px 16px;
    color: var(--primary-dark);
    font-size: 14px;
    margin-top: 4px;
}
.selected-subdomain-info i { font-size: 18px; color: var(--primary); }

/* ===== SUCCESS INFO BOX ===== */
.success-info-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    max-width: 460px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.success-detail-row {
    display: flex;
    align-items: center;
    gap: 14px;
}
.success-detail-row > i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.success-detail-row > div { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.success-detail-row span { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; }
.success-detail-row strong { font-size: 15px; font-family: 'Nunito', sans-serif; font-weight: 800; color: var(--gray-900); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-trust { justify-content: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-visual { min-height: 380px; max-width: 480px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .apps-grid, .reviews-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .how-grid { grid-template-columns: 1fr; }
    .how-arrow { transform: rotate(90deg); margin: -8px auto; }
    .app-card.popular { transform: none; }
    .app-card.popular:hover { transform: translateY(-8px); }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-6px); }
    .cta-card { grid-template-columns: 1fr; text-align: center; padding: 40px 32px; }
    .cta-decor { display: none; }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .hero { padding: 110px 0 50px; }
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        transition: var(--transition);
    }
    .nav-links.open { transform: translateY(0); }
    .nav-link { width: 100%; padding: 12px 16px; }
    .nav-actions .btn { display: none; }
    .nav-auth { display: block; width: 100%; margin-top: 6px; }
    .hamburger { display: flex; }
    .apps-grid, .reviews-grid, .pricing-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .form-card { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .plan-cards { grid-template-columns: 1fr; }
    .payment-options { grid-template-columns: 1fr; }
    .progress-line { max-width: 40px; margin: 0 6px 22px; }
    .step-label { font-size: 11px; }
    .hero-card-1 { width: 280px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 28px; }
    .hero-card-1 { width: 240px; left: 10px; }
    .hero-card-2 { right: -5px; }
}

