:root{
  /* lighter theme (kept) */
  --bg: #0e1320;
  --panel: #121928;
  --ink: #f2f6ff;
  --muted: #c8d2e8;
  --brand: #3ee1a6;
  --brand-ink: #05281b;
  --accent: #84b5ff;
  --line: #22304b;
  --card: #141c2d;
  --shadow: 0 10px 30px rgba(0,0,0,.28);
  --radius: 16px;

  /* header sizes */
  --header-h: 92px;
  --logo: 44px;
  --header-h-small: 64px;
  --logo-small: 28px;
}

*{box-sizing:border-box}
html, body {min-height: 100%;}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1000px 800px at 50% 25%, #15303b 50%, #0c1523 70%, #0a0f1a 100%) !important;
  color: var(--ink);
  line-height: 1.55;
}

/* Utilities */
.container{width:min(1120px, calc(100% - 32px)); margin-inline:auto; position:relative}
.section{padding:80px 0}
.section-title{font-size: clamp(28px, 3vw, 38px); margin:0 0 24px; letter-spacing:.2px}
.center{text-align:center}
.muted{color:var(--muted)}
.tiny{font-size:12px}
.w-full{width:100%}

/* container-aligned divider line */
.has-divider::before{
  content:"";
  position:absolute;
  left:0; right:0;
  top:-24px;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12) 20%, rgba(255,255,255,.12) 80%, transparent);
}

/* Header - bigger at top, smaller after scroll (no shake) */
.site-header{
  position:sticky; top:0; z-index:50;
  height: var(--header-h);
  display:block;
  background: rgba(10,14,24,.6);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
  transition: height .25s ease, box-shadow .25s ease;
  will-change: height;
}
.site-header.compact{height: var(--header-h-small); box-shadow: var(--shadow)}
.nav-wrap{display:flex; align-items:center; justify-content:space-between; height:100%}
.brand{display:flex; align-items:center; gap:12px; color:var(--ink); text-decoration:none; font-weight:800; letter-spacing:.2px}
.brand-logo{width: var(--logo); height: var(--logo); border-radius:50%; transition: width .25s ease, height .25s ease}
.site-header.compact .brand-logo{width: var(--logo-small); height: var(--logo-small)}
.brand .brand-text{font-size: clamp(18px, 2.2vw, 26px)}
.nav{display:flex; align-items:center; gap:16px}
.nav-list{display:flex; gap:18px; list-style:none; margin:0; padding:0}
.nav-list a{color:var(--ink); text-decoration:none; opacity:.9}
.nav-list > li:not(.social) > a {
  color: var(--ink);
  text-decoration: none;
  opacity: .9;
  position: relative;
  padding-bottom: 4px;
}
.nav-list > li:not(.social) > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 2px;
  background-color: var(--brand);
  transition: width .25s ease;
  border-radius: 2px;
}
.nav-list > li:not(.social) > a:hover { opacity: 1; }
.nav-list > li:not(.social) > a:hover::after { width: 100%; }

/* Social icon links */
.nav-list .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.9;}
.nav-list .social a:hover {
  transform: scale(1.15);
  opacity: 1;}
.nav-list .social img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) invert(1); /* white by default */
  transition: filter 0.25s ease;}

/* --- Brand-specific hover colors --- */
/* Social icon links (PNG) */
.nav-list .social a{
  display:flex; align-items:center; justify-content:center;
  width:26px; height:26px; border-radius:50%;
  transition: transform .25s ease, opacity .25s ease;
  opacity:.9; padding-bottom:0; /* no underline spacing */
}
.nav-list .social a:hover{ transform: scale(1.15); opacity:1; }

.nav-list .social img{
  width:20px; height:20px; display:block;
  /* Default make icons white (works best if source is dark/black PNG) */
  filter: brightness(0) invert(1);
  transition: filter .25s ease;
}

/* Brand hover tints (tuned CSS filters) */
.social.wa a:hover img{ /* WhatsApp #25D366 */
  filter: brightness(0) saturate(100%) invert(54%) sepia(55%) saturate(723%) hue-rotate(88deg) brightness(96%) contrast(95%);
}
.social.yt a:hover img{ /* YouTube #FF0000 */
  filter: brightness(0) saturate(100%) invert(12%) sepia(96%) saturate(7494%) hue-rotate(2deg) brightness(107%) contrast(118%);
}
.social.tg a:hover img{ /* Telegram #229ED9 */
  filter: brightness(0) saturate(100%) invert(48%) sepia(68%) saturate(958%) hue-rotate(173deg) brightness(91%) contrast(95%);
}
.social.ig a:hover img{ /* Instagram magenta #E1306C (PNG can't do gradient) */
  filter: brightness(0) saturate(100%) invert(27%) sepia(93%) saturate(2855%) hue-rotate(316deg) brightness(92%) contrast(96%);
}

.nav-toggle{display:none}

/* Hero */
.hero{padding:86px 0 56px; position:relative; overflow:hidden}
.hero:before{
  content:""; position:absolute; inset:-40% -10% auto auto; height:620px; width:620px; border-radius:50%;
  background: radial-gradient(closest-side, rgba(62,225,166,.25), transparent 70%);
  filter: blur(40px); pointer-events:none;
}
.hero-grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:32px; align-items:center}
.hero-copy h1{font-size: clamp(36px, 4.2vw, 60px); line-height:1.05; margin:0 0 14px}
.hero-copy h1 .line1,
.hero-copy h1 .line2 {
  display: block;
  line-height: 0.8;
}

.hero-copy h1 .line1 {
  font-weight: 700;
  margin-bottom: 0;
}

.hero-copy h1 .line2 {
  font-weight: 800;
  color: var(--ink);
  margin-top: -30px; /* tighten spacing */
}
.lead{color:var(--muted); font-size: clamp(16px, 1.3vw, 18px); margin:0 0 18px}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin:16px 0}
.trust-points{display:flex; gap:16px; flex-wrap:wrap; padding:0; margin:16px 0 0; list-style:none; color:var(--muted); font-size:14px}

.hero-media{position:relative}
.media-card{background:var(--card); border:1px solid var(--line); border-radius:20px; overflow:hidden; box-shadow: var(--shadow)}
.media-card img{display:block; width:100%; height:auto}
.media-card.stacked{position:absolute; right:-24px; bottom:-24px; width:65%; transform:rotate(2deg)}

/* Buttons + glow */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  border-radius: 999px; padding:12px 18px; text-decoration:none; font-weight:700; letter-spacing:.2px;
  border:1px solid transparent; cursor:pointer; transition: transform .05s ease, opacity .2s ease, background .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:active{transform: translateY(1px)}
.btn-primary{background: var(--brand); color: var(--brand-ink)}
.btn-primary:hover{opacity:.95}
.btn-contrast{background: #fff; color:#0b0d12}
.btn-contrast:hover{opacity:.95}
.btn-ghost{background: transparent; border-color: rgba(255,255,255,.25); color: var(--ink)}
.btn-sm{padding:10px 14px; font-size:14px}
.glow:hover{box-shadow: 0 0 22px rgba(62,225,166,.55), 0 0 50px rgba(62,225,166,.25); filter: saturate(1.15)}

/* Cards & grids */
.card-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
.card{
  background: var(--panel);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.bullets{margin:12px 0 0; padding-left:18px}
.bullets li{margin:6px 0}

/* ----- Hover feedback for cards, programs and pricing cards ----- */
.card,
.program,
.price-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover,
.program:hover,
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(62, 225, 166, 0.25);
  border-color: rgba(62, 225, 166, 0.6);
}

/* Optional: highlight heading text on hover */
.card:hover h3,
.program:hover h3,
.price-card:hover h3 {
  color: var(--brand);
}

/* Images inside benefit cards */
.card .feature-img{
  display:block;
  width:100%;
  height:180px;                /* consistent height */
  object-fit:cover;            /* crop nicely if aspect ratio differs */
  margin:10px 0 8px;           /* space between title and text */
  border-radius:12px;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.02); /* subtle base for transparent PNGs */
}

/* Slightly taller on large screens if you want */
@media (min-width: 1100px){
  .card .feature-img{ height: 200px; }
}

/* Pricing */
.price-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px; align-items:stretch}
.price-card{position:relative; background: linear-gradient(180deg, #152038, #111a2d); border:1px solid var(--line); border-radius:20px; padding:20px; box-shadow: var(--shadow)}
.price-card .price{font-size:32px; margin:10px 0; font-weight:800}
.price-card .muted{margin-top:-4px}
.price-card .badge{
  position:absolute; top:12px; right:12px; background:var(--brand); color:var(--brand-ink);
  font-size:12px; font-weight:800; padding:6px 10px; border-radius:999px
}
.price-card.featured{outline:2px solid rgba(62,225,166,.4)}

/* High-contrast banner */
.cta-banner{
  margin-top:22px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:18px 20px;
  border-radius:16px;
  background: linear-gradient(90deg, #1f2d4a, #23365b);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: var(--shadow);
}
.cta-banner .cta-text{color:#eef4ff}

/* Coach */
.coach-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  align-items:start;          /* move text/socials upward */
}
.coach-media img{border-radius:20px; width:100%; height:auto; border:1px solid var(--line); box-shadow: var(--shadow)}
.socials{
  display:flex;
  gap:14px;
  align-items:center;
  margin-top:6px;             /* slightly closer to text */
}
.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  opacity: 0.9;
  transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;}
.socials a:hover {
  transform: scale(1.15);
  opacity: 1;}
/* icons */
.socials img {
  width: 22px;
  height: 22px;
  display: block;
  filter: brightness(0) invert(1); /* makes white */
  transition: filter 0.25s ease;}
.coach-actions{
  margin-top:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.coach-actions .btn{
  padding:10px 14px;
  border-radius:999px;        /* pill shape */
  text-decoration:none;
}
.coach-actions .btn-ghost:hover{
  background:rgba(255,255,255,.06);
}

/* mobile center alignment */
@media (max-width:980px){
  .coach-actions{justify-content:center;}
}

/* brand hover tints */
.socials a[href*="instagram.com"]:hover img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(93%) saturate(2855%) hue-rotate(316deg) brightness(92%) contrast(96%);}
.socials a[href*="wa.me"]:hover img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(55%) saturate(723%) hue-rotate(88deg) brightness(96%) contrast(95%);}

/* Simplified contact section */

/* Center the contact section title and content */

#contact .section-title {
  text-align: left;
  margin-bottom: 12px;
}

#contact .contact-centered {
  align-items: flex-start;   /* push content to left */
  text-align: left;
}

#contact .contact-text {
  text-align: left;
   color: var(--brand);
}

.contact-centered {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;  /* align vertically at top */
  align-items: flex-start;      /* align horizontally to left */
  text-align: left;
  gap: 20px;
  padding: 40px 0;
}

.contact-text {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;}

.contact-icons {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;}

.contact-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.9;}

.contact-icons a:hover {
  transform: scale(1.15);
  opacity: 1;}

.contact-icons img {
  width: 36px;
  height: 36px;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.25s ease;}

  /* FAQ block inside contact */

.faq {
  width: 100%;
  max-width: 640px;
  margin: 24px 0;
  display: grid;
  gap: 10px;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-item:hover {
  border-color: var(--brand);
  background: rgba(255,255,255,0.05);
}

.faq-item > summary {
  cursor: pointer;
  padding: 14px 18px;
  list-style: none;
  font-weight: 600;
  color: var(--brand);
  position: relative;
}

.faq-item > summary::-webkit-details-marker { display: none; }

.faq-item > summary::after {
  content: "▾";
  position: absolute;
  right: 16px;
  color: var(--brand);
  transition: transform 0.25s ease;
}

.faq-item[open] > summary::after {
  transform: rotate(180deg);
}

.faq-item > summary:hover {
  color: #5affbd;
  text-shadow: 0 0 6px rgba(62,225,166,0.6);
}

.faq-item .answer {
  padding: 0 18px 14px 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* Center FAQ on wider screens */
#contact .faq {
  margin-left: auto;
  margin-right: auto;
}

/* On mobile: slightly tighter spacing */
@media (max-width: 640px) {
  .faq-item > summary { padding: 12px 14px; }
  .faq-item .answer { padding: 0 14px 12px; }
}


/* Brand hover tints */
.contact-icons a[href*="wa.me"]:hover img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(55%) saturate(723%) hue-rotate(88deg) brightness(96%) contrast(95%);}
.contact-icons a[href*="t.me"]:hover img {
  filter: brightness(0) saturate(100%) invert(48%) sepia(68%) saturate(958%) hue-rotate(173deg) brightness(91%) contrast(95%);}
.contact-icons a[href*="instagram.com"]:hover img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(93%) saturate(2855%) hue-rotate(316deg) brightness(92%) contrast(96%);}

/* --- Centered professional black footer --- */

.site-footer {
  background: #000 !important;
  padding: 50px 0 60px;
  color: var(--ink);
  border-top: none;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-brand .brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.footer-brand .brand-logo {
  width: 36px;
  height: 36px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* Social icons */
.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.9;
}

.footer-socials a:hover {
  transform: scale(1.15);
  opacity: 1;
}

.footer-socials img {
  width: 26px;
  height: 26px;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.25s ease;
}

/* Brand hover tints */
.footer-socials a[href*="instagram.com"]:hover img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(93%) saturate(2855%) hue-rotate(316deg) brightness(92%) contrast(96%);
}
.footer-socials a[href*="wa.me"]:hover img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(55%) saturate(723%) hue-rotate(88deg) brightness(96%) contrast(95%);
}
.footer-socials a[href*="youtube.com"]:hover img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(96%) saturate(7494%) hue-rotate(2deg) brightness(107%) contrast(118%);
}
.footer-socials a[href*="t.me"]:hover img {
  filter: brightness(0) saturate(100%) invert(48%) sepia(68%) saturate(958%) hue-rotate(173deg) brightness(91%) contrast(95%);
}

/* Mobile optimization */
@media (max-width: 980px) {
  .footer-content {
    padding: 0 16px;
    gap: 16px;
  }
  .footer-socials {
    gap: 20px;
  }
}

/* Scroll track */
.scroll-track{
  position: fixed;
  top: 10vh;
  bottom: 10vh;
  left: var(--track-left, 16px);
  width: 20px;
  pointer-events: none;
  z-index: 60;
}
.scroll-line{
  position:absolute; left:9px; top:0; bottom:0; width:2px;
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.35), rgba(255,255,255,.1));
  border-radius:2px;
}
.scroll-ball{
  position:absolute; left:2px;
  width:18px; height:18px; border-radius:50%;
  box-shadow: 0 0 18px rgba(62,225,166,.6);
  transform: translateY(var(--ball-y, 0px));
}

/* Reveal animations */
[data-reveal]{opacity:0; transform: translateY(14px); transition: .6s cubic-bezier(.2,.7,.2,1)}
[data-reveal].shown{opacity:1; transform: translateY(0)}
/* Elevation */
[data-elevate].elevated{box-shadow: 0 8px 24px rgba(0,0,0,.28)}

/* Responsive */
@media (max-width: 980px){
  .hero-grid, .coach-grid, .contact-grid{grid-template-columns: 1fr}
  .media-card.stacked{position:static; width:100%; transform:none; margin-top:12px}
  .card-grid, .price-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr; gap:8px}
  .nav-list{
  position: fixed;
  top: var(--header-h-small);
  right: 12px;
  background: #0b1426;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  display: none;              /* hidden until opened */
  min-width: 200px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);}
  .nav-toggle{
    display:inline-flex; align-items:center; justify-content:center;
    width:44px; height:44px; padding:0;
    font-size:22px; line-height:1; color:var(--ink);
    background: rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.18);
    border-radius:12px;}
  .nav.open .nav-list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;             /* row gap / column gap */}
  /* Make text links span both columns */
  .nav.open .nav-list > li:not(.social){
  grid-column: 1 / -1;}
  /* Center text items */
  .nav-list > li:not(.social) > a {
  display: block;
  text-align: center;
  width: 100%;
  padding: 10px 0;
  border-radius: 10px;}
  .nav-list > li:not(.social) > a:hover {
  background: rgba(255,255,255,.06);}
  .nav.open .nav-toggle{background: rgba(255,255,255,.12)}
  .nav-list a{padding:10px 12px; border-radius:10px}
  .nav-list a:hover{background: rgba(255,255,255,.06)}
  /* Social icon layout inside menu */
  .nav-list .social{
  display: flex;
  align-items: center;
  justify-content: center;}
  .nav-list .social a{
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;}
  .nav-list .social img{
  width: 22px;
  height: 22px;}
  .cta-banner{
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
    padding: 16px 18px;}
  .cta-banner .cta-text{ line-height: 1.45; }
  .cta-banner .btn{
    align-self: stretch;       /* full-width button */
    justify-content: center;   /* center the label */
    padding: 12px 16px;
    border-radius: 999px;      /* pill look */}
}