/* ==========================================================================
   OSK "ANIA" ANNA LIKUN - ULTRA-PREMIUM AUTOMOTIVE DESIGN SYSTEM
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-main: #070a12;
    --bg-secondary: #0d1322;
    --bg-card: rgba(18, 26, 43, 0.75);
    --bg-card-hover: rgba(28, 40, 65, 0.85);
    --bg-card-solid: #111827;
    
    /* Accent & Brand Colors */
    --gold-primary: #f59e0b;
    --gold-light: #fbbf24;
    --gold-dark: #d97706;
    --gold-glow: rgba(245, 158, 11, 0.25);
    --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    
    --accent-blue: #38bdf8;
    --accent-blue-glow: rgba(56, 189, 248, 0.2);
    --accent-emerald: #10b981;
    
    /* Text Colors */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-subtle: #64748b;
    
    /* Borders & Glass */
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-gold: rgba(245, 158, 11, 0.35);
    --glass-blur: blur(16px);
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 25px -3px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 40px -5px rgba(0, 0, 0, 0.7);
    --shadow-gold: 0 10px 30px -5px rgba(245, 158, 11, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    color-scheme: dark;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    max-width: 100%;
}

/* Reusable Containers & Grid */
.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.container--narrow {
    max-width: 860px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

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

.gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gold-text {
    color: var(--gold-light);
}

.gold-link {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ==========================================================================
   ICONS & BADGES
   ========================================================================== */
.icon {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.825rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.badge--gold {
    background: rgba(245, 158, 11, 0.12);
    color: var(--gold-light);
    border: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
}

.badge--blue {
    background: rgba(56, 189, 248, 0.12);
    color: var(--accent-blue);
    border: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.15);
}

.top-bar__phones {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-separator {
    color: var(--text-subtle);
    font-size: 0.8rem;
    user-select: none;
}

.hero__phone-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.phone-sep {
    margin: 0 0.35rem;
    color: var(--text-subtle);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-emerald);
    display: inline-block;
    position: relative;
}

.status-indicator.live::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: inherit;
    opacity: 0.6;
    animation: livePulse 2s infinite ease-out;
}

@keyframes livePulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* ==========================================================================
   BUTTONS & CTAS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.75rem 1.6rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: normal;
    text-decoration: none;
}

.btn--primary {
    background: var(--gold-gradient);
    color: #070b14;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.55);
    color: #000;
}

.btn--glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
}

.btn--glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    border: 1px solid var(--border-glass-gold);
    color: var(--gold-light);
}

.btn--outline:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 0.95rem 2rem;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.btn--sm {
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.btn--block {
    width: 100%;
}

.pulse-glow {
    position: relative;
}

.pulse-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: var(--gold-gradient);
    opacity: 0.4;
    z-index: -1;
    filter: blur(8px);
    transition: var(--transition-fast);
}

.pulse-glow:hover::before {
    opacity: 0.8;
    filter: blur(12px);
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
    background: rgba(7, 10, 18, 0.95);
    border-bottom: 1px solid var(--border-glass);
    font-size: 0.825rem;
    padding: 0.45rem 0;
    position: relative;
    z-index: 50;
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar__status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.top-bar__contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar__link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
}

.top-bar__link:hover {
    color: var(--text-main);
}

.top-bar__link.highlight {
    color: var(--gold-light);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 10, 18, 0.85);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-glass);
    padding: 0.9rem 0;
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 0.65rem 0;
    background: rgba(7, 10, 18, 0.95);
    box-shadow: var(--shadow-md);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo__icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #0044cc;
    border: 2px solid #ffffff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 68, 204, 0.4);
}

.logo__icon span {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.logo__title {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--text-main);
}

.logo__subtitle {
    display: block;
    font-size: 0.75rem;
    color: var(--gold-light);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Navigation Links */
.nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 0.25rem 0;
}

.nav__link:hover,
.nav__link.active {
    color: var(--text-main);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-fast);
}

.nav__link:hover::after {
    width: 100%;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 1.8rem;
    height: 1.3rem;
    background: transparent;
    cursor: pointer;
    z-index: 110;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding: 5rem 0 4rem;
    overflow: hidden;
    max-width: 100vw;
    background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 10% 80%, rgba(56, 189, 248, 0.06) 0%, transparent 60%);
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.hero__glow--1 {
    top: 5%;
    right: 5%;
    width: min(450px, 80vw);
    height: min(450px, 80vw);
    background: rgba(245, 158, 11, 0.12);
}

.hero__glow--2 {
    bottom: 5%;
    left: 5%;
    width: min(400px, 70vw);
    height: min(400px, 70vw);
    background: rgba(2, 132, 199, 0.1);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero__lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2.25rem;
    max-width: 580px;
}

.hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero__trust-badges {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item__num {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1.1;
}

.trust-item__label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.trust-divider {
    width: 1px;
    height: 32px;
    background: var(--border-glass);
}

/* Hero Showcase Card */
.card-hero-showcase {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.6), rgba(255, 255, 255, 0.1), rgba(56, 189, 248, 0.4));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 50px rgba(245, 158, 11, 0.2);
}

.card-hero-showcase__image-wrap {
    position: relative;
    border-radius: calc(var(--radius-lg) - 2px);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.card-hero-showcase__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

.card-hero-showcase:hover .card-hero-showcase__img {
    transform: scale(1.1);
}

.card-hero-showcase__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 90%, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero-floating-card {
    position: absolute;
    padding: 0.85rem 1.15rem;
    background: rgba(13, 19, 34, 0.85);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 2;
    animation: floatAnim 4s ease-in-out infinite alternate;
}

.hero-floating-card--top {
    top: 1.25rem;
    left: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.floating-avatar {
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.floating-title {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-main);
}

.floating-sub {
    font-size: 0.75rem;
    color: var(--gold-light);
}

.hero-floating-card--bottom {
    bottom: 1.5rem;
    right: 0.5rem;
    max-width: 260px;
    animation-delay: -2s;
}

.floating-stars {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.floating-quote {
    font-size: 0.825rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.35;
}

@keyframes floatAnim {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-8px); }
}

/* ==========================================================================
   STATS BANNER STRIP
   ========================================================================== */
.stats-strip {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 2.5rem 0;
}

.stats-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-glass-gold);
    transform: translateY(-2px);
}

.stat-card__icon {
    font-size: 2rem;
    line-height: 1;
}

.stat-card__number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1.1;
}

.stat-card__text {
    font-size: 0.825rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */
.section {
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}

.section--dark {
    background-color: var(--bg-secondary);
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ==========================================================================
   WHY US / FEATURES GRID
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition-fast);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.feature-card__icon-box {
    width: 3.25rem;
    height: 3.25rem;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card__icon-box svg {
    width: 1.6rem;
    height: 1.6rem;
    fill: var(--gold-light);
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.feature-card__desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   PRICING / COURSES SECTION
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

.pricing-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
    background: linear-gradient(180deg, rgba(24, 34, 56, 0.9) 0%, rgba(13, 19, 34, 0.95) 100%);
    border: 2px solid var(--gold-primary);
    box-shadow: var(--shadow-gold);
    transform: scale(1.03);
}

.pricing-card--featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.pricing-card__popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: #070b14;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.3rem 1.2rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-card__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.pricing-card__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.pricing-card__sub {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin-bottom: 0.25rem;
}

.price-val {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
}

.pricing-card__installment {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-blue);
    margin-bottom: 2rem;
}

.pricing-card__installment strong {
    color: #ffffff;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
    border-top: 1px solid var(--border-glass);
    padding-top: 1.5rem;
}

.pricing-features li {
    font-size: 0.925rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    line-height: 1.45;
}

.pricing-features li strong {
    color: var(--text-main);
}

.check-icon {
    color: var(--gold-light);
    font-weight: 800;
    flex-shrink: 0;
}

/* ==========================================================================
   CALCULATOR SECTION
   ========================================================================== */
.calculator-box {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9) 0%, rgba(10, 15, 26, 0.95) 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.calculator-box__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: center;
}

.calc-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
}

.calc-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.calc-group {
    margin-bottom: 1.75rem;
}

.calc-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.calc-val-badge {
    font-size: 0.825rem;
    font-weight: 700;
    color: var(--gold-light);
    background: rgba(245, 158, 11, 0.15);
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full);
}

.calc-select {
    width: 100%;
    padding: 0.85rem 1.15rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.calc-select:focus {
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.08);
}

.calc-select option {
    background-color: var(--bg-card-solid);
    color: #ffffff;
}

/* Custom Range Slider */
.calc-range {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
    cursor: pointer;
    transition: transform 0.15s ease;
}

.calc-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-subtle);
    margin-top: 0.35rem;
}

/* Result Card */
.result-card {
    background: rgba(13, 19, 34, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    box-shadow: var(--shadow-md);
}

.result-header {
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
}

.result-header__tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--gold-light);
}

.result-header h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 0.25rem;
}

.result-price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.925rem;
    color: var(--text-muted);
}

.breakdown-row strong {
    color: var(--text-main);
}

.breakdown-row.total-row {
    padding-top: 0.75rem;
    border-top: 1px dashed var(--border-glass);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.total-sum {
    color: var(--gold-light);
    font-size: 1.35rem;
    font-family: var(--font-heading);
}

.installment-highlight {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1.75rem;
    text-align: center;
}

.inst-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
}

.inst-amount {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0.25rem 0;
}

.inst-amount small {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gold-light);
}

.inst-info {
    font-size: 0.775rem;
    color: var(--text-muted);
}

/* ==========================================================================
   INSTRUCTORS SECTION
   ========================================================================== */
.instructors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.instructor-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.instructor-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow: var(--shadow-md);
}

.instructor-card--highlight {
    border: 2px solid rgba(245, 158, 11, 0.6);
}

.instructor-card__img-box {
    position: relative;
    padding: 2.5rem 1rem 1.5rem;
    display: flex;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
}

.instructor-avatar-wrap {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.25);
}

.instructor-placeholder-avatar {
    font-size: 2.75rem;
    line-height: 1;
}

.top-rated-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold-gradient);
    color: #070b14;
    font-size: 0.725rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.instructor-card__content {
    padding: 1.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.instructor-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.instructor-name {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-main);
}

.instructor-role {
    font-size: 0.85rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.instructor-bio {
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.instructor-specialty {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.instructor-specialty span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-glass);
}

/* ==========================================================================
   REVIEWS SECTION
   ========================================================================== */
.reviews-header-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.reviews-summary-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2.25rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.google-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.rating-large {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.rating-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.rating-stars-col .stars {
    color: #fbbc05;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.rating-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.reviews-filter-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.filter-pills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 0.45rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    color: var(--text-muted);
    font-size: 0.825rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-pill:hover,
.filter-pill.active {
    background: var(--gold-gradient);
    color: #070b14;
    border-color: transparent;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.review-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.review-author-avatar {
    width: 2.75rem;
    height: 2.75rem;
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.review-author-meta {
    flex-grow: 1;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
}

.author-info {
    font-size: 0.75rem;
    color: var(--text-subtle);
}

.review-stars {
    color: #fbbc05;
    font-size: 1rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.review-text strong {
    color: var(--text-main);
}

.owner-reply {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--gold-light);
    padding: 0.75rem 1rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.825rem;
}

.reply-badge {
    font-weight: 700;
    color: var(--gold-light);
    display: block;
    margin-bottom: 0.2rem;
}

.owner-reply p {
    color: var(--text-muted);
    font-style: italic;
}

/* ==========================================================================
   CALL ENROLL SECTION & MODAL
   ========================================================================== */
.call-enroll-box {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass-gold);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.call-enroll-phones-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

@media (max-width: 768px) {
    .call-enroll-phones-grid {
        grid-template-columns: 1fr;
    }
    .call-enroll-box {
        padding: 2.25rem 1.25rem;
    }
}

.call-enroll-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-align: left;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.call-enroll-card:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -5px rgba(245, 158, 11, 0.25);
}

.call-enroll-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #070b14;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.call-enroll-card__info {
    display: flex;
    flex-direction: column;
}

.call-enroll-card__label {
    font-size: 0.825rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.call-enroll-card__num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.call-enroll-card__action {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-top: 0.35rem;
}

.call-enroll-perks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    border-top: 1px solid var(--border-glass);
    padding-top: 1.75rem;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   CALL MODAL DIALOG
   -------------------------------------------------------------------------- */
.call-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.25s ease-out;
}

.call-modal.active {
    display: flex;
    opacity: 1;
}

.call-modal__content {
    background: linear-gradient(180deg, #111827 0%, #0b1120 100%);
    border: 1px solid var(--border-glass-gold);
    border-radius: var(--radius-lg);
    max-width: 540px;
    width: 100%;
    padding: 2.25rem 2rem;
    position: relative;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 35px rgba(245, 158, 11, 0.25);
    transform: scale(0.95);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.call-modal.active .call-modal__content {
    transform: scale(1);
}

.call-modal__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.35rem;
    line-height: 1;
    transition: var(--transition-fast);
}

.call-modal__close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.call-modal__header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.call-modal__title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.call-modal__sub {
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.call-modal__course-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: var(--gold-light);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

.call-modal__phones {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.call-phone-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    padding: 1.15rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.call-phone-card:hover {
    background: rgba(245, 158, 11, 0.12);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.25);
}

.call-phone-card__left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.call-phone-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #070b14;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.call-phone-card__number {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.call-phone-card__label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.call-phone-card__btn-tag {
    background: var(--gold-gradient);
    color: #070b14;
    font-size: 0.775rem;
    font-weight: 800;
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.call-modal__footer {
    text-align: center;
    border-top: 1px solid var(--border-glass);
    padding-top: 1rem;
    font-size: 0.825rem;
    color: var(--text-subtle);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(245, 158, 11, 0.3);
}

.faq-item.active {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
}

.faq-toggle-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold-light);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-answer strong {
    color: var(--text-main);
}

/* ==========================================================================
   CONTACT & LOCATION
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-info-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
}

.contact-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.detail-icon {
    font-size: 1.6rem;
    line-height: 1;
}

.contact-detail-item strong {
    font-size: 0.95rem;
    color: var(--text-main);
    display: block;
}

.contact-detail-item p {
    font-size: 0.925rem;
    color: var(--text-muted);
}

.phone-link {
    color: var(--gold-light);
    font-size: 1.25rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.phone-link:hover {
    text-decoration: underline;
}

.plus-code {
    display: inline-block;
    font-size: 0.775rem;
    color: var(--accent-blue);
    margin-top: 0.25rem;
}

.plus-code code {
    background: rgba(56, 189, 248, 0.1);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}

.hours-sub {
    font-size: 0.775rem;
    color: var(--text-subtle);
}

.direct-call-box {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.call-prompt {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    text-align: center;
}

/* Map Card */
.contact-map-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.map-card-header {
    padding: 1.25rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-glass);
}

.map-status {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 700;
    font-size: 0.95rem;
}

.map-container {
    flex-grow: 1;
    min-height: 350px;
    position: relative;
}

.map-footer-badge {
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    font-size: 0.825rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-glass);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #04060b;
    border-top: 1px solid var(--border-glass);
    padding-top: 4.5rem;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
}

.logo--footer {
    margin-bottom: 1.25rem;
}

.footer__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer__rating {
    font-size: 0.85rem;
    color: var(--text-subtle);
}

.footer__rating strong {
    display: block;
    margin-top: 0.2rem;
}

.footer__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.25rem;
}

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

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

.footer__links a:hover {
    color: var(--gold-light);
    transform: translateX(3px);
}

.footer__contact-line {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
}

.footer__contact-line strong {
    color: var(--text-main);
}

.footer__cta {
    margin-top: 1.25rem;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    font-size: 0.825rem;
    color: var(--text-subtle);
}

.footer__bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

/* ==========================================================================
   MOBILE STICKY CTA
   ========================================================================== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(7, 10, 18, 0.95);
    backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--border-glass-gold);
    padding: 0.6rem 0.75rem;
    z-index: 99;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.4rem;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.6rem 0.35rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.78rem;
    text-align: center;
    white-space: nowrap;
}

.mobile-cta-btn svg {
    width: 0.95rem;
    height: 0.95rem;
    fill: currentColor;
    flex-shrink: 0;
}

.mobile-cta-btn--call {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
}

.mobile-cta-btn--enroll {
    background: var(--gold-gradient);
    color: #070b14;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .hero__title {
        font-size: 2.75rem;
    }

    .hero__lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__cta-group {
        justify-content: center;
    }

    .hero-floating-card--top {
        left: 0.5rem;
    }

    .hero-floating-card--bottom {
        right: 0.5rem;
    }

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

    .features-grid,
    .pricing-grid,
    .instructors-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .calculator-box__grid {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    /* ── Header / Navbar ── */
    .mobile-toggle {
        display: flex;
    }

    /* Ukryj przycisk CTA w headerze na mobile — zastępuje go sticky bar */
    .header__actions .btn--primary {
        display: none;
    }

    .header__actions {
        gap: 0.5rem;
    }

    /* Logo — uproszczone na mobile */
    .logo__subtitle {
        display: none;
    }

    .logo__title {
        font-size: 1.05rem;
        line-height: 1.2;
    }

    .logo__icon {
        width: 2.2rem;
        height: 2.2rem;
        flex-shrink: 0;
    }

    .logo__icon span {
        font-size: 1.2rem;
    }

    .logo {
        gap: 0.5rem;
    }

    .header {
        padding: 0.65rem 0;
    }

    /* Mobile Nav Drawer */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(7, 10, 18, 0.99);
        backdrop-filter: var(--glass-blur);
        border-bottom: 1px solid var(--border-glass-gold);
        padding: 5rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform var(--transition-smooth);
        z-index: 99;
        overflow-y: auto;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .nav__list li {
        width: 100%;
        border-bottom: 1px solid var(--border-glass);
    }

    .nav__link {
        display: block;
        padding: 1.1rem 0;
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--text-main);
    }

    /* ── Hero ── */
    .hero {
        padding: 2.5rem 0 2rem;
    }

    .hero__title {
        font-size: 1.9rem;
        line-height: 1.2;
    }

    .hero__lead {
        font-size: 0.975rem;
        margin-bottom: 1.5rem;
    }

    /* CTA group: stack vertically, full width */
    .hero__cta-group {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .hero__cta-group .btn--lg {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 0.9rem 1.25rem;
    }

    /* Telefony — rząd obok siebie */
    .hero__phone-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        width: 100%;
    }

    .hero__phone-group .btn--glass {
        justify-content: center;
        font-size: 0.85rem;
        padding: 0.75rem 0.5rem;
        width: 100%;
    }

    .hero__trust-badges {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
        width: 100%;
        padding: 1rem;
        justify-content: space-between;
    }

    .trust-divider {
        display: none;
    }

    .trust-item__num {
        font-size: 1.1rem;
    }

    .trust-item__label {
        font-size: 0.72rem;
    }

    /* Ukryj floating cards — zbyt chaotyczne na małym ekranie */
    .hero-floating-card {
        display: none;
    }

    /* ── Stats strip ── */
    .stats-strip {
        padding: 1.5rem 0;
    }

    .stats-strip__grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .stat-card {
        padding: 0.85rem 1rem;
        gap: 0.75rem;
    }

    .stat-card__icon {
        font-size: 1.5rem;
    }

    .stat-card__number {
        font-size: 1.25rem;
    }

    .stat-card__text {
        font-size: 0.75rem;
    }

    /* ── Sections ── */
    .section {
        padding: 3.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

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

    .section-desc {
        font-size: 0.9rem;
    }

    /* ── Features grid ── */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }

    .feature-card {
        padding: 1.5rem;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
    }

    .feature-card__icon-box {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 2.75rem;
        height: 2.75rem;
    }

    .feature-card__title {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .feature-card__desc {
        font-size: 0.875rem;
    }

    /* ── Pricing ── */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }

    .pricing-card--featured {
        transform: none;
        order: -1;
    }

    .pricing-card--featured:hover {
        transform: translateY(-4px);
    }

    .pricing-card {
        padding: 1.75rem 1.25rem;
    }

    .price-val {
        font-size: 2.2rem;
    }

    /* ── Calculator ── */
    .calculator-box {
        padding: 1.5rem 1rem;
    }

    .calculator-box__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .calc-title {
        font-size: 1.5rem;
    }

    /* ── Instructors ── */
    .instructors-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }

    /* ── Reviews ── */
    .reviews-header-block {
        flex-direction: column;
        gap: 1rem;
    }

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

    .filter-pills {
        flex-wrap: wrap;
        gap: 0.4rem;
    }

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

    /* ── Contact ── */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 1.5rem 1.25rem;
    }

    .contact-title {
        font-size: 1.6rem;
    }

    /* ── Footer ── */
    .footer {
        padding-top: 3rem;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* ── Mobile sticky CTA ── */
    .mobile-sticky-cta {
        display: grid;
    }

    body {
        padding-bottom: 4.5rem;
    }
}

/* ── Extra small screens (≤ 380px) ── */
@media (max-width: 380px) {
    .hero__title {
        font-size: 1.65rem;
    }

    .stats-strip__grid {
        grid-template-columns: 1fr;
    }

    .hero__phone-group {
        grid-template-columns: 1fr;
    }

    .mobile-cta-btn {
        font-size: 0.7rem;
    }

    .badge {
        font-size: 0.72rem;
        padding: 0.35rem 0.75rem;
    }
}
