/* ============================================
   Landing Page — Titul Tizimi
   ============================================ */

:root {
    --navy: #2d4068;
    --navy-dark: #1e2d4a;
    --navy-gradient: linear-gradient(135deg, #2d4068 0%, #1e2d4a 100%);
    --bg-page: #edf0f5;
    --bg-card: #ffffff;
    --text: #2d4068;
    --text-light: #f0f3f7;
    --muted: #7a8aaa;
    --border: #d0d8e8;
    --accent-green: #4ade80;
    --accent-green-dark: #22c55e;
    --accent-red: #ef4444;
    --shadow: 0 4px 20px rgba(45, 64, 104, .12);
    --shadow-lg: 0 8px 40px rgba(45, 64, 104, .18);
    --transition: .25s ease;
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    background: var(--bg-page);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

img {
    max-width: 100%;
}

/* ============================================
   Animations
   ============================================ */

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

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(-24px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.05); }
}

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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Section 1: Sticky Navigation
   ============================================ */

.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    transition: box-shadow var(--transition);
    border-bottom: 1px solid transparent;
}

.landing-nav.scrolled {
    box-shadow: 0 2px 20px rgba(45, 64, 104, .1);
    border-bottom-color: var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--navy);
}

.nav-brand-icon {
    width: 36px;
    height: 36px;
    background: var(--navy-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted);
    transition: color var(--transition);
}

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

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

.nav-lang-selector {
    display: flex;
    gap: 4px;
}

.nav-lang-btn {
    padding: 4px 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: transparent;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--muted);
    transition: all var(--transition);
    font-family: 'Nunito', sans-serif;
}

.nav-lang-btn:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.nav-lang-btn.active {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

.nav-cta {
    padding: 8px 20px;
    background: var(--navy);
    color: white !important;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    transition: all var(--transition);
    display: inline-block;
}

.nav-cta:hover {
    background: var(--navy-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 64, 104, .3);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.nav-mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 8px 30px rgba(45, 64, 104, .15);
    padding: 16px 24px 24px;
    animation: slideDown 0.3s ease;
    z-index: 999;
}

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

.nav-mobile-menu a {
    display: block;
    padding: 12px 0;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid var(--bg-page);
}

.nav-mobile-menu a:last-child {
    border-bottom: none;
}

.nav-mobile-lang {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* ============================================
   Section 2: Hero
   ============================================ */

.hero {
    background: var(--navy-gradient);
    padding: 140px 24px 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(74, 222, 128, 0.15);
    color: var(--accent-green);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(74, 222, 128, 0.25);
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.12rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 32px;
    max-width: 520px;
}

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

.btn-primary {
    padding: 14px 32px;
    background: var(--accent-green-dark);
    color: white;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
}

.btn-primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, .4);
}

.btn-ghost {
    padding: 14px 32px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    transition: all var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
}

.btn-ghost:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.btn-telegram-hero {
    padding: 14px 32px;
    background: #0088cc;
    color: white;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
}

.btn-telegram-hero:hover {
    background: #0077b5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, .4);
}

/* CTA section buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.btn-telegram-cta {
    padding: 14px 32px;
    background: transparent;
    color: white;
    border: 2px solid rgba(0, 136, 204, .6);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    transition: all var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
}

.btn-telegram-cta:hover {
    background: rgba(0, 136, 204, .2);
    border-color: #0088cc;
    transform: translateY(-2px);
}

/* Hero illustration (CSS-only) */
.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-visual-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}

.hero-visual-step:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-visual-step:nth-child(3) {
    animation-delay: 1s;
}

.hero-visual-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
}

.hero-visual-label {
    font-size: 0.78rem;
    font-weight: 700;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual-arrow {
    font-size: 1.4rem;
    opacity: 0.4;
    margin-bottom: 24px;
}

/* ============================================
   Section 3: Social Proof Bar
   ============================================ */

.proof-bar {
    background: var(--navy-dark);
    padding: 40px 24px;
    color: white;
}

.proof-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.proof-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-green);
    line-height: 1.2;
}

.proof-label {
    font-size: 0.88rem;
    opacity: 0.7;
    font-weight: 600;
}

/* ============================================
   Section 4: How It Works
   ============================================ */

.section {
    padding: 80px 24px;
}

.section-white {
    background: white;
}

.section-gray {
    background: var(--bg-page);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-badge {
    display: inline-block;
    background: rgba(45, 64, 104, 0.08);
    color: var(--navy);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.step-card {
    background: var(--bg-page);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
}

.section-white .step-card {
    background: var(--bg-page);
}

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

.step-number {
    width: 40px;
    height: 40px;
    background: var(--navy-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    margin: 0 auto 16px;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ============================================
   Section 4.5: Sample PDF
   ============================================ */

.sample-pdf-content {
    max-width: 720px;
    margin: 0 auto;
}

.sample-pdf-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border: 2px solid var(--accent-green-dark);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 32px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.sample-pdf-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.sample-pdf-icon {
    width: 56px;
    height: 56px;
    background: rgba(239, 68, 68, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #ef4444;
    flex-shrink: 0;
}

.sample-pdf-info {
    flex: 1;
}

.sample-pdf-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.sample-pdf-desc {
    font-size: 0.85rem;
    color: var(--muted);
}

.sample-pdf-download {
    padding: 10px 24px;
    background: var(--accent-green-dark);
    color: white;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.sample-pdf-download:hover {
    background: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, .3);
    color: white;
}

.sample-pdf-tips {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.sample-tip {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: white;
    border-radius: var(--radius);
    padding: 18px 22px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.sample-tip:hover {
    border-color: var(--accent-green-dark);
    box-shadow: 0 2px 12px rgba(34, 197, 94, .1);
}

.sample-tip-icon {
    color: var(--accent-green-dark);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.sample-tip strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 2px;
}

.sample-tip p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

.sample-pdf-guarantee {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(34, 197, 94, 0.08);
    border: 2px solid rgba(34, 197, 94, 0.25);
    border-radius: var(--radius);
    padding: 20px 24px;
    text-align: center;
    justify-content: center;
}

.guarantee-icon {
    font-size: 1.5rem;
    color: var(--accent-green-dark);
    flex-shrink: 0;
}

.sample-pdf-guarantee p {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-green-dark);
    margin: 0;
}

@media (max-width: 768px) {
    .sample-pdf-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .sample-pdf-download {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   Section 5: Features
   ============================================ */

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

.feature-card {
    background: white;
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(45, 64, 104, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

.feature-tag {
    display: inline-block;
    margin-top: 12px;
    padding: 3px 10px;
    background: rgba(74, 222, 128, 0.12);
    color: var(--accent-green-dark);
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
}

/* ============================================
   Section 6: Why Choose Us (Comparison Table)
   ============================================ */

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table thead th {
    background: var(--navy);
    color: white;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
}

.comparison-table thead th:first-child {
    width: 40%;
}

.comparison-table tbody td {
    padding: 14px 24px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--bg-page);
    vertical-align: middle;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr {
    background: white;
    transition: background var(--transition);
}

.comparison-table tbody tr:hover {
    background: rgba(45, 64, 104, 0.02);
}

.compare-bad {
    color: var(--accent-red);
    font-weight: 600;
}

.compare-good {
    color: var(--accent-green-dark);
    font-weight: 600;
}

.compare-icon-bad {
    color: var(--accent-red);
    margin-right: 8px;
}

.compare-icon-good {
    color: var(--accent-green-dark);
    margin-right: 8px;
}

/* ============================================
   Section 7: CTA Section
   ============================================ */

.cta-section {
    background: var(--navy-gradient);
    padding: 80px 24px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-note {
    margin-top: 16px;
    font-size: 0.85rem;
    opacity: 0.6;
    position: relative;
}

.cta-note i {
    margin-right: 4px;
}

/* ============================================
   Section 8: FAQ
   ============================================ */

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--navy);
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    text-align: left;
    font-family: 'Nunito', sans-serif;
    gap: 16px;
}

.faq-question:hover {
    background: rgba(45, 64, 104, 0.02);
}

.faq-chevron {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    color: var(--muted);
    flex-shrink: 0;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 24px 18px;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */

.landing-footer {
    background: #151e2e;
    color: rgba(255, 255, 255, 0.7);
    padding: 56px 24px 32px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.82rem;
    opacity: 0.5;
}

/* ============================================
   Responsive: Tablet (<=1000px)
   ============================================ */

@media (max-width: 1000px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-illustration {
        display: none;
    }

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

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

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 12px 16px;
    }
}

/* ============================================
   Responsive: Mobile nav (<=768px)
   ============================================ */

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-lang-selector {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding: 120px 24px 60px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

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

    .section {
        padding: 60px 24px;
    }

    .section-title {
        font-size: 1.6rem;
    }

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

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

    .cta-title {
        font-size: 1.7rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Comparison table scroll */
    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table {
        min-width: 560px;
    }
}

/* ============================================
   Responsive: Small mobile (<=480px)
   ============================================ */

@media (max-width: 480px) {
    .hero {
        padding: 110px 16px 48px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary, .btn-ghost, .btn-telegram-hero, .btn-telegram-cta {
        justify-content: center;
        padding: 14px 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .proof-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .proof-number {
        font-size: 1.8rem;
    }

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

    .section {
        padding: 48px 16px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 0.92rem;
    }

    .faq-answer-inner {
        padding: 0 16px 14px;
    }

    .cta-title {
        font-size: 1.4rem;
    }

    .cta-subtitle {
        font-size: 0.95rem;
    }
}
