/* ====== Base Reset ====== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; height: auto; }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--brand-2); outline-offset: 3px; }

/* ====== Typography & Colors ====== */
:root{
  --bg: #0b0b18;
  --bg-2: #121228;
  --text: #eaeaf2;
  --muted: #b7b7c9;
  --brand: #7b5cff;  /* accent */
  --brand-2: #bb86fc;
  --card: #15152b;
  --border: #26264a;
  --success: #4ade80;
}

body{
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 70% 10%, #1b1132 0%, #0b0b18 60%);
  line-height: 1.65;
  scroll-behavior: smooth;
}

/* ====== Layout ====== */
.container{
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 0 8px;
}
.section{ padding: 72px 0; }

h1,h2,h3{
  font-weight: 700;
  letter-spacing: 0.2px;
  margin: 0 0 16px;
}
h1{ font-family: 'Playfair Display', serif; font-size: clamp(28px, 4.2vw, 48px); line-height: 1.15; }
h2{ font-size: clamp(24px, 3vw, 34px); }
h3{ font-size: clamp(18px, 2.2vw, 22px); }
p{ margin: 0 0 14px; color: var(--muted); }
.lead{ font-size: 18px; color: var(--text); }
.muted{ color: var(--muted); }

/* ====== Header / Nav ====== */
.site-header{
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,11,24,0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  height: 64px;
}
.logo{ color: var(--text); text-decoration: none; font-weight: 700; }
.nav{ display:flex; gap:18px; align-items: center; }
.nav a{
  color: var(--muted); text-decoration:none; padding: 8px 10px; border-radius: 8px;
}
.nav a:hover{ color: var(--text); background: #1a1a33; }
.nav .cta-link{ border: 1px solid var(--border); border-radius: 10px; padding: 8px 12px; }
.nav .cta-link:hover{ border-color: var(--brand); }

.nav-toggle{
  display:none;
  font-size:26px;
  background:transparent; border:0; color: var(--text); cursor:pointer;
}

@media (max-width: 880px){
  .nav{ 
    position: fixed; inset: 64px 0 auto 0;
    background: rgba(13,13,29,0.98);
    border-bottom: 1px solid var(--border);
    display: grid; gap: 6px; padding: 14px 18px;
    transform: translateY(-120%); transition: transform .25s ease;
  }
  .nav.open{ transform: translateY(0); }
  .nav a{ padding: 12px 10px; font-size: 16px; }
  .nav-toggle{ display:block; }
}

/* ====== Buttons ====== */
.btn, .btn-outline{
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .12s ease, background .2s ease, color .2s ease, border-color .2s ease;
  will-change: transform;
}
.btn{ background: linear-gradient(90deg, var(--brand), var(--brand-2)); color:#0b0b18; }
.btn:hover{ transform: translateY(-1px); }
.btn-outline{
  border: 1px solid var(--border); color: var(--text);
}
.btn-outline:hover{ border-color: var(--brand); color: var(--text); }

/* ====== Hero ====== */
.hero{
  position: relative; overflow: hidden;
  background: radial-gradient(900px 400px at 80% 10%, #241a45, #0b0b18 60%);
}
.hero-bg{
  position: absolute; inset:0;
  background: radial-gradient(600px 300px at 15% 0%, rgba(187,134,252,0.15), transparent 60%);
  pointer-events: none;
}
.hero-inner{
  display:grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 32px;
  padding: 56px 0 40px;
}
.hero-text p{ font-size: 18px; }
.hero-ctas { display: flex; gap: 10px; margin: 16px 0 8px; }
.trust{ display:flex; gap: 14px; flex-wrap: wrap; padding: 0; margin: 10px 0 0; list-style: none; color: var(--muted); }

.hero-image{
  max-width: 520px; justify-self: end;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.hero-image img{ width:100%; height:auto; }

/* ====== Trust badge ====== */
.trust-badge-item {
  display: flex;
  align-items: center;
  padding: 0;
}
/* Badge styling in trust list: small circular icon */
.trust-badge-item img.trust-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: block;
  margin-left: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-image{ justify-self: start; max-width: 420px; }
}

/* ====== About Section ====== */
.about-inner{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
}
.about-image img{
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}
@media (max-width: 980px){
  .about-inner{ grid-template-columns: 1fr; }
  .about-image{ max-width: 420px; margin: 0 auto; }
}

/* ====== Contact Section ====== */
.contact-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.contact-image img{
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}
@media (max-width: 980px){
  .contact-inner{ grid-template-columns: 1fr; }
  .contact-image{ max-width: 420px; margin: 0 auto; }
}

/* ====== Cards & Grids ====== */
.approach-grid, .services-grid, .testimonial-grid, .contact-options, .media-grid{ display:grid; grid-template-columns: 1fr; gap: 18px; }
.approach-grid{ grid-template-columns: repeat(4, 1fr); }
.services-grid{ grid-template-columns: repeat(2, 1fr); }
.testimonial-grid{ grid-template-columns: repeat(3, 1fr); }
.contact-options{ grid-template-columns: repeat(2, 1fr); }
.media-grid{ display:grid; grid-template-columns: 1fr; gap: 18px; }

@media (max-width: 980px){
  .approach-grid{ grid-template-columns: repeat(2, 1fr); }
  .services-grid, .testimonial-grid, .contact-options, .media-grid{ display:grid; grid-template-columns: 1fr; gap: 18px; }
}

.approach-item, .service-card, .testimonial-item, .contact-item, .media-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}

/* ====== Media cards ====== */
.media-card{
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  cursor: pointer;
  transition: transform .12s ease, border-color .2s ease;
}
.media-card:hover{ transform: translateY(-2px); border-color: var(--brand); }
.media-thumb{
  border-radius: 10px;
  background: #0e0e20;
  position: relative;
  overflow: hidden;
  min-height: 110px;
}
.media-thumb::after{
  content: "▶";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 34px;
  color: white;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,.35) 100%);
}
.media-body h3{ margin-bottom: 6px; }

/* ====== Modal ====== */
.modal[aria-hidden="true"]{ display: none; }
.modal{
  position: fixed; inset: 0; z-index: 1000;
}
.modal-backdrop{
  position: absolute; inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
}
.modal-dialog{
  position: relative; margin: 6vh auto; width: min(960px, 92vw);
  background: #0a0a16; border: 1px solid var(--border); border-radius: 16px; padding: 12px;
  box-shadow: 0 10px 50px rgba(0,0,0,.5);
}
.modal-close{
  position: absolute; top: 8px; right: 10px;
  font-size: 26px; line-height: 1; border: 0; background: transparent; color: var(--text); cursor: pointer;
}
.video-container{ position: relative; width: 100%; padding-bottom: 56.25%; }
.video-container iframe{
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: 12px;
}

/* ====== Testimonials ====== */
.testimonial-text{ color: var(--text); font-style: italic; }
.testimonial-author{ color: var(--muted); }

/* ====== FAQ ====== */
.faq details{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.faq summary{ cursor: pointer; font-weight: 600; }

/* ====== CTA ====== */
.cta{
  background: linear-gradient(180deg, rgba(187,134,252,0.05), rgba(0,0,0,0));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

/* ====== Packages Section ====== */
.packages-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.package-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.package-card h3{
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 20px;
  color: var(--text);
}
.package-card .price{
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-2);
  margin-bottom: 8px;
}
.package-card p{
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 14px;
}
.package-card .btn{
  margin-top: auto;
}

/* Slots info in packages section */
.slots-info{
  font-size: 16px;
  color: var(--muted);
  margin-top: 6px;
  margin-bottom: 12px;
}

@media (max-width: 980px){
  .packages-grid{
    grid-template-columns: 1fr;
  }
}

/* ====== Footer ====== */
footer{
  padding: 28px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  background: #0a0a16;
}

/* Anchor cards */
.media-card{ text-decoration: none; color: inherit; }
.media-body .pill{
  display:inline-block; margin-top:8px; font-size:14px; color: var(--brand-2);
}

/* ====== Video embeds ====== */
.video-embed{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  position: relative;
}
.video-embed .media-caption{ margin-top: 10px; }
.video-embed .media-caption p{ margin-bottom: 0; }

.video-embed iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 10px;
  display: block;
}

/* Overlay play icon on video embed */
.video-embed::after {
  content: '▶';
  font-size: 46px;
  color: rgba(255, 255, 255, 0.85);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* ====== Extra UX elements added in v1.9 ====== */

/* Small note about session timing under package descriptions */
.session-time-note {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

/* Copy button for Telegram handle */
/* copy-btn styles removed: copy button removed from UI */

/* Sticky call-to-action bar for mobile */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: rgba(13, 13, 29, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  z-index: 200;
  gap: 10px;
  justify-content: center;
}
.mobile-sticky-cta .btn {
  flex: 1;
  text-align: center;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
  }
}

/* ====== Credentials Section ====== */
.credentials-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.credential-item{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
}
.credential-item img{
  width: 80px;
  height: auto;
  margin: 0 auto 12px;
}

/* ====== About Section with Image ====== */
.about .container{
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.about .about-image{
  flex: 1 1 300px;
  max-width: 380px;
}
.about .about-image img{
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.about .container > div:first-child{
  flex: 1 1 400px;
}

/* ====== Experience Highlights ====== */
.experience-highlights{
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.experience-highlights li{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 14px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}


.email-actions{ display:flex; gap:10px; align-items:center; flex-wrap: wrap; margin-top: 8px; }
.btn-outline.ghost{ background: transparent; cursor: pointer; }
.copy-badge{
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
}

/* ====== Credentials Section ====== */
.credentials-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.credential-item{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.credential-item img{
  width: 180px;
  max-width: 100%;
  margin-bottom: 12px;
  border-radius: 8px;
}
.credential-item h3{
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 20px;
  color: var(--text);
}
.credential-item p{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
}
@media (max-width: 980px){
  .credentials-grid{
    grid-template-columns: 1fr;
  }
}
