/* ============================================
   Blaze Messenger - Main Stylesheet
   VoiceBeam GmbH - 2025
   ============================================ */

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

/* Mobile optimizations */
html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth scrolling for all browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Touch-friendly tap targets */
@media (hover: none) and (pointer: coarse) {
    a, button, .btn-primary, .cta-button {
        min-height: 44px;
        min-width: 44px;
    }
}

/* CSS Custom Properties */
:root {
    /* Brand Colors - More green-tinted turquoise */
    --turquoise: #2cc99d;
    --turquoise-hover: #25b88d;
    --turquoise-light: rgba(44, 201, 157, 0.08);
    --turquoise-section: #f0fdf8;
    --orange: #FF5A00;
    --orange-hover: #E54E00;

    /* Backgrounds */
    --background: #FFFFFF;
    --background-light: #f4fffa;
    --background-dark: #0a1f15;

    /* Text Colors */
    --text-primary: #000000;
    --text-secondary: #7a7a7a;
    --text-light: #FFFFFF;
    --text-muted: #a0a0a0;

    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Layout */
    --max-width: 1200px;
    --content-width: 720px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.3s ease;
}

/* Typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI',
                 Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--text-primary);
    background: var(--background);
    line-height: 1.6;
    font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-primary);
}

h1 {
    font-size: 56px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 24px;
}

p {
    line-height: 1.7;
}

a {
    color: var(--turquoise);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--turquoise-hover);
}

/* Focus States */
*:focus-visible {
    outline: 2px solid var(--turquoise);
    outline-offset: 2px;
}

/* ============================================
   EARLY BIRD BANNER
   ============================================ */
.early-bird-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--orange);
    color: var(--text-light);
    padding: 10px 16px;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.banner-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    min-height: 44px;
}

.banner-text {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-kicker {
    font-weight: 800;
    letter-spacing: 0.5px;
}

.banner-cta {
    background: var(--background);
    color: var(--orange);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.banner-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--orange);
}

.banner-close {
    position: absolute;
    right: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
    font-size: 20px;
    font-weight: 800;
}

.banner-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(180deg, rgba(240, 253, 248, 0.95) 0%, rgba(240, 253, 248, 0.85) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: none;
    border-bottom: 1px solid rgba(44, 201, 157, 0.1);
    transition: background var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px 32px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--space-xl);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    justify-self: start;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-self: center;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
    transition: color var(--transition-base);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--turquoise);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-primary);
    font-weight: 500;
    transition: color var(--transition-base);
}

.lang-switcher:hover {
    color: var(--turquoise);
}

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

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

.nav-download {
    background: transparent;
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.nav-download:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.nav-cta-special {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--turquoise);
    color: var(--text-light);
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(44, 201, 157, 0.25);
    position: relative;
    white-space: nowrap;
}

.nav-cta-special:hover {
    background: var(--turquoise-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 201, 157, 0.35);
    color: var(--text-light);
}

.nav-cta-text {
    font-size: 15px;
    letter-spacing: -0.2px;
}

.nav-cta-price {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.nav-cta-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--orange);
    color: var(--text-light);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(255, 90, 0, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Dropdown */
.mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(44, 201, 157, 0.1);
    padding: var(--space-lg);
    gap: var(--space-sm);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
    overflow: hidden;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    max-height: 500px;
}

.mobile-menu-link {
    padding: var(--space-md) var(--space-lg);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-menu-link:hover {
    background: rgba(44, 201, 157, 0.08);
    color: var(--turquoise);
}

.mobile-menu-download {
    background: rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(0, 0, 0, 0.12);
    font-weight: 600;
    text-align: center;
    justify-content: center;
}

.mobile-menu-cta {
    background: var(--turquoise);
    color: var(--text-light);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(44, 201, 157, 0.25);
    position: relative;
    justify-content: center;
    gap: 10px;
}

.mobile-menu-cta:hover {
    background: var(--turquoise-hover);
    color: var(--text-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(44, 201, 157, 0.35);
}

.mobile-menu-cta-text {
    font-size: 15px;
    letter-spacing: -0.2px;
}

.mobile-menu-cta-price {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.mobile-menu-cta-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--orange);
    color: var(--text-light);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(255, 90, 0, 0.4);
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--space-5xl) 0;
}

/* Alternating section backgrounds */
.section-turquoise {
    background: linear-gradient(135deg,
        rgba(240, 253, 248, 0.7) 0%,
        rgba(44, 201, 157, 0.25) 25%,
        rgba(240, 253, 248, 0.9) 50%,
        rgba(44, 201, 157, 0.2) 75%,
        rgba(240, 253, 248, 0.7) 100%
    );
    background-size: 200% 200%;
    animation: gradientPulse 15s ease-in-out infinite;
    position: relative;
}

.section-white {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(240, 253, 248, 0.8) 30%,
        rgba(44, 201, 157, 0.08) 50%,
        rgba(240, 253, 248, 0.8) 70%,
        rgba(255, 255, 255, 1) 100%
    );
    background-size: 200% 200%;
    animation: gradientPulse 18s ease-in-out infinite;
    position: relative;
}

@keyframes gradientPulse {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ============================================
   HERO TRUST SIGNALS
   ============================================ */
.hero-trust {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--background);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.rating-badge .stars {
    font-size: 24px;
    color: var(--orange);
    line-height: 1;
}

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

.rating-text strong {
    font-size: 16px;
    color: var(--text-primary);
}

.rating-text span {
    font-size: 13px;
    color: var(--text-secondary);
}

.user-count {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.user-count-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    padding: 10px 20px;
    border: 2px solid var(--turquoise);
    border-radius: var(--radius-full);
    background: rgba(44, 201, 157, 0.05);
}

.user-avatars {
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--background);
    margin-left: -12px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.user-avatar:first-child {
    margin-left: 0;
}

.user-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(180deg,
        rgba(44, 201, 157, 0.15) 0%,
        rgba(240, 253, 248, 0.4) 40%,
        rgba(240, 253, 248, 0) 100%
    );
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero-text h1 {
    color: var(--turquoise);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.hero-text p {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: var(--space-2xl);
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    align-items: flex-start;
}

.btn-primary {
    background: var(--turquoise);
    color: var(--text-light);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-block;
}

.btn-primary:hover {
    background: var(--turquoise-hover);
    transform: scale(1.05);
    color: var(--text-light);
}

/* Apple-like CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 14px 28px;
    background: var(--turquoise);
    color: var(--text-light);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(44, 201, 157, 0.3);
    position: relative;
    overflow: visible;
}

.cta-button:hover {
    background: var(--turquoise-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 201, 157, 0.4);
    color: var(--text-light);
}

.cta-main {
    font-weight: 600;
    letter-spacing: -0.2px;
}

.cta-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.cta-price-old {
    font-size: 15px;
    text-decoration: line-through;
    opacity: 0.65;
    font-weight: 500;
}

.cta-price-new {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.cta-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--orange);
    color: var(--text-light);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(255, 90, 0, 0.4);
}

.app-store-badge {
    height: 50px;
    width: auto;
    transition: transform var(--transition-base);
    cursor: pointer;
    margin-bottom: var(--space-md);
}

.app-store-badge:hover {
    transform: scale(1.05);
}

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

.watch-mockup {
    position: absolute;
    max-width: 240px;
    height: auto;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.8s ease-out;
    will-change: transform, opacity;
    opacity: 0;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.18));
    cursor: pointer;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

.watch-mockup.animate-in {
    opacity: 1;
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    animation-fill-mode: both;
}

/* Click animation for desktop */
.watch-mockup.expanding {
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
}

.watch-mockup.expanding:nth-child(1) {
    transform: translate3d(40px, -40px, 0) rotate(-10deg) scale(1.08) !important;
}

.watch-mockup.expanding:nth-child(2) {
    transform: translate3d(0, -50px, 0) rotate(15deg) scale(1.12) !important;
}

.watch-mockup.expanding:nth-child(3) {
    transform: translate3d(40px, 40px, 0) rotate(-12deg) scale(1.08) !important;
}

.watch-mockup.expanding:nth-child(4) {
    transform: translate3d(0, 50px, 0) rotate(10deg) scale(1.12) !important;
}

/* Top right - chaotic initial position */
.watch-mockup:nth-child(1) {
    top: 2%;
    right: -8%;
    z-index: 4;
    transform: translate3d(120px, -60px, 0) rotate(-15deg) scale(0.85);
}

.watch-mockup.animate-in:nth-child(1) {
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
    transition-delay: 0.1s;
}

/* Top middle-right */
.watch-mockup:nth-child(2) {
    top: 5%;
    right: 28%;
    transform: translate3d(100px, -50px, 0) rotate(5deg) scale(0.85);
    z-index: 3;
}

.watch-mockup.animate-in:nth-child(2) {
    transform: translate3d(0, 0, 0) rotate(10deg) scale(1.05);
    transition-delay: 0.2s;
}

/* Bottom right */
.watch-mockup:nth-child(3) {
    bottom: 2%;
    right: -6%;
    transform: translate3d(110px, 60px, 0) rotate(-12deg) scale(0.85);
    z-index: 2;
}

.watch-mockup.animate-in:nth-child(3) {
    transform: translate3d(0, 0, 0) rotate(-8deg) scale(1);
    transition-delay: 0.3s;
}

/* Bottom middle-right */
.watch-mockup:nth-child(4) {
    bottom: 0%;
    right: 29%;
    transform: translate3d(90px, 50px, 0) rotate(15deg) scale(0.85);
    z-index: 1;
}

.watch-mockup.animate-in:nth-child(4) {
    transform: translate3d(0, 0, 0) rotate(6deg) scale(1.05);
    transition-delay: 0.4s;
}

/* ============================================
   SECTIONS WITH CENTERED CONTENT
   ============================================ */
.section-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.section-centered h2 {
    color: var(--turquoise);
    margin-bottom: var(--space-lg);
}

.section-centered p {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: var(--space-2xl);
}

.section-image {
    max-width: 900px;
    width: 100%;
    margin: var(--space-3xl) auto 0;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* ============================================
   COMPARISON SECTION
   ============================================ */
.comparison-section {
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(240, 253, 248, 0.7) 20%,
        rgba(44, 201, 157, 0.15) 50%,
        rgba(240, 253, 248, 0.7) 80%,
        rgba(255, 255, 255, 1) 100%
    );
    background-size: 100% 200%;
    animation: gradientPulse 12s ease-in-out infinite;
    position: relative;
}

.comparison-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.comparison-header h2 {
    color: var(--turquoise);
    margin-bottom: var(--space-md);
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.comparison-header p {
    font-size: 19px;
    color: var(--text-primary);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.85;
}

.comparison-table {
    max-width: 950px;
    margin: 0 auto var(--space-4xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 255, 252, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 16px 64px rgba(44, 201, 157, 0.12), 0 0 0 1px rgba(44, 201, 157, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    border-bottom: 1px solid rgba(44, 201, 157, 0.08);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header-row {
    background: linear-gradient(135deg, rgba(44, 201, 157, 0.12) 0%, rgba(44, 201, 157, 0.06) 100%);
    padding: var(--space-2xl) 0;
    border-radius: 32px 32px 0 0;
}

.highlight-row {
    background: linear-gradient(90deg, rgba(44, 201, 157, 0.05) 0%, transparent 100%);
}

.comparison-feature-label {
    padding: var(--space-xl) var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.comparison-feature-label strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.feature-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 400;
}

.comparison-product {
    padding: var(--space-xl) var(--space-md);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.comparison-product.featured {
    background: transparent;
}

.product-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.comparison-product.featured .product-name {
    color: var(--turquoise);
    font-weight: 800;
}

.product-badge {
    position: absolute;
    top: auto;
    bottom: 12px;
    right: 16px;
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    opacity: 1;
}

.feature-yes {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2cc99d 0%, #24e5b0 100%);
    color: white;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(44, 201, 157, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-product:hover .feature-yes {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 24px rgba(44, 201, 157, 0.4);
}

.feature-no {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
    color: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-product:hover .feature-no {
    transform: scale(1.05);
}

.feature-maybe {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.08) 100%);
    color: rgba(255, 152, 0, 0.8);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-product:hover .feature-maybe {
    transform: scale(1.1);
}

.comparison-cta {
    text-align: center;
}

.comparison-note {
    margin-top: var(--space-md);
    color: var(--text-secondary);
    font-size: 14px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(240, 253, 248, 0.8) 25%,
        rgba(44, 201, 157, 0.12) 50%,
        rgba(240, 253, 248, 0.8) 75%,
        rgba(255, 255, 255, 1) 100%
    );
    background-size: 200% 200%;
    animation: gradientPulse 14s ease-in-out infinite;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin: var(--space-3xl) 0;
}

.testimonial-card {
    background: var(--background-light);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
    font-size: 20px;
    color: var(--orange);
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.testimonial-info strong {
    font-size: 15px;
    color: var(--text-primary);
}

.testimonial-info span {
    font-size: 13px;
    color: var(--text-secondary);
}

.testimonials-footer {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-showcase {
    max-width: 1100px;
    margin: var(--space-4xl) auto 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-4xl);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.feature-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.feature-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-primary);
    opacity: 0.85;
}

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

.feature-image {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.1));
}

.feature-row-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.feature-mini {
    background: var(--background);
    padding: var(--space-2xl) var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
}

.feature-mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-mini-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-md);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
}

.feature-mini h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.feature-mini p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    opacity: 0.8;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-intro {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.pricing-intro h2 {
    color: var(--turquoise);
    margin-bottom: var(--space-md);
}

.pricing-intro p {
    font-size: 19px;
    color: var(--text-primary);
    opacity: 0.85;
}

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

.pricing-card {
    background: var(--background);
    padding: var(--space-3xl) var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
    position: relative;
    border: 2px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid var(--turquoise);
    box-shadow: 0 8px 32px rgba(44, 201, 157, 0.15);
    transform: scale(1.02);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(44, 201, 157, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-tier {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.3px;
}

.pricing-price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-md);
}

.pricing-price {
    font-size: 52px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -1px;
}

.pricing-price-special {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.price-old {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: line-through;
    opacity: 0.5;
}

.price-new {
    font-size: 52px;
    font-weight: 800;
    color: var(--turquoise);
    line-height: 1;
    letter-spacing: -1px;
}

.pricing-period {
    font-size: 15px;
    color: var(--text-secondary);
    margin-top: var(--space-sm);
}

.pricing-description {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    margin-bottom: auto;
    padding-bottom: var(--space-xl);
}

.pricing-features li {
    padding: var(--space-sm) 0;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 15px;
    line-height: 1.6;
}

.pricing-features li.included::before {
    content: '✓';
    color: var(--turquoise);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 0px;
}

.pricing-features li.limited {
    color: var(--text-secondary);
    opacity: 0.7;
}

.pricing-features li.limited::before {
    content: '−';
    color: var(--text-secondary);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: -2px;
}

.pricing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: 2px solid transparent;
}

.pricing-button.primary {
    background: var(--turquoise);
    color: var(--text-light);
    box-shadow: 0 4px 16px rgba(44, 201, 157, 0.3);
}

.pricing-button.primary:hover {
    background: var(--turquoise-hover);
    box-shadow: 0 6px 20px rgba(44, 201, 157, 0.4);
    transform: translateY(-2px);
    color: var(--text-light);
}

.pricing-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(0, 0, 0, 0.12);
}

.pricing-button.secondary:hover {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.button-price {
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.3px;
}

.pricing-footer-note {
    text-align: center;
    margin-top: var(--space-md);
    font-size: 13px;
    color: var(--text-secondary);
}

.pricing-disclaimer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-top: var(--space-2xl);
}

.pricing-disclaimer p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   EASY FAST SECURE SECTION
   ============================================ */
.easy-showcase {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: var(--space-3xl);
    padding: var(--space-2xl) 0;
}

.easy-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.easy-mockup {
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.12));
    animation: float 6s ease-in-out infinite;
}

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

.easy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.easy-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: var(--space-xl);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.easy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--turquoise) 0%, #26b589 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.easy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.easy-card:hover::before {
    transform: scaleX(1);
}

.easy-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--turquoise) 0%, #26b589 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: var(--space-md);
    box-shadow: 0 8px 24px rgba(44, 201, 157, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.easy-card:hover .easy-icon {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(44, 201, 157, 0.4);
}

.easy-card h3 {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.easy-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Staggered animation delay */
.easy-card-1 {
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.easy-card-2 {
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.easy-card-3 {
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

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

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    text-align: center;
}

.newsletter-section h2 {
    color: var(--turquoise);
    margin-bottom: var(--space-md);
}

.newsletter-section p {
    font-size: 18px;
    margin-bottom: var(--space-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-visual {
    margin-bottom: var(--space-3xl);
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
}

.time-machine-stack {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Watch at the front center */
.watch-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

.watch-center-image {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.25));
    animation: watchFloat 6s ease-in-out infinite;
}

@keyframes watchFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

/* Stacked layers behind the watch - Time Machine style */
.stack-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 200px;
    height: auto;
    border-radius: 28px;
    opacity: 0;
    animation: stackFadeIn 1s ease-out forwards;
}

@keyframes stackFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    to {
        opacity: var(--layer-opacity);
    }
}

/* Layer 1 - Closest to watch (left side) - Unique screenshot */
.stack-layer-1 {
    --layer-opacity: 0.8;
    transform: translate(-50%, -50%) translateX(-180px) translateY(30px) scale(0.88) rotate(-10deg);
    z-index: 90;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.18));
    animation-delay: 0.1s;
}

/* Layer 2 - Closest to watch (right side) - Unique screenshot */
.stack-layer-2 {
    --layer-opacity: 0.8;
    transform: translate(-50%, -50%) translateX(180px) translateY(-30px) scale(0.88) rotate(10deg);
    z-index: 90;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.18));
    animation-delay: 0.2s;
}

/* Layer 3 - Mid distance (left) - Unique screenshot */
.stack-layer-3 {
    --layer-opacity: 0.6;
    transform: translate(-50%, -50%) translateX(-240px) translateY(-45px) scale(0.72) rotate(-14deg);
    z-index: 80;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.14));
    animation-delay: 0.3s;
}

/* Layer 4 - Mid distance (right) - Unique screenshot */
.stack-layer-4 {
    --layer-opacity: 0.6;
    transform: translate(-50%, -50%) translateX(240px) translateY(45px) scale(0.72) rotate(14deg);
    z-index: 80;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.14));
    animation-delay: 0.4s;
}

/* Layer 5 - Far back (left) - DUPLICATE barely visible */
.stack-layer-5 {
    --layer-opacity: 0.35;
    transform: translate(-50%, -50%) translateX(-290px) translateY(65px) scale(0.56) rotate(-18deg);
    z-index: 70;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    animation-delay: 0.5s;
}

/* Layer 6 - Furthest back (right) - DUPLICATE barely visible */
.stack-layer-6 {
    --layer-opacity: 0.35;
    transform: translate(-50%, -50%) translateX(290px) translateY(-65px) scale(0.56) rotate(18deg);
    z-index: 70;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    animation-delay: 0.6s;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto var(--space-lg);
    display: flex;
    gap: var(--space-md);
}

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-full);
    font-size: 16px;
    transition: border-color var(--transition-base);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--turquoise);
}

.newsletter-submit {
    background: var(--turquoise);
    color: var(--text-light);
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
}

.newsletter-submit:hover {
    background: var(--turquoise-hover);
    transform: scale(1.05);
}

.newsletter-count {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: var(--space-lg);
}

/* Newsletter Success Notification */
.newsletter-notification {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-120px);
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    max-width: 90%;
}

.newsletter-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.newsletter-notification-icon {
    width: 40px;
    height: 40px;
    background: #2cc99d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-notification-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 3;
    fill: none;
}

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

.newsletter-notification-title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
}

.newsletter-notification-message {
    font-size: 14px;
    color: #7a7a7a;
}

@media (max-width: 640px) {
    .newsletter-notification {
        padding: 16px 24px;
        top: 80px;
    }

    .newsletter-notification-icon {
        width: 32px;
        height: 32px;
    }

    .newsletter-notification-icon svg {
        width: 18px;
        height: 18px;
    }

    .newsletter-notification-title {
        font-size: 14px;
    }

    .newsletter-notification-message {
        font-size: 13px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--background);
    border-top: 1px solid #e5e5e5;
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid #e5e5e5;
}

.footer-disclaimer {
    flex: 1;
    max-width: 500px;
}

.footer-disclaimer p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: var(--space-xs);
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    gap: var(--space-3xl);
}

.footer-column h4 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: var(--text-secondary);
    transition: color var(--transition-base);
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--turquoise);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
}

.copyright {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
    padding-top: 140px;
    padding-bottom: var(--space-5xl);
    background: var(--background);
}

.legal-content {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 24px;
}

.legal-content h1 {
    color: var(--turquoise);
    margin-bottom: var(--space-md);
}

.legal-date {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: var(--space-3xl);
}

.legal-content h2 {
    color: var(--text-primary);
    font-size: 32px;
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-lg);
}

.legal-content h3 {
    color: var(--text-primary);
    font-size: 24px;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.legal-content p {
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    line-height: 1.8;
}

.legal-content ul, .legal-content ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
}

.legal-content li {
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.legal-content a {
    color: var(--turquoise);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--turquoise-hover);
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-page {
    padding-top: 140px;
    padding-bottom: var(--space-5xl);
    background: var(--background-light);
}

.faq-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.faq-header h1 {
    color: var(--turquoise);
    margin-bottom: var(--space-md);
}

.faq-header p {
    font-size: 20px;
    color: var(--text-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-question {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    font-size: 20px;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-answer ul {
    margin-top: var(--space-md);
    padding-left: var(--space-xl);
}

.faq-answer li {
    margin-bottom: var(--space-sm);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-mockups {
        height: 500px;
    }

    /* Features showcase */
    .features-showcase {
        gap: var(--space-3xl);
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .feature-row.reverse {
        direction: ltr;
    }

    .feature-content h3 {
        font-size: 28px;
    }

    .feature-content p {
        font-size: 17px;
    }

    .feature-image {
        max-width: 320px;
    }

    .feature-row-dual {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .pricing-card {
        padding: var(--space-2xl) var(--space-xl);
    }

    .pricing-card.featured {
        transform: scale(1);
    }

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

    .pricing-price {
        font-size: 44px;
    }

    .price-new {
        font-size: 44px;
    }

    .price-old {
        font-size: 28px;
    }

    .easy-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .easy-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .easy-mockup {
        max-width: 300px;
    }

    /* Navbar tablet */
    .nav-center {
        gap: 24px;
    }

    .nav-actions {
        gap: 10px;
    }

    .nav-download {
        padding: 9px 16px;
        font-size: 14px;
    }

    .nav-cta-special {
        padding: 9px 16px;
        gap: 8px;
    }

    .nav-cta-text {
        font-size: 14px;
    }

    .nav-cta-price {
        font-size: 15px;
    }

    .footer-main {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .footer-nav {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .footer-disclaimer {
        max-width: 100%;
    }

    .newsletter-visual {
        min-height: 500px;
    }

    .time-machine-stack {
        max-width: 600px;
        height: 500px;
    }

    .watch-center-image {
        max-width: 240px;
    }

    .stack-layer {
        max-width: 170px;
    }

    .stack-layer-1 {
        transform: translate(-50%, -50%) translateX(-140px) translateY(22px) scale(0.84) rotate(-9deg);
    }

    .stack-layer-2 {
        transform: translate(-50%, -50%) translateX(140px) translateY(-22px) scale(0.84) rotate(9deg);
    }

    .stack-layer-3 {
        transform: translate(-50%, -50%) translateX(-190px) translateY(-38px) scale(0.68) rotate(-13deg);
    }

    .stack-layer-4 {
        transform: translate(-50%, -50%) translateX(190px) translateY(38px) scale(0.68) rotate(13deg);
    }

    .stack-layer-5 {
        transform: translate(-50%, -50%) translateX(-230px) translateY(55px) scale(0.52) rotate(-17deg);
    }

    .stack-layer-6 {
        transform: translate(-50%, -50%) translateX(230px) translateY(-55px) scale(0.52) rotate(17deg);
    }

    /* Comparison table */
    .comparison-row {
        grid-template-columns: 1.8fr 1fr 1fr;
    }

    .comparison-header h2 {
        font-size: 36px;
    }

    .comparison-feature-label {
        padding: var(--space-lg) var(--space-xl);
    }

    .comparison-feature-label strong {
        font-size: 15px;
    }

    .feature-subtitle {
        font-size: 12px;
    }

    .product-name {
        font-size: 18px;
    }

    .feature-yes,
    .feature-no,
    .feature-maybe {
        width: 36px;
        height: 36px;
        font-size: 18px;
        border-radius: 16px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-button {
        padding: 13px 24px;
        gap: 14px;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }

    .container {
        overflow-x: hidden;
    }

    .section {
        overflow-x: hidden;
    }

    body {
        font-size: 16px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    .navbar {
        top: 0;
    }

    .nav-content {
        padding: 12px 16px;
        grid-template-columns: auto 1fr;
        gap: var(--space-md);
        position: relative;
    }

    .logo-img {
        height: 32px;
    }

    .nav-center {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        justify-self: end;
    }

    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: var(--space-4xl);
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .hero-mockups {
        height: 400px;
        order: -1;
        margin-top: var(--space-lg);
    }

    .hero-text {
        order: 0;
    }

    .app-store-badge {
        margin-bottom: var(--space-2xl);
    }

    .watch-mockup {
        max-width: 180px;
        cursor: pointer;
        transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    }

    /* Pyramid distribution on mobile - top mockups closer to center */
    .watch-mockup:nth-child(1) {
        top: 5%;
        right: 15%;
        transform: translate3d(80px, -40px, 0) rotate(-15deg) scale(0.85);
    }

    .watch-mockup.animate-in:nth-child(1) {
        transform: translate3d(0, 0, 0) rotate(-8deg) scale(0.9);
        transition-delay: 0s;
    }

    .watch-mockup:nth-child(2) {
        top: 5%;
        left: 15%;
        transform: translate3d(-80px, -40px, 0) rotate(8deg) scale(0.85);
    }

    .watch-mockup.animate-in:nth-child(2) {
        transform: translate3d(0, 0, 0) rotate(8deg) scale(0.9);
        transition-delay: 0.08s;
    }

    .watch-mockup:nth-child(3) {
        bottom: 5%;
        right: 0%;
        transform: translate3d(80px, 40px, 0) rotate(-10deg) scale(0.85);
    }

    .watch-mockup.animate-in:nth-child(3) {
        transform: translate3d(0, 0, 0) rotate(-8deg) scale(0.9);
        transition-delay: 0.16s;
    }

    .watch-mockup:nth-child(4) {
        bottom: 5%;
        left: 0%;
        transform: translate3d(-80px, 40px, 0) rotate(10deg) scale(0.85);
    }

    .watch-mockup.animate-in:nth-child(4) {
        transform: translate3d(0, 0, 0) rotate(8deg) scale(0.9);
        transition-delay: 0.24s;
    }

    /* Click animation states */
    .watch-mockup.expanding {
        transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    }

    .watch-mockup.expanding:nth-child(1) {
        transform: translate3d(30px, -30px, 0) rotate(-12deg) scale(1.05) !important;
    }

    .watch-mockup.expanding:nth-child(2) {
        transform: translate3d(-30px, -30px, 0) rotate(12deg) scale(1.05) !important;
    }

    .watch-mockup.expanding:nth-child(3) {
        transform: translate3d(30px, 30px, 0) rotate(-12deg) scale(1.05) !important;
    }

    .watch-mockup.expanding:nth-child(4) {
        transform: translate3d(-30px, 30px, 0) rotate(12deg) scale(1.05) !important;
    }

    .newsletter-visual {
        min-height: 420px;
        perspective: 1000px;
    }

    .time-machine-stack {
        max-width: 450px;
        height: 420px;
    }

    .watch-center-image {
        max-width: 200px;
    }

    .stack-layer {
        max-width: 140px;
    }

    .stack-layer-1 {
        transform: translate(-50%, -50%) translateX(-110px) translateY(18px) scale(0.8) rotate(-8deg);
    }

    .stack-layer-2 {
        transform: translate(-50%, -50%) translateX(110px) translateY(-18px) scale(0.8) rotate(8deg);
    }

    .stack-layer-3 {
        transform: translate(-50%, -50%) translateX(-150px) translateY(-32px) scale(0.64) rotate(-12deg);
    }

    .stack-layer-4 {
        transform: translate(-50%, -50%) translateX(150px) translateY(32px) scale(0.64) rotate(12deg);
    }

    .stack-layer-5 {
        transform: translate(-50%, -50%) translateX(-180px) translateY(48px) scale(0.48) rotate(-15deg);
    }

    .stack-layer-6 {
        transform: translate(-50%, -50%) translateX(180px) translateY(-48px) scale(0.48) rotate(15deg);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-submit {
        width: 100%;
    }

    /* Hero trust signals */
    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }

    .rating-badge {
        width: 100%;
        justify-content: flex-start;
    }

    .user-count {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .user-text {
        font-size: 14px;
    }

    /* Comparison table */
    .comparison-header h2 {
        font-size: 28px;
    }

    .comparison-header p {
        font-size: 17px;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .comparison-header-row {
        display: grid;
        grid-template-columns: 1fr 0.5fr 0.5fr;
        gap: 0;
        padding: var(--space-lg) 0;
    }

    .comparison-header-row .comparison-feature-label {
        display: none;
    }

    .comparison-header-row .comparison-product {
        padding: var(--space-md) var(--space-xs);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .comparison-header-row .comparison-product:nth-child(2) {
        grid-column: 2 / 3;
    }

    .comparison-header-row .comparison-product:nth-child(3) {
        grid-column: 3 / 4;
        padding-right: 3px;
    }

    .product-name {
        font-size: 16px;
        text-align: center;
    }

    /* Simplify product names on mobile - show only short versions */
    .comparison-header-row .comparison-product:nth-child(2) .product-name::before {
        content: "WhatsApp";
        font-size: 14px;
        display: block;
    }

    .comparison-header-row .comparison-product:nth-child(2) .product-name {
        font-size: 0;
        line-height: 0;
    }

    .comparison-header-row .comparison-product:nth-child(3) .product-name::before {
        content: "Blaze";
        font-size: 14px;
        display: block;
    }

    .comparison-header-row .comparison-product:nth-child(3) .product-name {
        font-size: 0;
        line-height: 0;
    }

    .comparison-header-row .product-badge {
        display: none;
    }

    .comparison-product.featured {
        background: transparent;
    }

    .comparison-feature-label {
        padding: var(--space-lg) var(--space-md);
        grid-column: 1 / -1;
        background: rgba(0, 0, 0, 0.02);
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        text-align: center;
    }

    .comparison-feature-label strong {
        font-size: 15px;
    }

    .feature-subtitle {
        font-size: 12px;
    }

    .comparison-product {
        padding: var(--space-lg) var(--space-md);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .comparison-row:not(.comparison-header-row) {
        display: grid;
        grid-template-columns: 1fr 0.5fr 0.5fr;
    }

    .comparison-row:not(.comparison-header-row) .comparison-feature-label {
        grid-column: 1 / 2;
    }

    .comparison-row:not(.comparison-header-row) .comparison-product {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: var(--space-lg) 0;
    }

    .comparison-row:not(.comparison-header-row) .comparison-product:nth-child(2) {
        grid-column: 2 / 3;
    }

    .comparison-row:not(.comparison-header-row) .comparison-product:nth-child(3) {
        grid-column: 3 / 4;
        padding-right: 3px;
    }

    .product-badge {
        font-size: 8px;
        padding: 2px 8px;
        bottom: 8px;
        top: auto;
        right: 8px;
    }

    .feature-yes,
    .feature-no,
    .feature-maybe {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    /* Pricing */
    .pricing-intro p {
        font-size: 17px;
    }

    .pricing-button {
        font-size: 15px;
    }

    /* Easy section */
    .easy-cards {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .easy-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .easy-mockup {
        max-width: 280px;
    }

    .easy-card {
        padding: var(--space-lg);
    }

    .easy-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
        border-radius: 18px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    .container {
        padding: 0 16px;
    }

    .pricing-price {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 15px;
        gap: 12px;
    }

    .hero-mockups {
        height: 350px;
    }

    .watch-mockup {
        max-width: 160px;
    }

    .cta-main {
        font-size: 15px;
    }

    .cta-price-old {
        font-size: 14px;
    }

    .cta-price-new {
        font-size: 18px;
    }

    .cta-badge {
        font-size: 9px;
    }

    /* Comparison table mobile */
    .comparison-section {
        padding: var(--space-4xl) 0;
    }

    .comparison-header h2 {
        font-size: 24px;
    }

    .comparison-header p {
        font-size: 16px;
    }

    .comparison-table {
        border-radius: 28px;
    }

    .comparison-header-row {
        border-radius: 28px 28px 0 0;
    }

    .comparison-header-row {
        padding: var(--space-md);
    }

    .comparison-header-row .comparison-product {
        padding: var(--space-md);
    }

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

    .comparison-feature-label {
        padding: var(--space-md) var(--space-lg);
    }

    .comparison-feature-label strong {
        font-size: 14px;
    }

    .feature-subtitle {
        font-size: 11px;
    }

    .comparison-product {
        padding: var(--space-md) var(--space-sm);
    }

    .product-badge {
        font-size: 7px;
        padding: 2px 6px;
        bottom: 6px;
        top: auto;
        right: 6px;
    }

    .feature-yes,
    .feature-no,
    .feature-maybe {
        width: 32px;
        height: 32px;
        font-size: 16px;
        border-radius: 14px;
    }

    .user-count-badge {
        padding: 8px 16px;
        gap: var(--space-sm);
    }

    /* Features showcase mobile */
    .features-showcase {
        gap: var(--space-2xl);
    }

    .feature-row {
        gap: var(--space-lg);
    }

    .feature-content h3 {
        font-size: 24px;
    }

    .feature-content p {
        font-size: 16px;
    }

    .feature-image {
        max-width: 280px;
    }

    .feature-mini {
        padding: var(--space-xl) var(--space-lg);
    }

    .feature-mini h4 {
        font-size: 20px;
    }

    .feature-mini p {
        font-size: 15px;
    }

    .feature-mini-image {
        max-width: 240px;
    }

    /* Pricing mobile */
    .pricing-intro p {
        font-size: 16px;
    }

    .pricing-card {
        padding: var(--space-2xl) var(--space-lg);
    }

    .pricing-tier {
        font-size: 18px;
    }

    .pricing-price {
        font-size: 40px;
    }

    .price-new {
        font-size: 40px;
    }

    .price-old {
        font-size: 24px;
    }

    .pricing-badge {
        font-size: 11px;
        padding: 5px 16px;
    }

    .pricing-button {
        font-size: 15px;
        padding: 13px 20px;
    }

    .pricing-features li {
        font-size: 14px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.text-turquoise {
    color: var(--turquoise);
}

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

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

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* ============================================
   MOBILE SPECIFIC OPTIMIZATIONS
   ============================================ */

/* Optimize newsletter satellite visibility on mobile */
@media (max-width: 768px) {
    .newsletter-satellite {
        opacity: 0.5;
    }

    .newsletter-satellite:hover {
        opacity: 0.8;
    }

    /* Ensure hero mockups are properly sized on small screens */
    .hero-mockups {
        gap: 12px;
    }

    /* Improve feature row spacing on mobile */
    .feature-row,
    .feature-row.reverse {
        gap: var(--space-xl);
    }

    .feature-row .feature-content,
    .feature-row.reverse .feature-content {
        padding: 0;
    }
}

/* iPhone-specific optimizations */
@media (max-width: 480px) {
    /* Improve readability on small screens */
    .section-centered p {
        font-size: 17px;
        line-height: 1.5;
    }

    /* Optimize hero section for iPhone */
    .hero-text h1 {
        font-size: 34px;
        line-height: 1.1;
        letter-spacing: -0.02em;
    }

    /* Make CTA buttons more prominent */
    .cta-button {
        font-weight: 600;
        box-shadow: 0 4px 16px rgba(44, 201, 157, 0.25);
    }

    /* Improve newsletter form on iPhone */
    .newsletter-input {
        font-size: 16px; /* Prevents zoom on iOS */
        height: 48px;
    }

    .newsletter-submit {
        height: 48px;
        font-size: 16px;
        font-weight: 600;
    }

    /* Optimize comparison table for iPhone */
    .comparison-table {
        overflow-x: visible;
    }

    /* Better testimonial spacing on iPhone */
    .testimonial-card {
        padding: var(--space-xl);
    }

    .testimonial-text {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Improve pricing cards on iPhone */
    .pricing-card {
        padding: var(--space-xl);
    }

    .pricing-features li {
        font-size: 15px;
        padding: 10px 0;
    }
}

/* Landscape mobile optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    /* Force mobile navigation in landscape */
    .nav-content {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .nav-center {
        display: none !important;
    }

    .nav-actions {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        margin-left: auto;
    }

    /* Hero layout in landscape - mockups on top */
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: var(--space-4xl);
    }

    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        gap: var(--space-2xl) !important;
    }

    .hero-mockups {
        height: 300px;
        order: -1 !important;
        margin-top: var(--space-lg);
    }

    .hero-text {
        order: 1 !important;
    }

    .section {
        padding: var(--space-2xl) 0;
    }
}

/* Additional landscape support for tablets */
@media (max-width: 1024px) and (orientation: landscape) and (max-height: 600px) {
    .nav-content {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .nav-center {
        display: none !important;
    }

    .nav-actions {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        margin-left: auto;
    }
}
