/* ═══════════════════════════════════════════════════════════════════════════
   T-KURS PREMIUM LANDING PAGE - DESIGN SYSTEM
   Bauhaus & LaTeX inspired design with glassmorphism
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   CSS VARIABLES
   ───────────────────────────────────────────────────────────────────────────── */
:root {
    /* Colors */
    --bg-primary: #0a0f1c;
    --bg-secondary: #111827;
    --bg-card: rgba(17, 24, 39, 0.6);

    --accent-primary: #ff6b35;
    --accent-secondary: #ff8f5a;
    --accent-glow: rgba(255, 107, 53, 0.4);

    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;

    --success: #22c55e;
    --error: #ef4444;

    /* Glass effect */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 16px;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    max-width: 100vw;
}

/* ─────────────────────────────────────────────────────────────────────────────
   TYPOGRAPHY
   ───────────────────────────────────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    color: var(--text-secondary);
}

.highlight {
    color: var(--accent-primary);
    position: relative;
}

/* ─────────────────────────────────────────────────────────────────────────────
   LAYOUT
   ───────────────────────────────────────────────────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-title {
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ─────────────────────────────────────────────────────────────────────────────
   GLASSMORPHISM
   ───────────────────────────────────────────────────────────────────────────── */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
}

/* ─────────────────────────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), #e85a28);
    color: white;
    box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FLOATING FORMULAS BACKGROUND
   ───────────────────────────────────────────────────────────────────────────── */
.formulas-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.formula-float {
    position: absolute;
    font-family: 'Times New Roman', serif;
    font-style: italic;
    color: rgba(255, 255, 255, 0.03);
    font-size: 2rem;
    animation: float 20s infinite ease-in-out;
    white-space: nowrap;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.03;
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
        opacity: 0.06;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   SEATS INDICATOR BAR
   ───────────────────────────────────────────────────────────────────────────── */
.seats-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
}

.seats-bar-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.seats-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.seats-text strong {
    color: var(--accent-primary);
}

.seats-progress {
    width: 120px;
    height: 6px;
    background: var(--bg-secondary);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.seats-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: var(--radius-full);
    transition: width var(--transition-slow);
}

.seats-count {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-primary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: var(--text-primary);
}

.hero-decoration {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1;
}

.formula-card {
    padding: 16px 24px;
    font-family: 'Times New Roman', serif;
    font-style: italic;
    font-size: 1.125rem;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .hero-decoration {
        display: none;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   TIMELINE SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.timeline-section {
    background: var(--bg-secondary);
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-primary), var(--glass-border));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 48px;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    z-index: 2;
}

.timeline-marker.final {
    background: var(--accent-primary);
}

.marker-date {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--accent-primary);
}

.timeline-marker.final .marker-date {
    color: white;
}

.timeline-content {
    width: calc(50% - 64px);
    padding: 24px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-primary);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.timeline-badge.exam,
.timeline-badge.success {
    width: auto;
    padding: 0 12px;
    font-size: 1.25rem;
    background: transparent;
}

.timeline-content h3 {
    margin-bottom: 8px;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 0.9375rem;
}

.timeline-content.final {
    border-color: var(--accent-primary);
    background: rgba(255, 107, 53, 0.1);
}

@media (max-width: 768px) {
    .timeline-line {
        left: 24px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 80px;
    }

    .timeline-marker {
        left: 24px;
        width: 48px;
        height: 48px;
    }

    .marker-date {
        font-size: 0.75rem;
    }

    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: 100%;
        margin: 0;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   TESTIMONIALS SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.testimonials-section {
    overflow: hidden;
}

.testimonials-slider {
    margin-top: 40px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    padding: 0 24px;
    width: max-content;
}

.testimonial-card {
    width: 400px;
    min-width: 400px;
    padding: 0;
    overflow: hidden;
    transition: transform var(--transition-medium);
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-media {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.play-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: var(--accent-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px var(--accent-glow);
}

.testimonial-content {
    padding: 24px;
}

.testimonial-content blockquote {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.testimonial-result {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: var(--radius-sm);
}

.result-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.result-score {
    color: var(--success);
    font-weight: 700;
    font-size: 1.25rem;
}

@media (max-width: 480px) {
    .testimonial-card {
        width: 280px;
        min-width: 280px;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   VIDEO TESTIMONIALS (Vertical 9:16 format)
   ───────────────────────────────────────────────────────────────────────────── */
.testimonial-card.video-card {
    width: 320px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 480px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    overflow: hidden;
}

.testimonial-video {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.testimonial-card.video-card .testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 480px) {
    .testimonial-card.video-card {
        width: 280px;
        min-width: 280px;
    }

    .testimonial-video-container {
        max-height: 400px;
    }

    .video-play-btn {
        width: 56px;
        height: 56px;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   PRICING SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.pricing-section {
    background: var(--bg-secondary);
}

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

.pricing-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    position: relative;
}

.pricing-card.old-way {
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    opacity: 0.7;
}

.pricing-card.new-way {
    border: 2px solid var(--accent-primary);
    box-shadow: 0 8px 48px var(--accent-glow);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--accent-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header h3 {
    font-size: 1.5rem;
}

.pricing-body {
    text-align: center;
}

.pricing-calc {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.pricing-total {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-muted);
    text-decoration: line-through;
}

.pricing-price {
    margin-bottom: 8px;
}

.old-price {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 12px;
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-primary);
}

.pricing-note {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 24px;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.9375rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li.positive svg {
    color: var(--success);
}

.pricing-features li.negative {
    color: var(--text-muted);
}

.pricing-features li.negative svg {
    color: var(--error);
}

.pricing-micro {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .pricing-comparison {
        grid-template-columns: 1fr;
    }

    .pricing-card.old-way {
        order: 2;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────────────────── */
.footer {
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.author-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 8px 32px var(--accent-glow);
}

.footer-message blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-hint {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Social Media Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--transition-medium);
}

.social-link:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   ANIMATIONS
   ───────────────────────────────────────────────────────────────────────────── */
[data-aos] {
    pointer-events: auto !important;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────────────────────
   MOBILE RESPONSIVE STYLES
   ───────────────────────────────────────────────────────────────────────────── */

/* Tablets and smaller (max-width: 768px) */
@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
        max-width: 100%;
    }

    /* Disable heavy effects for performance */
    .seats-bar {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(10, 15, 28, 0.98);
        padding: 10px 0;
    }

    .glass {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(17, 24, 39, 0.95);
    }

    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
    }

    section {
        padding: 80px 0;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .section-subtitle {
        margin-bottom: 48px;
    }

    /* Hero mobile */
    .hero {
        padding: 100px 20px 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 32px;
    }

    .trust-badge {
        font-size: 0.8125rem;
        padding: 8px 16px;
        margin-bottom: 24px;
    }

    /* Seats bar mobile - FIX OVERFLOW */
    .seats-bar-inner {
        gap: 10px;
        padding: 0 12px;
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .seats-text {
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .seats-progress {
        width: 80px;
        flex-shrink: 0;
    }

    .seats-count {
        font-size: 0.75rem;
        white-space: nowrap;
    }

    /* Footer mobile */
    .footer {
        padding: 60px 0 40px;
    }

    .footer-message blockquote {
        font-size: 1.125rem;
    }

    .footer-bottom {
        margin-top: 60px;
    }
}

/* Mobile phones (max-width: 480px) */
@media (max-width: 480px) {
    body {
        -webkit-overflow-scrolling: touch;
    }

    section {
        padding: 60px 0;
    }

    .section-subtitle {
        margin-bottom: 40px;
        font-size: 1rem;
        padding: 0 12px;
    }

    /* Hero mobile */
    .hero {
        padding: 90px 16px 60px;
    }

    .hero-content {
        padding: 0;
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
        line-height: 1.6;
    }

    .btn {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .btn-lg {
        width: 100%;
        padding: 18px 28px;
        font-size: 1.0625rem;
    }

    /* Seats bar mobile */
    .seats-bar-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .seats-progress {
        width: 120px;
    }

    /* Video cards mobile */
    .testimonials-track {
        padding: 0 16px;
        gap: 20px;
    }

    .testimonial-card.video-card {
        width: 280px;
        min-width: 280px;
    }

    .testimonial-video-container {
        max-height: 420px;
    }

    .testimonial-content {
        padding: 20px;
    }

    .testimonial-content blockquote {
        font-size: 1.0625rem;
        margin-bottom: 14px;
    }

    /* Regular testimonial cards */
    .testimonial-card {
        width: 300px;
        min-width: 300px;
    }

    /* Pricing mobile */
    .pricing-card {
        padding: 28px 24px;
    }

    .new-price {
        font-size: 2.5rem;
    }

    .pricing-features li {
        font-size: 0.9375rem;
        padding: 12px 0;
    }

    /* Footer mobile */
    .footer-content {
        gap: 28px;
    }

    .author-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .footer-message blockquote {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .footer-bottom {
        margin-top: 48px;
        padding-top: 24px;
    }
}

/* Small phones (max-width: 375px) */
@media (max-width: 375px) {
    .hero {
        padding: 80px 12px 50px;
    }

    .hero-title {
        font-size: 1.625rem;
    }

    .testimonial-card.video-card {
        width: 260px;
        min-width: 260px;
    }

    .testimonial-video-container {
        max-height: 380px;
    }

    .testimonial-card {
        width: 280px;
        min-width: 280px;
    }
}