/* ============================================================
   germany-students.css
   Page-specific styles for Voluble Germany For Students page.
   Extends the shared style.css design tokens.
   ============================================================ */

/* ---- FOLD 1: HERO ----------------------------------------- */
.std-hero-section {
    position: relative;
    background: url('images/germany_students_hero_bg.jpg') no-repeat center center / cover;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 4.5rem;
    overflow: hidden;
}

.std-hero-container {
    max-width: 1020px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.std-hero-card-full {
    background: rgba(255, 255, 255, 0.94);
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    border-radius: 32px;
    padding: 3.5rem 2.5rem;
    box-shadow: 0 24px 64px rgba(2, 38, 57, 0.12), 0 4px 20px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.85rem;
    text-align: center;
}

.std-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.92);
    border: 1.5px solid rgba(8,138,153,0.25);
    border-radius: 100px;
    padding: 0.45rem 1.2rem;
    box-shadow: 0 4px 16px rgba(2,59,89,0.06);
}

.std-amber-pulse {
    width: 8px;
    height: 8px;
    background-color: #f59e0b;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(245,158,11,0.6);
    animation: amberPulse 2s infinite;
    flex-shrink: 0;
}

@keyframes amberPulse {
    0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245,158,11,0.6); }
    70%  { transform: scale(1);    box-shadow: 0 0 0 6px rgba(245,158,11,0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}

.std-hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 900;
    color: #01263c;
    line-height: 1.14;
    letter-spacing: -0.03em;
    margin: 0;
    max-width: 880px;
}

.std-accent-word {
    color: var(--color-accent-teal);
    background: linear-gradient(135deg, #088a99 0%, #03525e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.std-hero-lead {
    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
    color: #475569;
    line-height: 1.6;
    font-weight: 500;
    max-width: 680px;
    margin: 0;
}

.std-hero-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.std-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.88);
    border: 1.5px solid rgba(226,232,240,0.9);
    border-radius: 100px;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    box-shadow: 0 3px 10px rgba(2,59,89,0.04);
    transition: var(--transition-normal);
}

.std-stat-pill:hover {
    border-color: rgba(8,138,153,0.35);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(8,138,153,0.1);
}

.std-hero-cta-cluster {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.std-hero-offer-tag {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
}

/* ---- FOLD 2: FOMO + STATS ---------------------------------- */
.std-fomo-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.std-fomo-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-teal), var(--color-brand-teal));
}

.std-fomo-container {
    max-width: 1080px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.std-fomo-header { text-align: center; max-width: 780px; }

.std-fomo-title {
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    color: #01263c;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.std-fomo-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: #475569;
    font-weight: 500;
    line-height: 1.6;
}

.std-stat-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.std-stat-card {
    background: #ffffff;
    border: 1.5px solid rgba(226,232,240,0.95);
    border-radius: 24px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(2,59,89,0.05);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.std-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 0 0 24px 24px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.std-card-blue::after  { background: linear-gradient(90deg,#3b82f6,#6366f1); }
.std-card-amber::after { background: linear-gradient(90deg,#f59e0b,#ef4444); }
.std-card-teal::after  { background: linear-gradient(90deg,#088a99,#10b981); }

.std-stat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(2,59,89,0.1); }
.std-stat-card:hover::after { opacity: 1; }

.std-stat-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.std-stat-icon-box {
    width: 3rem; height: 3rem;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem;
}

.std-blue-icon  { background: rgba(59,130,246,0.1); }
.std-amber-icon { background: rgba(245,158,11,0.1); }
.std-teal-icon  { background: rgba(8,138,153,0.1); }

.std-stat-badge {
    font-size: 0.75rem; font-weight: 800;
    letter-spacing: 0.05em; text-transform: uppercase;
    padding: 0.3rem 0.8rem; border-radius: 100px;
}

.std-blue-badge  { background: rgba(59,130,246,0.1);  color: #3b82f6; }
.std-amber-badge { background: rgba(245,158,11,0.1);  color: #d97706; }
.std-teal-badge  { background: rgba(8,138,153,0.1);   color: #088a99; }

.std-stat-card-title { font-size: 1.02rem; font-weight: 700; color: #0f172a; line-height: 1.4; margin: 0; }
.std-stat-card-desc  { font-size: 0.93rem; color: #64748b; line-height: 1.6; margin: 0; }

.std-fomo-bottom-banner {
    background: linear-gradient(135deg,#01263c 0%,#034568 100%);
    border-radius: 24px;
    padding: 2.25rem 2.5rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; width: 100%;
    box-shadow: 0 16px 40px rgba(1,38,60,0.2);
    flex-wrap: wrap;
}

.std-banner-title { font-size: clamp(1.2rem,2.5vw,1.7rem); color: #ffffff; margin: 0 0 0.25rem; line-height: 1.25; }
.std-banner-sub   { font-size: 1rem; color: rgba(255,255,255,0.6); font-weight: 500; margin: 0; }

.std-banner-pill {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(8,138,153,0.35);
    border: 1px solid rgba(56,189,248,0.4);
    border-radius: 100px; padding: 0.6rem 1.4rem;
    color: #7dd3fc; font-weight: 700; font-size: 0.9rem; white-space: nowrap;
}

/* ---- FOLD 3: THE ROADMAP (Apple-Style Horizontal Sliding Carousel) */
.roadmap-section {
    background-color: #FDF5EE;
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.roadmap-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.roadmap-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
}

.roadmap-header-box {
    max-width: 780px;
    text-align: left;
}

.phase-badge {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    text-transform: uppercase;
}

.phase-1-badge { background-color: #E6F6F7; color: #088A99; }
.phase-2-badge { background-color: #FEF3C7; color: #B45309; }
.phase-3-badge { background-color: #E0F2FE; color: #0284C7; }

/* Sliding Track & Cards */
.roadmap-horizontal-card.apple-slide-card {
    flex: 0 0 320px;
    min-width: 290px;
    scroll-snap-align: start;
    background: #FFFFFF;
    border: 1.5px solid rgba(2, 59, 89, 0.09);
    border-radius: 24px;
    padding: 1.75rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(2, 59, 89, 0.04);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.roadmap-horizontal-card.apple-slide-card:hover {
    transform: translateY(-8px) scale(1.015);
    border-color: #088A99;
    box-shadow: 0 20px 40px rgba(8, 138, 153, 0.12);
}

.card-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.card-icon-line {
    display: flex;
    align-items: center;
    margin-top: 0.25rem;
}

.step-badge {
    font-size: 0.78rem;
    font-weight: 800;
    color: #023B59;
    background: rgba(2, 59, 89, 0.08);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
}

.step-icon-emoji {
    font-size: 1.75rem;
}

.step-card-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0;
    line-height: 1.35;
}

.step-card-desc {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.55;
    margin: 0;
}

.roadmap-conclusion-box {
    background: #023B59;
    border-radius: 24px;
    padding: 2.25rem 2rem;
    text-align: center;
    color: #FFFFFF;
    box-shadow: 0 14px 32px rgba(2, 59, 89, 0.15);
    margin-top: 1rem;
}

.conclusion-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.4rem;
}

.conclusion-highlight {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: #FFFFFF;
    font-weight: 800;
    margin: 0;
}

@media (max-width: 768px) {
    .roadmap-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .roadmap-horizontal-card.apple-slide-card {
        flex: 0 0 82vw;
        min-width: 260px;
    }
}

/* ---- FOLD 4: THE GAP -------------------------------------- */
.std-gap-section { background: #f7fafc; position: relative; overflow: hidden; }

.std-gap-container {
    max-width: 1080px; margin: 0 auto;
    width: 100%; padding: 0 1.5rem;
    display: flex; flex-direction: column; gap: 3rem;
}

.std-gap-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }

.std-gap-col-label {
    font-size: 0.82rem; font-weight: 800;
    letter-spacing: 0.05em; text-transform: uppercase;
    padding: 0.35rem 1rem; border-radius: 100px;
    margin-bottom: 1.25rem; display: inline-block;
}

.std-label-red   { background: rgba(239,68,68,0.1);  color: #dc2626; }
.std-label-green { background: rgba(16,185,129,0.1); color: #059669; }

.std-checklist { display: flex; flex-direction: column; gap: 0.75rem; }

.std-check-item {
    display: flex; align-items: flex-start; gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #ffffff;
    border: 1.5px solid rgba(226,232,240,0.9);
    border-radius: 16px;
    box-shadow: 0 3px 10px rgba(2,59,89,0.03);
    transition: var(--transition-normal);
    font-size: 0.95rem; font-weight: 600;
    color: #1e293b; line-height: 1.45;
}

.std-check-item:hover {
    border-color: rgba(8,138,153,0.25);
    box-shadow: 0 8px 20px rgba(8,138,153,0.07);
    transform: translateX(3px);
}

.std-check-item span:first-child { font-size: 1.05rem; flex-shrink: 0; margin-top: 0.05rem; }

.std-gap-insight {
    background: linear-gradient(135deg,#01263c 0%,#034568 100%);
    border-radius: 20px; padding: 1.75rem 2.5rem;
    display: flex; align-items: center; gap: 1.25rem;
    box-shadow: 0 12px 32px rgba(1,38,60,0.18);
}

.std-insight-icon  { font-size: 1.75rem; flex-shrink: 0; }
.std-insight-title { font-size: 1.1rem; font-weight: 700; color: #ffffff; margin: 0 0 0.2rem; line-height: 1.4; }
.std-insight-sub   { font-size: 0.95rem; color: #7dd3fc; font-weight: 600; margin: 0; }

/* ---- FOLD 5: WHY VOLUBLE ---------------------------------- */
.std-solution-section { background: #ffffff; position: relative; overflow: hidden; }
.std-solution-section::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%,rgba(8,138,153,0.06) 0%,transparent 60%);
    pointer-events: none;
}

.std-solution-container {
    max-width: 1080px; margin: 0 auto;
    width: 100%; padding: 0 1.5rem;
    display: flex; flex-direction: column;
    align-items: center; gap: 3rem;
    position: relative; z-index: 1;
}

.std-solution-tagline-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(8,138,153,0.1);
    border: 1.5px solid rgba(8,138,153,0.25);
    border-radius: 100px; padding: 0.55rem 1.4rem;
    font-size: 0.92rem; font-weight: 700; color: #01263c;
    margin-top: 0.5rem;
}

.std-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; width: 100%;
}

.std-feature-card {
    background: #ffffff;
    border: 1.5px solid rgba(226,232,240,0.9);
    border-radius: 24px; padding: 1.75rem 1.5rem;
    display: flex; flex-direction: column; gap: 0.85rem;
    box-shadow: 0 6px 20px rgba(2,59,89,0.04);
    transition: var(--transition-normal);
    position: relative; overflow: hidden;
}

.std-feature-card.apple-slide-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 310px;
    scroll-snap-align: start;
}

.std-feature-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px; border-radius: 24px 24px 0 0;
    opacity: 0; transition: opacity var(--transition-normal);
}

.std-fc-teal::before    { background: linear-gradient(90deg,#088a99,#10b981); }
.std-fc-indigo::before  { background: linear-gradient(90deg,#6366f1,#8b5cf6); }
.std-fc-amber::before   { background: linear-gradient(90deg,#f59e0b,#ef4444); }
.std-fc-rose::before    { background: linear-gradient(90deg,#f43f5e,#ec4899); }
.std-fc-blue::before    { background: linear-gradient(90deg,#3b82f6,#0ea5e9); }
.std-fc-emerald::before { background: linear-gradient(90deg,#10b981,#14b8a6); }

.std-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(2,59,89,0.1);
    border-color: rgba(8,138,153,0.25);
}

.std-feature-card:hover::before { opacity: 1; }

.std-fc-top { display: flex; align-items: center; justify-content: space-between; }

.std-fc-icon {
    width: 2.75rem; height: 2.75rem;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}

.std-icon-teal    { background: rgba(8,138,153,0.1); }
.std-icon-indigo  { background: rgba(99,102,241,0.1); }
.std-icon-amber   { background: rgba(245,158,11,0.1); }
.std-icon-rose    { background: rgba(244,63,94,0.1); }
.std-icon-blue    { background: rgba(59,130,246,0.1); }
.std-icon-emerald { background: rgba(16,185,129,0.1); }

.std-fc-module { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: #94a3b8; }
.std-fc-title  { font-size: 1rem; font-weight: 700; color: #0f172a; margin: 0; line-height: 1.4; }
.std-fc-desc   { font-size: 0.9rem; color: #64748b; line-height: 1.6; margin: 0; }

/* ---- FOLD 6: LIFE AFTER GERMANY --------------------------- */
.std-after-section {
    background: linear-gradient(135deg,#01263c 0%,#034568 60%,#012437 100%);
    position: relative; overflow: hidden;
}

.std-after-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%,rgba(8,138,153,0.2) 0%,transparent 50%),
        radial-gradient(ellipse at 80% 70%,rgba(8,138,153,0.12) 0%,transparent 50%);
    pointer-events: none;
}

.std-after-container {
    max-width: 1080px; margin: 0 auto;
    width: 100%; padding: 0 1.5rem;
    display: flex; flex-direction: column;
    align-items: center; gap: 3rem;
    position: relative; z-index: 1;
}

.std-after-header {
    text-align: center;
    display: flex; flex-direction: column;
    align-items: center; gap: 1rem;
    max-width: 760px;
}

.std-after-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px; padding: 0.45rem 1.2rem;
    font-size: 0.82rem; font-weight: 700;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.04em; text-transform: uppercase;
}

.std-after-title {
    font-size: clamp(1.9rem,3.6vw,3rem);
    color: #ffffff; line-height: 1.2;
    letter-spacing: -0.025em; margin: 0;
}

.std-after-lead {
    font-size: 1.05rem; color: rgba(255,255,255,0.65);
    font-weight: 500; line-height: 1.6; margin: 0;
}

.std-after-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem; width: 100%;
}

.std-after-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px; padding: 1.5rem 1.25rem;
    display: flex; flex-direction: column; gap: 0.75rem;
    transition: var(--transition-normal);
    backdrop-filter: blur(8px);
}

.std-after-card.apple-slide-card {
    flex: 0 0 calc(25% - 1rem);
    min-width: 270px;
    scroll-snap-align: start;
}

.std-after-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(8,138,153,0.5);
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.2);
}

.std-after-emoji       { font-size: 1.75rem; }
.std-after-card-title  { font-size: 0.95rem; font-weight: 700; color: #ffffff; margin: 0; line-height: 1.35; }
.std-after-card-desc   { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.5; margin: 0; }

.std-after-callout {
    background: rgba(8,138,153,0.2);
    border: 1px solid rgba(8,138,153,0.4);
    border-radius: 20px; padding: 1.75rem 2.5rem;
    text-align: center; width: 100%;
}

.std-after-callout p    { margin: 0; font-size: 1.1rem; font-weight: 600; color: rgba(255,255,255,0.85); line-height: 1.6; }
.std-after-callout strong { color: #7dd3fc; }

/* ---- FOLD 7: WAITLIST ------------------------------------- */
.std-waitlist-section { background: #fdfaf4; position: relative; overflow: hidden; }

.std-waitlist-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%,rgba(8,138,153,0.08) 0%,transparent 60%);
    pointer-events: none;
}

.std-waitlist-container {
    max-width: 1080px; margin: 0 auto;
    width: 100%; padding: 0 1.5rem;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: start;
    position: relative; z-index: 1;
}

.std-waitlist-info { display: flex; flex-direction: column; gap: 1.5rem; }

.std-waitlist-status {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(8,138,153,0.1);
    border: 1px solid rgba(8,138,153,0.2);
    border-radius: 100px; padding: 0.45rem 1.1rem;
    font-size: 0.88rem; font-weight: 700; color: #088a99;
    width: fit-content;
}

.std-waitlist-title {
    font-size: clamp(1.8rem,3.2vw,2.7rem);
    color: #01263c; line-height: 1.15;
    letter-spacing: -0.025em; margin: 0;
}

.std-waitlist-subtitle { font-size: 1.05rem; color: #64748b; font-weight: 500; line-height: 1.6; margin: 0; }

.std-founding-box {
    background: #ffffff;
    border: 1.5px solid rgba(226,232,240,0.9);
    border-radius: 20px; padding: 1.5rem 1.75rem;
    display: flex; flex-direction: column; gap: 1rem;
    box-shadow: 0 8px 24px rgba(2,59,89,0.05);
}

.std-founding-heading {
    font-size: 0.82rem; font-weight: 800;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: #94a3b8; margin: 0;
}

.std-founding-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }

.std-founding-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.std-founding-list li span:first-child { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.std-founding-list li span:last-child  { font-size: 0.95rem; font-weight: 600; color: #1e293b; line-height: 1.5; }

/* ---- RESPONSIVE ------------------------------------------- */
@media (max-width: 1024px) { .std-after-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 900px) {
    .std-stat-cards-grid  { grid-template-columns: 1fr; }
    .std-feature-grid     { grid-template-columns: repeat(2, 1fr); }
    .std-gap-split        { grid-template-columns: 1fr; }
    .std-waitlist-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .std-fomo-bottom-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .std-hero-section {
        padding-top: 6rem;
        padding-bottom: 3rem;
        min-height: auto;
        background-position: center top;
    }

    .std-hero-container {
        padding: 0 0.85rem;
    }

    .std-hero-card-full {
        padding: 2.25rem 1.25rem;
        border-radius: 24px;
        gap: 1.35rem;
    }

    .std-hero-badge {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.4rem 0.85rem;
        border-radius: 16px;
        gap: 0.35rem;
        max-width: 100%;
    }

    .std-hero-badge .badge-text {
        font-size: 0.78rem;
    }

    .std-hero-badge .country-codes {
        font-size: 0.78rem;
    }

    .std-hero-headline {
        font-size: clamp(1.6rem, 6.2vw, 2.2rem);
        line-height: 1.28;
    }

    .std-hero-headline br {
        display: none;
    }

    .std-hero-lead {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .std-hero-stats-row {
        gap: 0.45rem;
        width: 100%;
        justify-content: center;
    }

    .std-stat-pill {
        font-size: 0.78rem;
        padding: 0.35rem 0.75rem;
    }

    .std-hero-cta-cluster {
        width: 100%;
        gap: 0.65rem;
    }

    .btn-hero-primary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 0.85rem 1.5rem;
        font-size: 0.98rem;
    }

    .std-hero-offer-tag {
        font-size: 0.82rem;
    }
}

@media (max-width: 640px) {
    .std-feature-grid  { grid-template-columns: 1fr; }
    .std-after-grid    { grid-template-columns: repeat(2, 1fr); }
    .std-gap-insight   { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .std-after-grid { grid-template-columns: 1fr; }

    .std-hero-section {
        padding-top: 5.5rem;
        padding-bottom: 2.25rem;
    }

    .std-hero-container {
        padding: 0 0.65rem;
    }

    .std-hero-card-full {
        padding: 1.75rem 1rem;
        border-radius: 20px;
        gap: 1.15rem;
    }

    .std-hero-headline {
        font-size: 1.55rem;
    }
}

