/* =========================================
   Design System Variables
   ========================================= */
:root {
    /* Color Palette - Dark Premium Theme */
    --bg-base: #0a0a0f;
    --bg-surface: rgba(20, 20, 30, 0.6);
    --bg-surface-hover: rgba(30, 30, 45, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.03);

    /* Accents */
    --accent-primary: #6366f1;
    /* Indigo */
    --accent-primary-hover: #4f46e5;
    --accent-secondary: #ec4899;
    /* Pink */
    --accent-glow: rgba(99, 102, 241, 0.5);

    /* Text */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Semantic Colors */
    --success: #10b981;
    --error: #ef4444;

    /* Borders & Shadows */
    --border-glass: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 30px var(--accent-glow);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;

    /* Layout */
    --max-width: 800px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
}

/* =========================================
   Reset & Global
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background Gradients */
.bg-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: var(--accent-primary);
    filter: blur(120px);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.25;
    pointer-events: none;
}

.bg-glow-1 {
    top: -80px;
    left: -80px;
}

.bg-glow-2 {
    top: 40%;
    right: -120px;
    background: var(--accent-secondary);
    opacity: 0.15;
}

.bg-glow-3 {
    bottom: 0;
    left: 20%;
    opacity: 0.15;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    padding: 12px 16px;
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 28px;
    width: auto;
    display: block;
}

.header-socials {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.social-icon:hover {
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.logo-accent {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Quick Lead Bar */
.quick-lead-bar {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.quick-lead-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-input {
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    min-height: 42px;
}

.quick-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15);
}

.phone-with-code {
    display: flex;
    gap: 8px;
    position: relative;
    z-index: 5;
}

.country-select {
    width: 95px;
    flex-shrink: 0;
    cursor: pointer;
    padding: 10px 8px;
    font-size: 0.85rem;
    background-color: rgba(255, 255, 255, 0.05);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    position: relative;
    z-index: 10;
}

.country-select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15);
}

/* Form version uses darker bg to match form inputs */
.form-country-select {
    background-color: rgba(0, 0, 0, 0.25);
    min-height: 50px;
    font-size: 0.9rem;
}

.phone-input {
    flex: 1;
    min-width: 0;
}

.quick-btn-group {
    display: flex;
    gap: 8px;
}

.quick-btn {
    flex: 1;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    min-height: 42px;
    transition: all 0.2s ease;
}

.quick-btn-talk {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-primary-hover));
    color: white;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}

.quick-btn-talk:hover {
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.5);
}

.quick-btn-brochure {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

.quick-btn-brochure:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
    padding-bottom: 65px;
    /* Space for mobile sticky CTA */
}

/* =========================================
   Utilities & Common Components
   ========================================= */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.card-glass {
    background: var(--bg-surface);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    box-shadow: var(--shadow-soft);
}

.card-glass-border {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 16px;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.card-glass-border:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.section-title {
    font-size: 1.6rem;
    margin-bottom: 16px;
    text-align: center;
}

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

/* Buttons */
.primary-btn {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-primary-hover));
    color: white;
    padding: 16px 24px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    min-height: 52px;
    /* Thumb-friendly tap target */
}

.primary-btn:hover,
.primary-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

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

.outline-btn {
    background: transparent;
    color: var(--text-primary);
    padding: 16px 24px;
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 1.05rem;
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(5px);
    transition: all 0.2s ease;
    width: 100%;
    min-height: 52px;
}

.outline-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-icon {
    transition: transform 0.2s ease;
}

.primary-btn:hover .btn-icon {
    transform: translateX(4px);
}

.full-width {
    width: 100%;
}

/* =========================================
   HERO SECTION — VIDEO FIRST
   ========================================= */
.hero {
    padding: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    align-items: center;
}

/* Featured video — square format, edge-to-edge on mobile */
.video-wrapper.featured-video {
    width: calc(100% + 32px);
    /* Bleed past container padding */
    margin-left: -16px;
    margin-right: -16px;
    border-radius: 0;
    /* Edge-to-edge on mobile */
    aspect-ratio: 4/5;
    box-shadow: 0 8px 40px rgba(99, 102, 241, 0.2);
    border: none;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero .headline {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 8px;
    padding: 0 4px;
}

.hero .subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding: 0 8px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Video Placeholder */
.video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-glass);
}

.outline-glow {
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.15);
}

/* Video with overlay */
#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    color: var(--text-muted);
    gap: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.25);
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-overlay p {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.video-placeholder p {
    font-size: 0.9rem;
    font-weight: 500;
}

.play-btn {
    width: 72px;
    height: 72px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.6);
    transition: transform 0.2s ease;
    /* Pulsing animation to attract attention */
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
    }

    50% {
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.8), 0 0 60px rgba(99, 102, 241, 0.3);
    }
}

.play-btn::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent white;
    margin-left: 4px;
}

.video-wrapper:hover .play-btn {
    transform: scale(1.1);
}

/* =========================================
   4-Week Journey Section
   ========================================= */
.overview {
    margin-bottom: 32px;
}

.overview .section-title {
    margin-bottom: 4px;
    /* Reduced gap below the 4-week journey heading */
}

.overview-desc {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1rem;
    padding: 0 4px;
}

.journey-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

/* Vertical connector line */
.journey-grid::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 16px;
    bottom: 16px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-primary), var(--accent-secondary));
    opacity: 0.3;
    border-radius: 2px;
}

.journey-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 16px 16px 52px;
    position: relative;
}

.week-badge {
    position: absolute;
    left: 8px;
    top: 16px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    color: white;
    font-weight: 700;
    z-index: 1;
}

/* Show week number inside the badge */
.journey-card:nth-child(1) .week-badge::after {
    content: '1';
    font-size: 0.75rem;
}

.journey-card:nth-child(2) .week-badge::after {
    content: '2';
    font-size: 0.75rem;
}

.journey-card:nth-child(3) .week-badge::after {
    content: '3';
    font-size: 0.75rem;
}

.journey-card:nth-child(4) .week-badge::after {
    content: '4';
    font-size: 0.75rem;
}

.journey-card h3 {
    font-size: 1.05rem;
}

.journey-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* =========================================
   Video Section 2 (How it Works)
   ========================================= */
.how-it-works {
    margin-bottom: 40px;
    text-align: center;
}

.video-caption {
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* =========================================
   Benefits Section
   ========================================= */
.benefits {
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
}

.icon-circle {
    font-size: 1.3rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-card h4 {
    font-size: 1.05rem;
}

.benefit-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* =========================================
   Trust / Pricing Section
   ========================================= */
.trust-pricing {
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.guarantee-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.guarantee-icon {
    font-size: 2rem;
    margin-bottom: 6px;
}

.guarantee-badge h3 {
    color: var(--success);
    font-size: 1.1rem;
}

.guarantee-badge p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 6px;
}

.pricing-card {
    text-align: center;
    padding: 20px 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0.2) 100%);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
    margin-bottom: 24px;
}

.price-strike {
    text-decoration: line-through;
    color: var(--error);
    font-size: 1.1rem;
    opacity: 0.7;
}

.price-current {
    font-size: 2rem;
    color: var(--success);
}

.pricing-subtitle {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 6px;
    margin-bottom: 16px;
}

.pricing-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.early-bird {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.early-bird strong {
    color: var(--success);
}

.bonuses-wrap {
    margin-top: 16px;
    text-align: left;
}

.bonuses-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.book-seat-btn {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-primary);
}

.book-seat-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.2);
}

.bonus-list {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bonus-list li {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.testimonials {
    margin-top: 16px;
}

.testimonial {
    text-align: center;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.testimonial .author {
    margin-top: 6px;
    font-style: normal;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.85rem;
}

/* =========================================
   Consultation Form
   ========================================= */
.consultation {
    margin-bottom: 40px;
}

.scroll-margin-form {
    scroll-margin-top: 24px;
}

.form-container {
    text-align: center;
}

.form-container.shadow-accent {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.form-title {
    margin-bottom: 6px;
    font-size: 1.5rem;
}

.form-subtitle {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.9rem;
}

form {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

input,
textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
    min-height: 50px;
    /* Thumb-friendly */
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
    background: rgba(0, 0, 0, 0.4);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

.submit-btn {
    margin-top: 8px;
}

.form-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* =========================================
   Final CTA
   ========================================= */
.final-cta {
    padding: 32px 0;
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 6px;
    font-size: 1.4rem;
}

.final-cta p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 24px 0 16px;
    border-top: 1px solid var(--border-glass);
    margin-top: 24px;
}

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

/* =========================================
   Sticky Mobile CTA
   ========================================= */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 16px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-glass);
    z-index: 50;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
}

.sticky-btn-group {
    display: flex;
    gap: 8px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.sticky-btn-group .quick-btn {
    flex: 1;
    padding: 12px 10px;
    font-size: 0.85rem;
    min-height: 44px;
}

/* =========================================
   Responsive – Desktop / Tablet
   ========================================= */
@media (min-width: 640px) {
    .container {
        padding: 0 24px;
        padding-bottom: 2rem;
    }

    .hero {
        padding: 48px 0 40px;
        gap: 32px;
    }

    .featured-video {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        border-radius: var(--radius-md);
        border: 1px solid rgba(99, 102, 241, 0.25);
        border-bottom: 1px solid rgba(99, 102, 241, 0.25);
    }

    .hero .headline {
        font-size: 3rem;
    }

    .hero .subtitle {
        font-size: 1.15rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .primary-btn,
    .outline-btn {
        width: auto;
        padding: 16px 32px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card {
        padding: 32px;
    }

    .bonus-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 24px;
    }

    .mobile-sticky-cta {
        display: none !important;
    }
}

/* =========================================
   Responsive – Large Desktop (1024px+)
   ========================================= */
@media (min-width: 1024px) {
    .container {
        padding-top: 40px;
        max-width: 1200px;
    }

    .hero {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
        padding: 60px 0 80px;
    }

    .hero-content {
        flex: 1;
        text-align: left;
        max-width: 600px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero .badge {
        margin: 0;
        /* remove auto centering on desktop */
    }

    .hero .headline {
        font-size: 3.5rem;
        line-height: 1.1;
    }

    .hero .subtitle {
        font-size: 1.25rem;
    }

    .video-wrapper.featured-video {
        flex: 1;
        width: 100%;
        max-width: 500px;
        margin: 0;
        /* remove negative margins */
        order: 2;
        /* Put video on the right */
        border-radius: var(--radius-lg);
        box-shadow: 0 20px 60px rgba(99, 102, 241, 0.25);
    }

    .quick-lead-bar {
        width: 100%;
        padding: 24px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .quick-input {
        width: 100%;
        min-height: 48px;
        font-size: 1rem;
    }

    .phone-with-code {
        width: 100%;
        flex-wrap: nowrap;
        align-items: center;
    }

    .phone-with-code .country-select {
        width: 110px;
        min-width: 110px;
        flex-shrink: 0;
        min-height: 48px;
        font-size: 0.95rem;
    }

    .phone-with-code .phone-input {
        flex: 1;
        min-width: 0;
        min-height: 48px;
        font-size: 1rem;
    }

    .quick-btn-group {
        flex: 1 1 100%;
        /* Force buttons to a new full-width row below the inputs */
        flex-direction: row;
        min-height: 48px;
    }

    .quick-btn-group .quick-btn {
        flex: 1;
        padding: 12px 16px;
    }
}