/* =========================================
   PlayEnglish - Premium Redesign (v3.0)
   Glassmorphism + Modern EdTech Design
   Mobile-First Responsive
   ========================================= */

/* ===== 1. CSS VARIABLES ===== */
:root {
    /* Brand Colors */
    --primary: #ef5e72;
    --primary-dark: #d6455b;
    --primary-light: #fff0f3;
    --primary-glow: rgba(239, 94, 114, 0.4);

    --secondary: #4ECDC4;
    --secondary-dark: #3ebfcc;
    --secondary-light: #e0fbf9;

    --accent: #FFE66D;
    --accent-soft: #fff9db;

    --dark: #2d3436;
    --gray: #636e72;
    --gray-light: #dfe6e9;
    --bg-page: #fdfbfa;
    --white: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ef5e72 0%, #f093a0 50%, #4ECDC4 100%);
    --gradient-hero: linear-gradient(160deg, #fff5f6 0%, #fffdfc 30%, #e0fbf9 100%);
    --gradient-dark: linear-gradient(135deg, #2d3436 0%, #3d4f51 100%);
    --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 100%);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-bg-strong: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --glass-blur: blur(20px);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);

    /* Shadows */
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08);
    --shadow-primary: 0 10px 30px rgba(239, 94, 114, 0.25);
    --shadow-glow: 0 0 40px rgba(239, 94, 114, 0.3);

    /* Typography */
    --f-head: 'Fredoka', sans-serif;
    --f-body: 'Heebo', sans-serif;

    /* Animation */
    --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing */
    --section-pad: 100px;
    --section-pad-mobile: 60px;
}

/* ===== 2. RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--f-body);
    color: var(--dark);
    background: var(--bg-page);
    direction: rtl;
    overflow-x: hidden;
    font-size: 17px;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-head);
    color: var(--dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease-smooth);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ===== 3. ANIMATED BACKGROUND ===== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.bg-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-light);
    top: -10%;
    right: -10%;
    animation-duration: 25s;
}

.bg-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-light);
    bottom: 10%;
    left: -5%;
    animation-duration: 20s;
    animation-delay: -5s;
}

.bg-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-soft);
    top: 40%;
    left: 30%;
    animation-duration: 22s;
    animation-delay: -10s;
}

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

/* ===== 4. SCROLL ANIMATIONS ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }

/* ===== 5. GLASSMORPHISM UTILITY ===== */
.glass-card {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
}

/* ===== 6. NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 20px;
    transition: transform 0.3s var(--ease-smooth), background 0.3s, box-shadow 0.3s;
}

.navbar-hidden {
    transform: translateY(-100%);
}

.navbar-scrolled {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.4rem;
    font-family: var(--f-head);
}

.logo img {
    height: 40px;
    transition: transform 0.3s var(--bounce);
}

.logo:hover img {
    transform: rotate(-10deg) scale(1.1);
}

.logo span {
    color: var(--primary);
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark);
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s var(--bounce);
    border-radius: 2px;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--primary);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.3s var(--bounce), box-shadow 0.3s !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.nav-cta::after {
    display: none !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* ===== 7. HERO SECTION ===== */
.hero {
    padding: 160px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-hero);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(239, 94, 114, 0.2);
    margin-bottom: 24px;
    animation: fadeInDown 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 35px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

/* Trust Badges */
.hero-trust {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gray);
}

.trust-item i {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1;
    background: linear-gradient(145deg, rgba(255,240,243,0.8) 0%, rgba(224,251,249,0.6) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 60%);
    animation: shimmer 4s ease-in-out infinite;
}

.placeholder-content {
    text-align: center;
    padding: 30px;
    z-index: 1;
}

.placeholder-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatBounce 3s ease-in-out infinite;
}

.placeholder-icon i {
    font-size: 45px;
    color: white;
}

.placeholder-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 8px;
}

.placeholder-dims {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-light);
    font-weight: 700;
}

/* Floating decorative elements */
.float-element {
    position: absolute;
    font-size: 20px;
    animation: floatBounce 3s ease-in-out infinite;
    z-index: 2;
}

.float-star {
    top: 15%;
    right: 10%;
    color: var(--accent);
    animation-delay: -1s;
}

.float-heart {
    bottom: 20%;
    left: 10%;
    color: var(--primary);
    animation-delay: -2s;
}

.float-book {
    top: 60%;
    right: 5%;
    color: var(--secondary);
    animation-delay: -0.5s;
}

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

@keyframes shimmer {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(5%, 5%) rotate(2deg); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== 8. BUTTONS ===== */
.btn {
    padding: 15px 38px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-family: var(--f-body);
    transition: all 0.4s var(--bounce);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(239, 94, 114, 0.35);
}

.btn-ghost {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gray-light);
    color: var(--dark);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

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

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

.btn-full {
    width: 100%;
}

.btn-glow {
    animation: btnGlow 2s ease-in-out infinite;
}

/* Pulsing CTA */
.btn-pulse {
    animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(239, 94, 114, 0.25);
    }
    50% {
        box-shadow: 0 10px 30px rgba(239, 94, 114, 0.25),
                    0 0 0 10px rgba(239, 94, 114, 0.1),
                    0 0 0 20px rgba(239, 94, 114, 0.05);
    }
}

@keyframes btnGlow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(239, 94, 114, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(239, 94, 114, 0.5),
                    0 0 60px rgba(239, 94, 114, 0.2);
    }
}

/* Ripple Effect */
.btn-ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to { transform: scale(4); opacity: 0; }
}

/* ===== 9. SECTION UTILITIES ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 550px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

/* ===== 10. SOCIAL PROOF BAR ===== */
.social-proof {
    padding: 50px 0;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

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

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

.proof-number {
    font-family: var(--f-head);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    display: inline;
}

.proof-plus {
    font-family: var(--f-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.proof-label {
    display: block;
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 500;
    margin-top: 5px;
}

.proof-divider {
    width: 1px;
    height: 50px;
    background: var(--gray-light);
}

/* ===== 11. PROBLEM VS SOLUTION ===== */
.problem-solution {
    padding: var(--section-pad) 0;
}

.pvs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pvs-card {
    padding: 40px;
    border-radius: 24px;
    position: relative;
}

.pvs-problem {
    background: linear-gradient(135deg, #2d3436 0%, #4a5859 100%);
    color: rgba(255, 255, 255, 0.9);
}

.pvs-solution {
    background: linear-gradient(135deg, #e0fbf9 0%, #fff 50%, #fff0f3 100%);
    border: 2px solid rgba(78, 205, 196, 0.3);
}

.pvs-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.pvs-header i {
    font-size: 1.8rem;
}

.pvs-problem .pvs-header i {
    color: rgba(255, 255, 255, 0.5);
}

.pvs-solution .pvs-header i {
    color: var(--secondary);
}

.pvs-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.pvs-problem .pvs-header h3 {
    color: rgba(255, 255, 255, 0.95);
}

.pvs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pvs-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    line-height: 1.5;
}

.pvs-list li i {
    margin-top: 4px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.pvs-problem .pvs-list li i {
    color: rgba(239, 94, 114, 0.7);
}

.pvs-solution .pvs-list li i {
    color: var(--secondary);
}

.method-badge {
    text-align: center;
    margin-top: 40px;
    padding: 15px 30px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    justify-content: center;
}

.method-badge i {
    color: var(--secondary);
}

/* ===== 12. PRODUCT SHOWCASE ===== */
.showcase {
    padding: var(--section-pad) 0;
    background: linear-gradient(180deg, transparent 0%, var(--primary-light) 50%, transparent 100%);
}

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

/* Flip Card */
.flip-card {
    perspective: 1000px;
    height: 350px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s var(--ease-smooth);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.flip-card-front {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    box-shadow: var(--shadow-md);
}

.flip-card-back {
    background: var(--white);
    border: 2px solid var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: rotateY(180deg);
    overflow-y: auto;
}

.sc-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    margin-bottom: 20px;
    transition: transform 0.3s var(--bounce);
}

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

.sc-icon-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, #6eddd5 100%);
}

.sc-icon-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #ffd93d 100%);
}

.sc-icon-green {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}

.flip-card-front h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.flip-card-front p {
    color: var(--gray);
    font-size: 0.95rem;
}

.flip-hint {
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    opacity: 0.7;
}

.flip-card-back h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark);
}

/* Custom Audio Player */
.audio-player-custom {
    width: 100%;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 15px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.audio-cover-placeholder {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-cover-placeholder span {
    font-size: 0.5rem;
    color: rgba(255,255,255,0.8);
    text-align: center;
    padding: 4px;
    line-height: 1.2;
}

.audio-controls {
    flex: 1;
    min-width: 0;
}

.audio-info {
    margin-bottom: 6px;
}

.audio-title {
    display: block;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.audio-artist {
    font-size: 0.7rem;
    color: var(--gray);
}

.audio-progress {
    margin-bottom: 6px;
}

.audio-bar {
    width: 100%;
    height: 4px;
    background: var(--gray-light);
    border-radius: 4px;
    overflow: hidden;
}

.audio-bar-fill {
    width: 35%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.audio-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: var(--gray);
    margin-top: 2px;
}

.audio-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.audio-btn {
    font-size: 0.8rem;
    color: var(--gray);
    transition: color 0.2s;
}

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

.audio-btn-play {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Image Placeholder */
.image-placeholder {
    width: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--gray);
    padding: 15px;
    text-align: center;
    line-height: 1.4;
}

/* iPad Mockup */
.ipad-mockup {
    background: #1a1a2e;
    border-radius: 18px;
    padding: 12px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.ipad-screen {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

/* Vocabulary Preview */
.vocab-preview {
    width: 100%;
    text-align: right;
}

.vocab-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

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

.vocab-en {
    font-weight: 700;
    color: var(--primary);
    direction: ltr;
}

.vocab-he {
    color: var(--gray);
}

/* ===== 13. PRICING ===== */
.pricing {
    padding: var(--section-pad) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: center;
}

.pricing-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.4s var(--bounce), box-shadow 0.4s;
}

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

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

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

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--f-head);
    color: var(--dark);
    line-height: 1;
}

.price-period {
    font-size: 0.95rem;
    color: var(--gray);
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--gray);
}

.pricing-features {
    text-align: right;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

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

.pricing-features li i {
    font-size: 0.85rem;
    flex-shrink: 0;
}

.pricing-features li .fa-check {
    color: var(--secondary);
}

.pricing-features li .fa-xmark {
    color: var(--gray-light);
}

.feature-disabled {
    opacity: 0.4;
}

/* Featured Card (VIP) */
.pricing-featured {
    background: linear-gradient(135deg, rgba(255,240,243,0.95) 0%, rgba(255,255,255,0.95) 50%, rgba(224,251,249,0.95) 100%) !important;
    border: 2px solid var(--primary) !important;
    transform: scale(1.05);
    box-shadow: var(--shadow-glow) !important;
    z-index: 1;
}

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

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: var(--shadow-primary);
}

.pricing-featured .price-amount {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== 14. TESTIMONIALS (WhatsApp Style) ===== */
.testimonials {
    padding: var(--section-pad) 0;
    background: linear-gradient(180deg, transparent 0%, #e8f5e9 50%, transparent 100%);
}

.wa-chat-container {
    max-width: 700px;
    margin: 0 auto;
}

.wa-chat-bg {
    background: #ece5dd;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4cdc4' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.wa-bubble {
    max-width: 85%;
}

.wa-bubble-right {
    align-self: flex-end;
}

.wa-bubble-content {
    background: #dcf8c6;
    padding: 12px 16px;
    border-radius: 12px 0 12px 12px;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.wa-bubble-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #303030;
    margin-bottom: 6px;
}

.wa-bubble-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.wa-sender {
    font-size: 0.75rem;
    font-weight: 700;
    color: #075e54;
}

.wa-time {
    font-size: 0.7rem;
    color: #8a9a8e;
    white-space: nowrap;
}

.wa-time i {
    color: #53bdeb;
    font-size: 0.65rem;
    margin-right: 2px;
}

/* Highlighted bubble */
.wa-bubble-highlight .wa-bubble-content {
    background: linear-gradient(135deg, #dcf8c6 0%, #c9f0b4 100%);
    border: 2px solid #a8e095;
}

.wa-bubble-highlight .wa-bubble-content p {
    font-size: 1.05rem;
    font-weight: 600;
}

/* ===== 15. LOCAL CLASSES & CONTACT ===== */
.local-classes {
    padding: var(--section-pad) 0;
}

.local-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.local-info h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.local-info > p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.local-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.local-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.local-feature i {
    width: 45px;
    height: 45px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.local-feature div {
    display: flex;
    flex-direction: column;
}

.local-feature strong {
    font-size: 0.95rem;
    color: var(--dark);
}

.local-feature span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Contact Card */
.contact-card {
    padding: 40px 30px;
}

.contact-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    text-align: center;
}

.contact-card > p {
    text-align: center;
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    width: 100%;
}

.form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
    font-family: var(--f-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: var(--dark);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    background: white;
    box-shadow: 0 0 0 4px rgba(239, 94, 114, 0.1);
}

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

/* ===== 16. FAQ ===== */
.faq-section {
    padding: var(--section-pad) 0;
}

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

.faq-item {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s var(--ease-smooth);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    text-align: right;
    transition: color 0.3s;
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    color: var(--primary);
    font-size: 1rem;
    transition: transform 0.3s var(--ease-smooth);
    flex-shrink: 0;
    margin-right: 15px;
}

.faq-open .faq-question {
    color: var(--primary);
}

.faq-open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-smooth), padding 0.4s;
}

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

.faq-answer p {
    padding: 0 28px 22px;
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 15px;
}

/* ===== 17. FOOTER ===== */
.footer {
    background: var(--gradient-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
    margin-top: 50px;
}

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

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand .logo span {
    color: white;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.7;
    max-width: 300px;
}

.footer h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact a,
.footer-contact p {
    font-size: 0.9rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact a:hover {
    opacity: 1;
    color: var(--secondary);
}

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

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.5;
}

/* ===== 18. FLOATING WHATSAPP ===== */
.wa-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 5000;
    transition: all 0.4s var(--bounce);
    animation: pulseWA 3s infinite;
}

.wa-float:hover {
    transform: scale(1.12) rotate(8deg);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

@keyframes pulseWA {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== 19. STICKY MOBILE CTA ===== */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4000;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-smooth);
}

/* ===== 20. EXIT INTENT POPUP ===== */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-smooth);
}

.exit-popup-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.exit-popup {
    max-width: 480px;
    width: 100%;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    animation: popupIn 0.5s var(--bounce);
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.exit-popup-close:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.exit-popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    animation: floatBounce 2s ease-in-out infinite;
}

.exit-popup h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.exit-popup-content > p {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.exit-popup-sub {
    display: block;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--gray);
}

@keyframes popupIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ===== 21. RESPONSIVE - MOBILE FIRST ===== */

/* Tablet (768px+) adjustments are the default grid layouts above */

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

    .pricing-grid {
        gap: 20px;
    }

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

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

@media (max-width: 900px) {
    :root {
        --section-pad: 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

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

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-image-placeholder {
        max-width: 350px;
        margin: 0 auto;
    }

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

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

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

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

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

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

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-links {
        align-items: center;
    }

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

@media (max-width: 768px) {
    :root {
        --section-pad: 60px;
    }

    body {
        font-size: 16px;
    }

    /* Navbar Mobile */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--glass-bg-strong);
        backdrop-filter: var(--glass-blur);
        flex-direction: column;
        padding: 25px;
        text-align: center;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 24px 24px;
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    .hamburger {
        display: flex;
    }

    /* Hero Mobile */
    .hero {
        padding: 130px 0 60px;
        min-height: auto;
    }

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

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

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

    .hero-cta-group .btn {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    /* Social Proof Mobile */
    .proof-grid {
        gap: 30px;
    }

    .proof-divider {
        display: none;
    }

    .proof-number {
        font-size: 2.3rem;
    }

    /* Section Headers Mobile */
    .section-header h2 {
        font-size: 2rem;
    }

    /* Showcase Mobile */
    .showcase-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .flip-card {
        height: 300px;
    }

    /* PVS Mobile */
    .pvs-card {
        padding: 30px 25px;
    }

    /* Contact Mobile */
    .form-row-half {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 30px 20px;
    }

    /* FAQ Mobile */
    .faq-question {
        font-size: 1rem;
        padding: 18px 22px;
    }

    .faq-answer p {
        padding: 0 22px 18px;
        font-size: 0.95rem;
    }

    /* Sticky Mobile CTA */
    .sticky-mobile-cta {
        display: block;
    }

    .sticky-mobile-cta.visible {
        transform: translateY(0);
    }

    /* Adjust WA float for sticky CTA */
    .wa-float {
        bottom: 85px;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
    }

    .proof-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .wa-chat-bg {
        padding: 15px 10px;
    }

    .wa-bubble {
        max-width: 92%;
    }

    .wa-bubble-content p {
        font-size: 0.9rem;
    }

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

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== 22. BLOG & ARTICLE STYLES (Preserved for other pages) ===== */
.blog-hero {
    padding: 180px 20px 80px;
    text-align: center;
    background: radial-gradient(circle at center, #fff0f3 0%, #fffdfc 70%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.article-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: 0.4s var(--bounce);
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

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

.ac-img-wrapper { height: 240px; overflow: hidden; position: relative; }
.ac-img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.article-card:hover .ac-img { transform: scale(1.08); }

.ac-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ac-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.ac-date { font-size: 0.85rem; color: #999; margin-bottom: 10px; display: block; }
.ac-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; line-height: 1.3; color: var(--dark); }
.ac-excerpt { color: #666; font-size: 1rem; margin-bottom: 25px; line-height: 1.6; }
.ac-link {
    margin-top: auto;
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}
.ac-link:hover { gap: 15px; }

/* Article Single Page */
.article-container { max-width: 800px; margin: 0 auto; padding: 0 20px 100px; }
.article-header { text-align: center; padding: 180px 20px 60px; }
.article-meta { color: #888; font-size: 1rem; margin-top: 15px; }
.article-cover {
    width: 100%; height: 450px; object-fit: cover; border-radius: 35px;
    margin-bottom: 60px; box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.content-text { font-size: 1.25rem; line-height: 1.9; color: #444; margin-bottom: 30px; }
.content-text p { margin-bottom: 25px; }

.highlight-box {
    background: var(--secondary-light);
    border-right: 6px solid var(--secondary);
    padding: 35px;
    border-radius: 25px;
    margin: 50px 0;
    font-size: 1.2rem;
    color: var(--dark);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.big-quote {
    font-size: 2rem;
    font-family: var(--f-head);
    color: var(--primary);
    text-align: center;
    line-height: 1.4;
    margin: 70px 0;
    font-weight: 700;
    position: relative;
    padding: 0 40px;
}

.visual-list-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f9f9f9;
}

.v-icon {
    min-width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Floating Method Button (for method.html and yoni-bobby.html) */
.floating-method-btn {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: white;
    padding: 12px 15px 12px 25px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 4000;
    border: 3px solid var(--primary);
    border-right: none;
    transition: 0.3s var(--bounce);
}

.floating-method-btn:hover {
    padding-right: 40px;
    background: var(--primary-light);
}

.floating-method-btn .f-icon {
    font-size: 22px;
    color: var(--primary);
    background: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.floating-method-btn .f-text {
    display: flex;
    flex-direction: column;
    text-align: right;
    line-height: 1.2;
}

.floating-method-btn .title {
    font-weight: 800;
    color: var(--dark);
    font-size: 0.95rem;
    font-family: var(--f-head);
}

.floating-method-btn .subtitle {
    font-size: 0.8rem;
    color: var(--gray);
}

@media (max-width: 768px) {
    .article-cover { height: 250px; }
    .big-quote { font-size: 1.5rem; padding: 0; }
    .highlight-box { padding: 25px; font-size: 1.1rem; }
    .floating-method-btn { padding: 10px; top: auto; bottom: 120px; border-radius: 30px 0 0 30px; }
    .floating-method-btn .f-text { display: none; }
}
