/* =============================================
   המדריך הסבלני - Main Stylesheet v3
   Premium Design, RTL-first, Bilingual
   ============================================= */

/* --- CSS Variables --- */
:root {
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-deeper: #1e40af;
    --primary-light: #DBEAFE;
    --primary-xlight: #EFF6FF;
    --accent: #F59E0B;
    --accent-dark: #D97706;
    --accent-light: #FEF3C7;
    --text: #111827;
    --text-mid: #374151;
    --text-light: #6B7280;
    --text-white: #FFFFFF;
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-warm: #FFFBEB;
    --bg-blue: #F0F7FF;
    --bg-dark: #0f172a;
    --bg-dark-card: #1e293b;
    --bg-contact: #EFF6FF;
    --border: #E5E7EB;
    --border-light: #F3F4F6;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-md: 0 6px 16px -2px rgba(0,0,0,0.08), 0 3px 6px -3px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.1), 0 4px 10px -4px rgba(0,0,0,0.06);
    --shadow-xl: 0 20px 40px -5px rgba(0,0,0,0.12), 0 8px 16px -6px rgba(0,0,0,0.06);
    --shadow-glow: 0 0 30px rgba(37,99,235,0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --font: 'Heebo', Arial, sans-serif;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --tag-howto: #2563EB;
    --tag-whatis: #059669;
    --tag-tip: #D97706;
    --tag-video: #7C3AED;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg-white);
    line-height: 1.7;
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    color: var(--primary-dark);
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 700;
    color: var(--text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255,255,255,0.97);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-main {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.logo-sub {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.nav-links a {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-mid);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover {
    background: var(--primary-xlight);
    color: var(--primary);
}

.nav-cta {
    background: var(--primary) !important;
    color: var(--text-white) !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

/* Language Toggle */
.lang-toggle {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: 20px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.lang-toggle:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-1px);
}

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

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #0c1d36 0%, #122a4f 20%, #1a3f6f 40%, #2563EB 65%, #3b82f6 80%, #60a5fa 95%);
    overflow: hidden;
    padding-top: 72px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 60%, rgba(96,165,250,0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 25%, rgba(245,158,11,0.08) 0%, transparent 30%),
        radial-gradient(circle at 50% 90%, rgba(255,255,255,0.04) 0%, transparent 25%);
}

/* Decorative floating shapes */
.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    right: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    animation: floatSlow 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -8%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 60%);
    animation: floatSlow 25s ease-in-out infinite reverse;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-white);
    padding: 60px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 28px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    letter-spacing: 0.01em;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.88;
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-trust {
    margin-top: 28px;
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Section wave divider */
.hero + .section {
    position: relative;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    position: relative;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--text);
    box-shadow: 0 4px 14px rgba(245,158,11,0.3);
}

.btn-primary:hover {
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,158,11,0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.12);
    color: var(--text-white);
    border: 1.5px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.22);
    color: var(--text-white);
    border-color: rgba(255,255,255,0.5);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

.btn-phone {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(37,99,235,0.25);
}

.btn-phone:hover {
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.35);
}

.btn-email {
    background: var(--bg-white);
    color: var(--text-mid);
    border: 1.5px solid var(--border);
}

.btn-email:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    font-size: 1.2em;
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
    padding: 96px 0;
    position: relative;
}

.section-light {
    background: var(--bg-white);
}

.section-warm {
    background: linear-gradient(180deg, var(--bg-warm) 0%, #fff8e1 100%);
}


.section-contact {
    background: linear-gradient(180deg, var(--bg-contact) 0%, #e0edff 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
    font-size: 2.3rem;
    color: var(--text);
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    margin: 16px auto 0;
}


.section-title-right {
    text-align: right;
}

.section-title-right::after {
    margin: 16px 0 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 8px;
    margin-bottom: 56px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-note {
    text-align: center;
    margin-top: 48px;
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.trust-note {
    text-align: center;
    margin-top: 36px;
    font-size: 0.95rem;
    color: var(--tag-whatis);
    font-weight: 600;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(5,150,105,0.06) 0%, rgba(5,150,105,0.12) 100%);
    border: 1px solid rgba(5,150,105,0.15);
    border-radius: var(--radius);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   PAIN CARDS (Problem Section)
   ============================================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.pain-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    opacity: 0;
    transition: var(--transition);
}

.pain-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

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

.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-xlight);
}

.pain-card p {
    font-size: 1.02rem;
    color: var(--text-mid);
    font-style: italic;
    line-height: 1.7;
}

/* =============================================
   FEATURES (Solution Section)
   ============================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    border: 1px solid transparent;
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--border);
    box-shadow: var(--shadow);
}

.feature-check {
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(37,99,235,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text);
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    align-items: stretch;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

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

.service-card-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    overflow: visible;
}

.service-card-featured::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
}

.service-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--text);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(245,158,11,0.3);
}

.service-header {
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.service-for {
    color: var(--text-light);
    font-size: 0.93rem;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    padding-right: 28px;
    position: relative;
    font-size: 0.93rem;
    color: var(--text-mid);
}

.service-features li::before {
    content: "\2713";
    position: absolute;
    right: 0;
    color: var(--whatsapp);
    font-weight: 700;
    font-size: 0.9rem;
}

.service-price {
    text-align: center;
    margin-bottom: 20px;
    padding: 18px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--primary-xlight) 100%);
    border-radius: var(--radius);
}

.price-main {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.price-package {
    display: block;
    font-size: 0.88rem;
    color: var(--text-light);
    margin-top: 4px;
}

.service-card .btn {
    width: 100%;
    justify-content: center;
}


/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.testimonial-card::before {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.6;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.testimonial-card blockquote {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 16px;
    padding-right: 0;
    border: none;
    font-style: italic;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.88rem;
}

/* =============================================
   GUIDES SECTION
   ============================================= */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.guide-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    opacity: 0;
    transition: var(--transition);
}

.guide-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

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

.guide-card-video {
    border-style: dashed;
    border-color: #D1D5DB;
    opacity: 0.7;
}

.guide-card-video:hover {
    opacity: 1;
}

.guide-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
    align-self: center;
}

.guide-tag-howto {
    background: rgba(37, 99, 235, 0.08);
    color: var(--tag-howto);
}

.guide-tag-whatis {
    background: rgba(5, 150, 105, 0.08);
    color: var(--tag-whatis);
}

.guide-tag-tip {
    background: rgba(217, 119, 6, 0.08);
    color: var(--tag-tip);
}

.guide-tag-video {
    background: rgba(124, 58, 237, 0.08);
    color: var(--tag-video);
}

.guide-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
}

.guide-card h3 {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.4;
}

.guide-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 18px;
    flex-grow: 1;
}

.btn-guide {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 22px;
    border-radius: 20px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1.5px solid var(--primary);
    background: transparent;
    color: var(--primary);
    align-self: center;
}

.btn-guide:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.2);
}

.btn-guide-disabled {
    border-color: #D1D5DB;
    color: var(--text-light);
    cursor: default;
    opacity: 0.5;
}

.btn-guide-disabled:hover {
    background: transparent;
    color: var(--text-light);
    transform: none;
    box-shadow: none;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.faq-item.open {
    border-color: var(--primary);
    box-shadow: var(--shadow), 0 0 0 1px var(--primary-light);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text);
    text-align: right;
    transition: var(--transition);
}

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

.faq-arrow {
    font-size: 0.7rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-right: 16px;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 28px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* =============================================
   GUIDE MODAL
   ============================================= */
.guide-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.guide-modal-overlay.active {
    display: flex;
}

.guide-modal {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 44px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: modalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.guide-modal-close {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

.guide-modal-close:hover {
    background: var(--border);
    color: var(--text);
}

.guide-modal-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.guide-modal h2 {
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 28px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.guide-modal-body {
    color: var(--text-mid);
    line-height: 1.9;
    font-size: 1.02rem;
}

.guide-modal-body h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-top: 28px;
    margin-bottom: 12px;
}

.guide-modal-body p {
    margin-bottom: 14px;
}

.guide-modal-body ol,
.guide-modal-body ul {
    margin-bottom: 16px;
    padding-right: 24px;
}

.guide-modal-body li {
    margin-bottom: 8px;
}

.guide-modal-body strong {
    color: var(--text);
}

/* =============================================
   TYPICAL LESSON
   ============================================= */
.typical-lesson {
    margin-top: 56px;
    text-align: center;
}

.typical-lesson-title {
    font-size: 1.4rem;
    margin-bottom: 28px;
    color: var(--text);
}

.lesson-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.lesson-step {
    text-align: center;
}

.lesson-step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 12px;
    box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}

.lesson-step p {
    font-size: 0.93rem;
    color: var(--text-mid);
}

/* =============================================
   GIFT CALLOUT (inside service card)
   ============================================= */
.gift-callout {
    background: linear-gradient(135deg, var(--accent-light) 0%, #FDE68A 100%);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin: 16px 0;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}

/* =============================================
   ABOUT
   ============================================= */
.about-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    align-items: center;
}

.about-photo-img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--primary);
}

.about-intro {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-text p {
    margin-bottom: 16px;
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-mid);
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.tag {
    background: linear-gradient(135deg, var(--primary-xlight) 0%, var(--primary-light) 100%);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.82rem;
    color: var(--primary-dark);
    font-weight: 500;
    border: 1px solid rgba(37,99,235,0.1);
}

.about-section-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text);
}

/* =============================================
   GUIDES BLOCK (inside credibility)
   ============================================= */
.guides-block {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.guides-block-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text);
}


.pdf-downloads {
    margin-top: 40px;
    text-align: center;
}
.pdf-downloads h4 {
    font-size: 1.1rem;
    color: var(--text-mid);
    margin-bottom: 16px;
}
.pdf-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-xlight);
    border: 1px solid var(--primary-light);
    border-radius: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s;
}
.pdf-link:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}
.pdf-icon { font-size: 1.2em; }

/* =============================================
   CONTACT
   ============================================= */
.contact-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 8px;
    margin-bottom: 56px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.contact-form h3 {
    margin-bottom: 28px;
    text-align: center;
    color: var(--text);
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 16px;
    color: var(--text);
    transition: var(--transition);
    direction: rtl;
    background: var(--bg-white);
}

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

.form-note {
    font-size: 0.78rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 10px;
}

.topics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.topic-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    background: var(--bg-white);
}

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

.topic-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.topic-checkbox input[type="checkbox"]:checked + span {
    color: var(--primary);
    font-weight: 600;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 12px center;
    padding-left: 32px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.75);
    padding: 56px 0 28px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

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

.footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
}

.footer-slogan {
    color: var(--accent);
    font-style: italic;
    font-size: 0.93rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.75);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--text-white);
}

.footer-contact p,
.footer-links p {
    margin-bottom: 10px;
    font-size: 0.93rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-white);
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    color: var(--text-white);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* =============================================
   MOBILE STICKY CTA
   ============================================= */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
    padding: 14px 24px;
    text-align: center;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
}

.mobile-cta a {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-cta a:hover {
    color: var(--text-white);
}

/* (Cookie banner & privacy modal styles are at the end of the file) */

/* =============================================
   LTR OVERRIDES (English)
   ============================================= */
html[dir="ltr"] body {
    text-align: left;
}

html[dir="ltr"] .service-badge {
    right: auto;
    left: 24px;
}

html[dir="ltr"] .service-features li {
    padding-right: 0;
    padding-left: 28px;
}

html[dir="ltr"] .service-features li::before {
    right: auto;
    left: 0;
}

html[dir="ltr"] .whatsapp-float {
    left: auto;
    right: 24px;
}


html[dir="ltr"] .testimonial-card::before {
    right: auto;
    left: 28px;
}

html[dir="ltr"] .section-title-right {
    text-align: left;
}

html[dir="ltr"] .section-title-right::after {
    margin: 16px auto 0 0;
}

html[dir="ltr"] .faq-arrow {
    margin-right: 0;
    margin-left: 16px;
}

html[dir="ltr"] .faq-question {
    text-align: left;
}

html[dir="ltr"] .form-group input,
html[dir="ltr"] .form-group select,
html[dir="ltr"] .form-group textarea {
    direction: ltr;
}

html[dir="ltr"] .guide-modal-close {
    left: auto;
    right: 18px;
}

html[dir="ltr"] .guide-modal-body ol,
html[dir="ltr"] .guide-modal-body ul {
    padding-right: 0;
    padding-left: 24px;
}

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

/* Tablet */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .section { padding: 72px 0; }
    .section-title { margin-bottom: 12px; font-size: 1.9rem; }
    .section-subtitle { margin-bottom: 40px; }

    /* Nav */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        right: 0;
        left: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 4px;
        border-top: 1px solid var(--border-light);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 12px 16px;
        width: 100%;
        display: block;
    }

    .lang-toggle {
        align-self: flex-start;
        margin-top: 8px;
    }

    /* Hero */
    .hero { min-height: 75vh; }
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .hero-buttons { flex-direction: column; align-items: center; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; }

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

    /* About */
    .about-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-photo-img {
        margin: 0 auto;
        width: 200px;
        height: 200px;
    }
    .section-title-right { text-align: center; }
    .section-title-right::after { margin: 16px auto 0; }
    .about-tags { justify-content: center; }

    /* Contact */
    .contact-layout { grid-template-columns: 1fr; }

    /* Footer */
    .footer-content { grid-template-columns: 1fr; text-align: center; }

    /* Modal */
    .guide-modal { padding: 28px 20px; }

    /* Mobile CTA */
    .mobile-cta { display: block; }
    .whatsapp-float { bottom: 74px; }

}

/* Mobile */
@media (max-width: 480px) {
    html { font-size: 17px; }
    .container { padding: 0 16px; }
    .section { padding: 60px 0; }
    .hero { min-height: 70vh; }
    .hero h1 { font-size: 1.8rem; }
    .hero-badge { font-size: 0.78rem; padding: 6px 18px; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .cards-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-item { padding: 16px; }
    .guides-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 24px 16px; }
    .faq-question { padding: 18px 20px; font-size: 0.95rem; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Print */
@media print {
    .navbar, .whatsapp-float, .hero-buttons, .btn, .contact-form, .mobile-cta, .guide-modal-overlay, .cookie-banner, .privacy-modal-overlay { display: none; }
    .hero { min-height: auto; padding: 20px 0; }
    .section { padding: 20px 0; }
}

/* =============================================
   EXPERT PANEL ADDITIONS v4
   Trust Bar + Courses Showcase + Scroll Reveal
   ============================================= */

/* --- Trust Numbers Bar --- */
.trust-bar {
    background: linear-gradient(135deg, var(--primary-deeper) 0%, var(--primary-dark) 100%);
    padding: 40px 0;
    color: white;
    position: relative;
    overflow: hidden;
}
.trust-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.trust-stat {
    padding: 8px;
}
.trust-number {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    color: var(--accent);
    margin-bottom: 4px;
    letter-spacing: -1px;
}
.trust-label {
    font-size: 0.88rem;
    font-weight: 400;
    opacity: 0.85;
}
@media (max-width: 768px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .trust-number { font-size: 2.2rem; }
    .trust-bar { padding: 30px 0; }
}
@media (max-width: 480px) {
    .trust-number { font-size: 1.8rem; }
    .trust-label { font-size: 0.78rem; }
}

/* --- Courses Showcase --- */
.courses-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.course-showcase-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
}
.course-showcase-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.course-showcase-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.course-showcase-card:hover .course-showcase-icon {
    transform: scale(1.15);
}
.course-showcase-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}
.course-showcase-card p {
    font-size: 0.82rem;
    color: var(--text-light);
}
.courses-note {
    text-align: center;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-light);
}
@media (max-width: 900px) {
    .courses-showcase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .courses-showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .course-showcase-card { padding: 20px 12px; }
    .course-showcase-icon { font-size: 2rem; }
    .course-showcase-card h3 { font-size: 0.88rem; }
}

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.pain-card,
.feature-item,
.service-card,
.testimonial-card,
.guide-card,
.faq-item,
.lesson-step,
.course-showcase-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.pain-card.visible,
.feature-item.visible,
.service-card.visible,
.testimonial-card.visible,
.guide-card.visible,
.faq-item.visible,
.lesson-step.visible,
.course-showcase-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid items */
.pain-card:nth-child(2), .course-showcase-card:nth-child(2), .feature-item:nth-child(2),
.service-card:nth-child(2), .testimonial-card:nth-child(2), .guide-card:nth-child(2) { transition-delay: 0.08s; }
.pain-card:nth-child(3), .course-showcase-card:nth-child(3), .feature-item:nth-child(3),
.service-card:nth-child(3), .testimonial-card:nth-child(3), .guide-card:nth-child(3) { transition-delay: 0.16s; }
.pain-card:nth-child(4), .course-showcase-card:nth-child(4), .feature-item:nth-child(4),
.guide-card:nth-child(4) { transition-delay: 0.24s; }
.course-showcase-card:nth-child(5), .guide-card:nth-child(5) { transition-delay: 0.32s; }
.course-showcase-card:nth-child(6) { transition-delay: 0.4s; }
.course-showcase-card:nth-child(7) { transition-delay: 0.48s; }
.course-showcase-card:nth-child(8) { transition-delay: 0.56s; }

/* WhatsApp float pulse */
.whatsapp-float {
    animation: waPulse 3s ease-in-out infinite;
}
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 12px rgba(37,211,102,0.3); }
    50% { box-shadow: 0 4px 24px rgba(37,211,102,0.5), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* --- Utility classes --- */
.initially-hidden {
    display: none;
}
.footer-privacy-link {
    color: rgba(255,255,255,0.5);
}
.footer-privacy-spacing {
    margin-top: 8px;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 16px 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.cookie-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
    min-width: 200px;
    margin: 0;
}
.cookie-text a {
    color: var(--primary-light);
    text-decoration: underline;
}
.cookie-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font);
    transition: var(--transition-fast);
}
.cookie-accept {
    background: var(--primary);
    color: white;
}
.cookie-accept:hover {
    background: var(--primary-dark);
}
.cookie-decline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}
.cookie-decline:hover {
    color: white;
    border-color: white;
}

/* --- Privacy Policy Modal --- */
.privacy-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 10001;
    overflow-y: auto;
    padding: 40px 20px;
}
.privacy-modal-overlay.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.privacy-modal {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 700px;
    width: 100%;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-xl);
    margin: auto;
}
.privacy-modal-close {
    position: absolute;
    top: 16px;
    left: 16px;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}
[dir="ltr"] .privacy-modal-close {
    left: auto;
    right: 16px;
}
.privacy-modal-close:hover {
    background: var(--bg-light);
    color: var(--text);
}
.privacy-modal h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text);
}
.privacy-modal h3 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--text);
}
.privacy-modal p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 8px;
}
.privacy-modal a {
    color: var(--primary);
}
@media (max-width: 600px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    .privacy-modal {
        padding: 24px 20px;
    }
}
