/* ============================================
   Listen and Repeat English Academy
   Classic & Elegant · Charcoal + Coral
   ============================================ */

/* — CSS Custom Properties */
:root {
    --charcoal: #1a1a2e;
    --charcoal-light: #2d2d44;
    --charcoal-soft: #3a3a52;
    --coral: #e8645a;
    --coral-light: #f08078;
    --coral-pale: #fdf0ef;
    --cream: #faf8f6;
    --cream-dark: #f3efe9;
    --warm-gray: #6b6560;
    --warm-gray-light: #9e9790;
    --off-white: #fefdfb;
    --text-primary: #1a1a2e;
    --text-secondary: #4a4540;
    --text-muted: #8a8480;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.06);
    --shadow-md: 0 4px 20px rgba(26, 26, 46, 0.08);
    --shadow-lg: 0 12px 40px rgba(26, 26, 46, 0.12);
    --shadow-xl: 0 20px 60px rgba(26, 26, 46, 0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background-color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* — Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

/* — Utility */
.section__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 0.75rem;
}

.section__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.section__title-accent {
    color: var(--coral);
    font-style: italic;
}

.section__description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.8;
}

/* — Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--coral);
    color: #fff;
    border-color: var(--coral);
}

.btn--primary:hover {
    background-color: var(--coral-light);
    border-color: var(--coral-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background-color: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.btn--outline:hover {
    background-color: var(--charcoal);
    color: #fff;
    transform: translateY(-2px);
}

.btn--outline-light {
    background-color: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.btn--outline-light:hover {
    background-color: var(--charcoal);
    color: #fff;
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* — Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 246, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 26, 46, 0.06);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
}

.nav__logo-icon {
    color: var(--coral);
}

.nav__logo-text {
    letter-spacing: -0.01em;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--charcoal);
    background: rgba(26, 26, 46, 0.04);
}

.nav__link--cta {
    background-color: var(--coral);
    color: #fff !important;
    margin-left: 0.5rem;
}

.nav__link--cta:hover {
    background-color: var(--coral-light);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle-bar {
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 46, 0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.nav__overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* — Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 1.5rem 4rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 100, 90, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 1rem;
}

.hero__title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

.hero__title-accent {
    color: var(--coral);
    font-style: italic;
}

.hero__description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 0;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0 1.5rem;
}

.hero__stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
}

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(26, 26, 46, 0.12);
}

.hero__image {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 600/750;
}

.hero__image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--coral);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.15;
}

.hero__image-badge {
    position: absolute;
    bottom: 2rem;
    left: -1.5rem;
    background: var(--off-white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
}

.hero__image-badge svg {
    color: var(--coral);
    flex-shrink: 0;
}

/* — Method */
.method {
    padding: 6rem 1.5rem;
    background: var(--off-white);
}

.method__container {
    max-width: 1200px;
    margin: 0 auto;
}

.method__header {
    text-align: center;
    margin-bottom: 4rem;
}

.method__header .section__description {
    margin: 0 auto;
}

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

.method-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(26, 26, 46, 0.06);
    transition: var(--transition);
}

.method-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.method-card__icon {
    width: 56px;
    height: 56px;
    background: var(--coral-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin-bottom: 1.25rem;
}

.method-card__title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.method-card__text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* — Courses */
.courses {
    padding: 6rem 1.5rem;
    background: var(--cream);
}

.courses__container {
    max-width: 1200px;
    margin: 0 auto;
}

.courses__header {
    text-align: center;
    margin-bottom: 4rem;
}

.courses__header .section__description {
    margin: 0 auto;
}

.courses__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.course-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    border: 1px solid rgba(26, 26, 46, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.course-card--featured {
    background: var(--charcoal);
    border-color: var(--charcoal);
}

.course-card--featured .course-card__tag {
    background: rgba(232, 100, 90, 0.2);
    color: var(--coral-light);
}

.course-card--featured .course-card__title {
    color: #fff;
}

.course-card--featured .course-card__description {
    color: rgba(255, 255, 255, 0.75);
}

.course-card--featured .course-card__features li {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
}

.course-card__tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
    background: var(--coral-pale);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.course-card__badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--coral);
    background: rgba(232, 100, 90, 0.15);
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
}

.course-card__title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.course-card__description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.course-card__features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.course-card__features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding-left: 1.25rem;
    position: relative;
    border-bottom: 1px solid rgba(26, 26, 46, 0.06);
    padding-bottom: 0.5rem;
}

.course-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    background: var(--coral);
    border-radius: 50%;
}

/* — About */
.about {
    padding: 6rem 1.5rem;
    background: var(--off-white);
}

.about__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__image-side {
    position: relative;
}

.about__image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 580/680;
}

.about__quote {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    background: var(--charcoal);
    color: #fff;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 320px;
}

.about__quote svg {
    color: var(--coral);
    margin-bottom: 0.5rem;
}

.about__quote p {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.about__content .section__title {
    margin-bottom: 1.5rem;
}

.about__text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 2rem;
}

.about__value {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.about__value svg {
    color: var(--coral);
    flex-shrink: 0;
}

/* — CTA */
.cta {
    padding: 6rem 1.5rem;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 100, 90, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta__content {
    color: #fff;
}

.cta__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #fff;
    margin-bottom: 1rem;
}

.cta__description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn--outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn--outline-light:hover {
    background: #fff;
    color: var(--charcoal);
    border-color: #fff;
}

.cta__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 500/500;
}

/* — Contact */
.contact {
    padding: 6rem 1.5rem;
    background: var(--cream);
}

.contact__container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact__header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact__header .section__description {
    margin: 0 auto;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact__info-icon {
    width: 48px;
    height: 48px;
    background: var(--coral-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}

.contact__info-label {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact__info-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact__info-item a {
    color: var(--coral);
    transition: var(--transition);
}

.contact__info-item a:hover {
    color: var(--coral-light);
    text-decoration: underline;
}

.contact__form-wrapper {
    background: var(--off-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid rgba(26, 26, 46, 0.06);
    box-shadow: var(--shadow-md);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.form__input {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--cream);
    border: 1.5px solid rgba(26, 26, 46, 0.1);
    border-radius: var(--radius-md);
    transition: var(--transition);
    outline: none;
}

.form__input:focus {
    border-color: var(--coral);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(232, 100, 90, 0.1);
}

.form__input::placeholder {
    color: var(--warm-gray-light);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6560' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__privacy {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.5rem;
}

.form__success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    gap: 1rem;
}

.form__success-icon {
    width: 72px;
    height: 72px;
    background: var(--coral-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
}

.form__success-title {
    font-size: 1.25rem;
}

.form__success-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.form__success-text a {
    color: var(--coral);
    font-weight: 500;
}

/* — Map */
.map-section {
    background: var(--cream-dark);
}

.map-section iframe {
    width: 100%;
    height: 320px;
    filter: grayscale(30%) contrast(1.05);
}

/* — Footer */
.footer {
    background: var(--charcoal);
    color: #fff;
    padding: 4rem 1.5rem 0;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.footer__logo-icon {
    color: var(--coral);
}

.footer__tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 280px;
}

.footer__heading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
}

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

.footer__links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--coral-light);
}

.footer__contact p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: 0.25rem;
}

.footer__contact a {
    color: var(--coral-light);
    transition: var(--transition);
}

.footer__contact a:hover {
    color: var(--coral);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* — Animations */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* — Responsive */
@media (max-width: 1024px) {
    .hero__container {
        gap: 2.5rem;
    }

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

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

    .courses__grid .course-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .cta__container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .cta__image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
        z-index: 1001;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--off-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 0.25rem;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__link {
        width: 100%;
        padding: 0.75rem 0;
        font-size: 1rem;
    }

    .nav__link--cta {
        margin-left: 0;
        margin-top: 0.5rem;
        text-align: center;
        width: 100%;
    }

    .hero {
        padding: 100px 1.5rem 3rem;
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero__image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero__image-wrapper {
        aspect-ratio: 4/5;
    }

    .hero__image-badge {
        left: 0.5rem;
        bottom: 1rem;
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero__stat-divider {
        display: none;
    }

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

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

    .courses__grid .course-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .about__container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about__quote {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        max-width: 100%;
    }

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

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .cta__actions {
        flex-direction: column;
    }

    .cta__actions .btn {
        width: 100%;
    }

    .contact__form-wrapper {
        padding: 1.5rem;
    }
}
