/* ===== GINO Landing Page - Premium Styles ===== */

/* === Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6E56CF;
    --accent: #F4A261;
    --bg-light: #F8F9FA;
    --text-dark: #1A1A1A;
    --text-dim: #666;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --radius: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

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

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: contain;
    transition: all 0.3s;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s;
}

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

.nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

.mobile-menu-btn:focus-visible,
.mobile-menu-close:focus-visible,
.scroll-indicator:focus-visible,
.slider-nav:focus-visible,
.dot:focus-visible,
.modal-close:focus-visible,
.screenshot-modal-close:focus-visible {
    outline: 3px solid rgba(110, 86, 207, 0.5);
    outline-offset: 3px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #F0F0F0;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s;
}

.mobile-menu-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.3s;
}

.mobile-nav a:hover {
    background: linear-gradient(135deg, rgba(110, 86, 207, 0.1), rgba(244, 162, 97, 0.1));
    color: var(--primary);
    transform: translateX(8px);
}

/* === Animations === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
}

.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
}

.delay-3 {
    animation-delay: 0.6s;
    opacity: 0;
}

.delay-4 {
    animation-delay: 0.8s;
    opacity: 0;
}

.delay-5 {
    animation-delay: 1s;
    opacity: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: var(--transition);
}

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

/* === Hero Section === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: 
        linear-gradient(135deg, 
            rgba(103, 126, 234, 0.65) 0%, 
            rgba(118, 75, 162, 0.65) 100%),
        url('images/ossetia.jpg');
    background-size: cover;
    background-position: center;
    animation: heroReveal 1.5s ease-out;
}

/* Remove parallax ::before - it's causing issues */

@keyframes heroReveal {
    from {
        filter: blur(10px);
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        filter: blur(0);
        opacity: 1;
        transform: scale(1);
    }
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.hero-logo {
    width: 180px;
    height: 180px;
    border-radius: 40px;
    margin: 0 auto 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.3));
    animation: logoAppear 1s ease-out 0.5s backwards, float 3s ease-in-out infinite;
    display: block;
    object-fit: contain;
}

@keyframes logoAppear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
}



.hero-slogan {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 24px;
    font-weight: 500;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 860px;
    margin: 0 auto;
}

/* === Premium Store Buttons === */
.store-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 18px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 10px 28px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.08);
    border: 1.5px solid rgba(255,255,255,0.6);
    min-height: 84px;
}

.store-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
    transition: left 0.7s ease;
    pointer-events: none;
}

.store-btn:hover::before {
    left: 100%;
}

.store-btn:hover {
    transform: translateY(-6px) scale(1.025);
    box-shadow: 0 18px 46px rgba(0,0,0,0.28), 0 4px 12px rgba(0,0,0,0.12);
    border-color: rgba(255,255,255,0.9);
}

.store-btn:active {
    transform: translateY(-2px) scale(1.0);
    transition-duration: 0.15s;
}

.store-btn-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

.store-btn-icon img {
    width: 40px;
    height: 40px;
    display: block;
}

.store-btn:hover .store-btn-icon {
    transform: rotate(-8deg) scale(1.08);
    box-shadow: 0 10px 24px rgba(0,0,0,0.28);
}

.google-play .store-btn-icon {
    background: linear-gradient(135deg, #34A853 0%, #4285F4 100%);
    color: white;
}

.app-store .store-btn-icon {
    background: linear-gradient(135deg, #1e1e1e 0%, #3a3a3c 100%);
    color: white;
}

.apk-btn .store-btn-icon {
    background: linear-gradient(135deg, #6E56CF, #F4A261);
    color: white;
}

.rustore-btn .store-btn-icon {
    background: linear-gradient(135deg, #0A84FF 0%, #0055D4 100%);
    padding: 0;
}

.rustore-btn .store-btn-icon img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
}

.telegram-btn .store-btn-icon {
    background: linear-gradient(135deg, #29B6F6 0%, #0077CC 100%);
    color: white;
}

.store-btn-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.store-btn-text small {
    font-size: 11px;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.store-btn-text strong {
    font-size: 18px;
    color: #111827;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.store-btn-shine {
    position: absolute;
    top: -60%;
    right: -60%;
    width: 220%;
    height: 220%;
    background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.store-btn:hover .store-btn-shine {
    opacity: 1;
}

/* Accent color bar — слева, в фирменном цвете магазина */
.store-btn::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: transparent;
    transition: background 0.3s ease;
}
.google-play::after { background: linear-gradient(180deg, #34A853, #4285F4); }
.app-store::after { background: linear-gradient(180deg, #1e1e1e, #3a3a3c); }
.rustore-btn::after { background: linear-gradient(180deg, #0A84FF, #0055D4); }
.telegram-btn::after { background: linear-gradient(180deg, #29B6F6, #0077CC); }

.btn {
    padding: 16px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

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

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

.btn-secondary {
    background: var(--text-dark);
    color: var(--white);
}

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

.btn-telegram {
    background: #0088cc;
    color: var(--white);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 32px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    background: rgba(26, 26, 26, 0.96);
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 24px;
    flex-wrap: wrap;
}

.cookie-text h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
}

.cookie-text a {
    color: #F4A261;
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-actions .btn {
    box-shadow: none;
}

.cookie-actions .btn.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* === Policy & Delete Account Pages === */
.policy-page,
.delete-account-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 80px;
}

.delete-account-page {
    --danger: #E74C3C;
}

.policy-page .header,
.delete-account-page .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.policy-page .header .container,
.delete-account-page .header .container {
    max-width: 1200px;
    padding: 0 24px;
}

.policy-page .header-content,
.delete-account-page .header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.policy-page .logo,
.delete-account-page .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.policy-page .logo img,
.delete-account-page .logo img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: contain;
}

.policy-page .content-container,
.delete-account-page .content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.policy-page .content,
.delete-account-page .content {
    background: #fff;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.policy-page h1,
.delete-account-page h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    color: var(--primary);
    text-align: center;
}

.policy-page h1 {
    margin-bottom: 32px;
}

.delete-account-page h1 {
    margin-bottom: 16px;
}

.policy-page .last-updated {
    text-align: center;
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid #E8E8E8;
}

.delete-account-page .subtitle {
    text-align: center;
    color: var(--text-dim);
    font-size: 18px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid #E8E8E8;
}

.policy-page h2,
.delete-account-page h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 16px;
}

.policy-page h2:first-of-type,
.delete-account-page h2:first-of-type {
    margin-top: 0;
}

.policy-page p,
.delete-account-page p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.policy-page ul,
.delete-account-page ul {
    margin: 16px 0 16px 24px;
    list-style: none;
}

.policy-page ul li,
.delete-account-page ul li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.8;
}

.policy-page ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 20px;
}

.delete-account-page ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}

.policy-page .footer,
.delete-account-page .footer {
    background: var(--text-dark);
    color: #fff;
    padding: 48px 0 20px;
    text-align: left;
}

.policy-page .footer .container,
.delete-account-page .footer .container {
    max-width: 1200px;
    padding: 0 24px;
}

/* Privacy helpers */
.policy-link {
    color: var(--primary);
    text-decoration: none;
}

.policy-link:hover {
    text-decoration: underline;
}

.policy-callout {
    background: #f0f4ff;
    padding: 16px;
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    margin: 20px 0;
}

.policy-italic {
    font-style: italic;
    color: var(--text-dim);
    margin-top: 12px;
}

.policy-block {
    background: #f0f4ff;
    padding: 20px;
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    margin: 20px 0;
}

.policy-list-tight {
    margin-top: 12px;
}

.policy-strong-note {
    margin-top: 16px;
}

.policy-contact-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.policy-divider {
    margin: 40px 0;
    border: none;
    border-top: 2px solid #E8E8E8;
}

.policy-center-note {
    margin-top: 40px;
    text-align: center;
}

/* Delete account helpers */
.delete-list-tight {
    margin-top: 12px;
}

.delete-section-title {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.delete-muted-note {
    margin-top: 16px;
    color: var(--text-dim);
    font-size: 14px;
}

.delete-bottom-note {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid #E8E8E8;
    color: var(--text-dim);
}

.delete-link {
    color: var(--primary);
    text-decoration: none;
}

.delete-link:hover {
    text-decoration: underline;
}

.delete-account-page .warning-box {
    background: #FFF3CD;
    border-left: 4px solid #FFC107;
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
}

.delete-account-page .warning-box strong {
    color: #856404;
    display: block;
    margin-bottom: 8px;
}

.delete-account-page .danger-box {
    background: #F8D7DA;
    border-left: 4px solid var(--danger);
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
}

.delete-account-page .danger-box strong {
    color: #721C24;
    display: block;
    margin-bottom: 8px;
}

.delete-account-page .steps {
    background: #F0F4FF;
    padding: 24px;
    border-radius: 12px;
    margin: 24px 0;
}

.delete-account-page .step {
    display: flex;
    align-items: start;
    margin-bottom: 20px;
}

.delete-account-page .step:last-child {
    margin-bottom: 0;
}

.delete-account-page .step-number {
    background: var(--primary);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 16px;
}

.delete-account-page .step-content {
    flex: 1;
    padding-top: 4px;
}

.delete-account-page .step-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.delete-account-page .step-description {
    color: var(--text-dim);
    font-size: 14px;
}

.delete-account-page .contact-form {
    background: #F9F9F9;
    padding: 32px;
    border-radius: 12px;
    margin-top: 32px;
}

.delete-account-page .form-group {
    margin-bottom: 20px;
}

.delete-account-page .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.delete-account-page .form-group input,
.delete-account-page .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.delete-account-page .form-group input:focus,
.delete-account-page .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.delete-account-page .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.delete-account-page .submit-btn {
    background: var(--primary);
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.delete-account-page .submit-btn:hover {
    background: #5A47A8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(110, 86, 207, 0.3);
}

.delete-account-page .contact-info {
    background: #E8F5E9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 24px;
}

.delete-account-page .contact-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.delete-account-page .contact-info p:last-child {
    margin-bottom: 0;
}

.delete-account-page .contact-info i {
    color: var(--primary);
    width: 20px;
}

.delete-account-page .contact-info a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.delete-account-page .contact-info a:hover {
    text-decoration: underline;
}

/* Landing inline replacements */
.policy-note {
    background: #f0f4ff;
    padding: 12px;
    border-left: 4px solid var(--primary);
    border-radius: 6px;
    margin: 16px 0;
}

.policy-note-link {
    color: var(--primary);
}

.account-delete-note {
    background: #f0f4ff;
    padding: 10px;
    border-radius: 6px;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .policy-page,
    .delete-account-page {
        padding-top: 70px;
    }

    .policy-page .container,
    .delete-account-page .container {
        padding: 24px 16px 60px;
    }

    .policy-page .content,
    .delete-account-page .content {
        padding: 32px 24px;
    }

    .policy-page h1 {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .delete-account-page h1 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .delete-account-page .subtitle {
        font-size: 16px;
    }

    .policy-page h2,
    .delete-account-page h2 {
        font-size: 20px;
        margin-top: 32px;
    }

    .policy-page .logo,
    .delete-account-page .logo {
        font-size: 22px;
    }

    .policy-page .logo img,
    .delete-account-page .logo img {
        width: 40px;
        height: 40px;
    }

    .delete-account-page .contact-form {
        padding: 24px;
    }
}

/* === Section Title === */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    color: var(--text-dark);
}

/* === Features Section === */
.features {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(110, 86, 207, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.feature-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(110, 86, 207, 0.3);
    border-color: var(--primary);
    background: white;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-dim);
    font-size: 16px;
}

/* === Rideshare Section (Попутчики) === */
.rideshare-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1145 0%, #2d1b69 50%, #1a1145 100%);
    position: relative;
    overflow: hidden;
}

.rideshare-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(110, 86, 207, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

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

.rideshare-text .section-title {
    text-align: left;
    color: #fff;
}

.rideshare-text .section-title::after {
    margin-left: 0;
}

.rideshare-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.rideshare-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.rideshare-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.rideshare-feature i {
    color: var(--accent);
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.rideshare-routes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.route-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    transition: all 0.3s ease;
}

.route-tag:hover {
    background: rgba(110, 86, 207, 0.3);
    border-color: var(--primary);
}

/* Rideshare visual card */
.rideshare-visual {
    display: flex;
    justify-content: center;
}

.rideshare-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px;
    width: 100%;
    max-width: 360px;
}

.rideshare-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rideshare-card-header i {
    font-size: 18px;
}

.rideshare-card-route {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}

.route-point {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.route-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}

.route-dot.start {
    background: var(--primary);
    box-shadow: 0 0 12px rgba(110, 86, 207, 0.5);
}

.route-dot.end {
    background: var(--accent);
    box-shadow: 0 0 12px rgba(244, 162, 97, 0.5);
}

.route-line {
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    margin-left: 6px;
}

.rideshare-card-info {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rideshare-card-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.rideshare-card-info i {
    margin-right: 6px;
    color: var(--accent);
}

/* === Farmer Market Section === */
.farmer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF8E7 0%, #F5ECD7 50%, #E8D5B7 100%);
    position: relative;
    overflow: hidden;
}

.farmer-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(122, 155, 118, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.farmer-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(198, 93, 59, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

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

.farmer-text .section-title {
    color: #4A3728;
    position: relative;
}

.farmer-text .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #7A9B76, #C65D3B);
    border-radius: 2px;
    margin-top: 16px;
}

.farmer-description {
    font-size: 17px;
    color: #5C4A3A;
    line-height: 1.7;
    margin-bottom: 24px;
}

.farmer-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.category-tag {
    background: rgba(122, 155, 118, 0.15);
    color: #4A6B47;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(122, 155, 118, 0.25);
    transition: all 0.3s ease;
}

.category-tag:hover {
    background: rgba(122, 155, 118, 0.3);
    transform: translateY(-1px);
}

.farmer-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.farmer-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(122, 155, 118, 0.15);
    transition: all 0.3s ease;
}

.farmer-feature:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(4px);
}

.farmer-feature i {
    color: #7A9B76;
    font-size: 16px;
    min-width: 20px;
    text-align: center;
}

.farmer-feature span {
    font-size: 14px;
    color: #5C4A3A;
    font-weight: 500;
}

/* Farmer visual card */
.farmer-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.farmer-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 28px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 20px 60px rgba(74, 55, 40, 0.12), 0 4px 12px rgba(74, 55, 40, 0.06);
    border: 1px solid rgba(122, 155, 118, 0.15);
    position: relative;
    overflow: hidden;
}

.farmer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7A9B76, #C65D3B, #E8D5B7);
}

.farmer-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #F0E8DA;
}

.farmer-badge-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.farmer-card-seller strong {
    display: block;
    color: #4A3728;
    font-size: 15px;
}

.farmer-badge-label {
    display: inline-block;
    background: linear-gradient(135deg, #7A9B76, #5C8058);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    margin-top: 2px;
}

.farmer-card-product {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 0;
}

.product-emoji {
    width: 48px;
    height: 48px;
    background: #FFF8E7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.product-info h4 {
    color: #4A3728;
    font-size: 15px;
    margin-bottom: 4px;
}

.product-price {
    color: #C65D3B;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}

.product-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.delivery-tag,
.pickup-tag {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 500;
}

.delivery-tag {
    background: #E3F2FD;
    color: #1565C0;
}

.delivery-tag i,
.pickup-tag i {
    margin-right: 4px;
    font-size: 10px;
}

.pickup-tag {
    background: #FFF3E0;
    color: #E65100;
}

.farmer-card-divider {
    height: 1px;
    background: #F0E8DA;
    margin: 4px 0;
}

/* === How it Works === */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e3e7ed 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background circles */
.how-it-works::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(110, 86, 207, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    filter: blur(40px);
}

.how-it-works::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
    filter: blur(40px);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Connecting line between steps */
.steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 16%;
    right: 16%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary) 15%, 
        var(--accent) 50%, 
        var(--primary) 85%, 
        transparent 100%);
    opacity: 0.3;
    z-index: 0;
}

.step {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 70px 40px 48px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.6);
    margin-top: 40px;
}

/* Gradient glow effect */
.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(110, 86, 207, 0.1) 0%, 
        rgba(244, 162, 97, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
}

.step:hover::before {
    opacity: 1;
}

/* Bottom accent line */
.step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 10px 10px 0 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.step:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 25px 60px rgba(110, 86, 207, 0.3);
    border-color: rgba(110, 86, 207, 0.3);
}

.step-number {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(110, 86, 207, 0.5);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    border: 4px solid #FFFFFF;
}

.step:hover .step-number {
    transform: translateX(-50%) scale(1.25) rotate(360deg);
    box-shadow: 0 15px 50px rgba(110, 86, 207, 0.7);
}

.step-icon {
    font-size: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 28px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(110, 86, 207, 0.2));
    position: relative;
    z-index: 1;
}

.step:hover .step-icon {
    transform: scale(1.15) rotateY(360deg);
    filter: drop-shadow(0 8px 16px rgba(110, 86, 207, 0.4));
}

.step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    transition: color 0.4s;
}

.step:hover h3 {
    color: var(--primary);
}

.step p {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* === Screenshots === */
.screenshots {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.screenshots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.screenshots .section-title {
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    margin-bottom: 60px;
}

.screenshots-slider {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 45px;
    padding: 14px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    overflow: hidden;
    cursor: pointer;
}

.phone-mockup.active {
    opacity: 1;
    z-index: 2;
}

/* Slider Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(110, 86, 207, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.slider-nav:hover {
    background: var(--primary);
    box-shadow: 0 12px 32px rgba(110, 86, 207, 0.4);
}

.slider-nav:hover i {
    color: #FFFFFF;
}

.slider-nav.prev {
    left: -80px;
}

.slider-nav.next {
    right: -80px;
}

.slider-nav i {
    font-size: 24px;
    color: var(--primary);
    transition: color 0.3s;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.dot.active {
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.35);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.15);
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0f0f14;
    border-radius: 35px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.3);
}

/* Screenshot Modal */
#screenshotModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s;
}

#screenshotModal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 20px;
    box-shadow: 0 20px 100px rgba(110, 86, 207, 0.8);
}

.screenshot-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.screenshot-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* === Reviews === */
.reviews {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(110, 86, 207, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 50%, rgba(244, 162, 97, 0.05) 0%, transparent 30%);
    animation: float 15s ease-in-out infinite;
}

.reviews-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 380px;
}

.review-card {
    background: var(--white);
    padding: 36px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: absolute;
    left: 50%;
    opacity: 0;
    transform: translateX(calc(-50% + 100px)) scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 700px;
    border: 2px solid transparent;
    text-align: center;
}

.review-card.active {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    border-color: rgba(110, 86, 207, 0.1);
    box-shadow: 0 20px 60px rgba(110, 86, 207, 0.15);
    position: relative;
}

.review-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 auto 16px;
    box-shadow: 0 10px 30px rgba(110, 86, 207, 0.3);
    transition: transform 0.3s;
}

.review-card.active .review-avatar {
    animation: bounceAvatar 1s ease;
}

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

.stars {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    justify-content: center;
}

.stars i {
    color: #FFD700;
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.review-text::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 80px;
    color: rgba(110, 86, 207, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

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

.review-author strong {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
}

.review-author span {
    color: var(--text-light);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-author span::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
}

.slider-controls {
    display: none;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(110, 86, 207, 0.2);
    background: white;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(110, 86, 207, 0.3);
}

/* Review CTA */
.review-cta {
    text-align: center;
    margin-top: 30px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(110, 86, 207, 0.05) 0%, rgba(244, 162, 97, 0.05) 100%);
    border-radius: 24px;
    border: 2px dashed rgba(110, 86, 207, 0.2);
    position: relative;
    z-index: 10;
}

.review-cta h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.review-cta .btn {
    font-size: 16px;
    padding: 14px 36px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 48px;
    border-radius: 24px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--primary);
    background: rgba(110, 86, 207, 0.1);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 32px;
    text-align: center;
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    font-size: 16px;
    margin-bottom: 20px;
    transition: all 0.3s;
    font-family: inherit;
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(110, 86, 207, 0.1);
}

.rating-input {
    margin-bottom: 20px;
}

.rating-input label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

.stars-input {
    display: flex;
    gap: 12px;
    font-size: 32px;
    margin-bottom: 20px;
}

.stars-input i {
    cursor: pointer;
    color: #DDD;
    transition: all 0.2s;
}

.stars-input i:hover,
.stars-input i.active {
    color: #FFD700;
    transform: scale(1.2);
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.5));
}

.review-form button {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    margin-top: 8px;
}

/* === Scroll to Top Button === */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(110, 86, 207, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 32px rgba(110, 86, 207, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-4px) scale(1.05);
}

/* === Download Section === */
.download {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
}

.download .section-title {
    color: var(--white);
}

.download-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 48px;
    opacity: 0.9;
}

.download-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    width: 100%;
}

.download-btn {
    background: var(--white);
    color: var(--text-dark);
    padding: 24px;
    border-radius: var(--radius);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

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

.download-btn i {
    font-size: 48px;
    color: var(--primary);
}

.download-btn small {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
}

.download-btn strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.qr-code {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#qrcode {
    padding: 16px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(255,255,255,0.3);
    margin: 0 0 16px 0;
    line-height: 0;
}

#qrcode img {
    display: block !important;
}

.qr-code p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.qr-code small {
    font-size: 14px;
    opacity: 0.8;
}

/* === Contact Form === */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 55% 42%;
    gap: 40px;
    align-items: stretch;
    max-width: 980px;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form textarea {
    flex: 1;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 0;
}

.contact-info-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    background: #F4F2FF;
    border-radius: 12px;
    border: 1px solid rgba(110, 86, 207, 0.08);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: rgba(110, 86, 207, 0.08);
    border-color: rgba(110, 86, 207, 0.25);
    transform: translateX(4px);
    color: var(--text-dark);
}

.contact-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    color: #fff;
}

.contact-info-icon.tg-channel {
    background: linear-gradient(135deg, #229ED9, #1A72AC);
}

.contact-info-icon.tg-chat {
    background: linear-gradient(135deg, #40B3FF, #0088CC);
}

.contact-info-icon.email-icon {
    background: linear-gradient(135deg, #6E56CF, #5240A8);
}

.contact-info-icon.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-info-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.contact-info-text span {
    font-size: 13px;
    color: #6B7280;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #E0E0E0;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(110, 86, 207, 0.1);
}

.contact-form button {
    width: 100%;
}

/* === Footer === */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 48px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    font-size: 18px;
    min-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact span,
.footer-section .footer-contact a {
    display: inline !important;
    line-height: 1;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* === Policy Modals === */
.policy-content {
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
}

.policy-text {
    text-align: left;
    line-height: 1.8;
}

.policy-text h3 {
    color: var(--primary);
    font-size: 20px;
    margin: 24px 0 12px;
    font-weight: 600;
}

.policy-text p {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.policy-text ul {
    margin: 12px 0 16px 24px;
    list-style: disc;
}

.policy-text li {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.policy-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.policy-text a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.policy-text a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Custom scrollbar for policy modals */
.policy-content::-webkit-scrollbar {
    width: 8px;
}

.policy-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.policy-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.policy-content::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* === Responsive === */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        padding: 12px 0;
    }
    
    .nav a {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .logo img {
        width: 42px;
        height: 42px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .steps {
        gap: 32px;
    }
    
    .step {
        padding: 60px 32px 40px;
    }
    
    .steps::before {
        display: none;
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .header-content {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .logo img {
        width: 40px;
        height: 40px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        min-height: 90vh;
        padding: 60px 0 40px;
    }
    
    .hero-logo {
        width: 140px;
        height: 140px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 42px;
        margin-bottom: 16px;
    }
    
    .hero-slogan {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 32px;
    }
    
    .scroll-indicator {
        display: none;
    }

    .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-buttons {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .store-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 16px 20px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 32px;
    }
    
    .features,
    .how-it-works,
    .screenshots,
    .reviews,
    .download,
    .contact {
        padding: 60px 0;
    }

    .rideshare-section {
        padding: 60px 0;
    }

    .rideshare-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rideshare-text .section-title {
        text-align: center;
    }

    .rideshare-text .section-title::after {
        margin-left: auto;
        margin-right: auto;
    }

    .rideshare-description {
        text-align: center;
        font-size: 16px;
    }

    .rideshare-features {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .rideshare-routes {
        justify-content: center;
    }

    .rideshare-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .farmer-section {
        padding: 60px 0;
    }

    .farmer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .farmer-visual {
        order: -1;
    }

    .farmer-text .section-title {
        text-align: center;
    }

    .farmer-text .section-title::after {
        margin-left: auto;
        margin-right: auto;
    }

    .farmer-description {
        text-align: center;
        font-size: 16px;
    }

    .farmer-categories {
        justify-content: center;
    }

    .farmer-features {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .farmer-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-info {
        order: 2;
    }

    .contact-form {
        order: 1;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 32px 24px;
    }
    
    .feature-icon {
        font-size: 56px;
    }
    
    .steps {
        gap: 24px;
    }
    
    .step {
        padding: 60px 24px 32px;
        margin-top: 35px;
    }
    
    .step-number {
        width: 56px;
        height: 56px;
        font-size: 28px;
        top: -25px;
    }
    
    .step-icon {
        font-size: 64px;
        margin-bottom: 20px;
    }
    
    .step h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .screenshots-slider {
        max-width: 300px;
        min-height: 600px;
    }
    
    .slider-container {
        height: 600px;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
        padding: 12px;
        border-radius: 40px;
    }
    
    .phone-mockup img {
        border-radius: 32px;
    }
    
    .slider-dots {
        bottom: -50px;
    }
    
    .reviews-slider {
        min-height: 350px;
    }
    
    .review-card {
        padding: 28px 20px;
    }
    
    .review-avatar {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .review-text {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .review-author strong {
        font-size: 16px;
    }
    
    .review-author span {
        font-size: 14px;
    }
    
    .review-cta {
        padding: 24px;
        margin-top: 20px;
    }
    
    .review-cta h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .download-content {
        justify-content: center;
    }
    
    .download-buttons {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
    }
    
    .download-btn {
        padding: 16px 20px;
    }
    
    .qr-code canvas {
        max-width: 180px;
        height: auto;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-section h4 {
        margin-bottom: 12px;
    }
    
    .footer-contact {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .scroll-to-top {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
    
    .modal-content {
        padding: 32px 24px;
        margin: 20px;
        max-width: calc(100% - 40px);
    }
    
    .policy-content {
        padding: 32px 24px;
        max-height: 80vh;
    }
    
    .policy-text h3 {
        font-size: 18px;
    }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
    .logo img {
        width: 36px;
        height: 36px;
    }
    
    .hero-logo {
        width: 120px;
        height: 120px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-slogan {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 14px;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions .btn {
        flex: 1 1 auto;
        justify-content: center;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
    
    .feature-icon {
        font-size: 48px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .step {
        padding: 55px 20px 28px;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 24px;
        top: -22px;
    }
    
    .step-icon {
        font-size: 56px;
    }
    
    .step h3 {
        font-size: 18px;
    }
    
    .screenshots-slider {
        max-width: 260px;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .review-card {
        padding: 24px 16px;
    }
    
    .review-cta {
        padding: 20px 16px;
    }
    
    .review-cta h3 {
        font-size: 18px;
    }
    
    .store-btn {
        padding: 14px 16px;
    }
    
    .store-btn-icon {
        font-size: 32px;
    }
    
    .store-btn-text strong {
        font-size: 16px;
    }
    
    .store-btn-text small {
        font-size: 11px;
    }

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

    .rideshare-description {
        font-size: 15px;
    }

    .rideshare-card {
        padding: 24px;
    }

    .route-tag {
        font-size: 12px;
        padding: 5px 12px;
    }

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

    .farmer-description {
        font-size: 15px;
    }

    .farmer-card {
        padding: 22px;
    }

    .category-tag {
        font-size: 12px;
        padding: 5px 11px;
    }

    /* Policy/Delete pages small mobile */
    .policy-page .content,
    .delete-account-page .content {
        padding: 16px;
    }
}
