/* ============================================
   KetoBarcode Landing Page - Styles
   Colores basados en la app KetoScanner
   ============================================ */

/* Variables CSS */
:root {
    /* Colores primarios - de la app */
    --primary: #1ecae5;
    --primary-dark: #188b9d;
    --primary-darker: #1a5e69;
    --primary-light: #b3ecf4;

    /* Colores de fondo */
    --bg-light: #F8F9FA;
    --bg-green-light: #E8F5E9;
    --bg-blue-light: #E3F2FD;
    --bg-cyan-light: #E0F7FA;
    --bg-yellow-light: #FFF8E1;
    --white: #ffffff;

    /* Colores de rating */
    --rating-5: #4CAF50;
    --rating-4: #8BC34A;
    --rating-3: #FFC107;
    --rating-2: #FF9800;
    --rating-1: #F44336;

    /* Colores de texto */
    --text-dark: #2C3E50;
    --text-medium: #37474F;
    --text-light: #546E7A;
    --text-muted: #78909C;

    /* Otros */
    --shadow: rgba(30, 202, 229, 0.2);
    --shadow-dark: rgba(0, 0, 0, 0.1);
    --border-radius: 16px;
    --border-radius-lg: 28px;
    --transition: all 0.3s ease;
}

/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
   background-color: #00bcd42b;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
     margin-top: -20px;
}
a.btn-secondary {
    display: none;
}

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

}

/* ============================================
   Smart App Banner (mobile)
   ============================================ */
.smart-banner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: #f2f2f2;
    border-bottom: 1px solid #ccc;
    padding: 10px 12px;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    box-sizing: border-box;
    overflow: hidden;
}

.smart-banner.show {
    display: flex;
}

.smart-banner-close {
    background: none;
    border: none;
    font-size: 22px;
    color: #888;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    display: none;
}

.smart-banner-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
}

.smart-banner-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.smart-banner-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.smart-banner-author {
    font-size: 12px;
    color: #888;
}

.smart-banner-rating {
    font-size: 11px;
    color: #FF9500;
}

.smart-banner-btn {
    background: #007AFF;
    color: white;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.smart-banner-btn-text {
    font-size: 13px;
    font-weight: 700;
}

.smart-banner-btn-discount {
    font-size: 10px;
    font-weight: 800;
    color: #ffffff;
    animation: discount-pulse 1.5s ease-in-out infinite;
}

body.has-smart-banner .navbar {
    top: 64px !important;
}

/* Cookie Notice */
.cookie-notice {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    z-index: 10000;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    width: max-content;
    max-width: 92%;
    flex-wrap: nowrap;
}

.cookie-notice.show {
    display: flex;
}

.cookie-notice p {
    margin: 0;
    font-size: 13px;
}

.cookie-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    flex-shrink: 0;
}

@media (min-width: 769px) {
    .smart-banner {
        display: none !important;
    }
    body.has-smart-banner .navbar {
        top: 0 !important;
    }
}

/* ============================================
   Navbar
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    transition: var(--transition);
}

@media (min-width: 769px) {
    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 70px;
    }
}

.nav-brand {
    display: none;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
}

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

.nav-links {
    display: none;
    align-items: center;
    gap: 32px;
    margin-top: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.nav-links a.btn-nav i {
    color: white !important;
}

.nav-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px var(--shadow) !important;
    transition: var(--transition);
}

.btn-nav i {
    color: white !important;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--shadow);
}

.mobile-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 20px;
    color: var(--text-dark);
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 10px 40px var(--shadow-dark);
    z-index: 999;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.btn-mobile {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white !important;
    padding: 14px 24px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    background: url('hero-bg.png') center center / cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(232, 245, 233, 0.92),
        rgba(227, 242, 253, 0.88),
        rgba(224, 247, 250, 0.85));
    z-index: 0;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

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

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(30, 202, 229, 0.3);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(24, 139, 157, 0.2);
    bottom: -50px;
    left: -80px;
    animation: float 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(30, 202, 229, 0.2);
    top: 40%;
    left: 20%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

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

.hero-text {
    max-width: 580px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 202, 229, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.badge i {
    color: var(--rating-2);
}

/* Badge Lifetime - Hero */
.badge-lifetime {
    display: none;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
    margin-top: 40px;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 6px 30px rgba(16, 185, 129, 0.6); }
}

/* Hero Price Card */
.hero-price-card {
    background: #daeeff;
    border-radius: 20px;
    padding: 24px 32px;
    margin-bottom: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 32px;
    border: 2px solid rgba(30, 202, 229, 0.2);
    flex-wrap: wrap;
    justify-content: center;
}

.hero-price-card .price-promo-badge {
    flex-basis: 100%;
    justify-content: center;
}

/* Promo badge */
.price-promo-badge {
    background: linear-gradient(135deg, #009688, #00BCD4);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.35);
    animation: promo-pulse 2s ease-in-out infinite;
}

.promo-fire {
    font-size: 15px;
}

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

/* Discount badge */
.price-discount-badge {
    background: linear-gradient(135deg, #009688, #4CAF50);
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    padding: 8px 20px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 8px;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgb(0 150 136 / 68%);
    animation: discount-pulse 1.5s ease-in-out infinite;
}

.download-discount-badge {
     background: linear-gradient(135deg, #009688, #4CAF50);
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    padding: 8px 20px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 8px;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgb(0 150 136 / 68%);
    animation: discount-pulse 1.5s ease-in-out infinite;
}

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

/* Old price strikethrough */
.price-old {
    font-size: 22px;
    font-weight: 700;
    color: #b0b0b0;
    text-decoration: line-through;
    text-decoration-color: #e74c3c;
    text-decoration-thickness: 2.5px;
    margin-right: 6px;
    position: relative;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

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

.price-period {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
    margin-left: 8px;
}

.price-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    flex-basis: 100%;
    align-items: center;
}

.benefits-icon {
    width: 110px;
    height: 110px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 4px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-medium);
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn-glow {
    background: linear-gradient(135deg, #000000, #333333) !important;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 8px 40px rgba(30, 202, 229, 0.5), 0 0 60px rgba(30, 202, 229, 0.3); }
}

.btn-google {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
}

/* Offer dates note */
.offer-dates-note {
    margin-bottom: 24px;
    text-align: left;
}

.offer-dates-note p {
    font-size: 13px;
    color: var(--text-medium);
    margin: 4px 0;
}

.offer-dates-note p i {
    margin-right: 2px;
}

.offer-dates-note .offer-urgency {
    font-size: 15px;
    font-weight: 800;
    color: #e74c3c;
    margin-top: 6px;
    letter-spacing: 0.3px;
    display: none;
}

.download-offer-dates {
    margin: 16px 0;
    text-align: center;
}

.download-offer-dates p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 4px 0;
}

.download-offer-dates .offer-urgency {
    font-size: 16px;
    font-weight: 800;
    color: #f7c948;
    margin-top: 6px;
    letter-spacing: 0.3px;
}

/* Hero Trust Badges */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-medium);
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.trust-item i {
    color: #fbbf24;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 30px var(--shadow);
    transition: var(--transition);
}

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

.btn-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.btn-price-tag {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 600;
}

.btn-price-tag s {
    opacity: 0.7;
    margin-right: 4px;
    text-decoration: line-through;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--text-dark);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(30, 202, 229, 0.3);
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

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

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-darker);
}

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

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

/* Phone Mockup */
.hero-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dots .dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.screen-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.screen-slide.active {
    opacity: 1;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: #1a1a1a;
    border-radius: 45px;
    padding: 12px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.3);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-green-light), var(--bg-blue-light));
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}

.app-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.preview-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 50px 20px 20px;
    text-align: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.preview-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    gap: 30px;
}

.scan-animation {
    width: 150px;
    height: 100px;
    border: 3px dashed var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: scan 2s ease-in-out infinite;
}

@keyframes scan {
    0%, 100% { top: 10%; }
    50% { top: 90%; }
}

.scan-icon {
    font-size: 40px;
    color: var(--primary);
    opacity: 0.5;
}

.preview-result {
    text-align: center;
    background: white;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.result-product {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.result-stars {
    color: var(--rating-5);
    font-size: 18px;
    margin-bottom: 8px;
}

.result-carbs {
    font-size: 14px;
    color: var(--rating-5);
    font-weight: 600;
}

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

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Video en el teléfono */
.phone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 35px;
}

/* Botón Watch Video */
.watch-video-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 30px var(--shadow);
}

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

.watch-video-btn i {
    font-size: 14px;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.video-modal.show {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.video-modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10002;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-modal-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

#modalVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 120px;
}

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: 100px 0;
    background: white;
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(30, 202, 229, 0.1), rgba(24, 139, 157, 0.1));
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.text-green {
    color: #4CAF50;
}

.text-blue {
    color: #1ecae5;
}

.text-yellow {
    color: #FFC107;
}

.highlight-keto {
    display: block;
    font-size: 38px;
    margin-top: 8px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.12), rgba(76, 175, 80, 0.04));
    padding: 8px 24px;
    border-radius: 14px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 .subtitle-line {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 8px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

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

.feature-card {
    background: #e3f2fd;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--shadow-dark);
    border-color: rgba(30, 202, 229, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    color: white;
    box-shadow: 0 10px 30px var(--shadow);
}

.feature-icon.icon-green {
    background: linear-gradient(135deg, var(--rating-5), var(--rating-4));
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.feature-icon.icon-yellow {
    background: linear-gradient(135deg, var(--rating-3), #FFE082);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.feature-icon.icon-purple {
    background: linear-gradient(135deg, #7C4DFF, #B388FF);
    box-shadow: 0 10px 30px rgba(124, 77, 255, 0.3);
}

.feature-icon.icon-orange {
    background: linear-gradient(135deg, var(--rating-2), #FFCC80);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3);
}

.feature-icon.icon-red {
    background: linear-gradient(135deg, var(--rating-1), #EF9A9A);
    box-shadow: 0 10px 30px rgba(244, 67, 54, 0.3);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

/* ============================================
   Keto Foods Section
   ============================================ */
.keto-foods {
    padding: 80px 0;
    background: url('ea15fb4d-e68d-4105-aaf7-fb800cf7a836.png') center center / cover no-repeat;
    position: relative;
}

.keto-foods::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.93);
    z-index: 0;
}

.keto-foods .container {
    position: relative;
    z-index: 1;
}

.foods-carousel {
   display: flex;
    justify-content: center;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0 30px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 1000px) {
    .foods-carousel {
        justify-content: flex-start;
        margin: 0 -24px;
        padding-left: 24px;
        padding-right: 24px;
    }
}

.foods-carousel::-webkit-scrollbar {
    display: none;
}

.food-item {
    flex: 0 0 auto;
    text-align: center;
}

.food-item img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-light);
    transition: var(--transition);
}

.food-item:hover img {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 10px 30px var(--shadow);
}

.food-item span {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .food-item img {
        width: 90px;
        height: 90px;
    }

    .food-item span {
        font-size: 12px;
    }

    .foods-carousel {
        gap: 16px;
    }
}

/* It's Keto Video Block */
.its-keto-block {
    margin-top: 60px;
    text-align: center;
}

.its-keto-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    display: none;
}

.its-keto-title .keto-word {
    color: var(--rating-5);
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.its-keto-title .keto-icons {
    font-size: 36px;
}

.its-keto-video-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    aspect-ratio: 16/9;
    background: #000;
}

.its-keto-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.its-keto-video-container:hover .video-overlay:not(.hidden) {
    background: rgba(0, 0, 0, 0.3);
}

.play-button-animated {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 40px rgba(30, 202, 229, 0.4);
    animation: pulse-play 2s ease-in-out infinite;
    transition: var(--transition);
}

.play-button-animated i {
    margin-left: 5px;
}

.its-keto-video-container:hover .play-button-animated {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(30, 202, 229, 0.5);
}

@keyframes pulse-play {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(30, 202, 229, 0.4);
    }
    50% {
        box-shadow: 0 10px 60px rgba(30, 202, 229, 0.6), 0 0 0 15px rgba(30, 202, 229, 0.1);
    }
}

@media (max-width: 768px) {
    .its-keto-title {
        font-size: 24px;
    }

    .its-keto-title .keto-icons {
        font-size: 28px;
    }

    .play-button-animated {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
}

/* ============================================
   App Screenshots Section
   ============================================ */
.app-screenshots {
    padding: 80px 0;
    background: linear-gradient(180deg, white, var(--bg-light));
}

.screenshots-carousel {
    display: flex;
    justify-content: flex-start;
    gap: 24px;
    padding: 20px 24px 30px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    overflow-y: hidden;
}

.screenshots-carousel::-webkit-scrollbar {
    display: none;
}

.screenshot-phone {
    flex: 0 0 auto;
}

.phone-frame-small {
    width: 290px;
    height: 590px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.phone-frame-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 30px;
}

@media (max-width: 768px) {
    .phone-frame-small {
        width: 220px;
        height: 460px;
        border-radius: 32px;
        padding: 8px;
    }

    .phone-frame-small img {
        border-radius: 24px;
    }

    .screenshots-carousel {
        gap: 16px;
    }
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light), white);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 280px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px var(--shadow);
}

.step-content {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px var(--shadow-dark);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(30, 202, 229, 0.1), rgba(24, 139, 157, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--primary);
}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

.step-connector {
    display: flex;
    align-items: center;
    gap: 0;
}

.connector-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
}

.connector-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
}

/* ============================================
   Rating System Section - Timeline Style
   ============================================ */
.rating-system {
    padding: 100px 0;
    background: white;
}

/* Timeline Container */
.rating-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 60px;
}

/* Vertical Line */
.rating-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg,
        var(--rating-5) 0%,
        var(--rating-4) 25%,
        var(--rating-3) 50%,
        var(--rating-2) 75%,
        var(--rating-1) 100%);
    border-radius: 4px;
}

/* Timeline Item */
.timeline-item {
    position: relative;
    margin-bottom: 24px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Timeline Dot */
.timeline-dot {
    position: absolute;
    left: -48px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 4px solid;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.rating-5 .timeline-dot { border-color: var(--rating-5); }
.rating-4 .timeline-dot { border-color: var(--rating-4); }
.rating-3 .timeline-dot { border-color: var(--rating-3); }
.rating-2 .timeline-dot { border-color: var(--rating-2); }
.rating-1 .timeline-dot { border-color: var(--rating-1); }

/* Timeline Card */
.timeline-card {
    background: #e3f2fd;
    padding: 24px 28px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.timeline-card:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 40px var(--shadow-dark);
}

.rating-5 .timeline-card:hover { border-color: var(--rating-5); }
.rating-4 .timeline-card:hover { border-color: var(--rating-4); }
.rating-3 .timeline-card:hover { border-color: var(--rating-3); }
.rating-2 .timeline-card:hover { border-color: var(--rating-2); }
.rating-1 .timeline-card:hover { border-color: var(--rating-1); }

/* Timeline Icon */
.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.rating-5 .timeline-icon {
    background: linear-gradient(135deg, var(--rating-5), #66BB6A);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.rating-4 .timeline-icon {
    background: linear-gradient(135deg, var(--rating-4), #AED581);
    box-shadow: 0 8px 20px rgba(139, 195, 74, 0.3);
}

.rating-3 .timeline-icon {
    background: linear-gradient(135deg, var(--rating-3), #FFD54F);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.rating-2 .timeline-icon {
    background: linear-gradient(135deg, var(--rating-2), #FFB74D);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}

.rating-1 .timeline-icon {
    background: linear-gradient(135deg, var(--rating-1), #E57373);
    box-shadow: 0 8px 20px rgba(244, 67, 54, 0.3);
}

/* Timeline Content */
.timeline-content {
    flex: 1;
}

.timeline-content .rating-stars {
    font-size: 18px;
    margin-bottom: 6px;
}

.rating-5 .rating-stars { color: var(--rating-5); }
.rating-4 .rating-stars { color: var(--rating-4); }
.rating-3 .rating-stars { color: var(--rating-3); }
.rating-2 .rating-stars { color: var(--rating-2); }
.rating-1 .rating-stars { color: var(--rating-1); }

.rating-5 .rating-stars .far { color: #C8E6C9; }
.rating-4 .rating-stars .far { color: #DCEDC8; }
.rating-3 .rating-stars .far { color: #FFF9C4; }
.rating-2 .rating-stars .far { color: #FFE0B2; }
.rating-1 .rating-stars .far { color: #FFCDD2; }

.timeline-content .rating-label {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.rating-5 .rating-label { color: var(--rating-5); }
.rating-4 .rating-label { color: var(--rating-4); }
.rating-3 .rating-label { color: #E6A700; }
.rating-2 .rating-label { color: var(--rating-2); }
.rating-1 .rating-label { color: var(--rating-1); }

.timeline-content .rating-range {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 6px;
    padding: 4px 12px;
    background: white;
    border-radius: 20px;
    display: inline-block;
}

.timeline-content .rating-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Timeline Responsive */
@media (max-width: 768px) {
    .rating-timeline {
        padding-left: 50px;
    }

    .rating-timeline::before {
        left: 18px;
        width: 3px;
    }

    .timeline-dot {
        left: -40px;
        width: 16px;
        height: 16px;
        border-width: 3px;
    }

    .timeline-card {
        padding: 18px 20px;
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .timeline-content .rating-label {
        font-size: 16px;
    }

    .timeline-content .rating-stars {
        font-size: 16px;
    }
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-green-light), var(--bg-blue-light));
}

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

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px var(--shadow-dark);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 30px;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.testimonial-content p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

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

.author-name {
    font-weight: 700;
    color: var(--text-dark);
}

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

/* ============================================
   Download Section
   ============================================ */
.download {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-darker), var(--primary-dark));
    overflow: hidden;
}

.download-background {
    position: absolute;
    inset: 0;
}

.orb-download-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    top: -150px;
    right: -100px;
}

.orb-download-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    bottom: -100px;
    left: -50px;
}

.download-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.download h2 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.download p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    color: var(--text-dark);
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.store-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.store-button i {
    font-size: 32px;
}

.store-button.apple i {
    color: #000;
}

.store-button.google i {
    color: #3DDC84;
}

.store-text {
    text-align: left;
}

.store-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
}

.store-name {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

.store-button.coming-soon {
    opacity: 0.6;
    cursor: default;
    pointer-events: none;
    position: relative;
}

.store-button.coming-soon i {
    color: #9e9e9e;
}

.store-button.coming-soon .store-label {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 12px;
}

/* Download promo badge */
.download-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 16px;
    animation: promo-pulse 2s ease-in-out infinite;
}

.download-price-old {
    text-decoration: line-through;
    text-decoration-color: #ff6b6b;
    text-decoration-thickness: 2.5px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
}

.download-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.download-feature i {
    color: var(--rating-5);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

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

.footer-logo .logo-text {
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-store-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.store-button-small {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.store-button-small:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.store-button-small i {
    font-size: 18px;
}

.store-button-small.apple i {
    color: white;
}

.store-button-small.google i {
    color: #3DDC84;
}

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

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: var(--transition);
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.lang-selector-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(30, 202, 229, 0.3);
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    color: white;
    font-size: 15px;
    font-weight: 500;
}

.lang-selector-btn:hover {
    background: rgba(30, 202, 229, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.lang-selector-btn i {
    color: var(--primary);
}

.lang-selector-btn .fa-chevron-down {
    font-size: 12px;
    opacity: 0.7;
}

/* Promo Other App Section */
.promo-other-app-section {
    background: linear-gradient(180deg, #1a1a2e 0%, var(--text-dark) 100%);
    padding: 80px 0;
}

.promo-other-app-title {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.promo-other-app-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(30, 202, 229, 0.2), rgba(24, 139, 157, 0.2));
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.promo-other-app-title h2 {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.promo-other-app-title p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
}

.promo-other-app {
    max-width: 100%;
    margin: 0 auto;
}

.promo-other-app-link {
    display: block;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(30, 202, 229, 0.15) 0%, rgba(102, 126, 234, 0.15) 100%);
    border: 3px solid rgba(30, 202, 229, 0.4);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
}

.promo-other-app-link:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(30, 202, 229, 0.3);
}

.promo-other-app-header {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.promo-other-app-header img {
    width: 100%;
    height: auto;
    display: block;
}

.promo-other-app-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 40px;
    background: rgba(0, 0, 0, 0.3);
}

.promo-other-app-text {
    flex: 1;
}

.promo-other-app-question {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-bottom: 10px;
}

.promo-other-app-name {
    display: block;
    color: white;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.promo-other-app-desc {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}

.promo-other-app-cta {
    background: var(--primary);
    color: white;
    font-size: 18px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.promo-other-app-link:hover .promo-other-app-cta {
    background: #15b3cc;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .promo-other-app-section {
        padding: 50px 0;
    }

    .promo-other-app-title h2 {
        font-size: 28px;
    }

    .promo-other-app-title p {
        font-size: 16px;
    }

    .promo-other-app-content {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .promo-other-app-question {
        font-size: 14px;
    }

    .promo-other-app-name {
        font-size: 22px;
    }

    .promo-other-app-desc {
        font-size: 14px;
    }

    .promo-other-app-cta {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 16px;
    }
}

/* Language Grid in Modal */
.language-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 10px 0;
}

.language-grid .lang-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    border: 2px solid transparent;
    padding: 16px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.language-grid .lang-btn:hover {
    background: #e8f7fa;
    border-color: rgba(30, 202, 229, 0.3);
    transform: translateY(-2px);
}

.language-grid .lang-btn.active {
    background: rgba(30, 202, 229, 0.15);
    border-color: var(--primary);
}

.language-grid .lang-flag {
    font-size: 28px;
    background: none;
    padding: 0;
}

.language-grid .lang-name {
    color: #333;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.language-grid .lang-btn.active .lang-name {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .language-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        padding: 0;
    }

    .language-grid .lang-btn {
        padding: 8px 4px;
        border-radius: 8px;
    }

    .language-grid .lang-flag {
        font-size: 18px;
    }

    .language-grid .lang-name {
        font-size: 10px;
    }

    #languageModal .modal-content {
        max-width: 280px;
        padding: 15px;
    }

    #languageModal .modal-header {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    #languageModal .modal-header h2 {
        font-size: 16px;
    }

    #languageModal .modal-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    #languageModal .modal-body {
        padding: 0;
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

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

    .hero h1 {
        font-size: 42px;
    }

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

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

    .hero-price-card {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 120px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .badge-lifetime {
        font-size: 14px;
        padding: 10px 18px;
        display: none;
    }

    .hero-price-card {
        padding: 20px 24px;
        width: 100%;
    }

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

    .price-benefits {
        align-items: center;
    }

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

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

    .hero-trust {
        gap: 12px;
    }

    .trust-item {
        font-size: 12px;
        padding: 6px 12px;
    }

    .phone-frame {
        width: 240px;
        height: 500px;
    }

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

    .steps-container {
        flex-direction: column;
    }

    .step-connector {
        transform: rotate(90deg);
        margin: 10px 0;
    }


    .download h2 {
        font-size: 32px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-store-buttons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .section-header h2 {
        font-size: 30px;
    }
}


    .hero h1 {
        font-size: 32px;
        margin-top: 40px;
    }

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

    .stat-divider {
        display: none;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .download-features {
        flex-direction: column;
        gap: 16px;
    }


/* ============================================
   Animations
   ============================================ */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease-out;
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* Delays */
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }

/* ============================================
   Modals
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: white;
    border-radius: 24px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: linear-gradient(180deg, #FAFBFC, #FFFFFF);
}

.modal-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.modal-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.privacy-icon {
    background: rgba(156, 39, 176, 0.15);
    color: #9C27B0;
}

.terms-icon {
    background: rgba(33, 150, 243, 0.15);
    color: #2196F3;
}

.faq-icon {
    background: rgba(0, 188, 212, 0.15);
    color: #00BCD4;
}

.contact-icon {
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
}

.modal-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.modal-header-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin: 2px 0 0 0;
}

.modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(244, 67, 54, 0.1);
    color: var(--rating-1);
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: calc(85vh - 90px);
}

.modal-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #9C27B0;
    text-align: center;
    margin-bottom: 4px;
}

.modal-date {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 20px;
}

/* Summary Card */
.summary-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.summary-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

.summary-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.point-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.point-icon.red { background: rgba(239, 83, 80, 0.15); color: #EF5350; }
.point-icon.purple { background: rgba(156, 39, 176, 0.15); color: #9C27B0; }
.point-icon.blue { background: rgba(33, 150, 243, 0.15); color: #2196F3; }
.point-icon.orange { background: rgba(255, 152, 0, 0.15); color: #FF9800; }

.summary-point span:last-child {
    font-size: 14px;
    color: var(--text-medium);
}

.summary-footer {
    font-size: 14px;
    font-weight: 600;
    color: var(--rating-5);
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Modal Sections */
.modal-section {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
}

.modal-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-section h4 i {
    font-size: 18px;
}

.modal-section h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 12px 0 6px;
}

.modal-section p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 8px;
}

.modal-section ul, .modal-section ol {
    margin: 8px 0;
    padding-left: 20px;
}

.modal-section li {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 6px;
    line-height: 1.5;
}

.modal-section a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.modal-section a:hover {
    text-decoration: underline;
}

/* FAQ Tabs */
.faq-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border: none;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.faq-tab:hover {
    background: rgba(0, 188, 212, 0.1);
    color: #00BCD4;
}

.faq-tab.active {
    background: #00BCD4;
    color: white;
}

.faq-content {
    display: none;
}

.faq-content.active {
    display: block;
}

.faq-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.faq-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 16px 0 8px;
}

.faq-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

.faq-content ul, .faq-content ol {
    margin: 8px 0 16px;
    padding-left: 20px;
}

.faq-content li {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 6px;
    line-height: 1.5;
}

.formula {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    margin: 12px 0;
}

.note {
    background: rgba(255, 152, 0, 0.1);
    padding: 12px 16px;
    border-radius: 10px;
    border-left: 4px solid var(--rating-2);
    margin-top: 16px;
}

/* Rating Explanation */
.rating-explanation {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--bg-light);
    border-radius: 10px;
}

.rating-row .stars {
    font-size: 14px;
    min-width: 90px;
}

.stars-5 .stars { color: var(--rating-5); }
.stars-4 .stars i.fas { color: var(--rating-4); }
.stars-3 .stars i.fas { color: var(--rating-3); }
.stars-2 .stars i.fas { color: var(--rating-2); }
.stars-1 .stars i.fas { color: var(--rating-1); }

.rating-row .rating-info {
    font-size: 13px;
    color: var(--text-medium);
}

/* Food Lists */
.food-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

.food-list span {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
}

.food-list.good span {
    background: rgba(76, 175, 80, 0.1);
    color: var(--rating-5);
}

.food-list.bad span {
    background: rgba(244, 67, 54, 0.1);
    color: var(--rating-1);
}

/* Contact Form */
.contact-types {
    margin-bottom: 24px;
}

.contact-types h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.type-cards {
    display: flex;
    gap: 12px;
}

.type-card {
    flex: 1;
    padding: 16px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 14px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.type-card:hover {
    border-color: rgba(0, 0, 0, 0.1);
}

.type-card.selected {
    border-color: var(--primary);
    background: rgba(30, 202, 229, 0.08);
}

.type-card i {
    font-size: 28px;
    margin-bottom: 8px;
}

.type-card:nth-child(1) i { color: #EF5350; }
.type-card:nth-child(2) i { color: #FF9800; }
.type-card:nth-child(3) i { color: #4CAF50; }

.type-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.type-desc {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
}

.contact-form .form-group {
    margin-bottom: 16px;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--shadow);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-submit {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal {
        padding: 10px;
    }

    .modal-content {
        max-height: 90vh;
        border-radius: 20px;
    }

    .modal-header {
        padding: 16px 20px;
    }

    .modal-body {
        padding: 20px;
        max-height: calc(90vh - 80px);
    }

    .type-cards {
        flex-direction: column;
    }

    .faq-tabs {
        flex-wrap: nowrap;
    }

    .rating-row {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .rating-row .stars {
        min-width: auto;
    }
}

/* ============================================
   Promo Launch Modal
   ============================================ */
.promo-modal .promo-modal-content {
    max-width: 420px;
    background: linear-gradient(180deg, #ffffff 0%, #f0fafa 100%);
    border-radius: 28px;
    overflow: visible;
    position: relative;
}

.promo-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    border: none;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.promo-close:hover {
    background: rgba(244, 67, 54, 0.15);
    color: #F44336;
}

/* Confetti Animation */
.promo-confetti {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    border-radius: 28px;
}

.promo-confetti span {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    animation: confettiFall 3s ease-in-out infinite;
}

.promo-confetti span:nth-child(1) { left: 10%; background: #FF6B6B; animation-delay: 0s; }
.promo-confetti span:nth-child(2) { left: 20%; background: #4ECDC4; animation-delay: 0.2s; }
.promo-confetti span:nth-child(3) { left: 30%; background: #FFE66D; animation-delay: 0.4s; }
.promo-confetti span:nth-child(4) { left: 40%; background: #95E1D3; animation-delay: 0.1s; }
.promo-confetti span:nth-child(5) { left: 50%; background: #F38181; animation-delay: 0.3s; }
.promo-confetti span:nth-child(6) { left: 60%; background: #AA96DA; animation-delay: 0.5s; }
.promo-confetti span:nth-child(7) { left: 70%; background: #1ecae5; animation-delay: 0.15s; }
.promo-confetti span:nth-child(8) { left: 80%; background: #4CAF50; animation-delay: 0.35s; }
.promo-confetti span:nth-child(9) { left: 85%; background: #FF9800; animation-delay: 0.25s; }
.promo-confetti span:nth-child(10) { left: 95%; background: #E91E63; animation-delay: 0.45s; }

@keyframes confettiFall {
    0% { top: -10%; transform: rotate(0deg) scale(1); opacity: 1; }
    100% { top: 100%; transform: rotate(720deg) scale(0.5); opacity: 0; }
}

.promo-body {
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Badge */
.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.promo-badge i {
    font-size: 14px;
}

/* Icon */
.promo-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.promo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1ecae5, #188b9d);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 10px 30px rgba(30, 202, 229, 0.4);
    animation: float 3s ease-in-out infinite;
}

.promo-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.promo-sparkles i {
    position: absolute;
    color: #FFD700;
    animation: sparkle 1.5s ease-in-out infinite;
}

.promo-sparkles i:nth-child(1) { top: -5px; right: -5px; font-size: 14px; animation-delay: 0s; }
.promo-sparkles i:nth-child(2) { top: 10px; left: -10px; font-size: 10px; animation-delay: 0.3s; }
.promo-sparkles i:nth-child(3) { bottom: 5px; right: -8px; font-size: 12px; animation-delay: 0.6s; }

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Title */
.promo-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 8px;
    line-height: 1.2;
}

.promo-subtitle {
    font-size: 15px;
    color: var(--text-light);
    margin: 0 0 24px;
}

/* Price Box */
.promo-price-box {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    border: 2px solid rgba(30, 202, 229, 0.2);
}

.promo-discount-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.promo-prices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 6px;
}

.promo-old-price {
    font-size: 20px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.promo-new-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.promo-price-note {
    font-size: 13px;
    color: var(--text-muted);
}

/* Features */
.promo-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.promo-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-medium);
}

.promo-feature i {
    color: #4CAF50;
    font-size: 16px;
}

/* Urgency */
.promo-urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 152, 0, 0.15);
    color: #E65100;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.promo-urgency i {
    animation: pulse 1s ease-in-out infinite;
}

/* Subscription Warning */
.promo-subscription-warning {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(255, 142, 83, 0.15) 100%);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #c62828;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.5;
}

.promo-subscription-warning i {
    color: #e53935;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Hero Subscription Warning */
.hero-subscription-warning {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(255, 142, 83, 0.2) 100%);
    border: 1px solid rgba(255, 107, 107, 0.4);
    color: #c62828;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 16px;
    text-align: left;
    line-height: 1.5;
}

.hero-subscription-warning span:first-child {
    font-size: 20px;
    flex-shrink: 0;
}

/* Buttons */
.promo-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.promo-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.promo-btn-apple {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.promo-btn-apple:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.promo-btn-google {
    background: linear-gradient(135deg, #1ecae5, #188b9d);
    color: white;
    box-shadow: 0 6px 20px rgba(30, 202, 229, 0.35);
}

.promo-btn-google:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 202, 229, 0.45);
}

.promo-btn i {
    font-size: 18px;
}

/* Skip */
.promo-skip {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 13px;
    cursor: pointer;
    padding: 8px 16px;
    transition: var(--transition);
}

.promo-skip:hover {
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 480px) {
    .promo-modal .promo-modal-content {
        max-width: 95%;
        max-height: 90vh;
    }

    .promo-body {
        padding: 30px 16px 20px;
    }

    .promo-badge {
        padding: 6px 12px;
        font-size: 11px;
        margin-bottom: 12px;
        margin-left: -20px;
        margin-right: 10px;
    }

    .promo-icon-wrapper {
        margin-bottom: 12px;
    }

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

    .promo-title {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .promo-subtitle {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .promo-price-box {
        padding: 14px;
        margin-bottom: 14px;
        border-radius: 16px;
    }

    .promo-discount-badge {
        padding: 4px 10px;
        font-size: 11px;
        top: -10px;
    }

    .promo-old-price {
        font-size: 16px;
    }

    .promo-new-price {
        font-size: 32px;
    }

    .promo-price-note {
        font-size: 11px;
    }

    .promo-features {
        gap: 6px;
        margin-bottom: 14px;
    }

    .promo-feature {
        font-size: 12px;
        gap: 6px;
    }

    .promo-feature i {
        font-size: 14px;
    }

    .promo-urgency {
        padding: 8px 14px;
        font-size: 11px;
        margin-bottom: 16px;
    }

    .promo-subscription-warning {
        padding: 12px 14px;
        font-size: 11px;
        margin-bottom: 14px;
        gap: 8px;
    }

    .promo-subscription-warning i {
        font-size: 16px;
    }

    .hero-subscription-warning {
        padding: 12px 14px;
        font-size: 12px;
        gap: 8px;
    }

    .hero-subscription-warning span:first-child {
        font-size: 16px;
    }

    .promo-buttons {
        flex-direction: row;
        gap: 8px;
        margin-bottom: 10px;
    }

    .promo-btn {
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 12px;
    }

    .promo-btn i {
        font-size: 16px;
    }

    .promo-skip {
        font-size: 14px;
        padding: 6px 12px;
    }

    .promo-confetti span {
        width: 8px;
        height: 8px;
    }
}

/* Extra small phones */
@media (max-width: 380px) {
    .promo-body {
        padding: 25px 14px 16px;
    }

    .promo-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .promo-title {
        font-size: 18px;
    }

    .promo-new-price {
        font-size: 28px;
    }

    .promo-buttons {
        flex-direction: column;
        gap: 6px;
    }
}

/* ============================================
   Is It Keto Section
   ============================================ */
.is-it-keto-section {
    padding: 80px 0 80px;
    background: #d6eaf8;
    position: relative;
}

.is-it-keto-wave {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.is-it-keto-wave svg {
    width: 100%;
    height: 80px;
}

.keto-question-card,
.features-banner-card {
    background: #f0f7f0;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 20px;
}

.keto-question-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.features-banner-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.features-banner-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

.avocado-emoji {
    font-size: 2.5rem;
}

.keto-text-green {
    color: #4CAF50;
}

.keto-question-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

.open-food-facts-card {
    background: #e3f2fd;
    border-radius: 20px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.off-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.off-icon {
    width: 56px;
    height: 56px;
    background: #2196F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.off-text {
    display: flex;
    flex-direction: column;
}

.off-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.off-label {
    font-size: 1rem;
    color: var(--text-light);
}

.off-badge {
    background: #d4e9f7;
    color: #1976D2;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.off-badge:hover {
    background: #1976D2;
    color: white;
}

@media (max-width: 768px) {
    .keto-question-card,
    .features-banner-card {
        padding: 35px 25px;
    }

    .keto-question-title {
        font-size: 2rem;
    }

    .features-banner-title {
        font-size: 1.6rem;
    }

    .features-banner-subtitle {
        font-size: 1rem;
    }

    .avocado-emoji {
        font-size: 1.8rem;
    }

    .keto-question-subtitle {
        font-size: 1.1rem;
    }

    .open-food-facts-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .off-left {
        flex-direction: column;
    }

    .off-number {
        font-size: 1.8rem;
    }
}