/* Flash Reminders - Modern Landing Page Styles */

:root {
    /* Brand Colors */
    --gold: #F9A807;
    --gold-light: #FFDC4A;
    --gold-dark: #DD7F02;
    --gold-pale: #FFF8E1;
    
    /* Backgrounds */
    --bg-dark: #0A0A0B;
    --bg-card: #141416;
    --bg-card-hover: #1A1A1D;
    --bg-gradient: linear-gradient(135deg, #0A0A0B 0%, #141416 100%);
    
    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: #A1A1AA;
    --text-muted: #71717A;
    
    /* Accents */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --glow-gold: rgba(249, 168, 7, 0.4);
    
    /* Channel Colors */
    --whatsapp: #25D366;
    --telegram: #0088CC;
    --email: #3B82F6;
    --push: #F9A807;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 120px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 40px var(--glow-gold); }
    50% { box-shadow: 0 0 80px var(--glow-gold); }
}

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

@keyframes slide-in-right {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 11, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

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

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

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

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

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

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #000;
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--glow-gold);
}

.nav-cta .apple-icon {
    width: 16px;
    height: 16px;
}

/* Nav Auth Buttons Container */
.nav-auth-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Sign In Button */
.nav-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-login:hover {
    color: var(--gold);
    border-color: var(--border-color);
    background: rgba(255, 255, 255, 0.05);
}

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 16px;
    padding: 12px 0;
}

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

/* Mobile Menu Divider */
.mobile-menu-divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 0;
}

/* Mobile Menu Auth Links */
.mobile-menu-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 16px;
    padding: 12px 0;
    transition: color 0.2s ease;
}

.mobile-menu-link:hover {
    color: var(--gold);
}

.mobile-menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #000;
    padding: 14px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--glow-gold);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--glow-gold);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

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

.apple-icon, .arrow-icon {
    width: 20px;
    height: 20px;
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    padding: 140px 24px 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--gold);
    top: -200px;
    right: -100px;
    opacity: 0.15;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gold-light);
    bottom: -100px;
    left: -100px;
    opacity: 0.1;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    top: 50%;
    left: 30%;
    opacity: 0.08;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slide-up 0.8s ease-out;
}

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

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

.hero-title {
    font-size: clamp(48px, 6vw, 72px);
    margin-bottom: 24px;
    line-height: 1.05;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 500px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-secondary);
}

.hero-feature .feature-icon {
    font-size: 14px;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: slide-in-right 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.phone-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.phone-main {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.phone-frame {
    width: 280px;
    background: linear-gradient(145deg, #2C2C2E, #1C1C1E);
    border-radius: 44px;
    padding: 12px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.phone-frame-small {
    width: 220px;
    border-radius: 36px;
    padding: 10px;
}

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

.phone-screen {
    width: 100%;
    border-radius: 36px;
    display: block;
}

.phone-frame-small .phone-screen {
    border-radius: 28px;
}

.phone-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--glow-gold) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite;
}

.phone-secondary {
    position: absolute;
    z-index: 1;
    opacity: 0.9;
}

.phone-left {
    left: -60px;
    top: 80px;
    transform: rotate(-8deg);
    animation: float 6s ease-in-out infinite;
    animation-delay: -2s;
}

.phone-right {
    right: -60px;
    top: 80px;
    transform: rotate(8deg);
    animation: float 6s ease-in-out infinite;
    animation-delay: -4s;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slide-up 0.6s ease-out;
    animation-fill-mode: both;
}

.card-notification {
    top: 40px;
    right: 0;
    animation-delay: 0.8s;
}

.card-ai {
    bottom: 120px;
    left: -20px;
    animation-delay: 1s;
}

.card-channel {
    bottom: 40px;
    right: 40px;
    animation-delay: 1.2s;
}

.card-icon {
    font-size: 24px;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-text {
    font-size: 13px;
    color: var(--text-primary);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 40px;
    animation: fade-in 1s ease-out;
    animation-delay: 1.5s;
    animation-fill-mode: both;
}

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

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    animation: scroll-bounce 2s ease-in-out infinite;
}

/* ==================== STATS BAR ==================== */
.stats-bar {
    padding: 40px 24px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* ==================== SECTION STYLES ==================== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(36px, 5vw, 52px);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==================== SCREENSHOTS SECTION ==================== */
.screenshots-section {
    padding: var(--section-padding) 24px;
    background: var(--bg-dark);
    overflow: hidden;
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    overflow: hidden;
}

.section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(249, 168, 7, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.screenshots-grid.screenshots-6 {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.screenshot-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.screenshot-item img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-item:hover img {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.screenshot-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

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

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

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scroll-bounce 2s ease-in-out infinite;
    color: var(--text-muted);
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* AI Demo in Bento */
.ai-demo {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(249, 168, 7, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(249, 168, 7, 0.1);
}

.ai-input {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ai-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-text {
    font-size: 13px;
    color: var(--text-secondary);
    font-style: italic;
}

.ai-arrow {
    color: var(--gold);
    flex-shrink: 0;
}

.ai-arrow svg {
    width: 24px;
    height: 24px;
}

.ai-output {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.demo-task {
    font-size: 12px;
    color: var(--text-primary);
    background: var(--bg-card-hover);
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

/* Channel Icon Colors */
.channel-icon.push {
    background: rgba(249, 168, 7, 0.15);
}
.channel-icon.push svg {
    stroke: var(--gold);
}

.channel-icon.email {
    background: rgba(59, 130, 246, 0.15);
}
.channel-icon.email svg {
    stroke: var(--email);
}

.channel-icon.telegram {
    background: rgba(0, 136, 204, 0.15);
}
.channel-icon.telegram svg {
    fill: var(--telegram);
}

.channel-icon.whatsapp {
    background: rgba(37, 211, 102, 0.15);
}
.channel-icon.whatsapp svg {
    fill: var(--whatsapp);
}

/* Pricing Options */
.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.pricing-option {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    padding: 12px;
    background: var(--bg-card-hover);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.pricing-option:hover {
    border-color: var(--gold);
}

.pricing-option .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

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

.pricing-option .savings {
    font-size: 11px;
    font-weight: 600;
    color: #10B981;
    background: rgba(16, 185, 129, 0.15);
    padding: 4px 8px;
    border-radius: 100px;
    margin-left: 8px;
}

/* Pricing Features */
.pricing-features li svg {
    width: 20px;
    height: 20px;
    stroke: #10B981;
    flex-shrink: 0;
}

.pricing-features li.highlight {
    color: var(--text-primary);
    font-weight: 500;
}

.pricing-features li.highlight svg {
    stroke: var(--gold);
}

/* Featured Pricing Card */
.pricing-card.featured {
    border-color: var(--gold);
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(249, 168, 7, 0.15);
}

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

/* Footer Styles */
.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 64px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.footer-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

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

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

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

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

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

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

/* ==================== FEATURES SECTION ==================== */
.features-section {
    padding: var(--section-padding) 24px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

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

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249, 168, 7, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-large {
    grid-column: span 2;
}

.bento-wide {
    grid-column: span 3;
}

.bento-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.bento-icon svg {
    width: 28px;
    height: 28px;
    stroke: #000;
}

.bento-icon span {
    font-size: 28px;
}

.bento-icon.icon-channels,
.bento-icon.icon-schedule,
.bento-icon.icon-apple,
.bento-icon.icon-calendar,
.bento-icon.icon-security,
.bento-icon.icon-delegate {
    background: var(--bg-card-hover);
    border: 1px solid var(--border-color);
}

.bento-icon.icon-channels span,
.bento-icon.icon-schedule svg,
.bento-icon.icon-apple svg,
.bento-icon.icon-calendar svg,
.bento-icon.icon-security svg,
.bento-icon.icon-delegate svg {
    stroke: var(--gold);
    fill: none;
}

.bento-icon.icon-apple svg {
    fill: var(--gold);
    stroke: none;
}

/* Apple icon in bento card - transparent background */
.bento-icon-apple {
    background: transparent !important;
    border: none !important;
}

.bento-icon-apple svg {
    fill: var(--gold);
}

/* PRO Badge on Bento Cards */
.bento-pro {
    position: relative;
    border-color: rgba(249, 168, 7, 0.3);
}

.bento-pro::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249, 168, 7, 0.08) 0%, transparent 50%);
    border-radius: var(--border-radius-lg);
    pointer-events: none;
}

.bento-pro-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    z-index: 1;
}

.bento-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    position: relative;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    position: relative;
}

.feature-badge {
    display: inline-block;
    background: var(--gold);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    margin-top: 16px;
}

.badge-large {
    font-size: 12px;
    padding: 8px 16px;
}

/* Voice Visual */
.bento-visual {
    margin-top: 24px;
    position: relative;
}

.voice-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(249, 168, 7, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(249, 168, 7, 0.1);
}

.voice-wave {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 40px;
}

.voice-wave span {
    width: 4px;
    height: 20px;
    background: var(--gold);
    border-radius: 2px;
    animation: wave 1s ease-in-out infinite;
}

.voice-wave span:nth-child(1) { animation-delay: 0s; }
.voice-wave span:nth-child(2) { animation-delay: 0.1s; }
.voice-wave span:nth-child(3) { animation-delay: 0.2s; }
.voice-wave span:nth-child(4) { animation-delay: 0.3s; }
.voice-wave span:nth-child(5) { animation-delay: 0.4s; }

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

/* ==================== AI SECTION ==================== */
.ai-section {
    padding: var(--section-padding) 24px;
    background: var(--bg-card);
}

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

.ai-text .section-label,
.ai-text .section-title,
.ai-text .section-subtitle {
    text-align: left;
    margin-left: 0;
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.ai-feature {
    display: flex;
    gap: 16px;
}

.ai-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-card-hover);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.ai-feature-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

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

/* AI Demo */
.ai-demo-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    padding: 32px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.demo-input {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.demo-avatar {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.demo-avatar.ai {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.demo-bubble {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px 16px 16px 4px;
    padding: 16px;
    flex: 1;
}

.demo-bubble p {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
}

.demo-output {
    display: flex;
    gap: 12px;
}

.demo-tasks {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.demo-task {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 16px;
}

.task-status {
    width: 16px;
    height: 16px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    flex-shrink: 0;
}

.task-name {
    flex: 1;
    font-size: 13px;
    color: var(--text-primary);
}

.task-week {
    font-size: 11px;
    color: var(--text-muted);
    background: var(--bg-card-hover);
    padding: 4px 8px;
    border-radius: 6px;
}

.demo-footer {
    margin-top: 20px;
    text-align: center;
}

.demo-badge {
    font-size: 12px;
    color: var(--gold);
    font-weight: 500;
}

/* ==================== CHANNELS SECTION ==================== */
.channels-section {
    padding: var(--section-padding) 24px;
    background: var(--bg-dark);
}

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

.channel-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.channel-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.channel-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.channel-card:hover .channel-icon {
    transform: scale(1.1);
}

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

.channel-push .channel-icon {
    background: rgba(249, 168, 7, 0.15);
}
.channel-push .channel-icon svg {
    fill: var(--gold);
}

.channel-email .channel-icon {
    background: rgba(59, 130, 246, 0.15);
}
.channel-email .channel-icon svg {
    stroke: var(--email);
    fill: none;
}

.channel-whatsapp .channel-icon {
    background: rgba(37, 211, 102, 0.15);
}
.channel-whatsapp .channel-icon svg {
    fill: var(--whatsapp);
}

.channel-telegram .channel-icon {
    background: rgba(0, 136, 204, 0.15);
}
.channel-telegram .channel-icon svg {
    fill: var(--telegram);
}

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

.channel-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.channel-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.channel-badge.free {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
}

.channel-badge.pro {
    background: rgba(249, 168, 7, 0.15);
    color: var(--gold);
}

/* ==================== PRICING SECTION ==================== */
.pricing-section {
    padding: var(--section-padding) 24px;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.pricing-grid.pricing-two-col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    padding: 36px;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-featured {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(249, 168, 7, 0.15);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

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

.pricing-header h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: var(--text-secondary);
}

.price-savings {
    font-size: 13px;
    color: #10B981;
    font-weight: 600;
    margin-top: 8px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: #10B981;
    font-weight: 700;
}

.pricing-features .check.gold {
    color: var(--gold);
}

/* Lifetime Card */
.pricing-lifetime {
    margin-top: 48px;
}

.lifetime-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    padding: 32px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.lifetime-content {
    flex: 1;
}

.lifetime-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.lifetime-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

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

.lifetime-price {
    text-align: center;
}

.lifetime-price .price-amount {
    font-size: 36px;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: var(--section-padding) 24px;
    background: var(--bg-dark);
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

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

.faq-question span {
    font-size: 16px;
    font-weight: 600;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

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

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: var(--section-padding) 24px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-dark) 100%);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 80px 24px 40px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

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

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

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

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .phone-secondary {
        display: none;
    }
    
    .floating-card {
        display: none;
    }
    
    .features-bento {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-large {
        grid-column: span 2;
    }
    
    .bento-wide {
        grid-column: span 2;
    }
    
    .ai-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .ai-text .section-label,
    .ai-text .section-title,
    .ai-text .section-subtitle {
        text-align: center;
    }
    
    .ai-features {
        max-width: 500px;
        margin: 32px auto;
    }
    
    .ai-text {
        text-align: center;
    }
    
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-featured {
        transform: none;
        order: -1;
    }
    
    .pricing-featured:hover {
        transform: translateY(-8px);
    }
    
    .lifetime-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-auth-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .phone-showcase {
        min-height: 500px;
    }
    
    .phone-frame {
        width: 240px;
    }
    
    .features-bento {
        grid-template-columns: 1fr;
    }
    
    .bento-large,
    .bento-wide {
        grid-column: span 1;
    }
    
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        gap: 24px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 1024px) {
    .screenshots-grid,
    .screenshots-grid.screenshots-6 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .screenshots-grid,
    .screenshots-grid.screenshots-6 {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* ==================== VALUE PROPS SECTION ==================== */
.value-props-section {
    padding: 60px 24px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.value-prop {
    text-align: center;
}

.value-prop-icon {
    width: 56px;
    height: 56px;
    background: rgba(249, 168, 7, 0.1);
    border: 1px solid rgba(249, 168, 7, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.value-prop-icon svg {
    stroke: var(--gold);
}

.value-prop h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

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

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works-section {
    padding: var(--section-padding) 24px;
    background: var(--bg-dark);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    max-width: 300px;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: #000;
    font-size: 20px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

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

.step-visual {
    margin-top: 20px;
}

.step-demo-input {
    background: var(--bg-card-hover);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
}

.typing-text {
    font-size: 13px;
    color: var(--text-secondary);
    font-style: italic;
}

.step-demo-tasks {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-task {
    font-size: 12px;
    color: var(--text-primary);
    background: var(--bg-card-hover);
    padding: 10px 14px;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.mini-task.subtask {
    margin-left: 16px;
    font-size: 11px;
    color: var(--text-secondary);
    border-left-color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
}

.step-demo-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.channel-pill {
    font-size: 11px;
    padding: 8px 12px;
    border-radius: 100px;
    background: var(--bg-card-hover);
    border: 1px solid var(--border-color);
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    padding-top: 60px;
}

.step-connector svg {
    width: 32px;
    height: 32px;
}

/* ==================== SCREENSHOTS CAROUSEL ==================== */
.screenshots-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    max-width: 100%;
    overflow: hidden;
}

.screenshots-track-wrapper {
    flex: 1;
    overflow: hidden;
    max-width: 100%;
}

.screenshots-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.screenshot-phone {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.screenshot-phone:hover {
    transform: translateY(-8px);
}

.iphone-frame {
    width: 180px;
    background: linear-gradient(145deg, #2C2C2E, #1C1C1E);
    border-radius: 32px;
    padding: 8px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.iphone-frame .iphone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 20px;
    background: #1C1C1E;
    border-radius: 0 0 12px 12px;
    z-index: 10;
}

.iphone-frame img {
    width: 100%;
    border-radius: 26px;
    display: block;
}

/* Large iPhone Frame for Carousel */
.iphone-frame-large {
    width: 340px;
    background: linear-gradient(145deg, #2C2C2E, #1C1C1E);
    border-radius: 48px;
    padding: 14px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.iphone-frame-large .iphone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 32px;
    background: #1C1C1E;
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.iphone-frame-large img {
    width: 100%;
    border-radius: 38px;
    display: block;
}

@media (max-width: 768px) {
    .iphone-frame-large {
        width: 180px;
        border-radius: 32px;
        padding: 8px;
    }
    
    .iphone-frame-large .iphone-notch {
        top: 8px;
        width: 70px;
        height: 20px;
        border-radius: 0 0 12px 12px;
    }
    
    .iphone-frame-large img {
        border-radius: 26px;
    }
}

.screenshot-caption {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.carousel-btn {
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: var(--text-primary);
}

.carousel-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--gold);
    color: var(--gold);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ==================== PRICING COMPARISON TABLE ==================== */
.pricing-comparison {
    max-width: 700px;
    margin: 0 auto 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--bg-card-hover);
    border-bottom: 1px solid var(--border-color);
}

.comparison-feature-col,
.comparison-plan-col {
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-feature-col {
    color: var(--text-secondary);
}

.comparison-plan-col {
    text-align: center;
    color: var(--text-secondary);
}

.comparison-plan-col.pro-col {
    color: var(--gold);
    background: rgba(249, 168, 7, 0.05);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

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

.comparison-row.highlight {
    background: rgba(249, 168, 7, 0.03);
}

.comparison-feature {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--text-primary);
}

.comparison-check {
    padding: 14px 20px;
    text-align: center;
    font-size: 16px;
    color: var(--text-muted);
}

.comparison-check.pro {
    color: #10B981;
    background: rgba(249, 168, 7, 0.03);
}

/* ==================== NEW PRICING CARDS ==================== */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card-new {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card-new:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card-new.featured {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(249, 168, 7, 0.15);
}

.pricing-card-new.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-best-value {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-free-trial-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.pricing-card-new.featured .pricing-free-trial-badge {
    margin-top: 8px;
}

.pricing-card-header {
    margin-bottom: 24px;
}

.pricing-duration {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.pricing-amount .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 8px;
}

.pricing-amount .price-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.pricing-per {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
}

.pricing-savings {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #10B981;
    background: rgba(16, 185, 129, 0.15);
    padding: 4px 12px;
    border-radius: 100px;
    margin-top: 8px;
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 32px;
}

/* ==================== RESPONSIVE UPDATES ==================== */
@media (max-width: 1024px) {
    .value-props-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-connector {
        display: none;
    }
    
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card {
        max-width: 400px;
        width: 100%;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .pricing-card-new.featured {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .value-props-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .screenshots-carousel {
        flex-direction: column;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .screenshots-track-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .screenshots-track-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .iphone-frame {
        width: 150px;
    }
    
    .pricing-comparison {
        font-size: 12px;
    }
    
    .comparison-feature-col,
    .comparison-plan-col {
        padding: 12px 10px;
        font-size: 11px;
    }
    
    .comparison-feature {
        padding: 10px;
        font-size: 12px;
    }
    
    .comparison-check {
        padding: 10px;
        font-size: 14px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
    
    .pricing-card-new.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card-new.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 480px) {
    .value-props-grid {
        grid-template-columns: 1fr;
    }
    
    .iphone-frame {
        width: 130px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .phone-frame {
        width: 220px;
    }
    
    .screenshots-grid,
    .screenshots-grid.screenshots-6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .screenshot-label {
        font-size: 12px;
    }
    
    .hero-stats {
        gap: 12px;
    }
    
    .stat-value {
        font-size: 22px;
    }
    
    .stat-label {
        font-size: 10px;
    }
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    padding: var(--section-padding) 24px;
    background: var(--bg-card);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
    font-size: 16px;
    color: var(--gold);
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

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

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

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

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

/* ==================== SCROLL TO TOP BUTTON ==================== */
.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(249, 168, 7, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: fade-in 0.3s ease;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(249, 168, 7, 0.6);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    stroke: #000;
}

/* ==================== RESPONSIVE TESTIMONIALS ==================== */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .scroll-to-top {
        bottom: 24px;
        right: 24px;
        width: 48px;
        height: 48px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}
