:root {
    /* BOLD MODERN COLOR PALETTE */
    --primary-cyan: #00FFFF;
    --primary-pink: #FF006E;
    --accent-lime: #39FF14;
    --dark-bg: #0a0e27;
    --light-bg: #1a1f3a;
    --brand-white: #FFFFFF;
    
    /* Background Colors */
    --bg-primary: var(--dark-bg);
    --bg-secondary: var(--light-bg);
    --bg-tertiary: #151b35;
    
    /* Text Colors */
    --text-primary: var(--brand-white);
    --text-secondary: #e0e7ff;
    --text-muted: #a0aec0;
    
    /* Brand Accent Colors */
    --accent-cyan: var(--primary-cyan);
    --accent-pink: var(--primary-pink);
    --accent-lime: var(--accent-lime);
    
    /* Gradients - Neon Vibes */
    --gradient-neon: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-pink) 50%, var(--accent-lime) 100%);
    --gradient-cyan-pink: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-pink) 100%);
    --gradient-pink-lime: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-lime) 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(0, 255, 255, 0.4), transparent 70%);
    
    /* Semantic Colors */
    --border: rgba(0, 255, 255, 0.1);
    --border-accent: rgba(0, 255, 255, 0.3);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --container: 1180px;
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.4), 0 0 40px rgba(124, 58, 237, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 0 60px rgba(124, 58, 237, 0.3);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

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

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0px);
        box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
    }
    50% {
        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(0, 255, 255, 0.4);
    }
}

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

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

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

html {
    scroll-behavior: smooth;
}

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

img, svg {
    display: block;
    max-width: 100%;
}

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

button, input, select {
    font: inherit;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 22px;
}

.section {
    padding: 92px 0;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-header h2,
.register-copy h2,
.proof h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: 0;
    margin-bottom: 14px;
}

.section-header p,
.register-copy p,
.proof-copy {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.eyebrow {
    color: var(--accent-lime);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    margin-bottom: 14px;
    text-transform: uppercase;
    animation: fadeInDown 0.8s ease-out;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
}

.btn {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    font-family: var(--font-heading);
    font-weight: 800;
    justify-content: center;
    line-height: 1;
    min-height: 48px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
    z-index: 0;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
}

.btn-primary {
    background: var(--gradient-cyan-pink);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4), 0 0 60px rgba(255, 0, 110, 0.2);
    color: var(--dark-bg);
    position: relative;
    z-index: 1;
    font-weight: 900;
}

.btn-primary:hover {
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.6), 0 0 100px rgba(255, 0, 110, 0.4);
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-cyan) 100%);
}

.btn-secondary {
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid var(--primary-cyan);
    color: var(--primary-cyan);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-secondary:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: var(--primary-pink);
    color: var(--brand-white);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4), inset 0 0 20px rgba(255, 0, 110, 0.1);
}

.btn-sm {
    font-size: 0.9rem;
    min-height: 42px;
    padding: 0 18px;
}

.btn-lg {
    font-size: 1rem;
    min-height: 56px;
    padding: 0 28px;
}

.btn-block {
    min-height: 56px;
    width: 100%;
}

.header {
    background: rgba(10, 14, 39, 0.7);
    border-bottom: 2px solid var(--primary-cyan);
    backdrop-filter: blur(20px);
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.header-container {
    align-items: center;
    display: flex;
    height: 76px;
    justify-content: space-between;
}

.brand-lockup,
.powered-lockup {
    align-items: center;
    display: flex;
}

.brand-lockup {
    gap: 12px;
}

.best-wordmark {
    color: var(--brand-white);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.best-wordmark span {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-lime) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.best-wordmark.large {
    font-size: clamp(2.1rem, 5vw, 3.8rem);
}

.brand-separator {
    background: rgba(255, 255, 255, 0.2);
    height: 32px;
    width: 1px;
}

.powered-lockup {
    gap: 8px;
}

.powered-lockup span {
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
}

.powered-lockup strong {
    color: var(--brand-white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1;
}

.powered-lockup img {
    border-radius: 6px;
    height: 28px;
    object-fit: contain;
    width: 28px;
}

.powered-lockup.large strong {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.powered-lockup.large img {
    height: 34px;
    width: 34px;
}

.nav {
    align-items: center;
    display: flex;
    gap: 26px;
}

.nav a:not(.btn) {
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
}

.hero {
    min-height: 760px;
    overflow: hidden;
    padding: 150px 0 70px;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.hero-media {
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    width: 100%;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(10, 11, 13, 0.96) 0%, rgba(10, 11, 13, 0.82) 42%, rgba(10, 11, 13, 0.42) 100%),
        linear-gradient(180deg, rgba(10, 11, 13, 0.1) 0%, rgba(10, 11, 13, 0.96) 100%),
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.08), transparent 50%);
    inset: 0;
    position: absolute;
}

.hero-grid {
    align-items: center;
    display: grid;
    gap: 52px;
    grid-template-columns: minmax(0, 1.1fr) 380px;
    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: 780px;
}

.hero-logos {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 4.35rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.05;
    max-width: 760px;
    animation: slideInLeft 0.8s ease-out;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-pink) 50%, var(--brand-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    margin-top: 24px;
    max-width: 680px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-pills span {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 8px 13px;
}

.offer-panel,
.program-card,
.proof-list article,
.register-form-wrapper,
.location-card {
    background: rgba(26, 31, 58, 0.5);
    border: 2px solid var(--primary-cyan);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.15), 0 24px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.offer-panel:hover,
.program-card:hover,
.proof-list article:hover,
.register-form-wrapper:hover,
.location-card:hover {
    border-color: var(--primary-pink);
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.3), 0 0 80px rgba(255, 0, 110, 0.2), 0 24px 60px rgba(0, 0, 0, 0.4);
    transform: translateY(-8px);
}

.offer-panel {
    backdrop-filter: blur(20px);
    padding: 30px;
    animation: slideInRight 0.8s ease-out 0.2s both;
}

.offer-kicker {
    color: var(--accent-lime);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
}

.offer-panel h2 {
    color: var(--brand-white);
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1;
    margin: 10px 0;
}

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

.slots-meter {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--primary-cyan);
    border-radius: 999px;
    height: 10px;
    margin: 22px 0 10px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 255, 255, 0.1);
}

.slots-meter-fill {
    background: var(--gradient-cyan-pink);
    border-radius: inherit;
    height: 100%;
    width: 37%;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6), 0 0 40px rgba(255, 0, 110, 0.3);
    animation: glow 2s ease-in-out infinite;
}

.slots-count {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 22px;
}

.slots-count strong {
    color: var(--brand-white);
}

.countdown {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
    margin: 20px 0 24px;
}

.countdown div {
    background: rgba(0, 255, 255, 0.08);
    border: 2px solid var(--primary-cyan);
    border-radius: var(--radius-sm);
    padding: 10px 6px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.15);
}

.countdown div:hover {
    background: rgba(0, 255, 255, 0.15);
    border-color: var(--primary-pink);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.3), 0 0 15px rgba(255, 0, 110, 0.2);
    transform: scale(1.05);
}

.countdown strong {
    color: var(--primary-cyan);
    display: block;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    line-height: 1;
    font-weight: 900;
    animation: countdownPulse 2s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.countdown span {
    color: var(--text-muted);
    display: block;
    font-size: 0.72rem;
    margin-top: 5px;
    text-transform: uppercase;
}

.programs {
    background: var(--bg-primary);
}

.program-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
}

.program-card {
    min-height: 210px;
    overflow: hidden;
    padding: 28px;
    position: relative;
}

.program-card::before {
    background: var(--gradient-neon);
    content: '';
    height: 4px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(255, 0, 110, 0.3);
}

.program-card span {
    align-items: center;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid var(--primary-cyan);
    border-radius: 12px;
    color: var(--primary-cyan);
    display: flex;
    font-family: var(--font-heading);
    font-weight: 900;
    height: 46px;
    justify-content: center;
    margin-bottom: 22px;
    width: 46px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.program-card:hover span {
    background: rgba(0, 255, 255, 0.2);
    border-color: var(--primary-pink);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4), 0 0 15px rgba(255, 0, 110, 0.2);
    transform: scale(1.15) rotate(5deg);
}

.program-card h3 {
    font-family: var(--font-heading);
    font-size: 1.28rem;
    margin-bottom: 10px;
}

.program-card p,
.proof-list span,
.benefit-list,
.location-card p {
    color: var(--text-secondary);
}

.proof {
    background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
}

.proof-grid,
.register-grid,
.location-grid {
    display: grid;
    gap: 42px;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
}

.proof-list {
    display: grid;
    gap: 14px;
}

.proof-list article {
    padding: 24px;
}

.proof-list strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.register {
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 0, 110, 0.15), transparent 32%),
        radial-gradient(circle at 92% 80%, rgba(0, 255, 255, 0.15), transparent 34%),
        var(--bg-primary);
}

.benefit-list {
    display: grid;
    gap: 10px;
    list-style: none;
    margin-top: 24px;
}

.benefit-list li {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
}

.register-form-wrapper {
    padding: 34px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    color: var(--brand-white);
    display: block;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group input,
.form-group select {
    background: rgba(21, 27, 53, 0.6);
    border: 2px solid var(--primary-cyan);
    border-radius: var(--radius-sm);
    color: var(--brand-white);
    min-height: 54px;
    outline: none;
    padding: 0 16px;
    width: 100%;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 4px rgba(0, 255, 255, 0.15), inset 0 0 10px rgba(0, 255, 255, 0.1);
}

.phone-input-wrapper {
    position: relative;
}

.phone-prefix {
    color: var(--text-muted);
    font-weight: 700;
    left: 16px;
    position: absolute;
    top: 14px;
}

.phone-input-wrapper input {
    padding-left: 54px;
}

.form-group.error input,
.form-group.error select {
    border-color: #ef4444;
}

.error-msg {
    color: #fca5a5;
    display: none;
    font-size: 0.82rem;
    margin-top: 6px;
}

.form-group.error .error-msg {
    display: block;
}

.form-status {
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 14px;
    padding: 12px 14px;
}

.form-status.error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fecaca;
}

.form-status.success {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #bbf7d0;
}

.location {
    background: var(--bg-secondary);
}

.location-grid {
    align-items: stretch;
}

.location-card {
    padding: 32px;
}

.location-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.location-card p {
    line-height: 1.8;
    margin-bottom: 24px;
}

.hours-block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    padding: 16px;
}

.hours-block h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 10px;
}

.hours-block p {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin: 0;
    padding: 8px 0;
}

.hours-block p + p {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-block strong {
    color: var(--brand-white);
    white-space: nowrap;
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.map-container {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    min-height: 420px;
    overflow: hidden;
}

.map-container iframe {
    filter: grayscale(0.8) invert(0.9) contrast(1.12);
    height: 100%;
    min-height: 420px;
    transition: filter 0.25s ease;
}

.map-container:hover iframe {
    filter: none;
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 46px 0;
    text-align: center;
}

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

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

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    justify-content: center;
}

.footer-contact a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 700;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-credit {
    color: var(--brand-white) !important;
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.whatsapp-float {
    align-items: center;
    background: var(--gradient-cyan-pink);
    border: 2px solid var(--brand-white);
    border-radius: 50%;
    bottom: 22px;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
    color: var(--dark-bg);
    display: flex;
    font-family: var(--font-heading);
    font-weight: 900;
    height: 58px;
    justify-content: center;
    position: fixed;
    right: 22px;
    width: 58px;
    z-index: 99;
    transition: all 0.4s ease;
    animation: subtleFloat 4s ease-in-out infinite;
}

.whatsapp-float:hover {
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.4), 0 0 20px rgba(255, 0, 110, 0.2);
    transform: translateY(-5px);
}

.modal-overlay {
    align-items: center;
    background: rgba(10, 11, 13, 0.86);
    backdrop-filter: blur(10px);
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    padding: 22px;
    pointer-events: none;
    position: fixed;
    top: 0;
    transition: opacity 0.25s ease;
    width: 100%;
    z-index: 1000;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    max-width: 500px;
    padding: 36px;
    text-align: center;
    width: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
    animation: fadeInUp 0.5s ease-out;
}

.modal-icon {
    align-items: center;
    background: rgba(0, 255, 255, 0.15);
    border: 2px solid var(--primary-cyan);
    border-radius: 50%;
    color: var(--primary-cyan);
    display: flex;
    height: 72px;
    justify-content: center;
    margin: 0 auto 22px;
    width: 72px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.modal-icon svg {
    height: 34px;
    width: 34px;
}

.modal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.modal-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 14px;
}

.modal-content .btn {
    margin-top: 20px;
    width: 100%;
}

@media (max-width: 980px) {
    .nav a:not(.btn) {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 126px;
    }

    .hero-grid,
    .proof-grid,
    .register-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

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

    .offer-panel {
        max-width: 480px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 68px 0;
    }

    .header-container {
        height: 68px;
    }

    .brand-lockup {
        gap: 8px;
    }

    .best-wordmark {
        font-size: 1.35rem;
    }

    .best-wordmark.large {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.45rem;
        line-height: 1.05;
    }

    .brand-separator {
        height: 24px;
    }

    .powered-lockup span {
        display: none;
    }

    .powered-lockup strong {
        font-size: 1rem;
    }

    .powered-lockup img {
        height: 24px;
        width: 24px;
    }

    .nav .btn {
        min-height: 40px;
        padding: 0 14px;
    }

    .hero {
        padding: 108px 0 52px;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(10, 11, 13, 0.95), rgba(10, 11, 13, 0.76)),
            linear-gradient(180deg, rgba(10, 11, 13, 0.15), rgba(10, 11, 13, 0.98));
    }

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

    .hero-actions,
    .location-actions {
        flex-direction: column;
    }

    .hero-actions .btn,
    .location-actions .btn {
        width: 100%;
    }

    .program-grid {
        grid-template-columns: 1fr;
    }

    .offer-panel,
    .program-card,
    .proof-list article,
    .register-form-wrapper,
    .location-card,
    .modal-content {
        border-radius: 16px;
        padding: 24px;
    }

    .countdown {
        gap: 7px;
    }

    .map-container,
    .map-container iframe {
        min-height: 340px;
    }
}
