/* Homepage Styles - SinterklaasOnline */

:root {
    --primary-color: #C41E3A;  /* Sinterklaas red */
    --secondary-color: #FFD700; /* Gold */
    --dark-color: #1a1a1a;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-700: #495057;
    --gray-900: #212529;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: transparent;
    padding: 80px 20px;
    min-height: auto;
}

.hero-split {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

/* LEFT SIDE - Video */
.hero-video {
    position: relative;
    /* border-radius: 24px;
    overflow: hidden;
    /* box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    /* max-width: 450px; /* Constrain width so it doesn't get too tall */
    height: 430px;
    width:300px;
    margin:auto;
}

.hero-video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    clip-path: inset(0 0 2% 0); /* Crops: top right bottom left */
    /* transform: scale(1.7); /* Zoom in to crop more */
}

@media (max-width: 1024px) {
    .hero-video {
        height: 415px;
        width:290px;
    }

    .hero-video video {
    }
}

/* RIGHT SIDE - Form */
.hero-form {
    padding: 20px;
}

.hero-form h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-form .subtext {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

/* Signup Box */
.signup-box {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.signup-box input[type="email"],
.signup-box input[type="password"] {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.signup-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.hero-cta-btn {
    width: 100%;
    padding: 18px 32px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.hero-cta-btn:hover {
    background: #a81829;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
}

.hero-cta-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.trust-line {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin: 0;
}

.login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
    color: #666;
}

.login-link a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Logged in message */
.logged-in-message {
    text-align: center;
    padding: 40px 32px;
}

.logged-in-message h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.logged-in-message p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

.balance-highlight {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 24px 0;
}

/* Testimonial Bar */
.testimonial-bar {
    background: #f8f9fa;
    padding: 24px 0;
    overflow: hidden;
}

.testimonials-scroll {
    display: flex;
    gap: 48px;
    animation: scroll 30s linear infinite;
}

.testimonial-item {
    min-width: 300px;
    text-align: center;
    padding: 0 20px;
}

.testimonial-item .stars {
    color: #FFB800;
    font-size: 18px;
    margin-bottom: 8px;
}

.testimonial-item p {
    font-size: 15px;
    font-style: italic;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.testimonial-item span {
    font-size: 13px;
    color: #666;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero {
        padding: 60px 20px;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-form h1 {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 40px 16px;
    }
    
    .hero-form {
        padding: 0;
    }
    
    .hero-form h1 {
        font-size: 32px;
        text-align: center;
    }
    
    .hero-form .subtext {
        font-size: 16px;
        text-align: center;
    }
    
    .signup-box {
        padding: 24px 20px;
    }
    
    .hero-cta-btn {
        font-size: 16px;
        padding: 16px;
    }
    
    .testimonial-item {
        min-width: 250px;
    }
}

/* Promo Code Styles */
.promo-toggle {
    text-align: center;
    margin: 0 0;
}

.promo-toggle a {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}

.promo-toggle a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.promo-input-wrapper {
    margin-bottom: 16px;
}

.promo-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.promo-input-container input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.promo-input-container input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.promo-input-container input.valid {
    border-color: #4CAF50;
}

.promo-input-container input.invalid {
    border-color: #f44336;
}

.promo-status {
    position: absolute;
    right: 16px;
    font-size: 20px;
    pointer-events: none;
}

.promo-status.checking {
    color: #999;
}

.promo-status.valid {
    color: #4CAF50;
}

.promo-status.invalid {
    color: #f44336;
}

.promo-message {
    font-size: 13px;
    margin-top: 8px;
    padding-left: 4px;
}

.promo-message.success {
    color: #4CAF50;
}

.promo-message.error {
    color: #f44336;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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


/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 600px;
}

.hero-content {
    order: 2;
}

.hero-video {
    order: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-700);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Add to homepage.css or in <style> block */

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 40px 20px;
}

.hero-split {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

/* RIGHT SIDE - Form */
.hero-form {
    padding: 40px;
    order: 2
}

.hero-form h1 {
    font-size: 52px;
    font-weight: 800;
    color: black;
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-form .subtext {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 32px;
}

/* Signup Box */
.signup-box {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.signup-box input[type="email"],
.signup-box input[type="password"] {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.signup-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.hero-cta-btn {
    width: 100%;
    padding: 18px 32px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.hero-cta-btn:hover {
    background: #a81829;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
}

.trust-line {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin: 0;
}

.login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
}

.login-link a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-form h1 {
        font-size: 40px;
    }
    
    .hero-video {
        order: 1;
    }
    
    .hero-form {
        padding: 20px;
        order: 2;
    }
    
    .signup-box {
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: auto;
        padding: 30px 16px;
    }
    
    .hero-form h1 {
        font-size: 32px;
    }
    
    .hero-form .subtext {
        font-size: 16px;
    }
    
    .signup-box {
        padding: 20px;
    }
    
    .hero-cta-btn {
        font-size: 16px;
        padding: 16px;
    }
}

.testimonial-bar {
    background: #f8f9fa;
    padding: 24px 0;
    overflow: hidden;
}

.testimonials-scroll {
    display: flex;
    gap: 48px;
    animation: scroll 30s linear infinite;
}

.testimonial-item {
    min-width: 300px;
    text-align: center;
    padding: 0 20px;
}

.testimonial-item .stars {
    color: #FFB800;
    font-size: 18px;
    margin-bottom: 8px;
}

.testimonial-item p {
    font-size: 15px;
    font-style: italic;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.testimonial-item span {
    font-size: 13px;
    color: #666;
}

/* Infinite scroll animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Duplicate testimonials for seamless loop */
.testimonials-scroll::after {
    content: '';
    display: flex;
    gap: 48px;
}

@media (max-width: 768px) {
    .testimonial-item {
        min-width: 250px;
    }
}

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

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

.btn-primary:hover {
    background: #a81829;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.btn-secondary {
    background: var(--gray-200);
    color: var(--dark-color);
}

.btn-secondary:hover {
    background: var(--gray-300);
    transform: translateY(-2px);
}

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

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

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* Features Section */
.features {
    background: var(--light-bg);
    padding: 100px 20px;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 60px;
}

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

.feature-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-color), #e63950);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--gray-700);
    line-height: 1.7;
}

/* Pricing Section */
.pricing {
    padding: 100px 20px;
    background: var(--white);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 48px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), #e63950);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark-color);
}

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

.currency {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-700);
}

.price {
    font-size: 72px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.period {
    font-size: 18px;
    color: var(--gray-700);
}

.pricing-features {
    list-style: none;
    margin: 32px 0 40px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--gray-700);
    font-size: 16px;
}

.pricing-features svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color), #e63950);
    padding: 100px 20px;
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

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

.cta .btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.cta .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

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

/* Shared Auth Form Styles */
.auth-error {
    background: #ffebee;
    color: #c62828;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #c62828;
    font-size: 15px;
}

.auth-form .form-field {
    margin-bottom: 20px;
}

.auth-form .form-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
}

.auth-form .form-field input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
}

.auth-form .form-field input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.register-footer {
    text-align: center;
    color: var(--gray-700);
    font-size: 15px;
}
.register-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .price {
        font-size: 56px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background: #ffffff;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-it-works-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    text-align: center;
}

.step-visual {
    position: relative;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
}

.step-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
}

.how-it-works-cta {
    text-align: center;
    margin-top: 60px;
}

.how-it-works-cta .cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #C41E3A, #a81829);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.3);
}

.how-it-works-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.cta-note {
    margin-top: 12px;
    font-size: 14px;
    color: #666666;
}

/* Mobile responsive */
@media (max-width: 968px) {
    .how-it-works {
        padding: 60px 20px;
    }
    
    .how-it-works-header h2 {
        font-size: 32px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .step-visual {
        max-width: 400px;
        height: 500px;
        margin: 0 auto 30px;
    }
}

@media (max-width: 480px) {
    .how-it-works-header h2 {
        font-size: 28px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-description {
        font-size: 15px;
    }
    
    .step-visual {
        height: 450px;
    }
}

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background: #f8f9fa;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-700);
    text-align: center;
    margin-bottom: 48px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.benefit-icon {
    color: var(--primary-color);
    margin-bottom: 16px;
}

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

.benefit-card p {
    color: var(--gray-700);
    line-height: 1.6;
    font-size: 15px;
}

/* Use Cases Section */
.use-cases {
    padding: 80px 20px;
    background: white;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 32px;
}

.use-case {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.use-case h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.use-case p {
    color: var(--gray-700);
    line-height: 1.6;
    font-size: 15px;
}

.use-cases-note {
    text-align: center;
    max-width: 700px;
    margin: 32px auto 0;
    padding: 24px;
    background: #fff5f7;
    border-radius: 12px;
}

.use-cases-note p {
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.6;
}

/* Quick Info Section */
.quick-info {
    padding: 80px 20px;
    background: #f8f9fa;
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 32px;
}

.info-column {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.info-column h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.info-column p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 15px;
}

.info-column ul {
    margin: 16px 0;
    padding-left: 24px;
}

.info-column ul li {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 8px;
    font-size: 15px;
}

.info-column a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.info-column a:hover {
    text-decoration: underline;
}

.faq-cta {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.faq-cta p {
    font-size: 16px;
    color: var(--gray-700);
}

.faq-cta a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .benefits-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .benefit-card,
    .info-column {
        padding: 24px;
    }
}