:root {
    --primary: #00B4B4;
    --primary-dark: #009999;
    --secondary: #1A2B3C;
    --accent: #FF6B35;
    --accent-hover: #E85A2A;
    --bg-light: #F8FAFB;
    --bg-white: #FFFFFF;
    --text-dark: #2D3748;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --border: #E2E8F0;
    --gradient-hero: linear-gradient(135deg, #1A2B3C 0%, #2D4356 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --card-bg: #FFFFFF;
    --input-bg: #FFFFFF;
}

/* Dark Mode */
[data-theme="dark"] {
    --secondary: #E2E8F0;
    --bg-light: #1E293B;
    --bg-white: #0F172A;
    --text-dark: #E2E8F0;
    --text-muted: #94A3B8;
    --text-light: #64748B;
    --border: #334155;
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.4);
    --nav-bg: rgba(15, 23, 42, 0.95);
    --card-bg: #1E293B;
    --input-bg: #1E293B;
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

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

.nav-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0;
    letter-spacing: -0.3px;
}

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

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

.nav-logo .logo-program {
    color: var(--secondary);
}

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

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

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

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

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

.nav-cta {
    background: var(--accent);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* Mobile Menu */
.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s;
}

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

.nav-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.nav-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-white);
    padding: 100px 24px 40px;
    z-index: 999;
    flex-direction: column;
    gap: 24px;
}

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

.nav-mobile-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

.nav-mobile-menu a:hover {
    color: var(--primary);
}

.nav-mobile-menu .nav-cta {
    text-align: center;
    margin-top: 16px;
}

/* Nav Right Group */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-select {
    position: relative;
    display: inline-block;
}

.lang-select-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.lang-select-btn:hover {
    border-color: var(--primary);
    background: var(--bg-light);
}

.lang-select-btn .lang-flag {
    font-size: 16px;
    line-height: 1;
}

.lang-select-btn .lang-arrow {
    font-size: 10px;
    transition: transform 0.2s;
    color: var(--text-muted);
}

.lang-select.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-select-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    min-width: 160px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.2s;
    z-index: 1001;
    overflow: hidden;
}

.lang-select.open .lang-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-select-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.15s;
}

.lang-select-dropdown a:hover {
    background: var(--bg-light);
}

.lang-select-dropdown a.active {
    color: var(--primary);
    font-weight: 700;
    background: rgba(0, 180, 180, 0.08);
}

.lang-select-dropdown a .lang-flag {
    font-size: 18px;
}

.lang-select-dropdown a .lang-check {
    margin-left: auto;
    color: var(--primary);
    font-size: 14px;
}

.theme-toggle {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1;
}

.theme-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    display: none;
}

[data-theme="light"] .theme-toggle .icon-moon {
    display: block;
}

[data-theme="light"] .theme-toggle .icon-sun {
    display: none;
}

[data-theme="dark"] .theme-toggle .icon-sun {
    display: block;
}

[data-theme="dark"] .theme-toggle .icon-moon {
    display: none;
}

/* Dark mode specific overrides */
[data-theme="dark"] .nav-mobile-toggle span {
    background: var(--text-dark);
}

[data-theme="dark"] .hero {
    background: var(--gradient-hero);
}

[data-theme="dark"] .problem-card,
[data-theme="dark"] .how-step,
[data-theme="dark"] .reward-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .blog-card {
    background: var(--card-bg);
}

[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
    background: var(--input-bg);
    color: var(--text-dark);
    border-color: var(--border);
}

[data-theme="dark"] .calculator-wrapper,
[data-theme="dark"] .voting-wrapper {
    background: #1E293B;
}

[data-theme="dark"] .voting-category {
    background: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .voting-custom input,
[data-theme="dark"] .voting-contact-field {
    background: rgba(255, 255, 255, 0.06);
    color: #E2E8F0;
    border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .voting-custom input::placeholder,
[data-theme="dark"] .voting-contact-field::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .voting-footer .vote-btn {
    background: var(--primary);
    color: white;
}

[data-theme="dark"] .nav-logo .logo-program {
    color: var(--text-dark);
}

[data-theme="dark"] .lang-select-btn {
    background: var(--bg-light);
    border-color: var(--border);
    color: var(--text-dark);
}

[data-theme="dark"] .lang-select-btn:hover {
    border-color: var(--primary);
    background: #263548;
}

[data-theme="dark"] .lang-select-dropdown {
    background: var(--bg-light);
    border-color: var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .lang-select-dropdown a {
    color: var(--text-dark);
}

[data-theme="dark"] .lang-select-dropdown a:hover {
    background: #263548;
}

[data-theme="dark"] .lang-select-dropdown a.active {
    color: var(--primary);
    background: rgba(0, 180, 180, 0.12);
}

[data-theme="dark"] .feature-image::after {
    opacity: 0.15;
}

@media (max-width: 900px) {

    .nav-links,
    .nav-right {
        display: none;
    }

    .nav-mobile-toggle {
        display: flex;
    }
}

/* ===== HERO ===== */
.hero {
    background: var(--gradient-hero);
    padding: 160px 24px 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 180, 180, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.hero-content {
    /* Text content on the left */
}

.hero-video {
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

.hero-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-lg);
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 180, 180, 0.2);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease forwards;
}

.hero h1 {
    color: white;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    max-width: 800px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

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

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.btn-primary {
    background: var(--accent);
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* ===== SECTIONS COMMON ===== */
.section {
    padding: 100px 24px;
}

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

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

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

.section-label {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 18px;
}

/* ===== STATS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.stat-card {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

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

/* ===== PROBLEMS ===== */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.problem-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.problem-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* ===== USP FEATURES ===== */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 900px) {
    .usp-grid {
        grid-template-columns: 1fr;
    }
}

.usp-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.usp-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
}

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

.usp-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.how-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 60px;
}

.how-tab {
    padding: 14px 28px;
    background: var(--bg-light);
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.how-tab.active {
    background: var(--primary);
    color: white;
}

.how-tab:hover:not(.active) {
    background: var(--border);
}

.how-content {
    display: none;
}

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

.how-steps {
    display: grid;
    gap: 60px;
}

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

.how-step:nth-child(even) {
    direction: rtl;
}

.how-step:nth-child(even)>* {
    direction: ltr;
}

@media (max-width: 800px) {

    .how-step,
    .how-step:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}

.how-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
}

.how-step h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
}

.how-step p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.how-step-image {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.how-step-image:empty {
    display: none;
}

.how-step-image:hover {
    transform: scale(1.02);
}

.how-step-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    max-height: 480px;
    object-fit: contain;
}

/* ===== FEATURE SHOWCASE ===== */
.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 900px) {
    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.feature-showcase.reverse {
    direction: rtl;
}

.feature-showcase.reverse>* {
    direction: ltr;
}

.feature-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-content .lead {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text-dark);
}

.feature-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

.feature-image {
    position: relative;
    display: inline-block;
    align-self: center;
    overflow: visible;
}

.feature-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
}

.feature-image:hover img {
    transform: scale(1.02);
}

.feature-image::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    background: var(--primary);
    opacity: 0.1;
    border-radius: var(--radius-lg);
    z-index: 0;
}

/* ===== VIDEO SECTION ===== */
.video-section {
    background: var(--gradient-hero);
    padding: 80px 24px;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.video-container h2 {
    color: white;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 16px;
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== CALCULATOR ===== */
.calculator-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.calculator-header {
    text-align: center;
    margin-bottom: 40px;
}

.calculator-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
}

.calculator-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.calc-toggle {
    display: flex;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 4px;
    margin-bottom: 32px;
}

.calc-toggle-option {
    flex: 1;
    padding: 14px 20px;
    text-align: center;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-muted);
    transition: all 0.2s;
}

.calc-toggle-option.active {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.calc-slider-container {
    margin-bottom: 40px;
}

.calc-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calc-slider-label {
    font-weight: 600;
    color: var(--secondary);
}

.calc-slider-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

.calc-slider-value span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
}

input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--border);
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 180, 180, 0.4);
    transition: transform 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.calc-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-light);
}

.calc-results {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    padding: 32px;
    color: white;
    text-align: center;
}

.calc-results-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.calc-results-value {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.calc-results-subtitle {
    font-size: 15px;
    opacity: 0.85;
}

.calc-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.calc-breakdown-item {
    text-align: center;
}

.calc-breakdown-value {
    font-size: 24px;
    font-weight: 700;
}

.calc-breakdown-label {
    font-size: 13px;
    opacity: 0.85;
}

/* ===== VOTING ===== */
.voting-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.voting-header {
    text-align: center;
    margin-bottom: 32px;
}

.voting-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
}

.voting-header p {
    color: var(--text-muted);
}

.voting-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

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

@media (max-width: 600px) {
    .voting-categories {
        grid-template-columns: 1fr;
    }
}

.voting-category {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 20px;
}

.voting-category h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.voting-category-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.voting-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: white;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
    color: var(--text-dark);
}

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

.voting-item.selected {
    background: rgba(0, 180, 180, 0.1);
    border-color: var(--primary);
}

.voting-item input[type="checkbox"] {
    display: none;
}

.voting-checkbox {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 10px;
}

.voting-item.selected .voting-checkbox {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.voting-item.selected .voting-checkbox::after {
    content: '✓';
}

.voting-item-text {
    flex: 1;
    line-height: 1.3;
}

.voting-custom {
    margin-bottom: 24px;
}

.voting-custom input {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.2s;
}

.voting-custom input:focus {
    outline: none;
    border-color: var(--primary);
}

.vote-confirmation {
    text-align: center;
    padding: 60px 30px;
    animation: fadeInUp 0.6s ease;
}

.vote-confirmation-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.vote-confirmation h3 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.vote-confirmation p {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 20px;
}

.vote-confirmation-rewards {
    background: #f0fafa;
    border: 2px solid rgba(0, 180, 180, 0.2);
    border-radius: 12px;
    padding: 16px 24px;
    display: inline-block;
    margin-bottom: 20px;
    max-width: 500px;
}

.vote-confirmation-rewards strong {
    display: block;
    color: var(--secondary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.vote-confirmation-rewards span {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
}

.vote-confirmation-note {
    font-size: 14px !important;
    color: #adb5bd !important;
}

/* Spinning wheel */
.wheel-container {
    text-align: center;
    padding: 60px 30px;
}

.wheel-container h3 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 24px;
}

.wheel-wrap {
    position: relative;
    width: 260px;
    height: 260px;
    margin: 0 auto 24px;
}

.wheel-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.wheel-svg {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    box-shadow: 0 0 0 6px var(--secondary), 0 0 0 10px var(--primary), 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.wheel-spinning-text {
    font-size: 16px;
    color: #6c757d;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.voting-contact {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.voting-contact-row {
    display: flex;
    gap: 12px;
}

@media (max-width: 600px) {
    .voting-contact-row {
        flex-direction: column;
    }
}

.voting-contact-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.voting-contact-field input {
    padding: 14px 18px;
    border: 2px solid #d0dae4;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--secondary);
    background: #eef3f7;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.voting-contact-field input:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 180, 180, 0.1);
}

.voting-contact-field input.has-error {
    border-color: #e74c3c;
    background: #fff5f5;
}

.voting-contact-field input.is-valid {
    border-color: #2ecc71;
}

.voting-field-error {
    font-size: 12px;
    color: #e74c3c;
    min-height: 0;
}

.voting-footer {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.voting-submit {
    flex: 1;
    min-width: 200px;
    padding: 18px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.voting-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.voting-submit:disabled {
    background: var(--border);
    cursor: not-allowed;
    transform: none;
}

.voting-count {
    font-size: 14px;
    color: var(--text-muted);
}

.voting-count strong {
    color: var(--primary);
}

.voting-gdpr {
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #6c757d;
    margin-top: 8px;
}

.voting-gdpr a {
    color: var(--primary);
    text-decoration: underline;
}

/* Voting result modal */
.voting-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.voting-modal.active {
    display: flex;
}

.voting-modal-content {
    background: white;
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 0.3s ease;
}

.voting-modal-emoji {
    font-size: 64px;
    margin-bottom: 24px;
}

.voting-modal-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
}

.voting-modal-text {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.voting-modal-coupon {
    background: var(--bg-light);
    border: 2px dashed var(--primary);
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    margin-bottom: 24px;
}

.voting-modal-coupon-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.voting-modal-coupon-code {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    font-family: monospace;
}

.voting-modal-input {
    margin-bottom: 16px;
}

.voting-modal-input input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 16px;
    text-align: center;
}

.voting-modal-input input:focus {
    outline: none;
    border-color: var(--primary);
}

.voting-modal-btn {
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.voting-modal-btn:hover {
    background: var(--primary-dark);
}

.voting-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
}

/* ===== BLOG ARTICLES ===== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

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

@media (max-width: 600px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

.article-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.article-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.article-content {
    padding: 24px;
}

.article-tag {
    display: inline-block;
    background: rgba(0, 180, 180, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.article-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.article-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.article-link:hover {
    gap: 10px;
}

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

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    transition: transform 0.3s, background 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: white;
}

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

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

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

/* ===== CTA SECTION ===== */
/* ===== DEMO FORM ===== */
.demo-section {
    background: var(--gradient-hero);
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 180, 180, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.demo-container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.demo-text {
    color: white;
}

.demo-text .section-badge {
    background: rgba(0, 180, 180, 0.3);
    color: var(--primary);
    border: 1px solid rgba(0, 180, 180, 0.5);
}

.demo-text h2 {
    color: white;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    margin: 20px 0;
    line-height: 1.3;
}

.demo-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.demo-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.demo-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.demo-benefit-icon {
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.demo-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
}

.form-group .required {
    color: #e74c3c;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #e8ecf0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--secondary);
    background: #f8fafb;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 180, 180, 0.1);
}

.form-group input::placeholder {
    color: #adb5bd;
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23adb5bd' fill='none' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-gdpr {
    font-size: 12px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

.form-gdpr a {
    color: var(--primary);
    text-decoration: underline;
}

.form-error {
    font-size: 12px;
    color: #e74c3c;
    margin-top: 2px;
    display: none;
}

.form-group.has-error input,
.form-group.has-error select {
    border-color: #e74c3c;
    background: #fff5f5;
}

.form-group.has-error .form-error {
    display: block;
}

.form-group.is-valid input,
.form-group.is-valid select {
    border-color: var(--primary);
}

.demo-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

.form-success {
    text-align: center;
    padding: 50px 30px;
    background: white;
    border-radius: 20px;
}

.form-success .success-icon {
    display: inline-flex;
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.form-success strong {
    display: block;
    color: var(--secondary);
    font-size: 22px;
    margin-bottom: 8px;
}

.form-success p {
    color: #6c757d;
    font-size: 16px;
    margin: 0;
}

@media (max-width: 900px) {
    .demo-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .demo-text {
        text-align: center;
    }

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

    .demo-form-wrapper {
        padding: 28px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 24px 30px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

@media (max-width: 800px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand h3 {
    color: white;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-brand h3 span {
    color: var(--primary);
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
}

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

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 16px;
}

/* ===== DARK MODE: FOOTER ===== */
[data-theme="dark"] .footer {
    background: #0F172A;
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .footer-brand h3 {
    color: #E2E8F0;
}

[data-theme="dark"] .footer-brand p {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .footer-links h4 {
    color: #E2E8F0;
}

[data-theme="dark"] .footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .footer-links a:hover {
    color: var(--primary);
}

[data-theme="dark"] .footer-bottom {
    color: rgba(255, 255, 255, 0.5);
    border-top-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .footer-bottom a:hover {
    color: var(--primary);
}

[data-theme="dark"] .footer-brand .seo-link {
    color: rgba(0, 180, 180, 0.7);
}

[data-theme="dark"] .footer-brand .seo-link:hover {
    color: var(--primary);
}

/* ===== DARK MODE: VOTING SECTION ===== */
[data-theme="dark"] .voting-item {
    background: rgba(255, 255, 255, 0.06);
    color: #E2E8F0;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .voting-item:hover {
    background: rgba(0, 180, 180, 0.12);
    border-color: var(--primary);
}

[data-theme="dark"] .voting-item.selected {
    background: rgba(0, 180, 180, 0.18);
    border-color: var(--primary);
}

[data-theme="dark"] .voting-checkbox {
    border-color: rgba(255, 255, 255, 0.3);
    background: transparent;
}

[data-theme="dark"] .voting-header h2 {
    color: #E2E8F0;
}

[data-theme="dark"] .voting-header p {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .voting-category h4 {
    color: #E2E8F0;
}

/* ===== GEO INTRO SECTION ===== */
.geo-intro {
    max-width: 1100px;
    margin: 0 auto;
}

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

.geo-col-text p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.geo-col-text p:last-child {
    margin-bottom: 0;
    color: var(--text-muted);
}

.geo-col-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.geo-stat-item {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 18px 16px;
    text-align: center;
    border: 1px solid var(--border);
}

.geo-stat-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.geo-stat-desc {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-top: 4px;
}

/* ===== CASE STUDY ===== */
.case-study-content {
    max-width: 1100px;
    margin: 0 auto;
}

.case-study-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.case-study-main p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.case-study-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.case-study-quote {
    padding: 24px;
    background: var(--gradient-hero);
    border-radius: var(--radius-md);
}

.case-study-quote blockquote {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    margin: 0;
    padding-left: 20px;
    border-left: 3px solid var(--primary);
}

.case-study-takeaway {
    background: var(--bg-light);
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-muted);
}

.case-study-takeaway strong {
    color: var(--primary-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        padding: 120px 24px 80px;
    }

    .section {
        padding: 60px 24px;
    }

    .geo-columns {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .geo-col-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .case-study-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .calculator-wrapper,
    .voting-wrapper {
        padding: 32px 24px;
    }
}


/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--secondary, #1a2b3c);
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 24px;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.cookie-banner-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.cookie-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--primary, #00b4b4);
    color: white;
}

.cookie-btn-accept:hover {
    background: #009999;
    transform: translateY(-1px);
}

.cookie-btn-reject {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.25);
}

.cookie-btn-reject:hover {
    background: rgba(255,255,255,0.08);
    color: white;
}

@media (max-width: 640px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
    .cookie-banner-text {
        flex-direction: column;
    }
    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
}
