/* Playzen - Club Management Software Landing Page */
/* Redesign: Blue Modern Palette */

@import url('fonts.css');

:root {
    /* Blue Modern Palette */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --primary-subtle: #dbeafe;
    --accent: #06b6d4;
    --accent-light: #cffafe;

    /* Neutrals */
    --secondary: #0f172a;
    --text: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --border-light: #f1f5f9;

    /* Semantic */
    --success: #10b981;
    --success-light: #d1fae5;
    --success-dark: #047857;
    --error: #ef4444;

    /* Effects */
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #eff6ff 50%, #dbeafe 100%);
    --gradient-accent: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --shadow-primary: 0 20px 40px -10px rgba(37, 99, 235, 0.35);
    --shadow-glow: 0 0 60px rgba(37, 99, 235, 0.15);

    /* Spacing & Radius */
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Animation classes */
.animate {
    opacity: 0;
}

.animate.animate-in {
    animation-duration: 0.7s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.animate.fade-up.animate-in { animation-name: fadeUp; }
.animate.fade-in.animate-in { animation-name: fadeIn; }
.animate.scale-in.animate-in { animation-name: scaleIn; }
.animate.slide-right.animate-in { animation-name: slideInRight; }

/* Stagger delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }
.stagger-7 { animation-delay: 0.7s; }

@media (prefers-reduced-motion: reduce) {
    .animate {
        opacity: 1;
        animation: none !important;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ==================== Typography ==================== */
h1, h2, h3, h4 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

/* ==================== Top Banner ==================== */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--secondary);
    padding: 0.625rem 0;
}

.top-banner .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
}

.top-banner span {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

.top-banner a {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: #67e8f9;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s;
}

.top-banner a:hover {
    color: #a5f3fc;
}

.top-banner a svg {
    width: 16px;
    height: 16px;
}

/* ==================== Header ==================== */
header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1000;
    padding: 0.875rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Satoshi', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

nav .nav-lang {
    font-size: 0.8125rem;
    padding: 0.375rem 0.625rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

nav .nav-lang:hover {
    background: var(--bg);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-players {
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.btn-players:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(37, 99, 235, 0.04);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
    border-radius: 1px;
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

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

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(37, 99, 235, 0.04);
}

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

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

.btn-block {
    width: 100%;
}

/* ==================== Hero Section ==================== */
.hero {
    padding: 11rem 0 5rem;
    background: var(--gradient-hero);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-subtle);
    color: var(--primary-dark);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 2rem;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.08;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1875rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2.25rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.125rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 2rem;
    color: var(--success-dark);
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-trust svg {
    width: 18px;
    height: 18px;
    color: var(--success);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-device {
    position: relative;
    max-width: 520px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s ease;
}

.hero-device:hover {
    transform: translateY(-8px);
}

.hero-device img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.hero-stat {
    position: absolute;
    background: white;
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 4s ease-in-out infinite;
}

.hero-stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: #fff3e6;
    color: #e85d04;
}

.hero-stat-icon--growth {
    background: #e8f5e9;
    color: #2e7d32;
}

.hero-stat-icon svg {
    width: 20px;
    height: 20px;
}

.hero-stat-content {
    display: flex;
    flex-direction: column;
}

.hero-stat-value {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero-stat-1 {
    top: 15%;
    left: -20%;
    animation-delay: 0s;
}

.hero-stat-2 {
    bottom: 20%;
    right: -15%;
    animation-delay: 1s;
}

/* ==================== Social Proof Section ==================== */
.social-proof {
    padding: 3rem 0;
    background: white;
    border-bottom: 1px solid var(--border-light);
}

.social-proof-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.social-proof-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.social-proof-logos {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.social-proof-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9375rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.social-proof-logo:hover {
    opacity: 1;
}

.social-proof-logo svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

/* ==================== App Preview Section ==================== */
.app-preview {
    padding: 6rem 0;
    background: var(--bg-alt);
}

.app-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-preview-phones {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.app-phone {
    width: 200px;
    height: auto;
    border-radius: 32px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
}

.app-phone-back {
    transform: rotate(-8deg) translateX(30px);
    z-index: 1;
}

.app-phone-front {
    transform: rotate(4deg) translateX(-30px);
    z-index: 2;
}

.app-mock-single {
    max-width: 420px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.1));
}

.app-preview-text h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.app-preview-text > p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.app-preview-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-preview-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text);
}

.app-preview-feature svg {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
}

/* ==================== Features Section ==================== */
.features {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.75rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Feature Grid */
.feature-grid {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

.feature-grid .feature-card {
    flex: 0 1 280px;
}

.feature-card {
    padding: 1.75rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

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

.feature-card.featured {
    grid-column: span 2;
    padding: 2.25rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-subtle);
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
}

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

.feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.feature-card.featured h3 {
    font-size: 1.25rem;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.feature-grid-secondary {
    margin-top: 1.25rem;
}

/* ==================== POS Showcase Section ==================== */
.pos-showcase {
    padding: 6rem 0;
    background: var(--bg-alt);
}

.pos-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.pos-showcase-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.pos-showcase-content > p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.pos-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pos-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text);
}

.pos-features-list svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.pos-showcase-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 1024px) {
    .pos-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pos-showcase-content {
        text-align: center;
    }

    .pos-features-list {
        align-items: center;
    }
}

/* ==================== Integrations Section ==================== */
.integrations {
    padding: 6rem 0;
    background: white;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.integration-card {
    padding: 2rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.integration-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.integration-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin: 0 auto 1.25rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.integration-card:hover .integration-icon {
    background: var(--primary-subtle);
    border-color: var(--primary);
}

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

.integration-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.integration-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .integrations-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== Value Proposition ==================== */
.value-prop {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.value-prop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.value-prop-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
    flex-wrap: wrap;
}

.value-prop-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-prop-icon svg {
    width: 32px;
    height: 32px;
}

.value-prop-text h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.375rem;
}

.value-prop-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* ==================== How It Works ==================== */
.how-it-works {
    padding: 6rem 0;
    background: var(--bg-alt);
    position: relative;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, var(--border) 0%, var(--primary) 50%, var(--border) 100%);
}

.step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 3px solid var(--primary);
    color: var(--primary);
    font-family: 'Satoshi', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    background: var(--primary);
    color: white;
    transform: scale(1.08);
    box-shadow: var(--shadow-primary);
}

.step h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==================== Pricing Section ==================== */
.pricing {
    padding: 6rem 0;
    background: white;
}

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

.pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-primary);
    padding: 2.5rem 2rem;
}

.pricing-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.pricing-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-amount {
    font-family: 'Satoshi', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
}

.pricing-card.featured .pricing-amount {
    color: var(--primary);
}

.pricing-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
}

.pricing-period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    color: var(--text);
    font-size: 0.9375rem;
}

.pricing-features svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

.pricing-footer {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

/* ==================== FAQ Section ==================== */
.faq {
    padding: 6rem 0;
    background: var(--bg-alt);
    margin-bottom: 0;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 2rem;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.2s;
}

.faq-item summary:hover {
    background: var(--bg-alt);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item[open] summary {
    border-bottom: 1px solid var(--border-light);
}

.faq-answer {
    padding: 1.25rem 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    background: white;
}

/* ==================== Final CTA ==================== */
.final-cta {
    padding: 8rem 0 7rem;
    background: var(--gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cta-note {
    font-size: 1.125rem;
    color: white;
    margin-top: 3rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta-player {
    position: absolute;
    right: 5%;
    bottom: 0;
    height: 80%;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    object-position: bottom right;
    z-index: 0;
    opacity: 0.8;
    pointer-events: none;
}

@media (max-width: 1400px) {
    .final-cta-player {
        right: 2%;
        opacity: 0.6;
    }
}

@media (max-width: 1100px) {
    .final-cta-player {
        display: none;
    }
}

/* ==================== Footer ==================== */
footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    color: var(--primary-light);
}

.footer-brand p {
    font-size: 0.9375rem;
    color: var(--text-light);
    max-width: 280px;
    line-height: 1.6;
}

.footer-links h4 {
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

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

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
}

/* ==================== Contact Page ==================== */
.contact-page {
    padding: 10rem 0 4rem;
}

.contact-page .container {
    max-width: 600px;
}

.contact-page h1 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.contact-page > .container > p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-message {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius);
    display: none;
    font-weight: 500;
}

.form-message:not(:empty) {
    display: block;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-dark);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .hero-trust {
        margin: 0 auto;
    }

    .hero-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-device {
        max-width: 400px;
    }

    .hero-stat {
        display: none;
    }

    .feature-grid {
        flex-wrap: wrap;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

@media (max-width: 768px) {
    .hero {
        padding: 9rem 0 4rem;
    }

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

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .feature-grid .feature-card {
        flex: 1 1 100%;
    }

    .app-preview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .app-preview-phones {
        order: -1;
    }

    .app-phone {
        width: 150px;
    }

    .app-preview-text h2 {
        font-size: 2rem;
    }

    .app-preview-features {
        align-items: center;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .steps-container::before {
        display: none;
    }

    .step {
        text-align: center;
    }

    .social-proof-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .social-proof-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .value-prop-content {
        flex-direction: column;
        gap: 1rem;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 1.5rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        display: none;
        gap: 1rem;
        z-index: 999;
    }

    nav.nav-open {
        display: flex;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
    }

    .nav-buttons .btn {
        width: 100%;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

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

    .hero-device {
        max-width: 300px;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-amount {
        font-size: 2.5rem;
    }
}
