
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --navy:#1a2e5a;--blue:#2563eb;--sky:#3b82f6;--green:#16a34a;
  --orange:#d97706;--gold:#f59e0b;--red:#dc2626;
  --light:#f0f4ff;--white:#fff;--gray:#64748b;--text:#1e293b;
  --border:rgba(255,255,255,.6);
}
html{scroll-behavior:smooth}
/* ── HERO ── */
/* .hero{position:relative;overflow:hidden;min-height:300px;background:linear-gradient(108deg,#1a2e5a 0%,#1e3a8a 55%,#1d4ed8 100%);display:flex;align-items:center}
.hero-content{position:relative;z-index:2;padding:56px 5%;max-width:600px}
.hero-eyebrow{display:inline-block;background:rgba(255,255,255,.15);color:#93c5fd;font-size:.75rem;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;padding:5px 14px;border-radius:20px;margin-bottom:16px;border:1px solid rgba(255,255,255,.2)}
.hero-content h1{font-family:'Playfair Display',serif;font-size:clamp(1.8rem,3.8vw,2.8rem);color:#fff;line-height:1.2;margin-bottom:14px}
.hero-content h1 em{font-style:normal;color:#fbbf24}
.hero-desc{font-size:.9rem;color:rgba(255,255,255,.78);line-height:1.7;margin-bottom:30px;max-width:480px}
.hero-badges{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:30px}
.badge{display:inline-flex;align-items:center;gap:6px;background:rgba(255,255,255,.12);color:#e0f2fe;font-size:.78rem;font-weight:600;padding:6px 14px;border-radius:20px;border:1px solid rgba(255,255,255,.2)}
.badge svg{width:14px;height:14px;fill:currentColor}
.hero-ctas{display:flex;gap:12px;flex-wrap:wrap}
.btn{display:inline-block;padding:11px 22px;border-radius:7px;font-size:.88rem;font-weight:600;cursor:pointer;text-decoration:none;transition:transform .15s,box-shadow .15s;border:none;font-family:'DM Sans',sans-serif}
.btn:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,.2)}
.btn-gold{background:linear-gradient(135deg,#f59e0b,#d97706);color:#fff}
.btn-white-out{background:transparent;color:#fff;border:2px solid rgba(255,255,255,.55) !important}
.btn-white-out:hover{background:rgba(255,255,255,.1)}
.btn-navy{background:var(--navy);color:#fff}
.btn-blue{background:var(--blue);color:#fff}
.btn-green{background:var(--green);color:#fff} */

/* hero decorative orbs */
/* .hero-orb{position:absolute;border-radius:50%;filter:blur(60px);opacity:.18}
.orb1{width:320px;height:320px;background:#3b82f6;top:-80px;right:10%}
.orb2{width:200px;height:200px;background:#f59e0b;bottom:-60px;right:25%}
.orb3{width:160px;height:160px;background:#8b5cf6;top:30%;right:5%} */

/* hero flag strip */
/* 
/* --- Variables & Setup --- */
  /* --- Variables for Consistency --- */
:root {
  --navy: #1a2e5a;
  --blue-primary: #2563eb;
  --blue-light: #eff6ff;
  --gray-text: #475569;
  --white: #ffffff;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Hero Section Container --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow: hidden;
  padding: 80px 5%;
}

/* --- Content Styling --- */
.hero-content {
  position: relative;
  z-index: 10;
  width: 50%;
  max-width: 650px;
  margin-top:-2rem;
}


.hero-content h1 {
  font-family: 'Playfair Display', serif; /* Or your chosen elegant font */
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
}


/* Tagline Bar - Modern UX */
.hero-tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-tagline span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-primary);
  background: rgba(37, 99, 235, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


.hero-sub {
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 500px;
}


.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.btn-blue-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  margin-left: 15px;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.btn-blue-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* --- Image Illustration Handling --- */
.hero-doctors {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(120deg, #dbeafe 0%, #bfdbfe 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-doctors img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
}

/* CTA UX */
.hero-ctas {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
      display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-3px);
}

.btn-white-out {
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-white-out:hover {
  background: var(--white);
  color: var(--navy);
}

/* --- Hero Image Handling --- */
.hero-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%; /* Slightly overlaps the slant */
  height: 100%;
  z-index: 0;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* --- Responsive View (Tablet & Mobile) --- */

@media (max-width: 1024px) {
  .hero::before { width: 100%; clip-path: none; background: rgba(26, 54, 93, 0.85); } /* Overlay style for tablet */
  .hero-content { width: 100%; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-badges { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-img { 
    display: none;
    width: 100%; }
  .for-mobile-hero-image{
    display: none !important;
  }
  .hero{
    justify-content: center;
  }
  .for-mobile-hero-image{
    display: flex !important;
    width: 100%;
    height: 331px;
  }
  .for-mobile-hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 600px) {
  .hero { min-height: auto; padding:3rem 2rem; }
  .hero-content h1 { font-size: 2.2rem; }
  .btn { width: 100%; max-width: 300px; margin-left: 0; }
  .hero-badges { flex-direction: column; align-items: center; }
  .badge { width: 90%; text-align: center; }
  .hero-img{display:none}
  .for-mobile-hero-image{
    display: flex !important;
    width: 100%;
    height: 331px;
  }
  .for-mobile-hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

/* ── SECTION WRAPPER ── */
.section{padding:64px 5%}
.section-white{background:linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%)}
.section-gray{background:#fff}
.section-navy{background:var(--navy)}
.sec-header{text-align:center;margin-bottom:48px}
.sec-header h2, .divder-line h2{font-family:'Playfair Display',serif;font-size:clamp(1.5rem,3vw,2.5rem);color:var(--navy);margin-bottom:8px}
.sec-header p{font-size:1rem;color:var(--gray);max-width:560px;margin:0 auto;line-height:1.7}
.divider-line{display:flex;align-items:center;justify-content:center;gap:14px;margin-bottom:10px;}
.divider-line::before,.divider-line::after{content:'';flex:1;max-width:100px;height:1px;background:#cbd5e1}

/* ── PRICING GRID ── */
.pricing-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:20px;max-width:1400px;margin:0 auto}
@media(max-width:900px){.pricing-grid{grid-template-columns:repeat(2,1fr)}

}
@media(max-width:500px){.pricing-grid{grid-template-columns:1fr}}

/* complete card spans 2 cols */
.card-complete{grid-column:span 2}
@media(max-width:900px){.card-complete{grid-column:span 2}}
@media(max-width:500px){.card-complete{grid-column:span 1}}

.price-card{
  background:#fff;
  border:1.5px solid #e2e8f0;
  border-radius:16px;
  padding:28px 24px 24px;
  position:relative;
  overflow:hidden;
  transition:transform .25s,box-shadow .25s;
  display:flex;flex-direction:column;
}
.price-card:hover{transform:translateY(-6px);box-shadow:0 20px 48px rgba(0,0,0,.1)}
.price-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;border-radius:16px 16px 0 0}
.card-a1::before{background:linear-gradient(90deg,#3b82f6,#93c5fd)}
.card-a2::before{background:linear-gradient(90deg,#8b5cf6,#c4b5fd)}
.card-b1::before{background:linear-gradient(90deg,#16a34a,#4ade80)}
.card-b2::before{background:linear-gradient(90deg,#d97706,#fbbf24)}
.card-complete::before{background:linear-gradient(90deg,#1a2e5a,#2563eb,#d97706)}
.card-complete{background:linear-gradient(145deg,#0f172a 0%,#1e3a8a 60%,#1a2e5a 100%);border-color:#2563eb;color:#fff}

.price-level{font-size:.72rem;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;margin-bottom:10px}
.card-a1 .price-level{color:var(--blue)}
.card-a2 .price-level{color:#8b5cf6}
.card-b1 .price-level{color:var(--green)}
.card-b2 .price-level{color:var(--orange)}
.card-complete .price-level{color:#fbbf24}

.price-card h3{font-family:'Playfair Display',serif;font-size:1.5rem;margin-bottom:1rem;text-align:center;}
.card-complete h3{color:#fff}
.price-card .price-tag{font-size:1.8rem;font-weight:800;color:var(--navy);margin:14px 0 4px;font-family:'Playfair Display',serif; text-align: center;}
.card-complete .price-tag{color:#fbbf24}
.price-card .price-note{font-size:.75rem;color:var(--gray);margin-bottom:18px}
.card-complete .price-note{color:rgba(255,255,255,.6)}

.price-features{list-style:none;flex:1}
.price-features li{
      font-size: 1rem;
    color: #374151;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.card-complete .price-features li{color:rgba(255,255,255,.85);border-bottom-color:rgba(255,255,255,.1)}
.price-features li::before{content:'✓';color:var(--green);font-weight:700;font-size:.8rem;flex-shrink:0}
.card-complete .price-features li::before{color:#fbbf24}

/* TELC/Goethe stamp */
.exam-stamp{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(245,158,11,.15);
  border:1.5px solid rgba(245,158,11,.4);
  border-radius:8px;padding:8px 14px;margin-bottom:18px;
}
.stamp-seal{
  width:36px;height:36px;border-radius:50%;
  background:linear-gradient(135deg,#f59e0b,#d97706);
  display:flex;align-items:center;justify-content:center;
  font-size:.5rem;font-weight:800;color:#fff;text-align:center;
  line-height:1.2;letter-spacing:.3px;flex-shrink:0;
  border:2px solid rgba(255,255,255,.25);
  box-shadow:0 2px 8px rgba(245,158,11,.4);
}
.stamp-text{font-size:.75rem;color:#fbbf24;font-weight:600;line-height:1.4}
.stamp-text span{display:block;font-size:.65rem;color:rgba(255,255,255,.5);font-weight:400}

/* popular badge */
.popular-tag{
  position:absolute;top:16px;right:16px;
  background:linear-gradient(135deg,#f59e0b,#d97706);
  color:#fff;font-size:.65rem;font-weight:700;
  padding:4px 10px;border-radius:20px;letter-spacing:.5px;text-transform:uppercase;
}

/* duration pills */
.duration-pill{
      /* display: inline-flex; */
    align-items: center;
    gap: 5px;
    color: var(--navy);
    font-size: 1rem;
    font-weight: 500;
    /* padding: 4px 10px; */
    border-radius: 20px;
    margin-bottom: 14px;
    text-align: center;
    color: #374151;
    margin:12px 0;
}


/* ── WHAT'S INCLUDED ── */
.included-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:20px;
  max-width:900px;margin:0 auto;
}
@media(max-width:720px){.included-grid{grid-template-columns:repeat(2,1fr)}}

.included-item{
  display:flex;flex-direction:column;align-items:center;text-align:center;
  background:#fff;border-radius:14px;padding:24px 16px;
  border:1px solid #e2e8f0;
  transition:transform .2s,box-shadow .2s;
}
.included-item:hover{transform:translateY(-4px);box-shadow:0 8px 28px rgba(37,99,235,.1)}
.inc-icon{
  width:52px;height:52px;border-radius:14px;
  background:linear-gradient(135deg,#dbeafe,#eff6ff);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:2rem;font-size:1.4rem;
  box-shadow:0 4px 12px rgba(37,99,235,.12);
}
.included-item h4{font-size:.88rem;font-weight:700;color:var(--navy);margin-bottom:4px}
.included-item p{font-size:.76rem;color:var(--gray);line-height:1.5}

/* ── VIDEO SECTION ── */
.video-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;max-width:1000px;margin:0 auto}
@media(max-width:800px){.video-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:420px){.video-grid{grid-template-columns:1fr}}

.video-thumb{
  border-radius:14px;overflow:hidden;cursor:pointer;
  box-shadow:0 4px 20px rgba(0,0,0,.1);
  transition:transform .25s,box-shadow .25s;
  position:relative;
  background:#1e293b;
}
.video-thumb:hover{transform:translateY(-5px);box-shadow:0 16px 40px rgba(0,0,0,.2)}
.thumb-img{width:100%;height:150px;object-fit:cover;display:block;position:relative}
.thumb-bg{width:100%;height:150px;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}

/* animated play button */
.play-btn{
  width:52px;height:52px;border-radius:50%;
  background:rgba(255,255,255,.92);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 20px rgba(0,0,0,.25);
  transition:transform .2s,background .2s;
  position:absolute;z-index:2;
  flex-shrink:0;
}
.video-thumb:hover .play-btn{transform:scale(1.12);background:#fff}
.play-btn svg{width:20px;height:20px;fill:var(--navy);margin-left:3px}

/* ripple on play */
@keyframes ripple{0%{transform:scale(1);opacity:.6}100%{transform:scale(1.8);opacity:0}}
.play-ripple{
  position:absolute;width:52px;height:52px;border-radius:50%;
  background:rgba(255,255,255,.4);
  animation:ripple 1.8s infinite;
}

.thumb-label{padding:12px 14px;background:#fff}
.thumb-label h4{font-size:.82rem;font-weight:700;color:var(--navy);margin-bottom:2px;text-align:center;}
.thumb-label p{font-size:.72rem;color:var(--gray); text-align:center}

/* gradient overlays for thumbs */
.tv-classroom{background:linear-gradient(135deg,#1e3a8a,#2563eb)}
.tv-testimonial{background:linear-gradient(135deg,#064e3b,#16a34a)}
.tv-goethe{background:linear-gradient(135deg,#7c2d12,#c2410c)}
.tv-interview{background:linear-gradient(135deg,#4c1d95,#7c3aed)}
.video_thumbnail{
  height: 100%;width:100%;
}
.video_thumbnail img{
  width:100%;height:100%;object-fit:cover;display:block;
}
/* thumb text watermark */
.tv-text{position:absolute;bottom:10px;left:10px;right:10px;color:rgba(255,255,255,.7);font-size:.7rem;font-weight:600;letter-spacing:.3px;z-index:1}
.tv-icon{position:absolute;top:12px;right:12px;font-size:1.4rem;opacity:.4}

/* ── STATS ROW ── */
.stats-row{display:grid;grid-template-columns:repeat(4,1fr);gap:0;max-width:900px;margin:0 auto;background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.06)}
.stat-item{text-align:center;padding:32px 20px;border-right:1px solid #f1f5f9}
.stat-item:last-child{border-right:none}
.stat-num{font-family:'Playfair Display',serif;font-size:2rem;font-weight:800;color:var(--navy);margin-bottom:4px}
.stat-num span{color:var(--blue)}
.stat-label{font-size:.8rem;color:var(--gray)}

/* ── MODAL ── */
.modal-overlay{
  display:none;position:fixed;inset:0;z-index:999;
  background:rgba(0,0,0,.85);backdrop-filter:blur(6px);
  align-items:center;justify-content:center;
  padding:20px;
}
.modal-overlay.open{display:flex}
.modal-box{
  background:#0f172a;border-radius:16px;overflow:hidden;
  width:100%;max-width:780px;
  box-shadow:0 32px 80px rgba(0,0,0,.6);
  position:relative;
  animation:modalIn .35s cubic-bezier(.34,1.4,.64,1) forwards;
}
@keyframes modalIn{from{opacity:0;transform:scale(.88)}to{opacity:1;transform:scale(1)}}
.modal-header{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;background:#1e293b}
.modal-title{color:#fff;font-weight:700;font-size:.95rem;font-family:'Playfair Display',serif}
.modal-close{width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,.1);border:none;color:#fff;font-size:1.1rem;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s}
.modal-close:hover{background:rgba(255,255,255,.2)}
.modal-video{width:100%;aspect-ratio:16/9;background:#000;display:block}
.modal-footer{padding:14px 20px;background:#1e293b;display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}
.modal-desc{font-size:.82rem;color:rgba(255,255,255,.6)}
.modal-cta{background:linear-gradient(135deg,#f59e0b,#d97706);color:#fff;font-size:.8rem;font-weight:700;padding:8px 18px;border-radius:6px;text-decoration:none;transition:opacity .2s}
.modal-cta:hover{opacity:.85}


/* footer */
footer{background:var(--navy);color:rgba(255,255,255,.5);text-align:center;font-size:.78rem;padding:18px}
footer a{color:rgba(255,255,255,.7);text-decoration:none}

/* anims */
@keyframes fadeUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}
.fade-in{opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease}
.fade-in.visible{opacity:1;transform:translateY(0)}

/* Hero illustration */
.hero-img{position:absolute;right:0;top:0;bottom:0;width:50%;height:100%;background:linear-gradient(120deg,#93c5fd 0%,#bfdbfe 100%);clip-path:polygon(8% 0,100% 0,100% 100%,0 100%);overflow:hidden}
.hero-img img{width:100%;height:100%;object-fit:cover;display:block}

/* ── HERO ── */
  .hero {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex; align-items: flex-start;
    max-height: 1600px;
  }
  .hero-content {
    position: relative; z-index: 2;

  }
  
  .hero-tagline {
    font-size: .82rem;
    color: var(--gray);
    letter-spacing: .3px;
    margin-bottom: 16px;
  }
  .hero-tagline span { margin-right: 14px; }
  .hero-tagline span::before { content: '| '; color: #cbd5e1; }
  .hero-tagline span:first-child::before { content: ''; }
  .hero-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.8rem;
  }
  .hero-sub { font-size: .83rem; color: var(--gray); margin-bottom: 28px; }

  .btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
  .btn-navy {
    display: inline-block;
    background-color: var(--navy);
    color: var(--white) !important;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(26, 43, 82, 0.2);
    text-align: center;
  }
  .btn-blue-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); margin-left: 12px; }
  .btn-green { background: var(--green); color: #fff; }
  .btn-orange { background: #c2410c; color: #fff; }
  .btn-sky   { background: var(--sky); color: #fff; }

 .ptn-btn{
      width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
    transition: transform .2s, background .2s;
    position: absolute;
    z-index: 2;
    flex-shrink: 0;
 }

 .hero-sub {
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 500px;
}



/* --- Buttons UX --- */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
}

.for-mobile-hero-image{
  display:none;
}