/**
 * Home page — You drink / I drive.
 * Modern, conversion-focused design with animations
 */

/* ===== 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(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

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

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

/* ===== Hero Section ===== */
.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    padding: clamp(2.5rem, 6vw, 5rem);
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(99, 102, 241, 0.35), transparent 60%),
        radial-gradient(circle at 70% 20%, rgba(14, 116, 144, 0.25), transparent 55%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(3, 7, 18, 0.95));
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 30px 60px rgba(2, 6, 23, 0.4);
    color: #e2e8f0;
    animation: fadeIn 0.8s ease-out;
    position: relative;
    margin-top: var(--space-4);
}

.home-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.home-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 116, 144, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.theme-light .home-hero {
    background:
        radial-gradient(circle at top left, rgba(79, 70, 229, 0.18), transparent 60%),
        radial-gradient(circle at 70% 20%, rgba(14, 116, 144, 0.16), transparent 55%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(226, 232, 240, 0.9));
    color: #0f172a;
}

.home-hero__badge-group {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
    animation: slideInLeft 0.6s ease-out;
    position: relative;
    z-index: 1;
}

.home-hero__badge-icon {
    width: 20px;
    height: 20px;
    color: #a5b4fc;
}

.theme-light .home-hero__badge-icon {
    color: #4338ca;
}

.home-hero__kicker {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.8);
    margin: 0;
}

.theme-light .home-hero__kicker {
    color: rgba(15, 23, 42, 0.6);
}

.home-hero__title {
    font-size: clamp(2.2rem, 2.5vw + 1.5rem, 3.4rem);
    line-height: 1.1;
    margin: 0 0 var(--space-4);
    animation: fadeInUp 0.7s ease-out;
    position: relative;
    z-index: 1;
}

.home-hero__title-line {
    display: block;
    margin-bottom: var(--space-2);
}

.home-hero__title-highlight {
    display: block;
    color: #a5b4fc;
    background: linear-gradient(90deg, #a5b4fc 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.7s ease-out 0.2s both;
}

.home-hero__title-line {
    display: block;
    margin-bottom: var(--space-2);
}

.home-hero__title-highlight {
    display: block;
    color: #a5b4fc;
    background: linear-gradient(90deg, #a5b4fc 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.7s ease-out 0.2s both;
}

.theme-light .home-hero__title-highlight {
    background: linear-gradient(90deg, #4338ca 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-hero__subtitle {
    margin: 0 0 var(--space-6);
    max-width: 32rem;
    color: rgba(226, 232, 240, 0.82);
    font-size: 1.1rem;
    line-height: 1.6;
    animation: fadeInUp 0.7s ease-out 0.3s both;
    position: relative;
    z-index: 1;
}

.theme-light .home-hero__subtitle {
    color: #334155;
}

/* ===== CTA Buttons ===== */
.home-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.7s ease-out 0.4s both;
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.875rem 1.75rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-register {
    background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.btn-login {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.3);
    backdrop-filter: blur(10px);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(148, 163, 184, 0.5);
    transform: translateY(-2px);
}

.theme-light .btn-login {
    background: rgba(15, 23, 42, 0.05);
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.15);
}

.theme-light .btn-login:hover {
    background: rgba(15, 23, 42, 0.1);
}

.btn-profile {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.btn-profile:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-dashboard {
    background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-dashboard:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.btn-register--large,
.btn-login--large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

/* ===== Stats Section ===== */
.home-hero__stats {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    animation: scaleIn 0.6s ease-out 0.5s both;
    position: relative;
    z-index: 1;
}

.theme-light .home-hero__stats {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(15, 23, 42, 0.1);
}

.home-hero__stat {
    text-align: center;
    flex: 1;
}

.home-hero__stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #a5b4fc 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.theme-light .home-hero__stat-number {
    background: linear-gradient(90deg, #4338ca 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-hero__stat-label {
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.8);
    margin-top: var(--space-1);
}

.theme-light .home-hero__stat-label {
    color: rgba(15, 23, 42, 0.6);
}

.home-hero__stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(148, 163, 184, 0.3), transparent);
}

/* ===== Badges ===== */
.home-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    animation: fadeInUp 0.6s ease-out 0.6s both;
    position: relative;
    z-index: 1;
}

.home-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(15, 23, 42, 0.5);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.2s ease;
}

.home-hero__badge:hover {
    background: rgba(15, 23, 42, 0.6);
    transform: translateY(-2px);
}

.home-hero__badge-svg {
    width: 16px;
    height: 16px;
    color: #a5b4fc;
}

.theme-light .home-hero__badge {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.1);
}

.theme-light .home-hero__badge:hover {
    background: rgba(255, 255, 255, 1);
}

.theme-light .home-hero__badge-svg {
    color: #4338ca;
}

/* ===== Panel Section ===== */
.home-hero__panel {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    animation: slideInRight 0.7s ease-out 0.3s both;
    position: relative;
    z-index: 1;
}

.home-hero__panel-card {
    padding: var(--space-5);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
}

.home-hero__panel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.theme-light .home-hero__panel-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.1);
}

.home-hero__panel-card--glass {
    background: rgba(30, 41, 59, 0.45);
}

.theme-light .home-hero__panel-card--glass {
    background: rgba(248, 250, 252, 0.9);
}

.home-hero__panel-header {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.home-hero__panel-icon {
    width: 20px;
    height: 20px;
    color: #a5b4fc;
}

.theme-light .home-hero__panel-icon {
    color: #4338ca;
}

.home-hero__panel-label {
    margin: 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(148, 163, 184, 0.8);
}

.home-hero__panel-copy {
    margin: 0 0 var(--space-4);
    color: rgba(226, 232, 240, 0.85);
    line-height: 1.6;
}

.theme-light .home-hero__panel-copy {
    color: #334155;
}

.home-hero__panel-steps {
    display: grid;
    gap: var(--space-3);
}

.home-hero__step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-3);
    align-items: center;
    font-size: 0.9rem;
    padding: var(--space-2);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.home-hero__step:hover {
    background: rgba(255, 255, 255, 0.05);
}

.theme-light .home-hero__step:hover {
    background: rgba(15, 23, 42, 0.05);
}

.home-hero__step-number {
    font-weight: 600;
    color: #93c5fd;
    font-size: 1.1rem;
}

.theme-light .home-hero__step-number {
    color: #2563eb;
}

.home-hero__step-content {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.home-hero__step-icon {
    width: 18px;
    height: 18px;
    color: #60a5fa;
    flex-shrink: 0;
}

.theme-light .home-hero__step-icon {
    color: #0ea5e9;
}

.home-hero__panel-highlight {
    margin: 0 0 var(--space-2);
    font-size: 1.1rem;
    font-weight: 600;
}

.home-hero__panel-note {
    margin: 0;
    color: rgba(226, 232, 240, 0.75);
}

.theme-light .home-hero__panel-note {
    color: #475569;
}

/* ===== Sections ===== */
.home-section {
    margin-top: clamp(3rem, 6vw, 5rem);
    display: grid;
    gap: var(--space-6);
}

.home-section__eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: var(--space-2);
    padding: 0.35rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 999px;
}

.theme-light .home-section__eyebrow {
    color: #4338ca;
}

.home-section__header h2 {
    margin-bottom: var(--space-2);
    font-size: clamp(1.8rem, 2vw + 1rem, 2.5rem);
}

.home-section__header p {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ===== Cards Grid ===== */
.home-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-4);
}

.home-card {
    padding: var(--space-6);
    border-radius: 20px;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.home-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1 0%, #0ea5e9 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.home-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.home-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-4);
    padding: var(--space-3);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(14, 116, 144, 0.1) 100%);
    color: #6366f1;
}

.theme-light .home-card__icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(14, 116, 144, 0.15) 100%);
}

.home-card__icon svg {
    width: 100%;
    height: 100%;
}

.home-card h3 {
    margin: 0 0 var(--space-2);
    font-size: 1.2rem;
}

.home-card p {
    margin: 0;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ===== Features Grid ===== */
.home-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-5);
}

.home-feature {
    padding: var(--space-5);
    border-radius: 18px;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    position: relative;
}

.home-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

.home-feature__icon {
    width: 48px;
    height: 48px;
    padding: var(--space-3);
    border-radius: 14px;
    background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
    color: white;
    margin-bottom: var(--space-3);
}

.home-feature__icon svg {
    width: 100%;
    height: 100%;
}

.home-feature h3 {
    margin: 0 0 var(--space-2);
    font-size: 1.1rem;
}

.home-feature p {
    margin: 0;
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== Split Section (Safety) ===== */
.home-section--split {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
}

.home-section__copy p {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.home-list {
    display: grid;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.home-list__item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    border-radius: 14px;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    transition: all 0.2s ease;
}

.home-list__item:hover {
    transform: translateX(4px);
    border-color: rgba(99, 102, 241, 0.3);
}

.home-list__icon {
    width: 20px;
    height: 20px;
    color: #6366f1;
    flex-shrink: 0;
}

.theme-light .home-list__icon {
    color: #4338ca;
}

.home-section__accent {
    padding: var(--space-6);
    border-radius: 22px;
    background: linear-gradient(140deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.25);
    transition: all 0.3s ease;
}

.home-section__accent:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.15);
}

.home-section__accent-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.home-section__accent-icon {
    width: 28px;
    height: 28px;
    color: #60a5fa;
    flex-shrink: 0;
}

.theme-light .home-section__accent-icon {
    color: #2563eb;
}

.home-section__accent-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.home-section__accent-text {
    margin: 0 0 var(--space-4);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.home-section__accent-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.home-section__accent-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.home-section__accent-tag-icon {
    width: 14px;
    height: 14px;
}

.theme-light .home-section__accent-tag {
    background: rgba(255, 255, 255, 0.9);
}

/* ===== Testimonials ===== */
.home-section--testimonials {
    margin-top: clamp(3rem, 6vw, 5rem);
}

.home-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-5);
}

.home-testimonial {
    padding: var(--space-5);
    border-radius: 18px;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    position: relative;
}

.home-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.home-testimonial__stars {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-3);
}

.home-testimonial__star {
    width: 18px;
    height: 18px;
    color: #fbbf24;
}

.home-testimonial__text {
    margin: 0 0 var(--space-4);
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-style: italic;
}

.home-testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.home-testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.home-testimonial__avatar svg {
    width: 100%;
    height: 100%;
}

.home-testimonial__author-info {
    flex: 1;
}

.home-testimonial__author-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: var(--space-1);
}

.home-testimonial__author-location {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

/* ===== CTA Section ===== */
.home-cta {
    margin-top: clamp(3rem, 6vw, 5rem);
    padding: clamp(2rem, 4vw, 3.5rem);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(14, 116, 144, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-5);
    position: relative;
}

.home-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.theme-light .home-cta {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(14, 116, 144, 0.08) 100%);
}

.home-cta__content {
    flex: 1;
    min-width: 280px;
    position: relative;
    z-index: 1;
}

.home-cta__icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-3);
    color: #6366f1;
    animation: pulse 2s ease-in-out infinite;
}

.home-cta__icon svg {
    width: 100%;
    height: 100%;
}

.home-cta__content h2 {
    margin: 0 0 var(--space-2);
    font-size: clamp(1.6rem, 2vw + 0.8rem, 2.2rem);
}

.home-cta__content p {
    margin: 0 0 var(--space-4);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.home-cta__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.home-cta__benefit {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
}

.home-cta__benefit svg {
    width: 16px;
    height: 16px;
    color: #6366f1;
}

.theme-light .home-cta__benefit {
    background: rgba(99, 102, 241, 0.08);
}

.home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    position: relative;
    z-index: 1;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .home-hero {
        grid-template-columns: 1fr;
    }

    .home-section--split {
        grid-template-columns: 1fr;
    }

    .home-hero__panel {
        animation: fadeInUp 0.7s ease-out 0.5s both;
    }
}

@media (max-width: 768px) {
    .home-hero__stats {
        flex-direction: column;
        gap: var(--space-3);
    }

    .home-hero__stat-divider {
        width: 100%;
        height: 1px;
    }

    .home-features-grid {
        grid-template-columns: 1fr;
    }

    .home-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .home-cta {
        flex-direction: column;
        text-align: center;
    }

    .home-cta__benefits {
        justify-content: center;
    }

    .home-cta__actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .home-hero {
        padding: var(--space-6);
    }

    .home-hero__cta,
    .home-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .home-hero__stats {
        padding: var(--space-3);
    }

    .home-hero__stat-number {
        font-size: 1.6rem;
    }
}
