/* =========================================================
   TakeOff by Aircan — Modern Redesign
   ========================================================= */

html { scroll-behavior: smooth; }

:root{
  /* Surfaces */
  --bg:          #f6f8fb;
  --bg-alt:      #ffffff;
  --panel:       #ffffff;
  --panel-soft:  #f1f5f9;

  /* Ink */
  --text:        #0b1220;
  --ink-soft:    #334155;
  --muted:       #64748b;

  /* Lines */
  --border:      #e6ebf2;
  --border-soft: #eef2f7;

  /* Brand */
  --brand:       #006d75;
  --brand-600:   #00565c;
  --brand-700:   #073c42;
  --brand-50:    #e6f4f5;
  --brand-glow:  rgba(0,109,117,.22);
  --brand-grad:  linear-gradient(135deg,#006d75 0%,#0ba4ad 55%,#22d3ce 100%);

  /* Accent */
  --accent:      #ff6a2c;
  --success:     #10b981;

  /* Radii */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 28px;

  /* Shadows (soft, layered) */
  --shadow-xs: 0 1px 2px rgba(15,23,42,.04);
  --shadow-sm: 0 4px 10px rgba(15,23,42,.05), 0 2px 4px rgba(15,23,42,.04);
  --shadow-md: 0 8px 20px rgba(15,23,42,.07), 0 2px 6px rgba(15,23,42,.05);
  --shadow-lg: 0 18px 40px rgba(15,23,42,.10), 0 8px 18px rgba(15,23,42,.06);
  --shadow-brand: 0 14px 30px rgba(0,109,117,.22);
}

/* ===== Base ===== */
*{ box-sizing: border-box }
html, body{ height: 100% }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
               "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 72px;
}
a{ color: var(--brand); text-decoration: none }
a:hover{ color: var(--brand-600) }
img{ max-width: 100%; display: block }
button{ font: inherit; cursor: pointer }

.container{ max-width: 1200px; margin: 0 auto; padding: 0 20px }
.section{ padding: 96px 0 }
@media (max-width:700px){ .section{ padding: 64px 0 } }

.muted{ color: var(--muted) }
.small{ font-size: 12.5px; color: var(--muted) }

/* ===== Navbar ===== */
.navbar{
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(15,23,42,.06);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
}
.nav-inner{
  height: 72px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.brand{ display: flex; align-items: center; gap: 10px; font-weight: 800 }
.brand img{ height: 48px; width: auto }
.nav-links{ display: none; gap: 28px; align-items: center }
.nav-links a{
  color: #0f172a; font-weight: 500; font-size: 14.5px;
  position: relative; padding: 6px 2px;
}
.nav-links a::after{
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; border-radius: 2px; background: var(--brand);
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav-links a:hover{ color: var(--brand) }
.nav-links a:hover::after{ transform: scaleX(1) }
@media(min-width:960px){ .nav-links{ display: flex } }

.cta{
  background: var(--brand); color: #fff; border: none;
  padding: 11px 18px; border-radius: 999px;
  font-weight: 700; letter-spacing: .01em; font-size: 14px;
  box-shadow: var(--shadow-brand);
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease;
}
.cta:hover{ transform: translateY(-1px); background: var(--brand-600); color:#fff }

.nav-burger{
  display: inline-grid; place-items: center;
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--border); background: #fff;
}
.nav-burger svg{ width: 22px; height: 22px; stroke: #0f172a }
@media(min-width:960px){ .nav-burger{ display: none } }

/* Mobile drawer */
.drawer{
  position: fixed; inset: 0; z-index: 1100;
  visibility: hidden; opacity: 0; transition: opacity .25s ease, visibility 0s .25s;
}
.drawer.is-open{ visibility: visible; opacity: 1; transition: opacity .25s ease }
.drawer__backdrop{ position: absolute; inset: 0; background: rgba(11,18,32,.55) }
.drawer__panel{
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 360px);
  background: #fff; box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .3s ease;
  display: flex; flex-direction: column; padding: 20px;
}
.drawer.is-open .drawer__panel{ transform: translateX(0) }
.drawer__head{ display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px }
.drawer__close{
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--border); background: #fff; color: #0f172a;
  display: grid; place-items: center; font-size: 20px;
}
.drawer__nav{ display: grid; gap: 4px; margin-top: 8px }
.drawer__nav a{
  padding: 12px 14px; border-radius: 12px; color: #0f172a; font-weight: 600;
}
.drawer__nav a:hover{ background: var(--panel-soft) }
.drawer__cta{
  margin-top: 12px; display: inline-flex; justify-content: center;
  background: var(--brand); color: #fff; padding: 14px 18px;
  border-radius: 999px; font-weight: 700;
}
.drawer__social{
  margin-top: auto; display: flex; gap: 10px; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.drawer__social a{
  flex: 1; text-align: center; padding: 12px 0; border-radius: 12px;
  background: var(--panel-soft); color: #0f172a; font-weight: 600; font-size: 13px;
}

/* ===== Hero ===== */
.hero{
  position: relative; overflow: hidden;
  background:
    radial-gradient(60% 80% at 85% 10%, rgba(11,164,173,.18) 0%, transparent 60%),
    radial-gradient(50% 60% at 10% 20%, rgba(34,211,206,.12) 0%, transparent 60%),
    linear-gradient(180deg, #eaf6f7 0%, #f6f8fb 55%, #f6f8fb 100%);
}
.hero-grad{
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.35) 0%, rgba(255,255,255,0) 55%);
}
.hero-wrap{ position: relative; z-index: 2; padding: 88px 0 88px }
.hero-grid{ display: grid; gap: 40px; align-items: center }
@media (min-width:960px){ .hero-grid{ grid-template-columns: 1.05fr .95fr } }

.eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(0,109,117,.08);
  border: 1px solid rgba(0,109,117,.18);
  color: var(--brand-600); font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.eyebrow .pulse{
  width: 8px; height: 8px; border-radius: 999px; background: var(--brand);
  box-shadow: 0 0 0 0 rgba(0,109,117,.55); animation: pulse 1.8s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(0,109,117,.45) }
  70%{ box-shadow: 0 0 0 10px rgba(0,109,117,0) }
  100%{ box-shadow: 0 0 0 0 rgba(0,109,117,0) }
}

.hero h1{
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.05; margin: 16px 0 0;
  font-weight: 800; letter-spacing: -0.02em;
  color: #0b1220;
}
.hero h1 .grad{
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero h2{
  font-size: clamp(18px, 2.2vw, 22px);
  margin: 18px 0 0; font-weight: 600; color: #0f172a; line-height: 1.4;
}
.hero h2 .accent{ color: var(--brand) }
.hero .lead{
  margin-top: 16px; font-size: 16px; color: #475569; max-width: 560px;
}

.hero-actions{
  margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap;
}

.hero-chips{
  margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px;
}
.chip{
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 600;
  background: #fff; color: #0f172a; border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.chip svg{ width: 14px; height: 14px; color: var(--brand) }

/* Social buttons */
.hero-social{
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
}
.hero-social .sm-btn{
  --ring: rgba(0,109,117,.18);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative; isolation: isolate;
}
.hero-social .sm-btn svg{ width: 18px; height: 18px }
.hero-social .sm-btn span{ font-weight: 700; font-size: 13.5px; color: #0f172a }
.hero-social .sm-btn:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}
.hero-social .sm-btn.ig svg{ fill: #d62976 }
.hero-social .sm-btn.tt svg{ fill: #000 }
.hero-social .sm-btn.wa svg{ fill: #25d366 }

/* Hero media / video card */
.hero-gallery{
  position: relative; width: 100%;
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  background: #0b1220;
}
@media (min-width: 960px){ .hero-gallery{ aspect-ratio: 5/6 } }
.hero-video{ width: 100%; height: 100%; display: block; object-fit: cover }

.hero-video-toggle{
  position: absolute; top: 14px; left: 14px; z-index: 3;
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(11,18,32,.45); color: #fff;
  display: grid; place-items: center; font-size: 15px;
  backdrop-filter: blur(8px);
  transition: background .2s, transform .15s;
}
.hero-video-toggle:hover{ background: rgba(11,18,32,.65); transform: translateY(-1px) }

/* Floating stats card over hero video */
.hero-float{
  position: absolute; z-index: 3; left: 14px; right: 14px; bottom: 14px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.45);
  backdrop-filter: blur(14px);
  border-radius: 16px; padding: 4px;
}
.hero-float .cell{
  padding: 10px 8px; text-align: center; color: #fff;
  border-radius: 12px; background: rgba(11,18,32,.35);
}
.hero-float .num{ font-weight: 800; font-size: 18px; letter-spacing: -.01em }
.hero-float .lbl{ font-size: 11px; opacity: .9 }

/* ===== Buttons ===== */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 20px; border-radius: 999px;
  border: 1px solid transparent; font-weight: 700; font-size: 14.5px;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s;
  line-height: 1;
}
.btn-primary{
  background: var(--brand); color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover{
  background: var(--brand-600); transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0,109,117,.3);
  color: #fff;
}
.btn-outline{
  background: #fff; color: var(--brand);
  border-color: rgba(0,109,117,.35);
}
.btn-outline:hover{
  background: var(--brand-50); border-color: var(--brand);
  transform: translateY(-2px);
}
.btn-ghost{
  background: transparent; color: #0f172a;
  border: 1px solid var(--border);
}
.btn-ghost:hover{ background: var(--panel-soft) }
.btn-block{ width: 100%; margin-top: 18px }
.btn svg{ width: 16px; height: 16px }

/* ===== Trustbar ===== */
.trustbar{
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.trust-items{
  display: grid; grid-template-columns: repeat(2,1fr); gap: 16px;
  padding: 22px 0;
}
@media (min-width: 900px){ .trust-items{ grid-template-columns: repeat(4,1fr) } }
.trust-item{
  display: flex; align-items: center; gap: 12px;
  color: #0f172a; font-weight: 600; font-size: 14.5px;
}
.trust-item .ico{
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--brand-50); color: var(--brand);
  display: grid; place-items: center; flex: 0 0 38px;
}
.trust-item .ico svg{ width: 18px; height: 18px }
.trust-item .lbl{ font-size: 12px; color: var(--muted); font-weight: 500; display: block }
.dot{ width: 10px; height: 10px; border-radius: 999px; background: var(--brand) }

/* ===== Section heads ===== */
.sec-head{ text-align: center; max-width: 720px; margin: 0 auto 36px }
.sec-kicker{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--brand-50); color: var(--brand-600);
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.sec-head h2{
  margin: 14px 0 8px; font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.15; color: #0b1220;
}
.sec-head p{ color: var(--muted); margin: 0 }

/* ===== News ===== */
.news{ background: linear-gradient(180deg, #f0f7f7 0%, var(--bg) 100%) }
.news-head{ text-align: center; margin-bottom: 32px }
.news-main-title{
  margin: 0; font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -.02em; font-weight: 800; color: #0b1220;
}
.news-main-subtitle{ margin: 8px 0 0; color: var(--muted); font-size: 15px }

.news-grid{
  display: grid; gap: 20px; grid-template-columns: 1fr;
  max-width: 980px; margin: 0 auto;
}
.news-item{
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
@media (min-width: 900px){
  .news-item{ display: grid; grid-template-columns: 1.1fr .9fr; align-items: stretch }
  .news-content{ order: 1 } .news-media{ order: 2 }
}
.news-item:hover{
  transform: translateY(-3px); box-shadow: var(--shadow-lg);
  border-color: rgba(0,109,117,.25);
}
.news-media{ aspect-ratio: 16/10; overflow: hidden; background: #e9eef2 }
@media (min-width: 900px){ .news-media{ aspect-ratio: auto; min-height: 100% } }
.news-media img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.news-item:hover .news-media img{ transform: scale(1.04) }
.news-content{ padding: 22px 24px 24px }
.news-meta{
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; font-size: 12px; color: var(--muted); margin-bottom: 10px;
}
.news-tag{
  display: inline-flex; align-items: center;
  border-radius: 999px; border: 1px solid rgba(0,109,117,.25);
  background: rgba(0,109,117,.08); color: var(--brand-600);
  padding: 4px 12px; font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.news-value{
  margin: 4px 0 8px; font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.2; font-weight: 800; color: #0b1220; letter-spacing: -.01em;
}
.news-field{ margin: 0 0 10px }
.news-label{
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 4px;
}
.news-field--audience{
  margin-top: 8px; padding-top: 12px;
  border-top: 1px dashed #dbe4eb;
}
.news-field--schedule{
  background: #f8fbfc; border: 1px solid #e3edf1;
  border-radius: 12px; padding: 12px 14px; margin: 10px 0;
}
.news-schedule-list{
  margin: 0; padding-left: 18px; color: #1e293b;
  font-size: 13px; line-height: 1.55;
}
.news-schedule-list li{ margin: 3px 0 }
.news-subtitle{ margin: 0; font-weight: 600; color: #0f172a; font-size: 15px }
.news-description{ margin: 0; font-size: 14px; line-height: 1.6 }
.news-audience{ margin: 0 0 10px; font-size: 13px; color: #334155; line-height: 1.55 }

.news-item--featured{
  border-color: rgba(0,109,117,.32);
  box-shadow: 0 18px 40px rgba(0,109,117,.12);
  background: linear-gradient(180deg, #ffffff 0%, #f7fcfc 100%);
}

/* ===== Packages ===== */
.packages h2{ margin: 0 0 8px; font-size: clamp(28px,3.6vw,40px); font-weight: 800; letter-spacing: -.02em }
.plan-grid{ display: grid; gap: 20px }
@media (min-width: 900px){ .plan-grid{ grid-template-columns: repeat(3,1fr) } }
.plan{
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.plan::before{
  content:""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--panel-soft); transition: background .2s ease;
}
.plan:hover{
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: rgba(0,109,117,.25);
}
.plan:hover::before{ background: var(--brand) }
.plan.highlight{
  border-color: rgba(0,109,117,.4);
  box-shadow: 0 20px 50px rgba(0,109,117,.18);
}
.plan.highlight::before{ background: var(--brand-grad); height: 5px }
.plan-head{ display: flex; align-items: center; gap: 12px; margin-bottom: 6px }
.plan-ico{
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--brand-50); color: var(--brand);
  display: grid; place-items: center;
}
.plan-ico svg{ width: 20px; height: 20px }
.plan-name{ font-size: 22px; font-weight: 800; letter-spacing: -.01em; color: #0b1220 }
.plan-sub{ margin: 2px 0 16px; color: var(--muted); font-size: 13.5px }
.plan .price{ font-size: 36px; font-weight: 800 }
.list{ list-style: none; padding: 0; margin: 14px 0 0 }
.list li{
  display: flex; gap: 10px; margin: 10px 0;
  color: #1f2937; font-size: 14.5px; line-height: 1.5;
}
.check{
  width: 22px; height: 22px; flex: 0 0 22px; border-radius: 999px;
  background: var(--brand-50); color: var(--brand);
  display: grid; place-items: center; font-weight: 900; font-size: 13px;
}
.plan .btn-block{ margin-top: auto }
.plan .badge{ margin-left: auto }

/* ===== Coach ===== */
.coach-grid{ display: grid; gap: 32px }
@media (min-width: 960px){ .coach-grid{ grid-template-columns: .85fr 1.15fr } }
.coach-photo{
  position: relative; width: 100%; aspect-ratio: 4/5;
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); background: #0b1220;
}
.coach-photo img, .coach-photo video{
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.video-toggle{
  position: absolute; top: 14px; left: 14px; z-index: 2;
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(11,18,32,.45); color: #fff;
  display: grid; place-items: center; cursor: pointer;
  backdrop-filter: blur(8px);
}
.coach-badge{
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 14px;
  background: rgba(255,255,255,.85); color: #0b1220;
  border: 1px solid rgba(255,255,255,.6);
  backdrop-filter: blur(10px);
  font-size: 12.5px; font-weight: 600;
}
.coach-badge .ico{
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--brand); color: #fff; display: grid; place-items: center;
}
.coach-badge .ico svg{ width: 16px; height: 16px }

.coach-meta{ margin-top: 14px; color: var(--muted); font-size: 12.5px }
.coach-title{ margin: 0; font-size: clamp(28px,3.6vw,40px); font-weight: 800; letter-spacing: -.02em }
.coach-intro{ margin: 12px 0 0; color: #334155; font-size: 16px; line-height: 1.7 }

/* Career / Stations */
.career{ margin-top: 28px }
.career-title{ margin: 0 0 12px; font-size: 18px; font-weight: 700; color: #0b1220 }
.career-group{
  margin: 18px 0 10px;
  font-size: 11.5px; text-transform: uppercase; letter-spacing: .1em;
  color: var(--brand-600); font-weight: 700;
}
.career-list{ display: grid; gap: 10px }
@media (min-width: 1100px){ .career-list{ grid-template-columns: 1fr 1fr } }
.career-item{
  display: grid; grid-template-columns: 48px 1fr auto;
  gap: 12px; align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--border); background: #fff;
  border-radius: 14px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.career-item:hover{
  border-color: rgba(0,109,117,.25);
  box-shadow: var(--shadow-sm);
  transform: translateX(2px);
}
.career-logo{
  width: 48px; height: 48px; object-fit: contain;
  background: #fff; border-radius: 10px; padding: 4px;
  box-shadow: var(--shadow-xs); border: 1px solid var(--border-soft);
}
.career-line{ font-size: 14.5px; line-height: 1.3; color: #0b1220 }
.career-line strong{ font-weight: 700 }
.career-meta{ font-size: 12.5px; color: var(--muted); margin-top: 3px }
.career-year{
  font-size: 11.5px; font-weight: 700; letter-spacing: .02em;
  padding: 4px 10px; border-radius: 999px;
  background: var(--brand-50); color: var(--brand-600);
  white-space: nowrap;
}

/* ===== Gallery ===== */
.gallery-head{
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 16px; flex-wrap: wrap; margin-bottom: 24px;
}
.gallery-head h2{ margin: 0; font-size: clamp(28px,3.6vw,40px); font-weight: 800; letter-spacing: -.02em }
.gallery-grid{
  display: grid; gap: 14px; grid-template-columns: 1fr;
}
@media (min-width: 700px){ .gallery-grid{ grid-template-columns: repeat(2,1fr) } }
@media (min-width: 1060px){ .gallery-grid{ grid-template-columns: repeat(3,1fr) } }
.gallery-item{
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  border: 1px solid var(--border); background: #000;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.gallery-item:hover{ transform: translateY(-3px); box-shadow: var(--shadow-lg) }
.gallery-item img, .gallery-item video{
  width: 100%; height: 280px; object-fit: cover; display: block;
  transition: transform .45s ease;
}
.gallery-item:hover img, .gallery-item:hover video{ transform: scale(1.06) }
.gallery-item::after{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,18,32,.35) 100%);
  pointer-events: none; opacity: 0; transition: opacity .25s;
}
.gallery-item:hover::after{ opacity: 1 }
@media (max-width: 700px){
  .gallery-item img, .gallery-item video{ height: 220px }
}

/* ===== Success Stories (Vom Training zum Profiverein) ===== */
.success-section{
  background:
    radial-gradient(60% 60% at 90% 0%, rgba(11,164,173,.10) 0%, transparent 60%),
    radial-gradient(50% 50% at 0% 100%, rgba(255,106,44,.06) 0%, transparent 60%),
    linear-gradient(180deg, #f6f8fb 0%, #eef6f7 100%);
}
.success-grid{
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 980px){ .success-grid{ grid-template-columns: 1.05fr .95fr } }

/* Slider */
.success-slider{
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4/5; background: #0b1220;
  box-shadow: var(--shadow-lg);
}
.success-slider__track{
  display: flex; height: 100%;
  transition: transform .55s cubic-bezier(.65,.05,.36,1);
  will-change: transform;
}
.success-slider__slide{
  flex: 0 0 100%; height: 100%; position: relative;
}
.success-slider__slide img{
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.success-slider__caption{
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  padding: 10px 14px; border-radius: 12px;
  background: rgba(11,18,32,.55);
  backdrop-filter: blur(8px);
  color: #fff; font-size: 12.5px; font-weight: 600;
}

/* Slider arrows */
.success-slider__nav{
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(11,18,32,.45); color: #fff;
  display: grid; place-items: center;
  backdrop-filter: blur(8px);
  transition: background .2s, transform .15s;
}
.success-slider__nav:hover{ background: rgba(11,18,32,.7); transform: translateY(-50%) scale(1.05); color:#fff }
.success-slider__nav--prev{ left: 14px }
.success-slider__nav--next{ right: 14px }
.success-slider__nav svg{ width: 22px; height: 22px }
.success-slider__nav[disabled]{ opacity: .4; cursor: not-allowed }

/* Slider dots */
.success-slider__dots{
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.success-slider__dot{
  width: 8px; height: 8px; border-radius: 999px;
  background: rgba(255,255,255,.5);
  border: none; padding: 0; cursor: pointer;
  transition: background .2s, width .2s;
}
.success-slider__dot.is-active{
  background: #fff; width: 22px;
}

/* Top "story" badge */
.success-badge{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: linear-gradient(135deg, #ff6a2c 0%, #ffb347 100%);
  color: #fff; font-size: 11.5px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(255,106,44,.28);
}
.success-badge svg{ width: 14px; height: 14px; fill: #fff }

/* Right column / info */
.success-info h3{
  margin: 14px 0 6px; font-size: clamp(26px,3.2vw,36px);
  font-weight: 800; letter-spacing: -.02em; color: #0b1220; line-height: 1.15;
}
.success-lead{
  margin: 0 0 18px;
  font-size: clamp(15px, 1.6vw, 17px);
  color: #334155; font-weight: 500;
  line-height: 1.5;
}
.success-meta{
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 6px 0 18px;
}
.success-meta .chip{
  background: #fff; border: 1px solid var(--border);
}

/* Journey visual: from → to */
.success-journey{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px; align-items: center;
  padding: 18px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 18px; box-shadow: var(--shadow-sm);
  margin: 10px 0 22px;
}
.journey-side{
  text-align: center; min-width: 0;
}
.journey-side__lbl{
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 6px;
}
.journey-side__name{
  font-size: 14px; font-weight: 700; color: #0b1220;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.journey-logo{
  width: 56px; height: 56px; margin: 0 auto 6px;
  border-radius: 12px;
  background: var(--panel-soft);
  display: grid; place-items: center;
  border: 1px solid var(--border-soft);
  overflow: hidden;
}
.journey-logo img{
  width: 100%; height: 100%; object-fit: contain; padding: 6px;
}
.journey-logo.placeholder{
  background: linear-gradient(135deg, var(--brand-50), #fff);
  color: var(--brand);
  font-size: 11px; font-weight: 800;
  border: 1px dashed var(--brand);
}
.journey-arrow{
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--brand-grad); color: #fff;
  box-shadow: var(--shadow-brand);
}
.journey-arrow svg{ width: 22px; height: 22px }

/* Stats row */
.success-stats{
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-bottom: 22px;
}
.success-stat{
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 12px 8px;
  text-align: center;
  box-shadow: var(--shadow-xs);
}
.success-stat__num{
  font-size: 22px; font-weight: 800; color: var(--brand);
  letter-spacing: -.01em; line-height: 1;
}
.success-stat__lbl{
  margin-top: 4px; font-size: 11px; font-weight: 600; color: var(--muted);
}

/* Quote */
.success-quote{
  position: relative;
  padding: 20px 22px 20px 56px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 18px; box-shadow: var(--shadow-sm);
  font-size: 15px; line-height: 1.6; color: #1f2937;
  font-style: italic;
}
.success-quote::before{
  content: "“"; position: absolute; top: -8px; left: 18px;
  font-size: 76px; line-height: 1; font-family: Georgia, serif;
  color: var(--brand); font-style: normal;
}
.success-quote cite{
  display: block; margin-top: 10px; font-style: normal;
  font-size: 13px; color: var(--muted); font-weight: 600;
}

/* Dezenter Abschluss-CTA */
.success-cta{
  margin-top: 48px;
  text-align: center;
  max-width: 620px;
  margin-left: auto; margin-right: auto;
  padding: 8px 16px;
}
.success-cta h3{
  margin: 0 0 8px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800; letter-spacing: -.01em;
  color: #0b1220; line-height: 1.25;
}
.success-cta p{
  margin: 0 auto 18px; max-width: 520px;
  color: var(--muted); font-size: 14.5px; line-height: 1.55;
}
.success-cta .btn svg{ width: 14px; height: 14px }

/* ===== Feed section (Aktuelles & Social kombiniert) ===== */
.feed-section{
  background:
    radial-gradient(60% 60% at 90% 10%, rgba(11,164,173,.10) 0%, transparent 60%),
    radial-gradient(50% 50% at 10% 80%, rgba(0,109,117,.06) 0%, transparent 60%),
    linear-gradient(180deg, #f3f8f8 0%, var(--bg) 100%);
}

.live-feed{ margin-top: 56px }
.live-feed__head{
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 24px;
}
.live-feed__title{
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0; font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800; letter-spacing: -.02em; color: #0b1220;
}
.live-dot{
  width: 10px; height: 10px; border-radius: 999px;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239,68,68,.55);
  animation: livepulse 1.6s ease-out infinite;
}
@keyframes livepulse{
  0%{ box-shadow: 0 0 0 0 rgba(239,68,68,.55) }
  70%{ box-shadow: 0 0 0 10px rgba(239,68,68,0) }
  100%{ box-shadow: 0 0 0 0 rgba(239,68,68,0) }
}
.live-feed__sub{ margin: 6px 0 0; color: var(--muted); font-size: 14px }
.live-feed__links{ display: flex; gap: 10px; flex-wrap: wrap }

.platform-chip{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: #fff; color: #0b1220; font-weight: 700; font-size: 13.5px;
  border: 1px solid var(--border); box-shadow: var(--shadow-xs);
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.platform-chip svg{ width: 16px; height: 16px }
.platform-chip.ig svg{ fill: #d62976 }
.platform-chip.tt svg{ fill: #0b1220 }
.platform-chip:hover{
  transform: translateY(-2px); box-shadow: var(--shadow-md);
  border-color: var(--brand); color: #0b1220;
}

/* Behold widget container + fallback */
.behold-wrap{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px;
  box-shadow: var(--shadow-md);
  min-height: 420px;
  position: relative;
}
.behold-wrap behold-widget{
  display: block; width: 100%;
}
/* Hide fallback as soon as Behold widget actually rendered something */
.behold-wrap:has(behold-widget [class]) .behold-fallback{ display: none }

.behold-fallback{
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center;
  padding: 48px 24px; min-height: 380px;
}
.behold-fallback__ico{
  width: 64px; height: 64px; border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 20%, #d62976 50%, #962fbf 80%, #4f5bd5 100%);
  color: #fff; margin-bottom: 4px;
}
.behold-fallback__ico svg{ width: 32px; height: 32px; fill: #fff }
.behold-fallback h4{
  margin: 0; font-size: 20px; font-weight: 800; color: #0b1220; letter-spacing: -.01em;
}
.behold-fallback p{
  margin: 0; color: var(--muted); font-size: 14.5px; max-width: 460px; line-height: 1.55;
}
.behold-fallback .btn{ margin-top: 10px }

/* Social follow tiles (kept, light variant works on bright bg) */
.social-grid{
  display: grid; gap: 16px; grid-template-columns: 1fr;
  margin-top: 8px;
}
@media (min-width: 700px){ .social-grid{ grid-template-columns: repeat(3,1fr) } }
.social-tile{
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  padding: 28px 24px; min-height: 240px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: #fff; text-decoration: none;
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .25s ease, box-shadow .25s ease;
  isolation: isolate;
}
.social-tile:hover{ transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.4); color: #fff }
.social-tile::before{
  content: ""; position: absolute; inset: 0; z-index: -1;
  transition: transform .4s ease;
}
.social-tile:hover::before{ transform: scale(1.05) }
.social-tile.ig::before{
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 20%, #d62976 50%, #962fbf 80%, #4f5bd5 100%);
}
.social-tile.tt::before{
  background: linear-gradient(135deg, #010101 0%, #222 40%, #25f4ee 70%, #fe2c55 100%);
}
.social-tile.wa::before{
  background: linear-gradient(135deg, #075e54 0%, #128c7e 40%, #25d366 100%);
}
.social-tile__ico{
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,.18); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.3);
  display: grid; place-items: center;
}
.social-tile__ico svg{ width: 26px; height: 26px; fill: #fff }
.social-tile__handle{ font-size: 13px; opacity: .85; margin-top: 18px }
.social-tile__title{ font-size: 22px; font-weight: 800; margin-top: 4px; letter-spacing: -.01em }
.social-tile__hint{
  margin-top: 14px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.18); backdrop-filter: blur(6px);
  width: fit-content;
}
.social-tile__hint svg{ width: 14px; height: 14px }

/* ===== Kids & Family ===== */
.kids-grid{
  display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center;
}
@media (min-width: 900px){ .kids-grid{ grid-template-columns: 1.05fr 1fr } }
.kids-media img{
  width: 100%; height: auto; display: block;
  border-radius: var(--r-xl); box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.kids-content h2{
  margin: 0 0 12px; font-size: clamp(26px,3vw,34px);
  font-weight: 800; letter-spacing: -.02em; color: #0b1220;
}
.kids-content > p{ color: #334155; font-size: 15.5px; line-height: 1.65 }
.kids-pills{ display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 16px }
.pill{
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600;
  padding: 8px 12px; border-radius: 999px;
  background: #fff; border: 1px solid var(--border);
  color: #0f172a; box-shadow: var(--shadow-xs);
}
.kids-cards{
  margin-top: 10px; display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px;
  font-size: 14px;
}
@media (max-width: 720px){ .kids-cards{ grid-template-columns: 1fr } }

/* ===== FAQ ===== */
.faq-wrap{ max-width: 880px; margin-inline: auto; text-align: center }
.faq-title{ margin: 0 0 8px; font-size: clamp(28px,3.6vw,40px); font-weight: 800; letter-spacing: -.02em }
.faq-intro{ margin: 0 0 28px; color: var(--muted); font-size: 15px }
.faq-list{
  padding: 0; border-radius: var(--r-lg); overflow: hidden;
  text-align: left; background: #fff; box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.faq-item{ border-top: 1px solid var(--border-soft) }
.faq-item:first-child{ border-top: 0 }
.faq-summary{
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; cursor: pointer; list-style: none;
  padding: 18px 22px; font-size: 15.5px; font-weight: 600; color: #0b1220;
}
.faq-summary::-webkit-details-marker{ display: none }
.faq-summary .chev{
  width: 20px; height: 20px; flex: 0 0 20px;
  stroke: currentColor; stroke-width: 2; fill: none;
  opacity: .55; transition: transform .25s ease, opacity .25s ease;
}
.faq-item[open] .chev{ transform: rotate(180deg); opacity: 1; color: var(--brand) }
.faq-content{
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease; padding: 0 22px;
}
.faq-item[open] .faq-content{ grid-template-rows: 1fr; padding-bottom: 18px }
.faq-content > *{ overflow: hidden }
.faq-content p{ margin: 0; color: #475569; font-size: 14.5px; line-height: 1.6 }

/* ===== CTA / Book ===== */
.cta-wrap{ position: relative; background: linear-gradient(180deg, var(--bg) 0%, #eef6f7 100%) }
.cta-bg{
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 60% at 50% 0%, rgba(0,109,117,.15), transparent 60%);
  z-index: 0;
}
.cta-wrap > .container{ position: relative; z-index: 1 }
.cta-grid{ display: grid; gap: 32px; align-items: start }
@media (min-width: 960px){ .cta-grid{ grid-template-columns: 1fr 1fr } }
.cta-grid h2{
  margin: 0; font-size: clamp(28px,3.6vw,40px);
  font-weight: 800; letter-spacing: -.02em; color: #0b1220;
}
.cta-grid .muted{ max-width: 540px }
.cta-points{
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; gap: 10px;
}
.cta-points li{
  display: flex; align-items: center; gap: 12px;
  color: #0f172a; font-weight: 500; font-size: 14.5px;
}
.cta-points .ico{
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--brand-50); color: var(--brand);
  display: grid; place-items: center; flex: 0 0 36px;
}
.cta-points .ico svg{ width: 16px; height: 16px }

.cta-quick{
  margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px;
}

/* ===== Form ===== */
.form{
  background: #fff; border-radius: var(--r-xl); padding: 28px;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
}
.form__grid{ display: grid; grid-template-columns: 1fr; gap: 16px }
@media (min-width: 640px){
  .form__grid{ grid-template-columns: 1fr 1fr }
  .form__grid .full{ grid-column: 1 / -1 }
}
.form label{ display: flex; flex-direction: column; gap: 6px }
.form label span{
  font-size: 12px; font-weight: 700; color: #0f172a;
  letter-spacing: .02em;
}
.form input, .form select, .form textarea{
  width: 100%; padding: 13px 14px;
  border-radius: 12px; border: 1px solid var(--border);
  background: #fff; font-size: 15px; color: #0b1220;
  transition: border-color .15s, box-shadow .15s;
  font-family: inherit;
}
.form input::placeholder, .form textarea::placeholder{ color: #94a3b8 }
.form input:focus, .form select:focus, .form textarea:focus{
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(0,109,117,.15);
}
.form select{
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand) 50%),
    linear-gradient(135deg, var(--brand) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px; background-repeat: no-repeat;
}
.form .btn--block{
  width: 100%; margin-top: 12px;
  padding: 15px 18px; font-size: 15.5px; font-weight: 800;
  border-radius: 999px;
  background: var(--brand); color: #fff; border: none;
  box-shadow: var(--shadow-brand);
  transition: transform .15s, box-shadow .2s, background-color .2s;
}
.form .btn--block:hover{
  background: var(--brand-600); transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0,109,117,.3);
}
.form .tiny{
  margin: 10px 0 0; font-size: 12.5px; color: var(--muted); text-align: center;
}

/* ===== Sticky social sidebar (right) ===== */
.side-social{
  position: fixed; right: 18px; top: 50%;
  transform: translateY(-50%); z-index: 900;
  display: flex; flex-direction: column; gap: 10px;
}
.side-social a{
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: #fff; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.side-social a:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md) }
.side-social svg{ width: 20px; height: 20px }
.side-social .ig svg{ fill: #d62976 }
.side-social .tt svg{ fill: #0b1220 }
.side-social .wa svg{ fill: #25d366 }
@media (max-width: 900px){ .side-social{ display: none } }

/* ===== Footer ===== */
footer{
  background: #0b1220; color: #cbd5e1;
  margin-top: 40px;
}
footer .container{ padding-top: 56px; padding-bottom: 24px }
.footer-grid{
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px){ .footer-grid{ grid-template-columns: 1.2fr .9fr .9fr } }
footer .brand img{ height: 52px; filter: brightness(0) invert(1); opacity: .95 }
footer .brand strong{ color: #fff }
footer h4{
  margin: 0 0 14px; font-size: 13px; font-weight: 700;
  color: #fff; letter-spacing: .12em; text-transform: uppercase;
}
footer ul{ padding: 0; margin: 0; list-style: none; display: grid; gap: 10px }
footer ul li, footer p{ color: #94a3b8; font-size: 14px; line-height: 1.55 }
footer ul a{ color: #cbd5e1 }
footer ul a:hover{ color: #fff }
.footer-social{ display: flex; gap: 10px; margin-top: 8px }
.footer-social a{
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: grid; place-items: center; color: #fff;
  transition: background .2s, transform .2s;
}
.footer-social a:hover{ background: rgba(255,255,255,.14); transform: translateY(-1px) }
.footer-social svg{ width: 18px; height: 18px; fill: #fff }
.footer-bottom{
  margin-top: 36px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: space-between; align-items: center;
  font-size: 12.5px; color: #94a3b8;
}
.footer-bottom a{ color: #cbd5e1 }
.footer-bottom a:hover{ color: #fff }

/* ===== Badge (legacy) ===== */
.badge{
  display: inline-block; font-size: 12px; font-weight: 700;
  padding: 6px 10px; border-radius: 999px;
  background: var(--brand-50); color: var(--brand-600);
  border: 1px solid rgba(0,109,117,.22);
}

/* ===== Scroll reveal ===== */
.reveal-on-scroll{
  opacity: 0; transform: translateY(20px); filter: blur(2px);
  transition: opacity .6s ease, transform .6s ease, filter .6s ease;
  will-change: opacity, transform, filter;
}
.reveal-on-scroll.is-visible{
  opacity: 1; transform: translateY(0); filter: blur(0);
}
@media (prefers-reduced-motion: reduce){
  .reveal-on-scroll{ opacity: 1; transform: none; filter: none; transition: none }
  .eyebrow .pulse{ animation: none }
}

/* ===== Helpers ===== */
.img-cover{ width: 100%; height: 100%; object-fit: cover; display: block }

/* Pricing table / legacy calendar bits kept for safety */
.plan-table{ width: 100%; border-collapse: separate; border-spacing: 0; font-size: 14px }
.plan-table thead th{
  text-align: left; font-weight: 700; color: #0f172a;
  padding: 10px 12px; border-bottom: 1px solid var(--border);
}
.plan-table tbody td{
  padding: 10px 12px; vertical-align: top; color: #334155;
  border-bottom: 1px solid var(--border-soft);
}
.plan-table tbody tr:nth-child(odd) td{ background: #f8fafc }

/* ===== Social Feed (embeds unter News) ===== */
.social-feed{ margin-top: 48px }
.social-feed__head{
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 20px;
}
.social-feed__title{
  margin: 0; font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800; letter-spacing: -.02em; color: #0b1220;
}
.social-feed__link{
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: var(--brand);
}
.social-feed__link svg{ width: 14px; height: 14px }
.social-feed__grid{
  display: grid; gap: 18px; grid-template-columns: 1fr;
}
@media (min-width: 720px){ .social-feed__grid{ grid-template-columns: repeat(2, 1fr) } }
@media (min-width: 1040px){ .social-feed__grid{ grid-template-columns: repeat(3, 1fr) } }

.embed-card{
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  min-height: 440px;
  display: flex; flex-direction: column;
}
.embed-card:hover{
  transform: translateY(-3px); box-shadow: var(--shadow-lg);
  border-color: rgba(0,109,117,.22);
}
.embed-card__head{
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-bottom: 1px solid var(--border-soft);
  font-size: 13px; font-weight: 700; color: #0b1220;
}
.embed-card__head .ico{
  width: 28px; height: 28px; border-radius: 8px;
  display: grid; place-items: center; color: #fff;
}
.embed-card__head .ico svg{ width: 16px; height: 16px; fill: #fff }
.embed-card__head.ig .ico{ background: linear-gradient(135deg,#feda75,#fa7e1e,#d62976,#4f5bd5) }
.embed-card__head.tt .ico{ background: linear-gradient(135deg,#25f4ee,#000,#fe2c55) }
.embed-card__body{
  flex: 1; display: flex; justify-content: center; align-items: flex-start;
  padding: 10px; background: #fafafa; min-height: 0;
}
.embed-card__body > *{ width: 100% !important; max-width: 540px !important }
.embed-card .instagram-media, .embed-card .tiktok-embed{
  margin: 0 !important; min-width: 0 !important;
}

/* Loading skeleton while embeds fetch */
.embed-skel{
  width: 100%; height: 360px; border-radius: 12px;
  background: linear-gradient(90deg, #f0f3f7 0%, #f7fafc 50%, #f0f3f7 100%);
  background-size: 200% 100%;
  animation: skel 1.4s ease infinite;
}
@keyframes skel{
  0%{ background-position: 200% 0 }
  100%{ background-position: -200% 0 }
}

/* ===== Video audio controls ===== */
.v-controls{
  position: absolute; top: 14px; left: 14px; z-index: 3;
  display: flex; gap: 8px;
}
.v-btn{
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(11,18,32,.45); color: #fff;
  display: grid; place-items: center; font-size: 15px;
  backdrop-filter: blur(8px);
  transition: background .2s ease, transform .15s ease;
}
.v-btn:hover{ background: rgba(11,18,32,.65); transform: translateY(-1px); color: #fff; }
.v-btn svg{ width: 18px; height: 18px; }
.v-btn[aria-pressed="true"]{ background: rgba(0,109,117,.75); border-color: rgba(255,255,255,.7); }

/* Prominent "Ton einschalten" hint */
.v-audio-hint{
  position: absolute; top: 14px; right: 14px; z-index: 4;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(255,255,255,.95); color: #0b1220;
  border: 1px solid rgba(255,255,255,.8);
  backdrop-filter: blur(10px);
  font-size: 13px; font-weight: 700; letter-spacing: .01em;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  cursor: pointer;
  transition: opacity .3s ease, transform .3s ease;
  animation: hintFloat 2.4s ease-in-out infinite;
}
.v-audio-hint svg{ width: 16px; height: 16px; fill: var(--brand); flex-shrink: 0 }
.v-audio-hint.is-hidden{
  opacity: 0; transform: translateY(-6px) scale(.95);
  pointer-events: none; animation: none;
}
@keyframes hintFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-3px); }
}
@media (prefers-reduced-motion: reduce){
  .v-audio-hint{ animation: none }
}

/* Gallery mute toggle */
.gallery-item{ position: relative; }
.gallery-mute{
  position: absolute; bottom: 10px; right: 10px; z-index: 2;
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(11,18,32,.55); color: #fff;
  display: none; place-items: center;
  backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .2s ease, background .2s ease;
}
.gallery-mute.is-video{ display: grid }
.gallery-item:hover .gallery-mute,
.gallery-mute:focus-visible,
.gallery-mute[aria-pressed="true"]{ opacity: 1 }
.gallery-mute:hover{ background: rgba(11,18,32,.75) }
.gallery-mute[aria-pressed="true"]{ background: rgba(0,109,117,.8); border-color: rgba(255,255,255,.7) }
.gallery-mute svg{ width: 16px; height: 16px; fill: #fff }

/* Sticky book bar (legacy) */
.sticky-book{ position: fixed; left: 0; right: 0; bottom: 16px; z-index: 60 }
.sticky-inner{
  max-width: 680px; margin: 0 auto; background: rgba(255,255,255,.95);
  border: 1px solid var(--border); backdrop-filter: blur(8px);
  border-radius: 999px; padding: 10px 14px;
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: var(--shadow-md);
}
