  :root {
    --ink: #0d0d0d;
    --cream: #f5f0e8;
    --gold: #c8953a;
    --gold-light: #e8b95a;
    --forest: #1a3a2a;
    --sage: #4a7c5e;
    --rust: #b84c2b;
    --mist: #e8ede9;
    --white: #ffffff;
    --card-bg: #ffffff;
    --shadow: 0 4px 32px rgba(13,13,13,0.10);
    --radius: 18px;
    --transition: 0.32s cubic-bezier(.4,0,.2,1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    min-height: 100vh;
    overflow-x: hidden;
  }

  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(245,240,232,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200,149,58,0.18);
    padding: 0 5vw;
    height: 70px;
    display: flex; align-items: center; justify-content: space-between;
    transition: box-shadow var(--transition);
  }
  nav.scrolled { box-shadow: 0 2px 24px rgba(13,13,13,0.10); }

  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 900;
    color: var(--forest);
    letter-spacing: -0.5px;
    cursor: pointer;
    user-select: none;
  }
  .logo span { color: var(--gold); }

  .nav-links {
    display: flex; gap: 2.2rem; list-style: none;
    align-items: center;
  }
  .nav-links a {
    font-size: 0.92rem; font-weight: 500;
    color: var(--ink); text-decoration: none;
    letter-spacing: 0.3px;
    position: relative; padding-bottom: 3px;
    transition: color var(--transition);
    cursor: pointer;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width var(--transition);
  }
  .nav-links a:hover, .nav-links a.active { color: var(--forest); }
  .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

  .nav-cta {
    background: var(--forest);
    color: var(--cream) !important;
    padding: 9px 22px !important;
    border-radius: 50px !important;
    transition: background var(--transition), transform var(--transition) !important;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--gold) !important; transform: translateY(-1px); }

  .burger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 6px;
    background: none; border: none;
  }
  .burger span {
    display: block; width: 26px; height: 2px;
    background: var(--ink);
    transition: var(--transition);
  }

  .mobile-menu {
    display: none;
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(200,149,58,0.2);
    padding: 1.5rem 5vw 2rem;
    flex-direction: column; gap: 1.2rem;
    z-index: 99;
    box-shadow: 0 8px 32px rgba(13,13,13,0.10);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-size: 1.05rem; font-weight: 500;
    color: var(--ink); text-decoration: none;
    cursor: pointer;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .mobile-menu a:last-child { border-bottom: none; }

  .page { display: none; padding-top: 70px; }
  .page.active { display: block; }

  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }
  .hero-left {
    background: var(--forest);
    display: flex; align-items: center;
    padding: 8vw 6vw 8vw 8vw;
    position: relative;
    overflow: hidden;
  }
  .hero-left::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(200,149,58,0.18) 0%, transparent 65%);
  }
  .hero-deco {
    position: absolute; top: -60px; right: -60px;
    width: 320px; height: 320px;
    border: 2px solid rgba(200,149,58,0.25);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-deco2 {
    position: absolute; bottom: 40px; left: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 11rem; font-weight: 900;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -4px;
  }

  .hero-content { position: relative; z-index: 1; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.6rem;
  }
  .hero-eyebrow::before {
    content: ''; display: block;
    width: 28px; height: 1.5px;
    background: var(--gold);
  }
  .hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 4.5vw, 5rem);
    font-weight: 900; line-height: 1.08;
    color: var(--white);
    margin-bottom: 1.8rem;
  }
  .hero-h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-sub {
    font-size: 1.05rem; line-height: 1.7;
    color: rgba(245,240,232,0.72);
    max-width: 380px;
    margin-bottom: 2.8rem;
  }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem; font-weight: 600;
    padding: 14px 30px;
    border-radius: 50px;
    border: none; cursor: pointer;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 18px rgba(200,149,58,0.35);
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,149,58,0.45); }

  .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem; font-weight: 500;
    padding: 13px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.35);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
  }
  .btn-outline:hover { border-color: var(--gold); background: rgba(200,149,58,0.1); }

  .hero-right {
    background: var(--mist);
    display: flex; align-items: center; justify-content: center;
    padding: 5vw;
    position: relative;
    overflow: hidden;
  }
  .hero-right::after {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a3a2a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .hero-cards {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; gap: 1.2rem;
    width: 100%; max-width: 360px;
  }
  .lang-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.8rem 2rem;
    box-shadow: var(--shadow);
    display: flex; align-items: center; gap: 1.4rem;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
  }
  .lang-card:hover { transform: translateX(8px); box-shadow: 0 8px 40px rgba(13,13,13,0.14); }
  .lang-flag {
    width: 54px; height: 54px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; flex-shrink: 0;
  }
  .flag-en { background: linear-gradient(135deg, #012169, #C8102E); }
  .flag-de { background: linear-gradient(180deg, #000 33%, #D00 33%, #D00 66%, #FFCC00 66%); }
  .lang-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; font-weight: 700;
    color: var(--forest);
    margin-bottom: 3px;
  }
  .lang-card-sub { font-size: 0.82rem; color: #888; }

  .stats-row {
    display: flex; gap: 1rem; margin-top: 1.4rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-chip {
    background: var(--white);
    border-radius: 50px;
    padding: 10px 18px;
    box-shadow: var(--shadow);
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem;
  }
  .stat-chip strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; color: var(--forest);
  }

  section { padding: 7rem 8vw; }
  .section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1rem;
  }
  .section-label::before {
    content: ''; display: block;
    width: 22px; height: 1.5px;
    background: var(--sage);
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 900; line-height: 1.12;
    color: var(--forest);
    margin-bottom: 1rem;
  }
  .section-sub {
    font-size: 1.02rem; line-height: 1.7;
    color: #666;
    max-width: 540px;
    margin-bottom: 3.5rem;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }
  .why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.2rem;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
    border: 1px solid transparent;
  }
  .why-card:hover { transform: translateY(-6px); border-color: rgba(200,149,58,0.25); }
  .why-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.3rem;
  }
  .why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700;
    color: var(--forest);
    margin-bottom: 0.7rem;
  }
  .why-card p { font-size: 0.9rem; line-height: 1.65; color: #666; }

  .testimonials { background: var(--forest); }
  .testimonials .section-label { color: var(--gold); }
  .testimonials .section-label::before { background: var(--gold); }
  .testimonials .section-title { color: var(--white); }
  .testimonials .section-sub { color: rgba(245,240,232,0.65); }

  .testi-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  }
  .testi-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius);
    padding: 2rem;
    transition: background var(--transition);
  }
  .testi-card:hover { background: rgba(255,255,255,0.10); }
  .stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1rem; }
  .testi-text {
    height: 50%;
    font-size: 0.95rem; line-height: 1.7;
    color: rgba(245,240,232,0.80);
    margin-bottom: 1.4rem;
    font-style: italic;
  }
  .testi-author { display: flex; align-items: center; gap: 0.9rem; }
  .avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--sage));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 1rem; color: white;
    flex-shrink: 0;
  }
  .testi-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
  .testi-role { font-size: 0.78rem; color: rgba(245,240,232,0.5); }

  .page-hero {
    background: var(--forest);
    padding: 6rem 8vw 5rem;
    position: relative; overflow: hidden;
  }
  .page-hero::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(200,149,58,0.15) 0%, transparent 65%);
  }
  .page-hero-label { color: var(--gold); }
  .page-hero-label::before { background: var(--gold); }
  .page-hero .section-title { color: var(--white); }
  .page-hero .section-sub { color: rgba(245,240,232,0.65); margin-bottom: 0; }

  .courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 5rem 8vw;
  }
  .course-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex; flex-direction: column;
  }
  .course-card:hover { transform: translateY(-8px); box-shadow: 0 16px 56px rgba(13,13,13,0.14); }
  .course-header {
    padding: 2.2rem 2.2rem 1.5rem;
    position: relative;
  }
  .course-header.en { background: linear-gradient(135deg, #012169 0%, #1a3a7a 100%); }
  .course-header.de { background: linear-gradient(135deg, #1a1a1a 0%, #333 100%); }
  .course-header.en-int { background: linear-gradient(135deg, #0a4d2e 0%, #1a6b45 100%); }
  .course-header.de-int { background: linear-gradient(135deg, #5a2200 0%, #8b4500 100%); }
  .course-flag { font-size: 2.5rem; margin-bottom: 1rem; display: block; color: #fefefe;}
  .course-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700;
    color: white; margin-bottom: 0.4rem;
  }
  .course-level {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white; font-size: 0.75rem; font-weight: 600;
    padding: 4px 12px; border-radius: 20px;
    letter-spacing: 0.8px; text-transform: uppercase;
  }
  .course-body { padding: 1.8rem 2.2rem 2.2rem; flex: 1; display: flex; flex-direction: column; }
  .course-desc { font-size: 0.92rem; line-height: 1.65; color: #666; margin-bottom: 1.5rem; }
  .course-features { list-style: none; margin-bottom: 1.8rem; display: flex; flex-direction: column; gap: 0.6rem; }
  .course-features li {
    font-size: 0.88rem; color: #555;
    display: flex; align-items: center; gap: 8px;
  }
  .course-features li::before {
    content: '✓';
    color: var(--sage); font-weight: 700; font-size: 0.85rem;
    flex-shrink: 0;
  }
  .course-footer {
    margin-top: auto;
    display: flex; align-items: center; justify-content: space-between;
  }
  .price {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 700;
    color: var(--forest);
  }
  .price span { font-size: 0.85rem; font-weight: 400; color: #888; font-family: 'DM Sans', sans-serif; }

  .btn-green {
    background: var(--forest);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem; font-weight: 600;
    padding: 10px 22px;
    border-radius: 50px; border: none; cursor: pointer;
    transition: background var(--transition), transform var(--transition);
  }
  .btn-green:hover { background: var(--gold); transform: translateY(-1px); }

  .about-split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
    padding: 6rem 8vw;
  }
  .about-visual {
    position: relative;
    height: 480px;
  }
  .about-img-block {
    position: absolute;
    border-radius: var(--radius);
    overflow: hidden;
  }
  .about-img-block.main {
    inset: 0 0 0 0;
    background: linear-gradient(145deg, var(--forest) 0%, #2d5a40 100%);
    display: flex; align-items: center; justify-content: center;
  }
  .about-big-letter {
    font-family: 'Playfair Display', serif;
    font-size: 14rem; font-weight: 900;
    color: rgba(255,255,255,0.08);
    line-height: 1;
  }
  .about-float {
    position: absolute;
    background: var(--white);
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
    box-shadow: var(--shadow);
    display: flex; align-items: center; gap: 1rem;
  }
  .about-float.f1 { bottom: 30px; left: -30px; }
  .about-float.f2 { top: 30px; right: -20px; }
  .float-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 900;
    color: var(--gold);
    line-height: 1;
  }
  .float-label { font-size: 0.8rem; color: #666; line-height: 1.4; max-width: 90px; }

  .team-section { padding: 2rem 8vw 6rem; }
  .team-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  }
  .teacher-card {
    width: 100%;
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow);
    text-align: center;
    transition: transform var(--transition);
  }
  .teacher-card:hover { transform: translateY(-6px); }
  .teacher-avatar {
    width: 100%;
    height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
    overflow: hidden;
  }
  .teacher-avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform var(--transition);
  }
  .teacher-info { padding: 1.2rem 1rem 1.5rem; }
  .teacher-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700; color: var(--forest);
    margin-bottom: 0.3rem;
  }
  .teacher-subject { font-size: 0.82rem; color: var(--sage); font-weight: 500; }

  .form-page { padding: 0; }
  .form-layout {
    display: grid; grid-template-columns: 1fr 1.4fr;
    min-height: calc(100vh - 70px);
  }
  .form-left {
    background: var(--forest);
    padding: 5rem 5vw;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
  }
  .form-left::before {
    content: '';
    position: absolute; bottom: -80px; right: -80px;
    width: 360px; height: 360px;
    border: 2px solid rgba(200,149,58,0.2);
    border-radius: 50%;
  }
  .form-left-label { color: var(--gold); }
  .form-left-label::before { background: var(--gold); }
  .form-left .section-title { color: var(--white); font-size: clamp(1.8rem,3vw,2.8rem); }
  .form-left .section-sub { color: rgba(245,240,232,0.65); margin-bottom: 2.5rem; }
  .form-perks { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
  .form-perks li {
    display: flex; align-items: flex-start; gap: 1rem;
    font-size: 0.9rem; color: rgba(245,240,232,0.80);
    line-height: 1.5;
  }
  .perk-icon {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(200,149,58,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
    margin-top: 1px;
  }

  .form-right {
    background: var(--cream);
    padding: 5rem 6vw;
    display: flex; flex-direction: column; justify-content: center;
  }
  .form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow);
    max-width: 520px;
    width: 100%;
  }
  .form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem; font-weight: 700;
    color: var(--forest);
    margin-bottom: 0.4rem;
  }
  .form-subtitle { font-size: 0.9rem; color: #888; margin-bottom: 2rem; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .form-group { margin-bottom: 1.2rem; }
  .form-group label {
    display: block;
    font-size: 0.82rem; font-weight: 600;
    color: var(--forest); letter-spacing: 0.3px;
    margin-bottom: 6px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: var(--cream);
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    padding: 12px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    color: var(--ink);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    -webkit-appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,149,58,0.12);
    background: white;
  }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .form-group select { background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23666' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }

  .checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 1.5rem; }
  .checkbox-group input[type=checkbox] {
    width: 18px; height: 18px; flex-shrink: 0;
    margin-top: 2px; cursor: pointer;
    accent-color: var(--forest);
  }
  .checkbox-group label { font-size: 0.82rem; color: #666; line-height: 1.5; cursor: pointer; }

  .btn-submit {
    width: 100%;
    background: var(--forest);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem; font-weight: 600;
    padding: 15px;
    border-radius: 50px;
    border: none; cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 18px rgba(26,58,42,0.25);
    letter-spacing: 0.3px;
  }
  .btn-submit:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,149,58,0.35); }

  .success-msg {
    display: none;
    text-align: center; padding: 2rem;
  }
  .success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
  .success-msg h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; color: var(--forest); margin-bottom: 0.5rem;
  }
  .success-msg p { font-size: 0.9rem; color: #666; line-height: 1.6; }

  footer {
    background: var(--ink);
    color: rgba(245,240,232,0.6);
    padding: 4rem 8vw 2.5rem;
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem; margin-bottom: 3rem;
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 900;
    color: var(--white);
    margin-bottom: 0.8rem;
  }
  .footer-logo span { color: var(--gold); }
  .footer-desc { font-size: 0.87rem; line-height: 1.65; max-width: 260px; }
  .footer-col h4 {
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--white); margin-bottom: 1rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-col ul li a, .footer-col ul li {
    font-size: 0.87rem; color: rgba(245,240,232,0.55);
    text-decoration: none; cursor: pointer;
    transition: color var(--transition);
  }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.8rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.82rem;
  }

  .toast {
    position: fixed; bottom: 30px; right: 30px;
    background: var(--forest);
    color: white;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 0.9rem; font-weight: 500;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transform: translateY(80px); opacity: 0;
    transition: all var(--transition);
    z-index: 999;
  }
  .toast.show { transform: translateY(0); opacity: 1; }

  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { min-height: 90vh; padding: 10vw 8vw; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .testi-grid { grid-template-columns: 1fr 1fr; }
    .courses-grid { grid-template-columns: 1fr; }
    .about-split { grid-template-columns: 1fr; }
    .about-visual { height: 300px; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .form-layout { grid-template-columns: 1fr; }
    .form-left { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 700px) {
    nav { padding: 0 5vw; }
    .nav-links { display: none; }
    .burger { display: flex; }
    section { padding: 4rem 5vw; }
    .hero-h1 { font-size: 2.6rem; }
    .why-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .form-right { padding: 3rem 5vw; }
    .form-card { padding: 2rem 1.5rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
    .stats-row { flex-wrap: wrap; }
    .page-hero { padding: 4rem 5vw 3rem; }
  }

  @media (max-width: 400px) {
    .hero-h1 { font-size: 2.1rem; }
    .hero-btns { flex-direction: column; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  }