/* ═══════════════════════════════════════════════════════════════════
   SupportZone24 — Modern 2026 Design System
   
   Single CSS file for entire website
   No frameworks needed — pure modern CSS
   Mobile-first, RTL-ready, accessible
   
   Total size: ~25 KB minified vs Tailwind CDN's 3 MB
═══════════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
    /* Colors — modern blue/violet palette */
    --primary-50:  #eff6ff;
    --primary-100: #dbeafe;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e40af;
    --primary-900: #1e3a8a;
    
    --accent-400:  #fbbf24;
    --accent-500:  #f59e0b;
    --accent-600:  #d97706;
    
    --gray-50:  #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --green-500: #10b981;
    --red-500:   #ef4444;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    --grad-accent:  linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --grad-hero:    linear-gradient(135deg, #1e1b4b 0%, #312e81 30%, #1e40af 70%, #2563eb 100%);
    --grad-card:    linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    --grad-glass:   linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    
    /* Shadows — soft + modern */
    --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 -1px rgba(0,0,0,0.04);
    --shadow-md:  0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
    --shadow-lg:  0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.03);
    --shadow-xl:  0 25px 50px -12px rgba(0,0,0,0.18);
    --shadow-glow: 0 0 40px rgba(59,130,246,0.4);
    
    /* Radius */
    --radius-sm: 0.375rem;
    --radius:    0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Inter', sans-serif;
    --font-arabic: 'Noto Sans Arabic', Tahoma, sans-serif;
    
    /* Spacing scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Animation */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    
    /* Card-specific variables — change with theme */
    --surface: white;
    --surface-2: #f9fafb;
    --surface-border: #f3f4f6;
    --text: #111827;
    --text-soft: #4b5563;
    --text-muted: #6b7280;
    --check-color: #10b981;
}

/* ─── DARK MODE ─── */
[data-theme="dark"] {
    --gray-50:  #0a0a0f;
    --gray-100: #14141c;
    --gray-200: #1f1f2c;
    --gray-300: #2d2d3d;
    --gray-400: #4a4a5e;
    --gray-500: #8888a0;
    --gray-600: #b0b0c5;
    --gray-700: #d8d8e8;
    --gray-800: #ececf5;
    --gray-900: #fafafc;
    --grad-card: linear-gradient(145deg, rgba(30,30,45,0.95), rgba(20,20,32,0.85));
    --primary-50:  #1a1f3a;
    --primary-100: #1e2649;

    
    /* Card variables — dark mode */
    --surface: #14141c;
    --surface-2: #08080d;
    --surface-border: #2d2d3d;
    --text: #fafafc;
    --text-soft: #c4c4d6;
    --text-muted: #9090a8;
    --check-color: #34d399;
}

[data-theme="dark"] body {
    background: #0a0a0f;
    color: #d8d8e8;
}

[data-theme="dark"] .header {
    background: rgba(15, 15, 25, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .brand,
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4 {
    color: #fafafc;
}

[data-theme="dark"] .nav-link {
    color: #d8d8e8;
}

[data-theme="dark"] .lang-btn,
[data-theme="dark"] .theme-toggle,
[data-theme="dark"] .menu-btn {
    border-color: #2d2d3d;
    color: #d8d8e8;
    background: transparent;
}

[data-theme="dark"] .lang-btn option {
    background: #14141c;
    color: #d8d8e8;
}

[data-theme="dark"] .service-card {
    background: #14141c;
    border-color: #1f1f2c;
}
[data-theme="dark"] .service-card h3 { color: #fafafc; }
[data-theme="dark"] .service-card p { color: #b0b0c5; }
[data-theme="dark"] .service-card ul li { color: #d8d8e8; }

[data-theme="dark"] .customer-card {
    background: #14141c;
    border-color: #1f1f2c;
}
[data-theme="dark"] .customer-card h3 { color: #fafafc; }
[data-theme="dark"] .customer-card p { color: #b0b0c5; }
[data-theme="dark"] .customer-meta { color: #8888a0; }
[data-theme="dark"] .customer-image { background: #1f1f2c; }

[data-theme="dark"] .tag {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
}

[data-theme="dark"] .trust-strip {
    background: #14141c;
    border-bottom-color: #1f1f2c;
}
[data-theme="dark"] .trust-item { color: #b0b0c5; }

[data-theme="dark"] .about-feature h4 { color: #fafafc; }
[data-theme="dark"] .about-feature p { color: #b0b0c5; }
[data-theme="dark"] .section-header p { color: #b0b0c5; }
[data-theme="dark"] .section-eyebrow { color: var(--primary-500); }

[data-theme="dark"] .contact-card {
    background: #14141c;
    border-color: #1f1f2c;
}
[data-theme="dark"] .contact-card-content h4 { color: #fafafc; }
[data-theme="dark"] .contact-card-content p { color: #b0b0c5; }

[data-theme="dark"] .contact-form { background: #14141c; }
[data-theme="dark"] .form-label { color: #d8d8e8; }
[data-theme="dark"] .form-input,
[data-theme="dark"] .form-textarea {
    background: #0a0a0f;
    border-color: #2d2d3d;
    color: #d8d8e8;
}
[data-theme="dark"] .form-input::placeholder,
[data-theme="dark"] .form-textarea::placeholder { color: #4a4a5e; }
[data-theme="dark"] .form-input:focus,
[data-theme="dark"] .form-textarea:focus {
    border-color: var(--primary-500);
    background: #14141c;
}
[data-theme="dark"] .form-checkbox label { color: #b0b0c5; }
[data-theme="dark"] .form-checkbox a { color: #93c5fd; }

[data-theme="dark"] .drawer-content {
    background: #14141c;
    color: #d8d8e8;
}
[data-theme="dark"] .drawer-nav .nav-link {
    border-bottom-color: #1f1f2c;
}

[data-theme="dark"] .legal p,
[data-theme="dark"] .legal ul li,
[data-theme="dark"] .legal ol li { color: #d8d8e8; }
[data-theme="dark"] .legal-meta { color: #8888a0; }
[data-theme="dark"] .legal-contact-box {
    background: rgba(59, 130, 246, 0.1);
    color: #d8d8e8;
}
[data-theme="dark"] .legal-contact-box a { color: #93c5fd; }
[data-theme="dark"] .legal-back { color: #93c5fd; }

[data-theme="dark"] .btn-ghost {
    background: #1f1f2c;
    color: #d8d8e8;
}
[data-theme="dark"] .btn-ghost:hover {
    background: #2d2d3d;
    color: #fafafc;
}

[data-theme="dark"] .btn-outline {
    color: #93c5fd;
    border-color: #93c5fd;
}

[data-theme="dark"] [style*="background: white"],
[data-theme="dark"] [style*="background:white"] {
    background: #14141c !important;
    color: #d8d8e8 !important;
}


/* ─── RESET ─── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

[lang="ar"] body { font-family: var(--font-arabic); }
[dir="rtl"] { direction: rtl; }
[dir="rtl"] .reverse-rtl { transform: scaleX(-1); }

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

a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--primary-600); }

button {
    font: inherit;
    cursor: pointer;
    border: 0;
    background: none;
    color: inherit;
}

ul, ol { list-style: none; }

::selection {
    background: var(--primary-500);
    color: white;
}

/* ─── LAYOUT ─── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

@media (min-width: 768px) {
    .container { padding: 0 var(--space-6); }
}

.section {
    padding: var(--space-20) 0;
    position: relative;
}

@media (max-width: 767px) {
    .section { padding: var(--space-12) 0; }
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.625rem); }
h4 { font-size: 1.125rem; }

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

.text-muted { color: var(--gray-500); }
.text-center { text-align: center; }

/* ─── HEADER ─── */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s var(--ease);
}

[data-theme="dark"] .header {
    background: rgba(10, 10, 20, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: var(--space-4);
}

.brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--gray-900);
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.nav {
    display: none;
    align-items: center;
    gap: var(--space-6);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
    padding: var(--space-2) 0;
    position: relative;
    transition: color 0.2s var(--ease);
}

.nav-link:hover { color: var(--primary-600); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--grad-accent);
    transition: all 0.3s var(--ease);
    transform: translateX(-50%);
}
.nav-link:hover::after { width: 100%; }

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

@media (min-width: 1024px) {
    .nav { display: flex; }
}

/* Lang switcher */
.lang-btn {
    background: transparent;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-3);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    transition: all 0.2s var(--ease);
}

.lang-btn:hover {
    border-color: var(--primary-500);
    color: var(--primary-600);
}

/* Theme toggle */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: transparent;
    border: 1px solid var(--gray-200);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s var(--ease);
}

.theme-toggle:hover {
    border-color: var(--primary-500);
    transform: rotate(15deg);
}

/* Mobile menu button */
.menu-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: transparent;
    border: 1px solid var(--gray-200);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .menu-btn { display: none; }
}

/* Mobile drawer */
.drawer {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
}

.drawer.open { opacity: 1; visibility: visible; }

.drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(90%, 360px);
    background: var(--surface);
    padding: var(--space-6);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    overflow-y: auto;
}

[dir="rtl"] .drawer-content {
    right: auto;
    left: 0;
    transform: translateX(-100%);
}

.drawer.open .drawer-content { transform: translateX(0); }

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-top: var(--space-6);
}

.drawer-nav .nav-link {
    padding: var(--space-3) 0;
    font-size: 1.125rem;
    border-bottom: 1px solid var(--gray-100);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    background: var(--grad-hero);
    color: white;
    padding: var(--space-24) 0 var(--space-20);
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.5;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-500), transparent);
    top: -100px;
    right: -100px;
    animation: float 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-500), transparent);
    bottom: -200px;
    left: -200px;
    animation: float 14s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-4);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.6s var(--ease) 0.1s both;
}

.hero h1 {
    color: white;
    margin-bottom: var(--space-4);
    animation: fadeInUp 0.7s var(--ease) 0.2s both;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin: 0 auto var(--space-8);
    animation: fadeInUp 0.7s var(--ease) 0.3s both;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    justify-content: center;
    animation: fadeInUp 0.7s var(--ease) 0.4s both;
}

@media (min-width: 640px) {
    .hero-cta { flex-direction: row; }
}

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

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s var(--ease);
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
    min-height: 48px;
}

.btn-primary {
    background: var(--grad-accent);
    color: var(--gray-900);
    box-shadow: 0 4px 14px rgba(245,158,11,0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245,158,11,0.5);
    color: var(--gray-900);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    color: white;
}

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

.btn-outline:hover {
    background: var(--primary-600);
    color: white;
}

.btn-ghost {
    background: var(--gray-100);
    color: var(--gray-800);
}

.btn-ghost:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: 1.125rem;
    min-height: 56px;
}

/* ─── TRUST BADGES STRIP ─── */
.trust-strip {
    background: var(--surface);
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--gray-100);
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-4) var(--space-8);
    color: var(--gray-600);
    font-size: 0.95rem;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 500;
}

.trust-item-icon {
    font-size: 1.25rem;
}

/* ─── STATS ─── */
.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-12);
}

@media (min-width: 768px) {
    .stats { grid-template-columns: repeat(4, 1fr); }
}

.stat {
    text-align: center;
    padding: var(--space-4);
}

.stat-num {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ─── SECTION HEADERS ─── */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-12);
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-3);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-soft);
    margin-top: var(--space-3);
}

/* ─── SERVICE GRID ─── */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
}

@media (min-width: 640px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: all 0.3s var(--ease);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--grad-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-200);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--grad-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: var(--space-4);
    color: white;
}

.service-card h3 {
    margin-bottom: var(--space-3);
    color: var(--text);
}

.service-card p {
    color: var(--text-soft);
    margin-bottom: var(--space-4);
    line-height: 1.6;
    flex: 1;
}

.service-card ul {
    margin-bottom: var(--space-4);
}

.service-card ul li {
    padding: var(--space-2) 0;
    color: var(--text);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
}

.service-card ul li::before {
    content: '✓';
    color: var(--check-color);
    font-weight: 700;
    flex-shrink: 0;
}

.service-card-link {
    color: var(--primary-600);
    font-weight: 600;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: gap 0.2s var(--ease);
}

.service-card-link:hover { gap: var(--space-3); }

.service-card.featured {
    background: var(--grad-primary);
    color: white;
    border-color: transparent;
}

.service-card.featured h3 { color: white; }
.service-card.featured p { color: rgba(255,255,255,0.85); }
.service-card.featured ul li { color: rgba(255,255,255,0.9); }
.service-card.featured ul li::before { color: var(--accent-400); }
.service-card.featured .service-icon { background: rgba(255,255,255,0.15); }
.service-card.featured .service-card-link { color: var(--accent-400); }

.badge-new {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: var(--accent-500);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

[dir="rtl"] .badge-new { right: auto; left: var(--space-4); }

/* ─── BONUS SECTION ─── */
.bonus-section {
    background: var(--grad-accent);
    color: white;
    position: relative;
    overflow: hidden;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 1024px) {
    .bonus-grid { grid-template-columns: 1fr 1fr; }
}

.bonus-section h2 { color: white; }
.bonus-section p { color: rgba(255,255,255,0.95); }

.bonus-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin: var(--space-6) 0;
}

.bonus-feature {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    text-align: center;
}

.bonus-feature-icon {
    font-size: 2rem;
    margin-bottom: var(--space-2);
    display: block;
}

.bonus-feature-title {
    font-weight: 700;
    margin-bottom: var(--space-1);
}

.bonus-feature-text {
    font-size: 0.85rem;
    opacity: 0.85;
}

.bonus-card {
    background: white;
    color: var(--gray-900);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-xl);
    transform: rotate(-2deg);
    transition: transform 0.3s var(--ease);
}

.bonus-card:hover { transform: rotate(0); }

.bonus-card-stamps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-2);
    margin: var(--space-4) 0;
}

.stamp {
    aspect-ratio: 1;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-400);
}

.stamp.filled {
    background: var(--grad-accent);
    color: white;
}

.stamp.reward {
    background: var(--gray-900);
    color: var(--accent-400);
    font-size: 1.5rem;
}

/* ─── CUSTOMERS GRID ─── */
.customers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 640px) {
    .customers-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .customers-grid { grid-template-columns: repeat(3, 1fr); }
}

.customer-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s var(--ease);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
}

.customer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-200);
}

.customer-image {
    aspect-ratio: 16/10;
    background: var(--surface-2);
    overflow: hidden;
    position: relative;
}

.customer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.customer-card:hover .customer-image img {
    transform: scale(1.05);
}

.customer-content {
    padding: var(--space-6);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.customer-content h3 {
    margin-bottom: var(--space-1);
}

.customer-meta {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--space-3);
}

.customer-content p {
    color: var(--text-soft);
    margin-bottom: var(--space-4);
    flex: 1;
}

.customer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.tag {
    display: inline-block;
    background: var(--primary-50);
    color: var(--primary-700);
    border-radius: var(--radius-full);
    padding: var(--space-1) var(--space-3);
    font-size: 0.75rem;
    font-weight: 600;
}

/* ─── ABOUT ─── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

@media (min-width: 640px) {
    .about-features { grid-template-columns: repeat(3, 1fr); }
}

.about-feature {
    text-align: center;
    padding: var(--space-4);
}

.about-feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-3);
    display: block;
}

.about-feature h4 {
    margin-bottom: var(--space-2);
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ─── CONTACT ─── */
.contact {
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
}

@media (min-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    transition: all 0.2s var(--ease);
    border: 1px solid var(--gray-100);
}

.contact-card:hover {
    transform: translateX(4px);
    border-color: var(--primary-300);
}

[dir="rtl"] .contact-card:hover { transform: translateX(-4px); }

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--grad-primary);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-card-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-card-icon.email {
    background: linear-gradient(135deg, #ec4899, #be185d);
}

.contact-card-content h4 {
    margin-bottom: var(--space-1);
    font-size: 1.05rem;
}

.contact-card-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ─── FORM ─── */
.contact-form {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

@media (max-width: 639px) {
    .form-row { grid-template-columns: 1fr; }
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--text);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font: inherit;
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-md);
    background: var(--surface-2);
    transition: all 0.2s var(--ease);
    color: var(--text);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    font-size: 0.875rem;
    color: var(--gray-600);
}

.form-checkbox input { margin-top: 4px; }

.form-error,
.form-success {
    border-radius: var(--radius-md);
    padding: var(--space-3) var(--space-4);
    margin-bottom: var(--space-4);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
}

.form-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.form-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-16) 0 var(--space-6);
    margin-top: var(--space-20);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer h4 {
    color: white;
    margin-bottom: var(--space-4);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.footer-tagline {
    color: var(--gray-400);
    margin-bottom: var(--space-4);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.footer-trust span {
    background: rgba(255,255,255,0.05);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-list a {
    color: var(--gray-400);
    font-size: 0.95rem;
    transition: color 0.2s var(--ease);
}

.footer-list a:hover { color: var(--accent-400); }

.footer-social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-3);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s var(--ease);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
}

.footer-legal a {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-legal a:hover { color: var(--accent-400); }

/* ─── WHATSAPP FAB ─── */
.fab-whatsapp {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 50;
    transition: all 0.2s var(--ease);
    text-decoration: none;
}

[dir="rtl"] .fab-whatsapp { right: auto; left: var(--space-6); }

.fab-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.6);
    color: white;
}

.fab-whatsapp::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: pulse-ring 2s var(--ease) infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ─── LEGAL PAGES ─── */
.legal {
    padding: var(--space-12) 0;
    max-width: 820px;
    margin: 0 auto;
}

.legal h1 { margin-bottom: var(--space-2); }

.legal-meta {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: var(--space-8);
}

.legal h2 {
    font-size: 1.5rem;
    margin: var(--space-8) 0 var(--space-3);
}

.legal h3 {
    font-size: 1.15rem;
    margin: var(--space-6) 0 var(--space-2);
}

.legal p, .legal ul, .legal ol {
    margin-bottom: var(--space-4);
    color: var(--gray-700);
}

.legal ul, .legal ol {
    padding-inline-start: var(--space-6);
}

.legal ul li, .legal ol li {
    list-style: disc;
    margin-bottom: var(--space-2);
}

.legal ol li { list-style: decimal; }

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary-600);
    font-weight: 500;
    margin-bottom: var(--space-6);
}

.legal-contact-box {
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    margin: var(--space-4) 0;
    border-left: 4px solid var(--primary-500);
}

[dir="rtl"] .legal-contact-box {
    border-left: 0;
    border-right: 4px solid var(--primary-500);
}

/* ─── 404 PAGE ─── */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-12) 0;
}

.error-code {
    font-size: clamp(5rem, 15vw, 9rem);
    font-weight: 800;
    line-height: 1;
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-4);
}

/* ─── UTILITIES ─── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.visually-hidden { display: none !important; }

@media (max-width: 639px) { .hide-mobile { display: none !important; } }
@media (min-width: 640px) and (max-width: 1023px) { .hide-tablet { display: none !important; } }
@media (min-width: 1024px) { .hide-desktop { display: none !important; } }

/* Print */
@media print {
    .header, .footer, .fab-whatsapp, .hero-orb { display: none !important; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ─── FIX: Customer card text & tags overflow ─── */
.customer-content p {
    /* Better text wrapping for descriptions */
    word-break: break-word;
    overflow-wrap: break-word;
    /* Limit to 3 lines with ellipsis */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.customer-tags {
    /* Allow tags to wrap properly without cutting */
    overflow: visible;
}

.tag {
    /* Prevent tag content from being cut */
    white-space: nowrap;
    flex-shrink: 0;
}

/* Force unicode-bidi isolation for proper LTR/RTL rendering */
.customer-card {
    unicode-bidi: isolate;
}

.customer-card[dir="ltr"] * {
    unicode-bidi: isolate;
}

.customer-content h3,
.customer-meta,
.customer-content p {
    /* These should follow the card's direction */
    text-align: start;
}

/* Fix für eingebetteten arabischen Text in DE-Seite (z.B. "DE/AR" Tag) */
.tag {
    unicode-bidi: plaintext;
}

/* ─── EXTRA Dark Mode polish ─── */
[data-theme="dark"] .customer-image picture,
[data-theme="dark"] .customer-image img {
    background: transparent;
}

/* When cards have white logo backgrounds, add subtle border in dark */
[data-theme="dark"] .customer-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .customer-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-500);
}

/* Service icons in dark mode shouldn't blend in */
[data-theme="dark"] .service-icon {
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   AGGRESSIVE FIXES — Override everything to ensure readability
═══════════════════════════════════════════════════════════════ */

/* ─── DARK MODE: Force readable text on cards ─── */
html[data-theme="dark"] .service-card {
    background: #14141c !important;
    border-color: #2d2d3d !important;
}

html[data-theme="dark"] .service-card h3 {
    color: #fafafc !important;
}

html[data-theme="dark"] .service-card p {
    color: #c4c4d6 !important;
}

html[data-theme="dark"] .service-card ul li {
    color: #d8d8e8 !important;
}

html[data-theme="dark"] .service-card ul li::before {
    color: #34d399 !important;
}

/* Featured card stays primary-gradient — those are bright already */
html[data-theme="dark"] .service-card.featured {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%) !important;
}
html[data-theme="dark"] .service-card.featured h3 { color: white !important; }
html[data-theme="dark"] .service-card.featured p { color: rgba(255,255,255,0.95) !important; }
html[data-theme="dark"] .service-card.featured ul li { color: rgba(255,255,255,0.95) !important; }

/* ─── DARK MODE: Customer cards ─── */
html[data-theme="dark"] .customer-card {
    background: #14141c !important;
    border-color: #2d2d3d !important;
}
html[data-theme="dark"] .customer-card h3 {
    color: #fafafc !important;
}
html[data-theme="dark"] .customer-card p,
html[data-theme="dark"] .customer-content p {
    color: #c4c4d6 !important;
}
html[data-theme="dark"] .customer-meta {
    color: #9090a8 !important;
}
html[data-theme="dark"] .customer-image {
    background: #1f1f2c !important;
}

/* ─── DARK MODE: Sections background ─── */
html[data-theme="dark"] section[style*="background: var(--gray-50)"],
html[data-theme="dark"] section.contact {
    background: #08080d !important;
}

html[data-theme="dark"] .trust-strip {
    background: #14141c !important;
    border-bottom-color: #2d2d3d !important;
}

/* ─── DARK MODE: Section header ─── */
html[data-theme="dark"] .section-header h2 {
    color: #fafafc !important;
}
html[data-theme="dark"] .section-header p {
    color: #c4c4d6 !important;
}
html[data-theme="dark"] .section-eyebrow {
    color: #93c5fd !important;
}

/* ─── DARK MODE: Trust strip + about features ─── */
html[data-theme="dark"] .trust-item {
    color: #c4c4d6 !important;
}
html[data-theme="dark"] .about-feature h4 {
    color: #fafafc !important;
}
html[data-theme="dark"] .about-feature p {
    color: #c4c4d6 !important;
}

/* ─── DARK MODE: Tags ─── */
html[data-theme="dark"] .tag {
    background: rgba(59, 130, 246, 0.25) !important;
    color: #93c5fd !important;
}

/* ─── DARK MODE: Contact cards + form ─── */
html[data-theme="dark"] .contact-card {
    background: #14141c !important;
    border-color: #2d2d3d !important;
}
html[data-theme="dark"] .contact-card-content h4 {
    color: #fafafc !important;
}
html[data-theme="dark"] .contact-card-content p {
    color: #c4c4d6 !important;
}

html[data-theme="dark"] .contact-form {
    background: #14141c !important;
}
html[data-theme="dark"] .contact-form h3 {
    color: #fafafc !important;
}
html[data-theme="dark"] .form-label {
    color: #d8d8e8 !important;
}
html[data-theme="dark"] .form-input,
html[data-theme="dark"] .form-textarea {
    background: #08080d !important;
    border-color: #2d2d3d !important;
    color: #fafafc !important;
}

/* ─── BIDI ISOLATION — German text on Arabic page ─── */
.bidi-isolate {
    unicode-bidi: isolate !important;
    direction: ltr !important;
    text-align: start !important;
}

/* Arabic page: customer card description should respect German text direction */
[lang="ar"] .customer-card[dir="ltr"],
[lang="ar"] .customer-card[dir="ltr"] * {
    direction: ltr !important;
    text-align: left !important;
    unicode-bidi: isolate !important;
}

/* When dir="ltr" is set on a card, force LTR layout */
.customer-card[dir="ltr"] .customer-content {
    text-align: left !important;
}
.customer-card[dir="rtl"] .customer-content {
    text-align: right !important;
}

/* ─── LIGHT MODE: Make sure cards/text are readable too ─── */
.service-card h3 { color: #111827; }
.service-card p { color: #4b5563; }
.service-card ul li { color: #374151; }
.customer-card h3 { color: #111827; }
.customer-content p { color: #4b5563; }
.customer-meta { color: #6b7280; }

/* ─── DEMO BUTTON in Service Cards ─── */
.service-demo-btn {
    margin-top: var(--space-4);
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: white !important;
    border: 0;
    font-size: 0.9rem;
    padding: var(--space-2) var(--space-4) !important;
    min-height: 40px !important;
}

.service-demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: white !important;
}

.service-card.featured .service-demo-btn {
    background: rgba(255,255,255,0.2) !important;
    backdrop-filter: blur(10px);
    color: white !important;
    border: 1px solid rgba(255,255,255,0.3);
}

.service-card.featured .service-demo-btn:hover {
    background: white !important;
    color: var(--primary-700) !important;
}

/* In dark mode also works */
html[data-theme="dark"] .service-demo-btn {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: white !important;
}

/* ═══════════════════════════════════════════════════════════════
   BONUS-SYSTEM SPOTLIGHT SECTION
   Prominente orange Sektion mit Bonus-Karten Mockup
═══════════════════════════════════════════════════════════════ */

.bonus-spotlight {
    position: relative;
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
    color: white;
    overflow: hidden;
}

.bonus-spotlight-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
    background-image: 
        radial-gradient(circle at 20% 30%, white 1px, transparent 1px),
        radial-gradient(circle at 70% 60%, white 1px, transparent 1px);
    background-size: 60px 60px;
}

.bonus-spotlight-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .bonus-spotlight-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

/* Left side: text content */
.bonus-spotlight-content {
    color: white;
}

.bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: var(--space-6);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bonus-title {
    color: white !important;
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--space-6);
}

.bonus-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: var(--space-8);
    max-width: 640px;
}

/* 4 Feature boxes */
.bonus-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
    max-width: 560px;
}

.bonus-feature-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.2s var(--ease);
}

.bonus-feature-box:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.22);
}

.bonus-feature-icon {
    font-size: 1.75rem;
    margin-bottom: var(--space-2);
    line-height: 1;
}

.bonus-feature-title {
    font-weight: 700;
    margin-bottom: var(--space-1);
    color: white;
}

.bonus-feature-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

/* CTA buttons row */
.bonus-cta-row {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    flex-wrap: wrap;
    max-width: 560px;
}

@media (min-width: 480px) {
    .bonus-cta-row {
        flex-direction: row;
    }
}

.btn-bonus-main,
.btn-bonus-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s var(--ease);
    min-height: 56px;
    box-shadow: var(--shadow-xl);
    flex: 1;
    white-space: nowrap;
}

.btn-bonus-main {
    background: white;
    color: #b45309;
}

.btn-bonus-main:hover {
    transform: translateY(-2px) scale(1.02);
    color: #92400e;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.btn-bonus-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-bonus-whatsapp:hover {
    transform: translateY(-2px) scale(1.02);
    color: white;
    box-shadow: 0 25px 50px -12px rgba(37, 211, 102, 0.5);
}

/* Right side: bonus card mockup */
.bonus-card-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 280px;
}

.bonus-card-mockup {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f3f4f6);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 30px 60px -15px rgba(0, 0, 0, 0.5),
        0 10px 30px -5px rgba(0, 0, 0, 0.3);
    padding: var(--space-5);
    width: 100%;
    max-width: 340px;
    transform: rotate(2deg);
    transition: transform 0.5s var(--ease);
    color: #111827;
    z-index: 2;
}

.bonus-card-mockup:hover {
    transform: rotate(0deg) scale(1.02);
}

.bonus-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: var(--space-4);
}

.bonus-card-label {
    color: #b45309;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.bonus-card-name {
    color: #111827 !important;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: var(--space-1);
}

/* Stamps grid */
.bonus-card-stamps {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: var(--space-4);
    justify-content: center;
}

.bonus-stamp {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid #d1d5db;
    color: #9ca3af;
    background: white;
}

.bonus-stamp.filled {
    background: #f59e0b;
    color: white;
    border-color: #f59e0b;
}

.bonus-stamp.reward {
    background: #fef3c7;
    color: #b45309;
    border-color: #f59e0b;
    font-size: 1.1rem;
}

/* Card footer */
.bonus-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.bonus-card-id {
    color: #111827 !important;
    font-family: monospace;
    font-weight: 700;
    font-size: 0.9rem;
}

/* QR Mockup */
.bonus-qr-mockup {
    width: 64px;
    height: 64px;
    background: #111827;
    padding: 6px;
    border-radius: 6px;
}

.bonus-qr-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    width: 100%;
    height: 100%;
}

.bonus-qr-grid .white { background: white; }
.bonus-qr-grid .black { background: #111827; }

/* Floating stamp effect */
.bonus-stamp-effect {
    position: absolute;
    top: -16px;
    right: -16px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 12px 24px -6px rgba(239, 68, 68, 0.6);
    transform: rotate(12deg);
    animation: bonus-pulse 2s ease-in-out infinite;
    z-index: 3;
}

@keyframes bonus-pulse {
    0%, 100% { transform: rotate(12deg) scale(1); }
    50% { transform: rotate(12deg) scale(1.1); }
}

/* RTL support */
[dir="rtl"] .bonus-stamp-effect {
    right: auto;
    left: -16px;
}

/* Dark mode keeps the bonus section vibrant */
html[data-theme="dark"] .bonus-spotlight {
    background: linear-gradient(135deg, #b45309 0%, #92400e 50%, #78350f 100%) !important;
}
