/* ========================================
   River Studio - Modern Dark Theme Styles
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --bg-dark: #0b0d17;
    --bg-darker: #060810;
    --card-bg: rgba(15, 18, 30, 0.7);
    --input-bg: rgba(20, 25, 40, 0.6);
    --border: rgba(255, 255, 255, 0.1);

    /* Accent Colors */
    --accent-cyan: #00f0ff;
    --accent-purple: #a855f7;
    --accent-blue: #3b82f6;
    --accent-green: #22c55e;
    --accent-red: #ef4444;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #718096;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    --gradient-secondary: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    --gradient-premium: linear-gradient(135deg, #ffd700, #ff8c00);

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 20px;

    /* Effects */
    --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.5);
    --glow-purple: 0 0 20px rgba(168, 85, 247, 0.5);
    --glow-blue: 0 0 20px rgba(59, 130, 246, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.hero {
    margin-top: 30px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 13, 23, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: brightness(1.2) contrast(1.1);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-switch:hover {
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-video {
    margin: 40px 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    background: var(--card-bg);
    border: 2px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.2);
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 80px rgba(0, 240, 255, 0.4);
    transform: translateY(-5px);
}

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

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Animated Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

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

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-cyan);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-purple);
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-blue);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float {

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

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(0, 240, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: var(--glow-cyan);
}

.btn-block {
    width: 100%;
}

/* ========================================
   Marquee Banner (Header)
   ======================================== */
.marquee-banner {
    background: linear-gradient(90deg, #0ea5e9, #22d3ee);
    color: white;
    /* Changed to white for better contrast on blue */
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1001;
    /* Ensure it's above other header elements */
    font-size: 14px;
    font-weight: 600;
}

.marquee-content {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   Section Styles
   ======================================== */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

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

/* ========================================
   New Pricing Section Styles
   ======================================== */
.pricing {
    background: var(--bg-darker);
}

.billing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.billing-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
}

.save-badge {
    margin-left: 8px;
    display: inline-block;
    border-radius: 9999px;
    background-color: rgba(34, 197, 94, 0.2);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #4ade80;
}

.billing-toggle {
    position: relative;
    display: inline-flex;
    height: 32px;
    width: 64px;
    align-items: center;
    border-radius: 16px;
    background-color: #374151;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

.toggle-circle {
    display: inline-block;
    height: 24px;
    width: 24px;
    transform: translateX(4px);
    border-radius: 50%;
    background-color: white;
    transition: transform 0.2s;
}

.toggle-circle.translate-x-9 {
    transform: translateX(36px);
}

.bg-cyan-600 {
    background-color: #0891b2 !important;
}

/* Pricing Grid New */
.pricing-grid-new {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 968px) {
    .pricing-grid-new {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.pricing-card-new {
    background-color: rgba(31, 41, 55, 0.5);
    border: 1px solid #374151;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card-new:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
}

.featured-new {
    background-color: #1f2937;
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.3);
    z-index: 10;
}

@media (min-width: 968px) {
    .featured-new {
        transform: scale(1.08);
    }
}

.featured-badge-new {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

.plan-name {
    font-size: 20px;
    font-weight: 600;
    color: #d1d5db;
}

.plan-name-featured {
    font-size: 24px;
    color: white;
}

.plan-desc {
    font-size: 14px;
    color: #6b7280;
    margin-top: 8px;
}

.plan-desc-featured {
    color: #a5f3fc;
}

.plan-price {
    margin: 24px 0;
}

.price-amount-new {
    font-size: 36px;
    font-weight: 800;
    color: white;
}

.price-amount-featured {
    font-size: 48px;
}

.price-period-new {
    color: #6b7280;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 12px 24px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-plan-outline {
    border: 1px solid #4b5563;
    color: #d1d5db;
}

.btn-plan-outline:hover {
    background-color: #374151;
}

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

.btn-plan-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

.guarantee-text {
    font-size: 12px;
    text-align: center;
    color: #6b7280;
    margin-top: 12px;
}

.features-divider {
    border-top: 1px solid #374151;
    margin: 24px 0;
}

.plan-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    color: #9ca3af;
    padding: 8px 0;
    gap: 12px;
}

.plan-features-featured li {
    color: #d1d5db;
}

.feature-highlight {
    color: white !important;
    font-weight: 600;
}

.feature-special {
    background-color: rgba(55, 65, 81, 0.5);
    padding: 8px 12px;
    border-radius: 8px;
    margin: 0 -12px;
}

.feature-special-text {
    color: #facc15;
    font-weight: 700;
}

/* Icon sizing */
.icon-check,
.icon-lightning,
.icon-purple,
.icon-check-featured,
.icon-gift {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0;
}

.icon-check {
    color: #22c55e;
}

.icon-check-featured {
    color: #00f0ff;
    width: 24px !important;
    height: 24px !important;
}

.icon-lightning {
    color: #facc15;
}

.icon-purple {
    color: #a855f7 !important;
}

.icon-gift {
    color: #ec4899;
}

/* ========================================
   Features Section
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent-purple);
    box-shadow: var(--glow-purple);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--text-secondary);
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

/* Background trang trí nhẹ cho đỡ trống */
.testimonials::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent-purple);
    filter: blur(120px);
    opacity: 0.1;
    top: 20%;
    left: -100px;
    border-radius: 50%;
    z-index: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(20, 25, 40, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    background: rgba(20, 25, 40, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quote-icon {
    font-size: 40px;
    color: var(--accent-cyan);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 15px;
    font-family: serif;
}

.review-text {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    opacity: 0.9;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-purple);
}

.reviewer-meta {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

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

.proof-img {
    width: 100%;
    border-radius: 12px;
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.proof-img:hover {
    transform: scale(1.02);
    border-color: var(--accent-cyan);
}

/* Responsive cho mobile */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    background: var(--bg-darker);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-subtitle {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 16px;
    color: var(--text-primary);
    text-decoration: none;
}

.contact-value:hover {
    color: var(--accent-cyan);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s;
}

.contact-link:hover {
    color: var(--accent-cyan);
    transform: translateX(5px);
}

.contact-link img {
    border-radius: 4px;
}

.contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: white;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-cyan);
    outline: none;
}

/* ========================================
   Footer
   ======================================== */
/* ========================================
   Footer
   ======================================== */
.footer {
    background: #0B0D17;
    /* Darker background like reference */
    border-top: none;
    padding: 80px 0 40px;
    font-size: 14px;
}

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

.footer-desc {
    color: #94A3B8;
    line-height: 1.6;
    margin-top: 20px;
    max-width: 400px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Only 2 columns now */
    gap: 40px;
}

.footer-col h4 {
    color: var(--accent-cyan);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    color: #94A3B8;
    text-decoration: none;
    margin-bottom: 15px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

/* Custom override for GTranslate Floating Widget to make it white */
#goog-gt-tt {
    display: none !important;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}

/* Note: The GTranslate float.js injects widespread styles. 
   We try to override the wrapper if possible, but the floating widget is largely controlled by its own iframe/script.
   However, user asked to change background to white. 
   If it's the floating widget, it's usually automatic. 
   If it's the wrapper we removed, we don't need to style it. 
   We'll add a general override just in case. */


.footer-col h4 {
    margin-bottom: 15px;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

/* Floating Zalo */
.zalo-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.zalo-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.5);
}

.zalo-float svg {
    width: 40px;
    height: 40px;
    color: white;
}

/* Mobile */
@media (max-width: 968px) {
    .nav {
        display: none;
    }

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

    .contact-wrapper,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .featured-new {
        transform: scale(1);
        margin: 20px 0;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-cta {
        flex-direction: column;
    }

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

/* ========================================
   New Pricing Elements Styles
   ======================================== */

/* Urgency & Limited Badges */
.urgency-badge,
.limited-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    animation: pulse 2s infinite;
}

.limited-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.slots-remaining {
    font-weight: 900;
    font-size: 14px;
}

/* Countdown Timer */
.countdown-timer {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 16px;
}

#countdown {
    font-weight: 800;
    color: #ef4444;
    font-family: 'Courier New', monospace;
}

/* ROI Highlights */
.roi-highlight,
.roi-calculator-mini {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
    font-size: 13px;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    text-align: center;
}

.roi-label {
    font-weight: 700;
}

/* Case Study Mini */
.case-study-mini {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #93c5fd;
    font-size: 13px;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
}

/* Bonus & Savings Badges */
.bonus-badge,
.savings-badge {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 12px;
    text-align: center;
    margin: 16px 0;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.savings-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* ========================================
   Comparison Table Styles
   ======================================== */
.comparison-section {
    background: var(--bg-dark);
    padding: 80px 20px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 16px;
    background: rgba(15, 18, 30, 0.5);
    border: 1px solid var(--border);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table thead {
    background: rgba(20, 25, 40, 0.8);
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border);
}

.comparison-table .feature-category {
    color: var(--accent-cyan);
    font-size: 16px;
}

.comparison-table .plan-column {
    text-align: center;
    font-size: 18px;
}

.comparison-table .featured-column {
    background: rgba(0, 240, 255, 0.05);
    border-left: 2px solid var(--accent-cyan);
    border-right: 2px solid var(--accent-cyan);
    position: relative;
}

.recommended-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    margin-top: 4px;
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table td {
    padding: 16px 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

.comparison-table .featured-cell {
    background: rgba(0, 240, 255, 0.03);
    color: var(--text-primary);
    font-weight: 500;
}

.comparison-table .category-header td {
    background: rgba(20, 25, 40, 0.6);
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 15px;
    padding: 16px 20px;
    border-top: 2px solid var(--border);
}

.table-note {
    padding: 20px;
    background: rgba(239, 68, 68, 0.05);
    border-top: 1px solid var(--border);
    text-align: center;
}

.table-note p {
    color: var(--text-secondary);
    font-size: 13px;
    margin: 0;
}

.comparison-cta {
    text-align: center;
    margin-top: 40px;
}

/* ========================================
   Guarantee Section Styles
   ======================================== */
.guarantee-section {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin: 60px auto;
    max-width: 900px;
    text-align: center;
}

.guarantee-section h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.guarantee-section .guarantee-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.guarantee-section p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.guarantee-section strong {
    color: var(--accent-cyan);
    font-weight: 700;
}

/* Responsive Comparison Table */
@media (max-width: 968px) {
    .comparison-table {
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }

    .comparison-table .plan-column {
        font-size: 14px;
    }
}

/* ========================================
   Affiliate Page Styles
   ======================================== */
.affiliate-page {
    background: var(--bg-dark);
}

.affiliate-hero-simple,
.dashboard-hero {
    padding: 140px 0 60px;
    background: radial-gradient(circle at top center, rgba(0, 240, 255, 0.05), transparent);
}

.glass-card {
    background: rgba(20, 25, 40, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Referral Box */
.referral-box {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.box-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.referral-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    background: var(--input-bg);
    padding: 8px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.referral-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--accent-cyan);
    font-family: monospace;
    font-size: 16px;
    padding: 10px;
    outline: none;
}

.referral-note {
    font-size: 14px;
    color: var(--text-secondary);
}

.highlight {
    color: var(--accent-red);
    font-weight: 600;
}

/* Stats Grid */
.affiliate-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

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

.icon-cyan {
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-cyan);
}

.icon-purple {
    background: rgba(168, 85, 247, 0.1);
    color: var(--accent-purple);
}

.icon-green {
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-green);
}

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

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

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

/* History Sections */
.history-container.single-column {
    display: block;
    margin-bottom: 60px;
}

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

/* Withdrawal Form Container (On-page) */
.withdrawal-form-container {
    max-width: 700px;
    margin: 40px auto;
}

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

.form-row .form-group {
    flex: 1;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.compact-form label {
    font-weight: 500;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.table-responsive {
    overflow-x: auto;
}

.affiliate-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.affiliate-table th {
    padding: 12px 15px;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.affiliate-table td {
    padding: 15px;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px dotted rgba(255, 255, 255, 0.05);
}

.badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.text-cyan {
    color: var(--accent-cyan);
    font-weight: 600;
}

/* Info Section */
.affiliate-info-section {
    padding: 60px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.info-card {
    text-align: center;
}

.info-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.info-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

.nav-link.active {
    color: var(--accent-cyan);
}

.nav-link.active::after {
    width: 100%;
}

/* ========================================
   Affiliate Info Cards (Horizontal Layout)
   ======================================== */
.info-card-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 40px;
}

.info-card-icon {
    font-size: 32px;
    flex-shrink: 0;
    background: rgba(0, 240, 255, 0.1);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.info-card-content {
    flex: 1;
}

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

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-12 {
    margin-top: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-4xl {
    max-width: 56rem;
}

.space-y-8>*+* {
    margin-top: 2rem;
}

/* Responsive: Stack vertically on mobile */
@media (max-width: 768px) {
    .info-card-horizontal {
        flex-direction: column;
        padding: 24px;
    }
}

/* ========================================
   Story Section (Index Page)
   ======================================== */
.story-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--accent-purple);
    filter: blur(150px);
    opacity: 0.1;
    top: 10%;
    right: -100px;
    border-radius: 50%;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-badge {
    display: inline-block;
    background: rgba(168, 85, 247, 0.2);
    color: var(--accent-purple);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 30px;
}

.highlight-red {
    color: #ef4444;
}

.highlight-text {
    color: var(--accent-purple);
}

.highlight-cyan {
    color: var(--accent-cyan);
}

.story-schedule {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.schedule-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 3px solid var(--accent-cyan);
}

.schedule-item .time {
    color: var(--accent-cyan);
    font-weight: 700;
    margin-right: 8px;
}

.story-truth {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-metaphor {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    padding: 20px;
    background: rgba(0, 240, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--accent-cyan);
    margin-bottom: 50px;
}

.story-solution {
    margin-bottom: 50px;
}

.solution-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.system-card {
    background: rgba(31, 41, 55, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.system-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
}

.system-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.system-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.system-compare {
    margin-bottom: 15px;
}

.system-compare .before {
    color: #f87171;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.system-compare .after {
    color: #4ade80;
    font-size: 0.9rem;
}

.system-stats {
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.system-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.lesson-box {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
}

.lesson-text {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.strike {
    text-decoration: line-through;
    color: #f87171;
}

.lesson-cta {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.story-btn {
    margin-bottom: 15px;
}

.story-learn-more {
    display: inline-block;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.story-learn-more:hover {
    text-decoration: underline;
}

/* ========================================
   Story Page (story.html)
   ======================================== */
.story-page {
    background: var(--bg-dark);
}

.header-minimal {
    background: rgba(11, 13, 23, 0.95);
    border-bottom: 1px solid var(--border);
}

.header-minimal .header-content {
    padding: 15px 0;
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

.story-hero {
    padding: 150px 20px 80px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.story-hero-content {
    position: relative;
    z-index: 2;
}

.story-label {
    display: inline-block;
    background: rgba(0, 240, 255, 0.15);
    color: var(--accent-cyan);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.story-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.story-hero-date {
    color: var(--text-muted);
    font-size: 1.2rem;
    font-style: italic;
}

.story-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.orb-story-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-cyan);
    top: -150px;
    left: -150px;
}

.orb-story-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-purple);
    bottom: -100px;
    right: -100px;
}

/* Story Blocks */
.story-block {
    padding: 80px 20px;
}

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

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

.number-highlight {
    font-size: 4rem;
    font-weight: 800;
    color: #ef4444;
    display: block;
}

.daily-routine {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.routine-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 3px solid var(--accent-purple);
}

.routine-time {
    font-size: 1.5rem;
}

.routine-task {
    color: var(--text-secondary);
}

.story-emphasis {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.story-confession {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.text-danger {
    color: #ef4444;
    font-weight: 700;
}

/* Burnout Illustration */
.burnout-illustration {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.burnout-icon {
    font-size: 5rem;
    margin-bottom: 30px;
}

.burnout-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

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

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ef4444;
}

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

/* Truth Section */
.story-truth-section {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.truth-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.truth-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.truth-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.truth-item {
    font-size: 1.2rem;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.truth-wrong {
    background: rgba(239, 68, 68, 0.1);
    color: var(--text-secondary);
}

.truth-x {
    color: #ef4444;
    font-weight: 700;
    font-size: 1.5rem;
}

.truth-right {
    background: rgba(34, 197, 94, 0.15);
    color: var(--text-primary);
}

.truth-check {
    color: #22c55e;
    font-weight: 700;
    font-size: 1.5rem;
}

.truth-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-secondary);
    padding: 30px;
    background: rgba(0, 240, 255, 0.05);
    border-radius: 16px;
    border-left: 4px solid var(--accent-cyan);
    margin: 0;
}

/* Systems Section */
.story-systems {
    background: var(--bg-darker);
}

.systems-main-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
}

.system-detail {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(31, 41, 55, 0.4);
    border-radius: 20px;
    border: 1px solid var(--border);
}

@media (max-width: 768px) {
    .system-detail {
        flex-direction: column;
        gap: 20px;
    }
}

.system-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 240, 255, 0.2);
    line-height: 1;
}

.system-content {
    flex: 1;
}

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

.system-icon-large {
    font-size: 2.5rem;
}

.system-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.before-after {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.before-box,
.after-box {
    padding: 20px 25px;
    border-radius: 12px;
    text-align: center;
    min-width: 180px;
}

.before-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.after-box {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.before-box .label {
    color: #f87171;
}

.after-box .label {
    color: #4ade80;
}

.before-box .value,
.after-box .value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin: 10px 0;
}

.before-box .value {
    color: #ef4444;
}

.after-box .value {
    color: #22c55e;
}

.before-box .desc,
.after-box .desc {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.arrow {
    font-size: 2rem;
    color: var(--accent-cyan);
}

.system-benefit {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.notion-features {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.notion-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--accent-cyan);
}

.system-insight {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.okr-timeline {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 15px 20px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 12px;
    border-left: 3px solid var(--accent-purple);
}

.timeline-date {
    color: var(--accent-purple);
    font-weight: 700;
    min-width: 100px;
}

.timeline-event {
    color: var(--text-primary);
}

/* Myths Section */
.story-myths {
    background: var(--bg-dark);
}

.myths-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.myths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.myth-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.myth-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-5px);
}

.myth-wrong {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 15px;
    text-decoration: line-through;
}

.myth-arrow {
    color: var(--accent-cyan);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.myth-right {
    color: var(--text-primary);
    font-size: 1rem;
}

/* Lesson Section */
.story-lesson-full {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

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

.lesson-title {
    font-size: 2rem;
    margin-bottom: 30px;
}

.lesson-main {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.lesson-highlight {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.strike-through {
    text-decoration: line-through;
    color: #ef4444;
}

.text-cyan {
    color: var(--accent-cyan);
    font-weight: 700;
}

.lesson-solution {
    background: rgba(0, 240, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.lesson-solution p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.text-gold {
    color: #fbbf24;
}

.lesson-tagline {
    background: var(--gradient-primary);
    padding: 25px 40px;
    border-radius: 12px;
    display: inline-block;
}

.tagline-main {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

/* Solution CTA */
.story-solution-cta {
    background: var(--bg-darker);
}

.solution-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(168, 85, 247, 0.1));
    border: 2px solid var(--accent-cyan);
    border-radius: 24px;
}

.solution-box h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.solution-features {
    text-align: left;
    margin-bottom: 40px;
}

.solution-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.check-icon {
    color: #22c55e;
    font-size: 1.2rem;
}

.solution-cta {
    margin-top: 30px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.cta-subtext {
    margin-top: 20px;
    color: var(--text-secondary);
}

/* Poll Section */
.story-poll {
    background: var(--bg-dark);
}

.poll-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: rgba(31, 41, 55, 0.5);
    border-radius: 20px;
}

.poll-box h3 {
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.poll-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
}

.poll-option {
    padding: 15px 25px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--accent-cyan);
    border-radius: 50px;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.poll-option:hover {
    background: var(--accent-cyan);
    color: var(--bg-dark);
}

.poll-none {
    background: rgba(168, 85, 247, 0.1);
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

.poll-none:hover {
    background: var(--accent-purple);
    color: white;
}

.poll-cta {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 240, 255, 0.8);
    }
}

.floating-cta .btn {
    border-radius: 50px;
}

/* Minimal Footer */
.footer-minimal {
    background: var(--bg-darker);
    padding: 30px 20px;
    border-top: 1px solid var(--border);
}

.footer-content-minimal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content-minimal p {
    color: var(--text-muted);
}

/* Responsive Story Section */
@media (max-width: 768px) {
    .story-title {
        font-size: 1.8rem;
    }

    .story-schedule {
        grid-template-columns: 1fr;
    }

    .story-hero-title {
        font-size: 2rem;
    }

    .number-highlight {
        font-size: 3rem;
    }

    .systems-main-title {
        font-size: 1.6rem;
    }

    .before-after {
        flex-direction: column;
    }

    .arrow {
        transform: rotate(90deg);
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .floating-cta .btn {
        width: 100%;
    }
}
/* GTranslate inline switcher - Vinco style */
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 118px;
}
.header-actions .gtranslate_wrapper,
.header-actions #gt_float_wrapper,
.header-actions .gt_float_switcher {
    position: static !important;
    inset: auto !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    z-index: 1001 !important;
}
.header-actions .gt_float_switcher {
    background: rgba(15, 18, 30, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 999px !important;
    box-shadow: none !important;
    font-family: 'Inter', sans-serif !important;
    overflow: visible !important;
}
.header-actions .gt_float_switcher .gt-selected,
.header-actions .gt_float_switcher .gt-current-lang {
    background: transparent !important;
    color: #ffffff !important;
    padding: 7px 10px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}
.header-actions .gt_float_switcher img {
    width: 22px !important;
    height: 16px !important;
    border-radius: 2px !important;
    object-fit: cover !important;
}
.header-actions .gt_options {
    background: #0b0d17 !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 14px !important;
    box-shadow: 0 18px 45px rgba(0,0,0,0.38) !important;
    margin-top: 8px !important;
    overflow: hidden !important;
}
.header-actions .gt_options a {
    color: #ffffff !important;
    font-size: 13px !important;
}
@media (max-width: 768px) {
    .header-actions { min-width: auto; }
    .header-actions .gt_float_switcher .gt-selected,
    .header-actions .gt_float_switcher .gt-current-lang { padding: 6px 8px !important; }
}