/* Nerrative Website - Premium Design */

:root {
    /* Brand Colors */
    --midnight: #0A1128;
    --navy: #14213D;
    --amber: #FCA311;
    --amber-light: #FFB700;
    --amber-glow: rgba(252, 163, 17, 0.4);
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --text-gray: #9CA3AF;
    --text-muted: #6B7280;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 120px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--midnight);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Ambient Background */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(252, 163, 17, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 33, 61, 0.8) 0%, transparent 70%);
    bottom: 20%;
    left: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(252, 163, 17, 0.15) 0%, transparent 70%);
    bottom: -100px;
    right: 20%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 17, 40, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: contain;
}

.logo-text {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 3px;
    color: var(--white);
}

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

.nav-links > a:not(.btn) {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links > a:not(.btn):hover {
    color: var(--white);
}

/* Language Dropdown */
.language-selector {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(252, 163, 17, 0.3);
}

.current-flag {
    font-size: 18px;
    line-height: 1;
}

.current-lang {
    font-size: 13px;
    letter-spacing: 0.5px;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    color: var(--text-gray);
    transition: transform 0.3s ease;
}

.language-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-gray);
    font-size: 15px;
    font-weight: 500;
    border: none;
    background: transparent;
    text-align: left;
    font-family: inherit;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
}

.lang-option:hover .lang-name {
    color: var(--white);
}

.lang-option.active {
    background: rgba(252, 163, 17, 0.15);
}

.lang-option.active .lang-name {
    color: var(--amber);
    font-weight: 600;
}

.lang-flag {
    font-size: 22px;
    line-height: 1;
}

.lang-name {
    color: var(--text-gray);
    transition: color 0.2s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
    color: #000000;
    font-weight: 700;
    box-shadow: 0 4px 24px var(--amber-glow), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    box-shadow: 0 8px 40px var(--amber-glow), 0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 10px;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
    border-radius: 16px;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0 60px;
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 10px;
    background: rgba(252, 163, 17, 0.1);
    border: 1px solid rgba(252, 163, 17, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--amber);
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual - Cities Orbit */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cities-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: spin 60s linear infinite;
}

.ring-1 {
    width: 500px;
    height: 500px;
    margin: -250px 0 0 -250px;
}

.ring-2 {
    width: 380px;
    height: 380px;
    margin: -190px 0 0 -190px;
    animation-direction: reverse;
    animation-duration: 45s;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.city-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(var(--angle)) translateX(250px) rotate(calc(-1 * var(--angle)));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: counter-spin 60s linear infinite;
}

.ring-2 .city-marker {
    transform: rotate(var(--angle)) translateX(190px) rotate(calc(-1 * var(--angle)));
    animation-duration: 45s;
    animation-direction: reverse;
}

@keyframes counter-spin {
    from { transform: rotate(var(--angle)) translateX(250px) rotate(calc(-1 * var(--angle))) rotate(0deg); }
    to { transform: rotate(var(--angle)) translateX(250px) rotate(calc(-1 * var(--angle))) rotate(-360deg); }
}

.city-dot {
    width: 10px;
    height: 10px;
    background: var(--amber);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--amber-glow);
}

.city-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-gray);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Phone Showcase */
.phone-showcase {
    position: relative;
    z-index: 10;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1a1f35 0%, #0d1020 100%);
    border-radius: 44px;
    padding: 12px;
    box-shadow:
        0 60px 120px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--midnight) 0%, #050810 100%);
    border-radius: 34px;
    overflow: hidden;
    padding: 56px 16px 20px;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--amber-glow) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.app-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.app-greeting {
    font-size: 12px;
    color: var(--text-muted);
}

.app-location {
    font-size: 18px;
    font-weight: 700;
}

.app-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 16px;
}

.app-card.featured {
    background: linear-gradient(135deg, rgba(252, 163, 17, 0.15) 0%, rgba(252, 163, 17, 0.05) 100%);
    border-color: rgba(252, 163, 17, 0.2);
}

.card-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.card-content {
    display: flex;
    gap: 14px;
}

.card-image {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    flex-shrink: 0;
}

.card-image.colosseum {
    background: url('../images/colosseum.jpg') center/cover no-repeat;
}

.card-info h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.audio-wave {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
}

.audio-wave span {
    width: 3px;
    background: var(--amber);
    border-radius: 2px;
    animation: wave 1s ease-in-out infinite;
}

.audio-wave span:nth-child(1) { height: 40%; animation-delay: 0s; }
.audio-wave span:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.audio-wave span:nth-child(3) { height: 50%; animation-delay: 0.2s; }
.audio-wave span:nth-child(4) { height: 90%; animation-delay: 0.3s; }
.audio-wave span:nth-child(5) { height: 60%; animation-delay: 0.4s; }
.audio-wave span:nth-child(6) { height: 80%; animation-delay: 0.5s; }
.audio-wave span:nth-child(7) { height: 40%; animation-delay: 0.6s; }
.audio-wave span:nth-child(8) { height: 70%; animation-delay: 0.7s; }
.audio-wave span:nth-child(9) { height: 55%; animation-delay: 0.8s; }
.audio-wave span:nth-child(10) { height: 65%; animation-delay: 0.9s; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

.app-section {
    margin-top: 20px;
}

.section-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.story-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.story-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
}

.story-thumb {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
}

.story-thumb.trevi {
    background: url('../images/trevi.jpg') center/cover no-repeat;
}

.story-thumb.pantheon {
    background: url('../images/pantheon.jpg') center/cover no-repeat;
}

.story-info {
    flex: 1;
}

.story-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
}

.story-distance {
    font-size: 11px;
    color: var(--amber);
}

.story-duration {
    font-size: 11px;
    color: var(--text-muted);
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-scroll span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--amber);
    border-radius: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

/* Social Proof */
.social-proof {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
}

.proof-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.proof-item {
    text-align: center;
}

.stars {
    color: var(--amber);
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.proof-item p {
    font-size: 15px;
    color: var(--text-gray);
    font-style: italic;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-header .section-title {
    font-size: 44px;
    font-weight: 800;
    max-width: 700px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: var(--section-padding) 0;
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-large {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 32px;
    padding: 48px;
}

.feature-visual {
    height: 300px;
    background: linear-gradient(135deg, rgba(252, 163, 17, 0.1) 0%, rgba(252, 163, 17, 0.02) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.visual-content {
    padding: 32px;
    width: 100%;
}

.waveform {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    height: 120px;
    margin-bottom: 32px;
}

.wave-bar {
    width: 8px;
    height: var(--h);
    background: linear-gradient(180deg, var(--amber) 0%, var(--amber-light) 100%);
    border-radius: 4px;
    animation: wave-pulse 1.5s ease-in-out infinite;
}

.wave-bar:nth-child(odd) { animation-delay: 0.2s; }
.wave-bar:nth-child(3n) { animation-delay: 0.4s; }

@keyframes wave-pulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.6); opacity: 0.7; }
}

.narrator-info {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(0, 0, 0, 0.3);
    padding: 16px 20px;
    border-radius: 16px;
}

.narrator-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
    border-radius: 50%;
}

.narrator-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.narrator-name {
    font-size: 14px;
    font-weight: 600;
}

.narrator-role {
    font-size: 12px;
    color: var(--text-muted);
}

.feature-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(252, 163, 17, 0.2) 0%, rgba(252, 163, 17, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon.large {
    width: 72px;
    height: 72px;
    border-radius: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--amber);
}

.feature-icon.large svg {
    width: 36px;
    height: 36px;
}

.feature-info h3 {
    font-size: 28px;
    font-weight: 700;
}

.feature-info p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(252, 163, 17, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-card .feature-icon {
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Cities Section */
.cities {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.city-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.city-card.large {
    grid-row: span 2;
    aspect-ratio: auto;
}

.city-image {
    position: absolute;
    inset: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-card:hover .city-image {
    transform: scale(1.1);
}

.city-image.rome { background: url('../images/rome.jpg') center/cover no-repeat; }
.city-image.paris { background: url('../images/paris.jpg') center/cover no-repeat; }
.city-image.barcelona { background: url('../images/barcelona.jpg') center/cover no-repeat; }
.city-image.istanbul { background: url('../images/istanbul.jpg') center/cover no-repeat; }
.city-image.vienna { background: url('../images/vienna.jpg') center/cover no-repeat; }
.city-image.prague { background: url('../images/prague.jpg') center/cover no-repeat; }

.city-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.city-stories {
    font-size: 12px;
    color: var(--amber);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.city-overlay h3 {
    font-size: 24px;
    font-weight: 700;
}

.city-card.large .city-overlay h3 {
    font-size: 32px;
}

.city-overlay p {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 4px;
}

.cities-more {
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
    color: var(--text-muted);
}

/* Download Section */
.download {
    padding: var(--section-padding) 0;
}

.download-card {
    background: linear-gradient(135deg, rgba(252, 163, 17, 0.1) 0%, rgba(252, 163, 17, 0.02) 100%);
    border: 1px solid rgba(252, 163, 17, 0.2);
    border-radius: 40px;
    padding: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.download-content {
    flex: 1;
}

.download-content h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
}

.download-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 500px;
}

.download-buttons {
    display: flex;
    gap: 16px;
}

.app-store-btn,
.coming-soon-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    background: #000;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-store-btn:hover {
    background: #111;
    transform: scale(1.02);
}

.coming-soon-btn {
    opacity: 0.5;
    cursor: not-allowed;
}

.apple-icon,
.android-icon {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.btn-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.btn-small {
    font-size: 10px;
    color: var(--text-gray);
}

.btn-large {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.download-visual {
    flex-shrink: 0;
}

.qr-code {
    width: 160px;
    height: 160px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-placeholder {
    text-align: center;
    padding: 20px;
}

.qr-placeholder span {
    font-size: 12px;
    color: var(--midnight);
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--amber);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-tagline {
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0.7;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

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

    .hero-cta {
        align-items: center;
    }

    .hero-visual {
        height: 450px;
    }

    .cities-orbit {
        display: none;
    }

    .phone-showcase {
        transform: scale(0.85);
    }

    .feature-large {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .city-card.large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }

    .proof-items {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .download-card {
        padding: 60px 40px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .container {
        padding: 0 20px;
    }

    /* Navigation */
    .navbar {
        padding: 12px 0;
    }

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

    .logo-text {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a:not(.btn) {
        display: none;
    }

    .btn-sm {
        padding: 8px 14px;
        font-size: 12px;
    }

    /* Hero */
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px 6px 8px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .stat-value {
        font-size: 22px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-divider {
        height: 30px;
    }

    .hero-visual {
        height: 380px;
    }

    .phone-showcase {
        transform: scale(0.7);
    }

    .hero-scroll {
        display: none;
    }

    /* Social Proof */
    .social-proof {
        padding: 40px 0;
    }

    .proof-item p {
        font-size: 14px;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 40px;
    }

    .section-label {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .section-header .section-title {
        font-size: 26px;
    }

    /* Features */
    .features-showcase {
        gap: 24px;
    }

    .feature-large {
        padding: 24px;
        border-radius: 24px;
    }

    .feature-visual {
        height: 200px;
    }

    .waveform {
        height: 80px;
        margin-bottom: 20px;
    }

    .wave-bar {
        width: 6px;
    }

    .narrator-info {
        padding: 12px 16px;
    }

    .narrator-avatar {
        width: 40px;
        height: 40px;
    }

    .narrator-name {
        font-size: 13px;
    }

    .narrator-role {
        font-size: 11px;
    }

    .feature-icon.large {
        width: 56px;
        height: 56px;
    }

    .feature-icon.large svg {
        width: 28px;
        height: 28px;
    }

    .feature-info h3 {
        font-size: 22px;
    }

    .feature-info p {
        font-size: 14px;
    }

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

    .feature-card {
        padding: 24px;
        border-radius: 20px;
    }

    .feature-card .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .feature-card .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .feature-card p {
        font-size: 14px;
    }

    /* Cities */
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .city-card {
        aspect-ratio: 16/10;
        border-radius: 20px;
    }

    .city-card.large {
        grid-column: span 1;
        aspect-ratio: 16/10;
    }

    .city-overlay {
        padding: 20px;
    }

    .city-stories {
        font-size: 11px;
    }

    .city-overlay h3 {
        font-size: 20px;
    }

    .city-card.large .city-overlay h3 {
        font-size: 24px;
    }

    .city-overlay p {
        font-size: 13px;
    }

    .cities-more {
        font-size: 14px;
        margin-top: 24px;
    }

    /* Download */
    .download-card {
        flex-direction: column;
        padding: 32px 24px;
        border-radius: 28px;
        text-align: center;
    }

    .download-content h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .download-content p {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .download-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .app-store-btn,
    .coming-soon-btn {
        justify-content: center;
        padding: 12px 20px;
        border-radius: 12px;
    }

    .apple-icon,
    .android-icon {
        width: 24px;
        height: 24px;
    }

    .btn-small {
        font-size: 9px;
    }

    .btn-large {
        font-size: 16px;
    }

    .download-visual {
        display: none;
    }

    /* Footer */
    .footer {
        padding: 48px 0 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 32px;
    }

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

    .footer-brand p {
        font-size: 13px;
        margin-top: 12px;
    }

    .footer-links {
        flex-direction: row;
        gap: 48px;
    }

    .footer-column h4 {
        font-size: 11px;
        margin-bottom: 14px;
    }

    .footer-column a {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .footer-bottom {
        padding-top: 24px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-visual {
        height: 320px;
    }

    .phone-showcase {
        transform: scale(0.6);
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-value {
        font-size: 20px;
    }

    .section-header .section-title {
        font-size: 22px;
    }

    .feature-info h3 {
        font-size: 20px;
    }

    .download-content h2 {
        font-size: 22px;
    }

    .footer-links {
        gap: 32px;
    }
}

/* ==========================================
   NEW SECTIONS - Enhanced Website Design
   ========================================== */

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-cta .btn {
    box-shadow: 0 8px 32px rgba(252, 163, 17, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.floating-cta .btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(252, 163, 17, 0.5), 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* How It Works Section */
.how-it-works {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.step:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(252, 163, 17, 0.3);
    transform: translateY(-8px);
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--midnight);
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px var(--amber-glow);
}

.step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--amber);
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.step-connector {
    display: none;
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding) 0;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(252, 163, 17, 0.2);
    transform: translateY(-4px);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-stars,
.stars {
    color: var(--amber);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    font-style: italic;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--midnight);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.author-location {
    font-size: 13px;
    color: var(--text-muted);
}

/* FAQ Section */
.faq {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(252, 163, 17, 0.2);
}

.faq-item.active,
.faq-item.open {
    border-color: rgba(252, 163, 17, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--white);
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--amber);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--amber);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon,
.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: var(--section-padding) 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details,
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item,
.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--amber);
    flex-shrink: 0;
}

.contact-item a,
.contact-item span {
    font-size: 16px;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--amber);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: rgba(252, 163, 17, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
    color: var(--amber);
}

.contact-method-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-method-text span {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-method-text a {
    font-size: 16px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-method-text a:hover {
    color: var(--amber);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amber);
    background: rgba(252, 163, 17, 0.05);
    box-shadow: 0 0 0 4px rgba(252, 163, 17, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
}

.form-group select option {
    background: var(--midnight);
    color: var(--white);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

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

/* Submit Button States */
.btn-submit {
    position: relative;
}

.btn-submit .btn-text-loading,
.btn-submit .btn-text-success {
    display: none;
}

.btn-submit.loading .btn-text-default,
.btn-submit.success .btn-text-default {
    display: none;
}

.btn-submit.loading .btn-text-loading {
    display: inline;
}

.btn-submit.success .btn-text-success {
    display: inline;
}

.btn-submit.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit.success {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.form-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

.form-status {
    margin-top: 16px;
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Honeypot - Hidden from users */
.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(252, 163, 17, 0.1);
    border-color: rgba(252, 163, 17, 0.3);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--text-gray);
    transition: color 0.3s;
}

.social-link:hover svg {
    color: var(--amber);
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Enhanced Button States */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

/* ==========================================
   RESPONSIVE STYLES FOR NEW SECTIONS
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
    .steps-container {
        flex-direction: column;
        max-width: 500px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-methods {
        align-items: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Floating CTA - Small toast style on mobile */
    .floating-cta {
        bottom: 16px;
        right: 16px;
        left: auto;
    }

    .floating-cta .btn {
        width: auto;
        padding: 10px 16px;
        font-size: 13px;
        gap: 6px;
    }

    .floating-cta .btn-icon-sm {
        width: 16px;
        height: 16px;
    }

    .step {
        padding: 24px 20px;
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .step h3 {
        font-size: 18px;
    }

    .step p {
        font-size: 14px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .faq-question {
        padding: 20px;
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 14px;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 24px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px;
        font-size: 14px;
    }

    .social-links {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .contact-info h2 {
        font-size: 24px;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive - Very Small Screens */
@media (max-width: 360px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 24px;
    }

    .logo-text {
        font-size: 12px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }

    .stat-divider {
        display: none;
    }

    .stat {
        flex-direction: row;
        gap: 8px;
        align-items: baseline;
    }
}

/* ==========================================
   ADDITIONAL POLISH - Expert Designer Touches
   ========================================== */

/* Mobile Hamburger Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* App Rating Badge */
.app-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin-top: -8px;
}

.rating-stars {
    color: var(--amber);
    font-size: 14px;
    letter-spacing: 1px;
}

.rating-text {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

/* Stat Suffix */
.stat-suffix {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

/* Quote Icon */
.quote-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
    color: var(--amber);
    opacity: 0.3;
}

/* Featured Testimonial Card */
.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(252, 163, 17, 0.1) 0%, rgba(252, 163, 17, 0.02) 100%);
    border-color: rgba(252, 163, 17, 0.3);
    transform: scale(1.02);
}

.testimonial-card.featured:hover {
    transform: scale(1.04);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: rgba(252, 163, 17, 0.2);
    border-color: var(--amber);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.back-to-top:hover svg {
    color: var(--amber);
}

/* Card 3D Tilt Effect Preparation */
.feature-card,
.testimonial-card,
.city-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.1s ease;
    will-change: transform;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    /* Language Dropdown Mobile */
    .language-selector {
        order: -1;
    }

    .language-btn {
        padding: 8px 14px;
        font-size: 13px;
        min-width: 100px;
    }

    .current-flag {
        font-size: 18px;
    }

    .current-lang {
        font-size: 12px;
    }

    .language-dropdown {
        position: fixed;
        top: 70px;
        left: 16px;
        right: 16px;
        min-width: auto;
        max-height: 70vh;
        overflow-y: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }

    .lang-option {
        padding: 14px 18px;
        font-size: 16px;
        min-height: 56px;
    }

    .lang-flag {
        font-size: 24px;
    }

    .lang-name {
        font-size: 16px;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 16px;
        right: 16px;
        bottom: auto;
        background: rgba(10, 17, 40, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 16px;
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links > a:not(.btn) {
        display: block;
        font-size: 16px;
        font-weight: 500;
        color: var(--white);
        padding: 14px 16px;
        border-radius: 8px;
        transition: background 0.2s ease;
    }

    .nav-links > a:not(.btn):hover,
    .nav-links > a:not(.btn):active {
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-links .btn {
        margin-top: 8px;
        width: 100%;
        justify-content: center;
    }

    /* App Rating Mobile */
    .app-rating {
        justify-content: center;
    }

    /* Back to Top Mobile */
    .back-to-top {
        bottom: 80px;
        left: 16px;
        width: 44px;
        height: 44px;
    }

    /* Stat Suffix Mobile */
    .stat-suffix {
        font-size: 22px;
    }

    /* Hide floating CTA when mobile menu is open */
    .nav-links.active ~ .floating-cta {
        opacity: 0;
        pointer-events: none;
    }

    /* Testimonials Mobile */
    .testimonial-card.featured {
        transform: none;
    }

    .testimonial-card.featured:hover {
        transform: none;
    }

    /* Quote Icon Mobile */
    .quote-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 12px;
    }
}

/* Small Mobile Adjustments */
@media (max-width: 480px) {
    .app-rating {
        flex-direction: column;
        gap: 4px;
        padding: 8px 12px;
    }

    .rating-text {
        font-size: 12px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Disable tilt effect on touch devices */
@media (hover: none) {
    .feature-card,
    .testimonial-card,
    .city-card {
        transform: none !important;
    }
}
