@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;700;800;900&display=swap');

:root {
    --bg-color: #f8fafc;
    --surface-color: #ffffff;
    --surface-color-hover: #f1f5f9;
    --border-color: #e2e8f0;
    --card-bg: rgba(255, 255, 255, 0.9);

    --accent-cyan: #185bb4;
    --accent-cyan-glow: rgba(24, 91, 180, 0.2);
    --accent-orange: #f97316;
    --accent-orange-glow: rgba(249, 115, 22, 0.3);

    --text-main: #0f172a;
    --text-muted: #475569;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* LOGO DISPLAY */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 60px;
    flex-shrink: 0;
}

.nav-logo {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    overflow-wrap: normal;
    word-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.nowrap {
    white-space: nowrap;
}

a {
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography Utility */
.highlight-cyan {
    color: var(--accent-cyan);
}

.highlight-orange {
    color: var(--accent-orange);
}

.text-center {
    text-align: center;
}

.section-subtitle {
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 3.5rem 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: #fff;
    box-shadow: 0 0 15px var(--accent-orange-glow);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    box-shadow: 0 0 25px var(--accent-orange-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.btn-outline:hover {
    background-color: var(--accent-orange);
    color: #fff;
    box-shadow: 0 0 20px var(--accent-orange-glow);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background-color: var(--card-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo span {
    color: var(--accent-cyan);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background: radial-gradient(circle at 70% 50%, rgba(24, 91, 180, 0.05) 0%, #ffffff 70%),
                url('/assets/moto_premium_hero.png') right calc(100% - 3rem) / contain no-repeat;
    background-color: #ffffff;
}

.hero::before {
    display: none; 
}

@media (max-width: 768px) {
    .hero {
        background: radial-gradient(circle at center, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.95) 100%);
        background-color: #fff;
        min-height: auto;
        padding-top: 110px;
        padding-bottom: 60px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        position: relative;
        overflow: hidden;
    }

    .hero::after {
        content: '';
        position: absolute;
        top: 90px;
        right: -15%;
        width: 120%;
        height: 55%;
        background: url('/assets/moto_premium_hero.png') center top / contain no-repeat;
        opacity: 0.25;
        transform: scaleX(-1);
        pointer-events: none;
        z-index: 0;
    }

    .hero .container {
        position: relative;
        z-index: 1; /* Above the bike */
    }

    .hero .hero-title, .hero .hero-subtitle {
        text-shadow: 0 0 40px rgba(255, 255, 255, 1), 0 0 10px rgba(255, 255, 255, 0.8);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero .container {
        text-align: center;
        max-width: 100%;
    }
}

.hero .seo-title {
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hero .hero-title {
    font-size: clamp(1.8rem, 4.5vw, 2.6rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    overflow-wrap: break-word;
}

.main-offer {
    background: var(--card-bg);
    border: 1px solid var(--accent-cyan);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: inline-block;
    backdrop-filter: blur(5px);
}

.main-offer p {
    color: var(--text-main);
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0;
}

.urgency-widgets {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.widget {
    background: var(--surface-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-orange);
}

.widget span {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.widget strong {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--text-main);
}

/* Section H2 */
.section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Cards generally */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2rem;
}

.card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Lead Capture */
.lead-capture {
    background-color: var(--surface-color);
    position: relative;
}

.lead-capture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-cyan);
}

.capture-options {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.option-box {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.option-box.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-orange);
}

.option-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.option-box p {
    color: var(--text-muted);
}

/* Problem & Solution */
.problem-solution {
    position: relative;
}

.problem-text {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-muted);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* About Instructor */
.about {
    background-color: var(--surface-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.about-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-cyan);
}

.contact-badge i {
    color: var(--accent-cyan);
    font-size: 1.5rem;
}

/* Social Proof */
.social-proof {
    text-align: center;
}

.rating {
    margin-bottom: 2rem;
}

.stars {
    color: #FFB400;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rating p {
    font-weight: 600;
    font-size: 1.125rem;
}

/* Testimonial Card */
.testimonial {
    text-align: left;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: 2rem;
    font-size: 4rem;
    font-family: var(--font-heading);
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
}

.testimonial p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--border-color);
    border-radius: 50%;
    border: 2px solid var(--accent-cyan);
}

.author-name {
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Pricing */
.pricing {
    background-color: var(--surface-color);
}

/* Transparent Info Section */
.transparent-info {
    border-bottom: 1px solid var(--border-color);
}

.info-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-title {
    text-align: left;
    margin-bottom: 2rem;
}

.info-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.info-photo img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-content {
        display: contents; /* Allows children to be ordered relative to info-grid */
    }

    .transparent-info .section-subtitle {
        order: 1;
    }

    .info-title {
        order: 2;
        margin-bottom: 1.5rem;
    }

    .info-photo {
        order: 3;
        margin-bottom: 1.5rem;
    }

    .info-desc {
        order: 4;
        margin-bottom: 1.5rem;
    }

    .transparent-info .p-features {
        order: 5;
    }
}

.pricing-card {
    display: flex;
    flex-direction: column;
}

.pricing-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-main);
}

.pricing-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.pricing-features li i {
    color: var(--accent-orange);
}

.venue-info {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-color);
    border-radius: 8px;
    border-left: 4px solid var(--accent-cyan);
}

/* Bonuses & Guarantee */
.bonuses-guarantee {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bonus-box,
.guarantee-box {
    background: linear-gradient(135deg, var(--surface-color) 0%, rgba(23, 26, 33, 0.5) 100%);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.guarantee-box {
    border-color: rgba(255, 90, 0, 0.3);
}

.bonus-icon,
.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.bonus-icon {
    color: var(--accent-cyan);
}

.guarantee-icon {
    color: var(--accent-orange);
}

/* Footer */
.footer {
    background-color: #08090b;
    padding: 4rem 0 2rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-cyan);
}

.contact-item span {
    font-size: 1.125rem;
    font-weight: 500;
}

.footer-cta {
    margin-bottom: 3rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive - pruned redundant hero block */
@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .navbar {
        padding: 1rem 0;
    }

    .logo {
        font-size: 1.5rem;
    }

    .navbar .btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.875rem !important;
        width: auto;
        margin-bottom: 0;
    }

    .btn {
        width: 100%;
    }

    .main-offer {
        width: 100%;
        padding: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .urgency-widgets {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .widget {
        text-align: center;
    }

    .option-box {
        min-width: 100%;
        padding: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }

    .footer-contact {
        flex-direction: column;
        gap: 2rem;
    }

    .bonus-box,
    .guarantee-box {
        padding: 2rem 1.5rem;
    }

    .contact-badge {
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--accent-cyan);
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero .hero-title {
        font-size: 2.2rem;
    }

    .main-offer p {
        font-size: 1.15rem;
    }

    .price {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 1.75rem;
    }

    .btn {
        padding: 1rem;
        font-size: 1rem;
    }

    .capture-options {
        gap: 1.5rem;
    }

    .pricing-features li {
        font-size: 0.9rem;
    }
}

/* БАЗОВЫЕ СТИЛИ СЧЕТЧИКА (МОБИЛЬНАЯ ВЕРСИЯ - КОМПАКТНО) */
/* --- PREMIUM COMBINED PROMO & TIMER --- */
.promo-combined-hero {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 3.5rem;
    box-shadow: 0 25px 60px rgba(0,0,0,0.06);
    margin-top: 2.5rem;
    margin-bottom: 3.5rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    max-width: 850px;
    animation: slideUpFade 0.8s ease-out both;
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.promo-combined-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 6px; height: 100%;
    background: linear-gradient(to bottom, var(--accent-orange), var(--accent-cyan));
}

.promo-offer-content {
    flex: 1.4;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-orange);
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 15px var(--accent-orange-glow);
}

.promo-title {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    line-height: 1.2;
    font-weight: 900;
    font-family: var(--font-heading);
}

.promo-theory {
    font-size: 1.15rem;
    color: var(--accent-cyan);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-weight: 600;
}

.promo-urgency {
    font-size: 0.95rem;
    color: var(--accent-orange);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-divider {
    width: 1px;
    height: 140px;
    background: var(--border-color);
    opacity: 0.6;
}

.promo-timer-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.promo-timer-item {
    display: flex;
    flex-direction: column;
}

.timer-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-weight: 600;
}

.timer-digits {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.timer-digits .digit {
    font-size: 2.8rem;
    font-weight: 950;
    font-family: var(--font-heading);
    line-height: 1;
    letter-spacing: -1px;
}

.promo-timer-item:first-child .digit { color: var(--accent-cyan); text-shadow: 0 0 20px rgba(24, 91, 180, 0.1); }
.promo-timer-item:last-child .digit { color: var(--accent-orange); text-shadow: 0 0 20px rgba(249, 115, 22, 0.1); }

.timer-digits .unit {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .promo-combined-hero {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
        text-align: center;
        max-width: 100%;
        padding: 1.5rem;
        border-right: none;
        border-left: 6px solid var(--accent-orange);
        margin-left: auto;
        margin-right: auto;
    }
    .promo-badge { justify-content: center; margin-bottom: 1rem; }
    .promo-divider {
        width: 100%;
        height: 1px;
    }
    .promo-timer-grid {
        flex-direction: row;
        justify-content: space-around;
        text-align: center;
        gap: 1rem;
    }
    .promo-timer-item { align-items: center; text-align: center; }
}


@media (max-width: 600px) {
    .promo-timer-grid {
        flex-direction: column;
        gap: 2rem;
    }
    .timer-digits .digit {
        font-size: 3.5rem;
    }
}

/* TALVINE PAKKUMINE & VORM */


/* FORM DESIGN */
.kr-form-card {
  position: relative;
  z-index: 0;
  max-width: 520px;
  margin: 0 auto 3rem auto;
  
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  padding: 24px;
  color: var(--text-main);
  transition: background .3s ease, backdrop-filter .3s ease, box-shadow .25s ease;
  font-family: var(--font-body);
  text-align: left;
}
.kr-form-card:not(.is-engaged):hover {
  background: var(--surface-color-hover);
}
.kr-form-card.is-engaged,
.kr-form-card:focus-within {
  background: var(--surface-color) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.6) !important;
  border-color: var(--accent-cyan);
}
.kr-form-card .kr-form-head {
  text-align: center;
  margin-bottom: 24px;
}
.kr-form-card .kr-title {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-main);
  font-family: var(--font-heading);
}
.kr-form-card .kr-sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.kr-form-card .kr-field {
  margin: 16px 0;
}
.kr-form-card .kr-legend,
.kr-form-card .kr-field label {
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 8px;
  display: inline-block;
  font-size: 0.95rem;
}
.kr-form-card .kr-field > label span,
.kr-form-card .kr-legend span {
  color: var(--accent-orange);
}
.kr-form-card .kr-radio {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 14px 0;
  cursor: pointer;
}
.kr-form-card .kr-radio span {
  color: var(--text-muted) !important;
  font-size: 0.95rem;
  line-height: 1.4 !important;
  white-space: normal !important;
}
.kr-form-card .kr-field input,
.kr-form-card .kr-field textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-color);
  font-size: 1rem;
  color: var(--text-main);
  transition: border-color .2s, box-shadow .2s;
}
.kr-form-card .kr-field input:focus,
.kr-form-card .kr-field textarea:focus {
  outline: 0;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.2);
}
.kr-form-card .kr-btn-submit {
  width: 100%;
  padding: 16px 20px;
  border: 0;
  border-radius: 12px;
  background: var(--accent-orange);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 0 15px var(--accent-orange-glow);
  margin-top: 10px;
}
.kr-form-card .kr-btn-submit:hover {
  background: transparent;
  color: var(--accent-orange);
  border: 2px solid var(--accent-orange);
  box-shadow: 0 0 25px var(--accent-orange-glow);
  transform: translateY(-2px);
}
.kr-radio input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-top: 2px !important;
  accent-color: var(--accent-cyan);
}
.kr-choice {
  border: none;
  padding: 0;
}
.kr-reveal-row {
  display: flex;
  gap: 10px;
  margin: 10px 0 16px;
  justify-content: flex-start;
}
.kr-reveal-hint {
  font-size: .85rem;
  color: var(--accent-cyan);
  flex-grow: 1;
}
.kr-reveal-btn {
  display: none;
}
.kr-more {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height .4s ease, opacity .3s ease;
}
.kr-reveal-toggle:checked ~ .kr-more,
.kr-form-card.is-engaged .kr-more {
  max-height: 2000px;
  opacity: 1;
  pointer-events: auto;
}
.kr-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin: 20px 0;
}

/* REVIEWS CAROUSEL & TRUNCATION */
.rev-text {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.read-more-btn {
  display: inline-block;
  background: none;
  border: none;
  color: var(--accent-cyan);
  cursor: pointer;
  font-weight: 700;
  text-decoration: underline;
  padding: 0;
  margin-left: 5px;
  font-size: 0.95rem;
}
.read-more-btn:hover {
  filter: brightness(1.2);
}

.google-reviews .rating {
  text-align: center;
  margin-bottom: 2rem;
}

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.google-badge img {
  height: 24px;
  filter: none !important; /* Use original Google colors for light theme */
}

/* No filter needed for light theme */

.google-badge span {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: var(--text-main);
}

.google-reviews .stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 0.5rem;
  color: #ffb400;
}

.google-reviews .stars i {
  font-size: 1.25rem;
}

.google-reviews p {
  font-weight: 600;
  color: var(--text-main);
}

/* REVIEWS SLIDER WRAP (Consistent with Exam Dates) */
.reviews-slider-wrap {
    position: relative;
    padding: 0 45px; /* Space for arrows */
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-carousel {
    display: flex !important;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0 2rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    justify-content: center; /* Center cards on desktop if they fit */
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.reviews-carousel .testimonial {
    flex: 0 0 450px; /* Base width for desktop */
    min-width: 450px;
    scroll-snap-align: center;
    margin-bottom: 0 !important;
    transition: var(--transition);
}

@media (max-width: 768px) {
  .reviews-slider-wrap {
    margin: 0 -1rem;
    padding: 0 40px; /* Keep padding for arrows on mobile too */
  }
  .reviews-carousel {
    gap: 1.5rem;
    justify-content: flex-start; /* Switch to start on mobile for scrolling */
  }
  .reviews-carousel .testimonial {
    flex: 0 0 calc(100vw - 120px);
    min-width: 250px;
    scroll-snap-align: center;
  }
}

/* PHOTO CAPTIONS */
.img-caption {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.4;
  text-align: center;
}

/* FEATURED TESTIMONIAL (ANTON) */
.featured-testimonial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 0;
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}
.featured-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.featured-text {
  margin-bottom: 0 !important;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .featured-testimonial {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1.5rem;
  }
}

/* HERO FORM ENHANCEMENTS */
.guarantee-callout-inline {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-left: 4px solid var(--accent-cyan);
    border-radius: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.guarantee-callout-inline h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* INSTRUCTOR CENTERED DESIGN */
.instructor-flex-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}
.ins-col {
    flex: 1;
}
.ins-image-wrap {
    text-align: center;
}
.ins-image-wrap img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--accent-cyan);
    box-shadow: 0 0 30px var(--accent-cyan-glow);
    margin-bottom: 1rem;
}
.ins-text-left { text-align: right; }
.ins-text-right { text-align: left; }

@media (max-width: 992px) {
    .instructor-flex-center {
        flex-direction: column;
        text-align: center;
    }
    .ins-text-left { text-align: center; }
    .ins-text-right { text-align: center; }
}

/* TRANSPARENT INFO WITH PHOTO */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.check-list {
    margin-top: 2rem;
}
.check-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.info-photo img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* PRINCIPLES GRID */
.principles-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.principle-item {
    padding: 2.5rem !important;
    text-align: center;
}
.principle-item i {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
    display: block;
}

/* WHY CHOOSE */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.why-item {
    display: flex;
    gap: 1.5rem;
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: 15px;
}
.why-item i {
    font-size: 1.5rem;
    margin-top: 5px;
}
.why-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.why-item span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Hero subtitle centering */
.hero-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px; /* Adjust as needed */
}

@media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr; }
}

/* CONDITIONS */
.conditions-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}
.condition-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}
.condition-card ul {
    list-style: none;
    padding: 0;
}
.condition-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}
.condition-card li:last-child { border: none; }
.cond-list {
    list-style: none;
    padding: 0;
}
.cond-list li {
    padding: 4px 0;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
}
.cond-list li:last-child { border: none !important; }
.cond-list strong { color: var(--text-main); }

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}
.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}
.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* PRICING CARDS RESTORED */
.pricing-card-new {
  background: var(--card-bg) !important;
  color: var(--text-main) !important;
  padding: 0 !important;
  overflow: hidden;
  border-radius: 20px !important;
  border: 1px solid var(--border-color) !important;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.pricing-card-new:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan) !important;
}
.p-top {
  padding: 20px 25px;
  background: rgba(0, 0, 0, 0.03);
}
.p-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.p-cat {
  color: var(--text-main);
  font-weight: 800;
  font-size: 1.3rem;
  font-family: var(--font-heading);
}
.p-badge {
  background: var(--accent-orange);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 0 10px var(--accent-orange-glow);
}
.p-loc {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.p-banner {
  background: rgba(0, 180, 216, 0.1);
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 180, 216, 0.2);
}
.p-banner-title {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--accent-cyan);
}
.p-banner-sub {
  font-size: 0.95rem;
  color: var(--text-main);
  opacity: 0.8;
}
.p-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.p-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.p-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
  color: var(--text-main);
}
.p-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-cyan);
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.old-price {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.6;
}
.p-subtitle {
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.p-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}
.p-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-main);
  opacity: 0.9;
}
.p-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-size: 0.8rem;
}
.p-features a {
  color: var(--accent-cyan);
  text-decoration: underline;
}
.p-guarantee {
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 30px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-guarantee::before {
  content: "\f2b5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.p-btns {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-btns .btn {
  width: 100%;
}
.p-btn-link {
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}
@media (min-width: 769px) {
  .p-btns {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .p-btns .btn {
    width: auto;
  }
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 8px;
  margin-right: 5px;
}

.lang-switcher a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  min-width: 32px;
  text-align: center;
  display: inline-block;
}

.lang-switcher a:hover {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
}

.lang-switcher a.active {
  color: #fff !important;
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
}

/* FOOTER & FINAL POLISH */
.footer {
    background: var(--surface-color);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: 3rem;
}

.footer-cta {
    text-align: center;
    margin-bottom: 2.5rem;
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--accent-cyan);
    transform: translateY(-2px);
}

.contact-item i {
    color: var(--accent-cyan);
    font-size: 1.5rem;
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* STAT FACT CALLOUT */
.stat-fact-sec {
    padding: 2rem 0;
}
.stat-callout {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 6px solid var(--accent-cyan);
}
.stat-icon {
    font-size: 3rem;
    flex-shrink: 0;
}
.stat-text {
    flex-grow: 1;
}
.stat-main {
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}
.stat-link a {
    font-size: 0.95rem;
    color: var(--accent-cyan);
    text-decoration: underline;
    font-weight: 500;
}
.stat-image {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: inline-block;
    max-width: 100%;
}
.stat-image img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.stat-image:hover img {
    transform: scale(1.02);
}

/* ==================================================
   Exclusive Exams (Hero Integrated)
   ================================================== */
.exclusive-exams-hero {
    padding: 1.5rem 0 3rem 0;
    position: relative;
    z-index: 10;
}

.exam-tickets-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0 2rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    scroll-snap-type: x mandatory;
    justify-content: center; /* Center tickets on desktop if they fit */
}

.exam-tickets-scroll::-webkit-scrollbar {
    display: none; /* Always hide scrollbar as we have arrows */
}

.exam-scroll-wrap {
    position: relative;
    padding: 0 45px; /* Space for arrows */
    max-width: 1200px;
    margin: 0 auto;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.scroll-btn:hover {
    background: var(--accent-cyan);
    color: white;
    border-color: var(--accent-cyan);
}

.scroll-btn.prev { left: 0; }
.scroll-btn.next { right: 0; }

@media (max-width: 1200px) {
    .exam-tickets-scroll, .reviews-carousel {
        justify-content: flex-start;
    }
}

.exam-ticket {
    flex: 0 0 230px; /* Narrower cards */
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.exam-ticket:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(24,91,180,0.15);
    border-color: var(--accent-cyan);
}

.exam-ticket.urgent-ticket {
    border: 2px solid var(--accent-orange);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(249, 115, 22, 0.2) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.ticket-date {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.8rem;
}

.urgent-ticket .ticket-date {
    border-bottom-color: rgba(249,115,22,0.2);
}

.ticket-date .day {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-heading);
}

.ticket-date .month {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
}

.urgent-ticket .ticket-date .day {
    color: var(--accent-orange);
}

.ticket-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spot-badge {
    display: inline-block;
    align-self: flex-start;
    background: rgba(249,115,22,0.1);
    color: var(--accent-orange);
    padding: 0.35rem 0.85rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.ticket-loc {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.ticket-loc i {
    color: var(--accent-cyan);
}

.exam-ticket.more-dates {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px dashed rgba(24, 91, 180, 0.15);
    box-shadow: none;
    align-items: flex-start;
    text-align: left;
    color: var(--text-muted);
    font-weight: 600;
    cursor: default;
    justify-content: flex-start;
    position: relative;
    overflow: visible;
}

.date-tag {
    background: var(--surface-color-hover);
    color: var(--text-main);
    padding: 6px 4px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 800;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.date-tag:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background: #fff;
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .exclusive-exams-hero {
        background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.4) 100%),
                    url('/assets/moto_premium_hero.png') center bottom 3rem / 100% auto no-repeat;
    }
    .exam-tickets-scroll {
        /* Allow scrollbar to show slightly or use padding to hint */
        padding-left: 1rem;
        padding-right: 1rem;
        gap: 1rem;
        scrollbar-width: auto; /* Show scrollbar on Firefox for hint */
    }
    .exam-scroll-wrap {
        padding: 0 35px; /* Smaller padding for smaller buttons on mobile */
    }
    .scroll-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    .exam-ticket {
        /* Width that leaves the next card visible */
        flex: 0 0 220px;
        max-width: 75vw;
    }
    .exam-tickets-scroll {
        padding-left: 0;
        padding-right: 0;
        gap: 1rem;
    }
    .exclusive-exams-hero .section-subtitle, 
    .exclusive-exams-hero h2, 
    .exclusive-exams-hero p {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 768px) {
    .stat-callout {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    .stat-image {
        padding: 5px;
    }
    .stat-main {
        font-size: 1.25rem;
    }
}

/* ==================================================
   Path/Timeline Section
   ================================================== */
.path-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.path-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    padding: 1rem;
    transition: var(--transition);
}

.path-step .step-num {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--surface-color);
    color: var(--text-muted);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.path-step.magic-step {
    margin: 1rem 0;
}

@media (max-width: 600px) {
    .path-step {
        gap: 1rem;
    }
    .path-step .step-num {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .path-step.magic-step {
        padding: 1.25rem !important;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

/* Navbar mobile fix */
@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 0;
    }
    .navbar .container {
        padding: 0 1rem;
    }
    .nav-logo {
        width: 130px !important;
        height: auto !important;
    }
    .lang-switcher {
        gap: 4px;
    }
    .lang-switcher a {
        padding: 2px 5px;
        min-width: 26px;
        font-size: 0.75rem;
    }
    .navbar .btn-outline {
        padding: 0.4rem 0.75rem !important;
        font-size: 0.8rem !important;
    }
}

/* Fix for ultra-small screens */
@media (max-width: 360px) {
    .nav-logo {
        width: 100px !important;
    }
    .lang-switcher a {
        padding: 2px 4px;
        min-width: 22px;
        font-size: 0.7rem;
    }
    .navbar .btn-outline {
        padding: 0.35rem 0.6rem !important;
        font-size: 0.75rem !important;
    }
    .hero .hero-title {
        font-size: 2rem;
    }
}

/* STUDENT GUIDE (start.php) */
.student-guide-sec {
    padding: 3rem 0 5rem;
    min-height: 80vh;
}
.guide-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.guide-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--text-main);
    font-family: var(--font-heading);
    line-height: 1.1;
}
.guide-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.sg-steps {
    max-width: 800px;
    margin: 0 auto 4rem auto;
}
.sg-steps-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--accent-orange);
    font-family: var(--font-heading);
}

.sg-step-box {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--accent-cyan);
}
.sg-step-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(24, 91, 180, 0.08);
    border-color: var(--accent-cyan);
}
.sg-step-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--text-main);
    font-family: var(--font-heading);
    margin-top: 0;
}
.sg-step-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
}
.sg-step-content p {
    margin-bottom: 1rem;
}
.sg-step-content p:last-child {
    margin-bottom: 0;
}

.sg-box {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.sg-box h3 {
    margin-top: 0;
    font-family: var(--font-heading);
}
.sg-box p {
    margin-bottom: 1rem;
    line-height: 1.7;
}
.sg-box p:last-child {
    margin-bottom: 0;
}

.sg-box.sg-why {
    border-left: 5px solid var(--accent-orange);
    background: linear-gradient(135deg, var(--surface-color) 0%, rgba(249, 115, 22, 0.03) 100%);
}
.sg-box.sg-info {
    border-left: 5px solid var(--accent-cyan);
    background: linear-gradient(135deg, var(--surface-color) 0%, rgba(24, 91, 180, 0.03) 100%);
}

.sg-breadcrumb {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    font-size: 1rem;
    font-weight: 500;
}
.sg-breadcrumb a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.sg-breadcrumb a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .student-guide-sec { padding-top: 2rem; }
    .sg-step-box, .sg-box { padding: 1.75rem; }
    .guide-header { margin-bottom: 2.5rem; }
    .kr-form-card { margin-left: auto !important; margin-right: auto !important; }
}

/* ==================================================
   Event Styles (Warm-up Day)
   ================================================== */
.event-top-banner {
    background: #0f172a;
    color: #f1f5f9;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.92rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 500;
}

.event-top-banner a {
    color: #fff;
    font-weight: 600;
    background: var(--accent-cyan);
    padding: 3px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

.event-top-banner a:hover {
    background: #fff;
    color: var(--accent-cyan);
}

/* Adjust navbar when banner is present */
body.has-event-banner {
    padding-top: 55px; 
}

body.has-event-banner .navbar {
    top: 55px;
}

.event-section {
    background: var(--surface-color-hover);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.event-card {
    background: white;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

.event-image {
    position: relative;
    min-height: 400px;
    background: url('/assets/taba.png') center/cover no-repeat;
    background-color: var(--accent-cyan);
}

.event-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(24, 91, 180, 0.4) 0%, rgba(249, 115, 22, 0.2) 100%);
}

.event-image-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: white;
    color: var(--accent-orange);
    padding: 0.5rem 1.25rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 2;
    text-align: center;
}

.event-image-badge span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.event-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-badge {
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-orange);
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    display: inline-block;
    align-self: flex-start;
}

.event-content h2 {
    text-align: left !important;
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.event-subtitle {
    font-size: 1.25rem;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.event-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.event-details-grid {
    margin-bottom: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 600;
}

.event-detail-item i {
    color: var(--accent-cyan);
    font-size: 1.4rem;
    width: 24px;
    text-align: center;
}

.event-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    margin-top: 1rem;
}

.event-urgency-note {
    font-size: 0.95rem;
    color: var(--accent-orange);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 992px) {
    .event-card {
        grid-template-columns: 1fr;
        max-width: 700px;
    }
    .event-image {
        min-height: 300px;
    }
    .event-content {
        padding: 3rem;
    }
}

@media (max-width: 600px) {
    .event-content {
        padding: 2rem;
    }
    .event-details-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .event-top-banner {
        font-size: 0.8rem;
        padding: 0.6rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    body.has-event-banner {
        padding-top: 75px;
    }
    body.has-event-banner .navbar {
        top: 75px;
    }
}