/* =========================================================
   Tennis Olya — "PINK COURT" visual system
   Energetic, sporty, feminine-playful but premium.
   ========================================================= */

:root {
  /* ---- Pink Court palette ---- */
  --fuchsia:  #FF1E7A;   /* accents, buttons */
  --pink:     #FF5DA0;   /* gradients */
  --powder:   #FFC2DC;   /* borders / mid bg */
  --pale:     #FFE6F0;   /* soft bg / borders */
  --cream:    #FFF7FB;   /* main background, air */
  --ink:      #2B0E1C;   /* deep plum text */
  --ink-soft: #6e4256;
  --muted:    #9c7889;
  --lime:     #D9F24D;   /* tennis-ball neon — dosed */
  --lime-edge:#B6D62E;
  --white:    #ffffff;

  /* legacy aliases (kept so existing class colors resolve) */
  --pink-50:  #FFF7FB;
  --pink-100: #FFE6F0;
  --pink-200: #FFC2DC;
  --pink-300: #FF9EC6;
  --pink-400: #FF5DA0;
  --pink-500: #FF1E7A;
  --pink-600: #ED1C74;
  --pink-700: #C2155E;
  --pink-900: #7A0D3B;
  --line:     #FAD3E5;
  --bg:       #FFF7FB;
  --bg-soft:  #FFEFF6;
  --bg-pink:  #FFE1EE;

  --green:    #25d366;
  --viber:    #7360f2;
  --telegram: #29a9eb;

  --radius:    24px;
  --radius-sm: 16px;
  --radius-lg: 36px;
  --shadow-sm: 0 6px 20px rgba(255,30,122,.10);
  --shadow:    0 16px 40px rgba(255,30,122,.16);
  --shadow-lg: 0 30px 70px rgba(255,30,122,.26);

  --grad:      linear-gradient(135deg, #FF5DA0 0%, #FF1E7A 60%, #C2155E 100%);
  --grad-soft: linear-gradient(135deg, #FFE6F0 0%, #FFC2DC 100%);

  --maxw: 1200px;
  --font-display: 'Unbounded', system-ui, sans-serif;
  --font: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;

  /* SVG assets */
  --svg-ball: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='18' fill='%23D9F24D' stroke='%23B6D62E' stroke-width='2'/%3E%3Cpath d='M6 9c8 6 8 16 0 22M34 9c-8 6-8 16 0 22' fill='none' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E");
  --svg-racket: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 230' fill='none' stroke='%23FF1E7A' stroke-width='3' opacity='.9'%3E%3Cellipse cx='60' cy='66' rx='50' ry='62'/%3E%3Cellipse cx='60' cy='66' rx='40' ry='52' opacity='.5'/%3E%3Cpath d='M32 26v78M46 19v94M60 16v98M74 19v94M88 26v78' opacity='.55'/%3E%3Cpath d='M14 46h92M12 66h96M14 86h92' opacity='.55'/%3E%3Cpath d='M53 126c0 28-9 36-9 58M67 126c0 28 9 36 9 58' stroke-width='7'/%3E%3C/svg%3E");
  --svg-grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  --svg-emblem: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 280 340' fill='none'%3E%3Cpath d='M52 280 Q150 90 250 56' stroke='%23B6D62E' stroke-width='3.5' stroke-dasharray='1 12' stroke-linecap='round'/%3E%3Cg stroke='%23fff' stroke-width='2.2' opacity='.7'%3E%3Cline x1='58' y1='44' x2='58' y2='200'/%3E%3Cline x1='84' y1='32' x2='84' y2='210'/%3E%3Cline x1='110' y1='28' x2='110' y2='214'/%3E%3Cline x1='136' y1='32' x2='136' y2='210'/%3E%3Cline x1='162' y1='44' x2='162' y2='200'/%3E%3Cline x1='44' y1='80' x2='176' y2='80'/%3E%3Cline x1='40' y1='106' x2='180' y2='106'/%3E%3Cline x1='40' y1='132' x2='180' y2='132'/%3E%3Cline x1='44' y1='158' x2='176' y2='158'/%3E%3C/g%3E%3Cellipse cx='110' cy='120' rx='74' ry='92' stroke='%23FF1E7A' stroke-width='11'/%3E%3Cpath d='M96 208 C92 250 80 270 70 300 C66 312 78 322 92 318 C104 314 110 296 112 270 L124 214Z' fill='%23FF1E7A'/%3E%3Ccircle cx='246' cy='58' r='24' fill='%23D9F24D' stroke='%23B6D62E' stroke-width='2.5'/%3E%3Cpath d='M230 44c10 8 10 20 0 28M262 44c-10 8 -10 20 0 28' stroke='%23fff' stroke-width='2.4'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.62;
  font-size: 17px;
  overflow-x: hidden;
  position: relative;
}
/* grain + drifting blobs */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: var(--svg-grain); opacity: .035; mix-blend-mode: multiply;
}
.bg-blobs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-blobs i {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5;
  will-change: transform;
}
.bg-blobs i:nth-child(1){ width: 460px; height: 460px; background: #FF9EC6; top: -120px; left: -80px; }
.bg-blobs i:nth-child(2){ width: 380px; height: 380px; background: #FFC2DC; top: 40%; right: -120px; }
.bg-blobs i:nth-child(3){ width: 300px; height: 300px; background: rgba(217,242,77,.5); bottom: -80px; left: 30%; }
main, header, footer, section, .float { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2 { font-family: var(--font-display); font-weight: 800; line-height: 1.02; letter-spacing: -.02em; color: var(--ink); }
h3, h4 { font-family: var(--font); font-weight: 800; line-height: 1.18; letter-spacing: -.01em; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 5.6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p  { color: var(--ink-soft); }
b, strong { color: inherit; }

/* Fraunces italic poetic accents (inside hero title, quotes) */
h1 b, h1 em, h2 em, .fr { font-family: var(--font-serif); font-style: italic; font-weight: 600; letter-spacing: 0; }
h1 b { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: 92px 0; }
.section-soft { background: var(--bg-soft); }
.section-pink { background: var(--bg-pink); }

/* wavy transitions on tinted sections */
.section-soft, .section-pink { position: relative; }
.section-soft::before, .section-pink::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 46px;
  transform: translateY(-99%);
  background-repeat: no-repeat; background-size: 100% 100%;
}
.section-soft::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 46' preserveAspectRatio='none'%3E%3Cpath d='M0 46 C 240 6 480 6 720 26 C 960 46 1200 46 1440 16 L1440 46 Z' fill='%23FFEFF6'/%3E%3C/svg%3E"); }
.section-pink::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 46' preserveAspectRatio='none'%3E%3Cpath d='M0 46 C 240 6 480 6 720 26 C 960 46 1200 46 1440 16 L1440 46 Z' fill='%23FFE1EE'/%3E%3C/svg%3E"); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: .78rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--fuchsia);
  background: var(--white); border: 1.5px solid var(--powder);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.eyebrow::before { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--svg-ball) center/contain no-repeat; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head p { margin-top: 16px; font-size: 1.1rem; }
.text-grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font); font-weight: 800; font-size: 1rem;
  padding: 16px 30px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s, filter .2s;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow); }
.btn-primary::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 2px rgba(255,255,255,.18); }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow-lg); }
.btn-ghost { background: #fff; color: var(--fuchsia); border: 2px solid var(--powder); }
.btn-ghost:hover { border-color: var(--fuchsia); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn-wa { background: var(--green); color: #fff; box-shadow: 0 12px 28px rgba(37,211,102,.32); }
.btn-wa:hover { transform: translateY(-3px) scale(1.02); }
.btn-lg { padding: 19px 40px; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,247,251,.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
.site-header.scrolled { box-shadow: 0 8px 28px rgba(255,30,122,.12); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 76px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; letter-spacing: -.03em; }
.logo .ball { width: 30px; height: 30px; border-radius: 50%; background: var(--svg-ball) center/contain no-repeat; display: inline-block; font-size: 0; box-shadow: 0 2px 8px rgba(182,214,46,.5); }
.logo b { color: var(--fuchsia); font-family: var(--font-display); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > a, .drop-toggle { padding: 9px 13px; border-radius: 11px; font-weight: 700; font-size: .95rem; color: var(--ink-soft); transition: background .15s, color .15s; }
.nav-links > a:hover, .nav-links > a.active, .drop-toggle:hover, .drop-toggle.active { background: var(--pale); color: var(--fuchsia); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.lang { position: relative; }
.lang-btn { display: flex; align-items: center; gap: 7px; background: var(--white); border: 1.5px solid var(--powder); border-radius: 999px; padding: 8px 13px; font-weight: 800; font-size: .85rem; cursor: pointer; color: var(--ink); }
.lang-btn:hover { background: var(--pale); }
.lang-menu { position: absolute; right: 0; top: 120%; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); padding: 6px; min-width: 160px; display: none; }
.lang-menu.open { display: block; }
.lang-menu button { display: flex; width: 100%; gap: 10px; align-items: center; background: none; border: none; padding: 11px 12px; border-radius: 10px; cursor: pointer; font-weight: 700; font-size: .92rem; font-family: inherit; color: var(--ink); }
.lang-menu button:hover { background: var(--pale); }
.lang-menu button.active { background: var(--pale); color: var(--fuchsia); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 3px; background: var(--fuchsia); border-radius: 3px; transition: .25s; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.header-cta { display: inline-flex; }

/* services dropdown */
.has-drop { position: relative; }
.drop-toggle { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.drop-toggle .caret { font-size: .7rem; transition: transform .2s; }
.drop-menu { position: absolute; left: 0; top: 100%; margin-top: 8px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); padding: 8px; min-width: 290px; display: none; z-index: 101; }
.drop-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 12px; font-size: .92rem; font-weight: 700; color: var(--ink-soft); }
.drop-menu a:hover { background: var(--pale); color: var(--fuchsia); }
.drop-menu .all { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 10px; color: var(--fuchsia); }
.has-drop:hover .drop-menu, .has-drop.open .drop-menu { display: block; }
.has-drop.open .drop-toggle .caret { transform: rotate(180deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 80px 0 100px; overflow: hidden; background: linear-gradient(160deg, #FFE6F0 0%, #FFC2DC 100%); }
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600' fill='none' stroke='%23fff' stroke-width='2' opacity='.7'%3E%3Crect x='120' y='90' width='560' height='430'/%3E%3Cline x1='120' y1='305' x2='680' y2='305'/%3E%3Cline x1='260' y1='90' x2='260' y2='520'/%3E%3Cline x1='540' y1='90' x2='540' y2='520'/%3E%3Cline x1='400' y1='90' x2='400' y2='520'/%3E%3C/svg%3E");
  background-position: center; background-size: cover;
}
.hero::after {
  content: ""; position: absolute; width: 34px; height: 34px; right: 8%; top: 22%;
  background: var(--svg-ball) center/contain no-repeat; filter: drop-shadow(0 6px 10px rgba(182,214,46,.5));
  animation: bounce 3.2s ease-in-out infinite; z-index: 2;
}
@keyframes bounce { 0%,100%{ transform: translateY(0) rotate(0); } 25%{ transform: translateY(-70px) rotate(90deg); } 50%{ transform: translateY(0) rotate(180deg); } 75%{ transform: translateY(-34px) rotate(270deg); } }
.hero-emblem { position: absolute; right: -50px; top: 50%; transform: translate(var(--px,0px), calc(-50% + var(--py,0px))) rotate(8deg); width: 320px; max-width: 42vw; z-index: 0; opacity: .9; pointer-events: none; filter: drop-shadow(0 20px 30px rgba(194,21,94,.25)); transition: transform .15s ease-out; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; position: relative; z-index: 1; }
.hero h1 { margin-bottom: 20px; }
.hero .lead { font-size: 1.18rem; color: var(--ink); opacity: .85; margin-bottom: 24px; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-trust { display: flex; align-items: center; gap: 14px; font-size: .95rem; color: var(--ink-soft); flex-wrap: wrap; font-weight: 600; }
.stars { color: var(--lime-edge); letter-spacing: 2px; text-shadow: 0 0 1px var(--lime-edge); }
.hero-visual { position: relative; }
.hero-photo, .hero-visual .media-img { border-radius: var(--radius-lg); aspect-ratio: 4/5; width: 100%; object-fit: cover; box-shadow: var(--shadow-lg); }
.hero-photo { background: var(--grad); display: grid; place-items: center; color: #fff; font-size: 5rem; }
.hero-badge { position: absolute; background: #fff; border-radius: 18px; box-shadow: var(--shadow); padding: 14px 18px; display: flex; align-items: center; gap: 12px; border: 1.5px solid var(--pale); }
.hero-badge .num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--fuchsia); }
.hero-badge.b1 { top: 22px; left: -22px; }
.hero-badge.b2 { bottom: 26px; right: -18px; }
.hero-badge.b2::after { content: ""; position: absolute; inset: -10px; border-radius: 22px; border: 2px dashed var(--lime-edge); opacity: .55; pointer-events: none; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; padding: 34px 18px; background: #fff; border: 1.5px solid var(--pale); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.stat .num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat p { font-weight: 600; margin-top: 6px; font-size: .98rem; }

/* ---------- Cards / services ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff; border: 1.5px solid var(--pale); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column; transform-style: preserve-3d;
}
.card:hover { box-shadow: var(--shadow); border-color: var(--powder); }
.card .ico { width: 60px; height: 60px; border-radius: 16px; background: var(--grad-soft); display: grid; place-items: center; font-size: 1.7rem; margin-bottom: 18px; border: 1px solid var(--pale); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; flex: 1; }
.card .price { margin-top: 16px; font-weight: 800; color: var(--fuchsia); font-size: 1.05rem; }
.card .card-link { margin-top: 16px; font-weight: 800; color: var(--fuchsia); display: inline-flex; align-items: center; gap: 6px; }
.card .card-link::after { content: "→"; transition: transform .2s; }
.card:hover .card-link::after { transform: translateX(5px); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { background: #fff; border: 1.5px solid var(--pale); border-radius: var(--radius); padding: 30px 24px; position: relative; transition: transform .25s, box-shadow .25s; }
.step:hover { box-shadow: var(--shadow); }
.step .n { width: 46px; height: 46px; border-radius: 50%; background: var(--grad); color: #fff; font-family: var(--font-display); font-weight: 800; display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: .95rem; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review { background: #fff; border: 1.5px solid var(--pale); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.review .stars { font-size: 1.05rem; margin-bottom: 12px; }
.review p { color: var(--ink); font-size: 1.02rem; margin-bottom: 18px; font-family: var(--font-serif); font-style: italic; font-weight: 500; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .av { width: 46px; height: 46px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 800; flex: 0 0 46px; }
.review .who b { display: block; font-size: .98rem; }
.review .who span { font-size: .85rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad); border-radius: var(--radius-lg); padding: 64px 50px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; right: -30px; bottom: -50px; width: 220px; height: 220px; background: var(--svg-racket) center/contain no-repeat; opacity: .18; transform: rotate(18deg); filter: brightness(0) invert(1); }
.cta-band::after { content: ""; position: absolute; left: -40px; top: -40px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(217,242,77,.5), transparent 70%); }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,.94); position: relative; margin: 16px auto 30px; max-width: 580px; font-size: 1.12rem; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-band .btn-primary { background: var(--lime); color: var(--ink); box-shadow: 0 14px 30px rgba(182,214,46,.4); }
.cta-band .btn-primary:hover { background: #e3ff63; }
.cta-band .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }

/* ---------- Lead form ---------- */
.form-wrap { background: #fff; border: 1.5px solid var(--pale); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .9rem; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; padding: 15px 16px; border: 1.5px solid var(--pale);
  border-radius: var(--radius-sm); background: var(--bg-soft); color: var(--ink); transition: border-color .15s, background .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--fuchsia); background: #fff; box-shadow: 0 0 0 4px rgba(255,30,122,.1); }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 12px; text-align: center; }
.form-ok { background: var(--pale); border: 1.5px solid var(--powder); color: var(--pink-700); padding: 18px; border-radius: var(--radius-sm); font-weight: 700; text-align: center; display: none; }

/* split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split .media { border-radius: var(--radius-lg); aspect-ratio: 4/3; background: var(--grad); box-shadow: var(--shadow); display: grid; place-items: center; color: #fff; font-size: 4rem; }
.list-check { margin-top: 18px; display: grid; gap: 12px; }
.list-check li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--ink); }
.list-check li::before { content: ""; flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; background: var(--svg-ball) center/contain no-repeat; margin-top: 2px; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card { position: relative; background: #fff; border: 1.5px solid var(--pale); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.price-card h4 { font-family: var(--font); font-size: 1.08rem; font-weight: 800; margin-bottom: 10px; }
.price-card .amount { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.price-card .per { display: block; font-size: .9rem; color: var(--muted); font-weight: 700; margin: 8px 0 18px; }
.price-card ul { display: grid; gap: 9px; margin-top: auto; }
.price-card li { position: relative; padding-left: 26px; font-size: .95rem; color: var(--ink-soft); font-weight: 600; }
.price-card li::before { content: ""; position: absolute; left: 0; top: 1px; width: 18px; height: 18px; background: var(--svg-ball) center/contain no-repeat; }
.price-card.featured { border-color: var(--fuchsia); box-shadow: var(--shadow); }
.price-card.featured::after { content: ""; position: absolute; inset: -2px; border-radius: inherit; border: 2px solid var(--fuchsia); pointer-events: none; opacity: .35; }
.price-card .badge { position: absolute; top: -14px; left: 26px; background: var(--lime); color: var(--ink); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 7px 15px; border-radius: 999px; box-shadow: 0 6px 14px rgba(182,214,46,.4); border: 1px solid var(--lime-edge); }
.price-foot { text-align: center; margin-top: 20px; color: var(--muted); font-weight: 600; font-size: .95rem; }

/* ---------- Prose (program detail body) ---------- */
.prose h3 { font-size: 1.2rem; margin: 28px 0 12px; color: var(--pink-700); }
.prose h3:first-child { margin-top: 0; }
.prose p { font-size: 1.04rem; margin-bottom: 6px; }
.prose .list-check { margin-top: 6px; }
.detail-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 50px; align-items: start; }
.detail-grid .ph, .detail-grid .media-img { position: sticky; top: 100px; }

/* ---------- Incl list ---------- */
.incl-list { display: grid; gap: 12px; max-width: 760px; margin: 0 auto; }
.incl-list li { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1.5px solid var(--pale); border-radius: var(--radius-sm); padding: 16px 20px; font-weight: 600; color: var(--ink); }
.incl-list li::before { content: ""; flex: 0 0 22px; width: 22px; height: 22px; background: var(--svg-ball) center/contain no-repeat; margin-top: 1px; }

/* ---------- Photo / video placeholders ---------- */
.ph { border: 2px dashed var(--powder); background: var(--grad-soft); border-radius: var(--radius-lg); display: grid; place-items: center; text-align: center; color: var(--fuchsia); font-weight: 700; gap: 8px; padding: 20px; }
.ph .ico-lg { font-size: 2.6rem; }
.ph small { color: var(--muted); font-weight: 600; font-size: .85rem; }
.ph-photo { aspect-ratio: 4/5; }
.ph-wide { aspect-ratio: 16/9; }

/* ---------- Real media ---------- */
.media-img { width: 100%; display: block; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.media-photo { aspect-ratio: 4/5; }
.media-square { aspect-ratio: 1/1; }
.media-wide { aspect-ratio: 16/9; }
.media-43 { aspect-ratio: 4/3; }
.gallery-grid .media-img { border-radius: var(--radius); height: 100%; min-height: 220px; }
.gallery-grid .media-img.tall { grid-row: span 2; }

/* ---------- Intro / about / bio / motiv / video / quote / why / pers / gallery ---------- */
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 54px; align-items: center; }
.intro-grid .ph { aspect-ratio: 5/4; }
.motiv { background: var(--grad); color: #fff; border-radius: var(--radius-lg); padding: 60px 50px; text-align: center; position: relative; overflow: hidden; }
.motiv::before { content: ""; position: absolute; right: -30px; top: -40px; width: 200px; height: 200px; background: var(--svg-racket) center/contain no-repeat; opacity: .16; filter: brightness(0) invert(1); transform: rotate(-12deg); }
.motiv .eyebrow { background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.3); position: relative; }
.motiv .eyebrow::before { filter: none; }
.motiv h2 { color: #fff; max-width: 840px; margin: 0 auto; position: relative; }
.motiv p { color: rgba(255,255,255,.95); max-width: 760px; margin: 16px auto 0; position: relative; font-size: 1.08rem; }
.video-box { max-width: 920px; margin: 0 auto; }
.bio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bio-card { background: #fff; border: 1.5px solid var(--pale); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.bio-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.bio-card p { font-size: .97rem; }
.about-lead-row { display: grid; grid-template-columns: .8fr 1.2fr; gap: 44px; align-items: center; margin-bottom: 42px; }
.about-lead-row .ph { aspect-ratio: 1/1; }
.quote { max-width: 840px; margin: 0 auto; text-align: center; }
.quote blockquote { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 600; line-height: 1.32; color: var(--ink); }
.quote .mark { font-family: var(--font-serif); font-size: 3.4rem; color: var(--pink); line-height: .6; }
.quote cite { display: block; margin-top: 20px; font-style: normal; font-weight: 800; color: var(--fuchsia); font-family: var(--font); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card { background: #fff; border: 1.5px solid var(--pale); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.why-card .wn { width: 38px; height: 38px; border-radius: 11px; background: var(--grad-soft); color: var(--fuchsia); font-family: var(--font-display); font-weight: 800; display: grid; place-items: center; margin-bottom: 12px; border: 1px solid var(--pale); }
.why-card h3 { font-size: 1.04rem; margin-bottom: 7px; }
.why-card p { font-size: .92rem; }
.pers { background: var(--grad-soft); border: 1.5px solid var(--pale); border-radius: var(--radius-lg); padding: 52px; }
.pers-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
.pers-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--ink); background: #fff; padding: 16px 18px; border-radius: var(--radius-sm); border: 1.5px solid var(--pale); }
.pers-list li::before { content: "✊"; flex: 0 0 auto; font-size: 1.1rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 16px; }
.gallery-grid .ph { aspect-ratio: 1/1; border-radius: var(--radius); }
.gallery-grid .ph.tall { grid-row: span 2; aspect-ratio: auto; }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1.5px solid var(--pale); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 22px 26px; font-weight: 800; font-size: 1.05rem; font-family: inherit; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq-q .pm { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%; background: var(--pale); color: var(--fuchsia); display: grid; place-items: center; font-weight: 900; transition: transform .25s; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--fuchsia); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 26px 22px; }

/* ---------- Page hero (inner) ---------- */
.page-hero { background: linear-gradient(160deg, #FFE6F0, #FFC2DC); padding: 64px 0; text-align: center; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -20px; bottom: -40px; width: 260px; height: 300px; background: var(--svg-emblem) center/contain no-repeat; opacity: .9; transform: rotate(10deg); pointer-events: none; }
.page-hero::before { content: ""; position: absolute; left: -30px; top: -30px; width: 150px; height: 150px; border-radius: 50%; background: radial-gradient(circle, rgba(217,242,77,.35), transparent 70%); pointer-events: none; }
.breadcrumbs { font-size: .88rem; color: var(--ink-soft); margin-bottom: 14px; position: relative; }
.breadcrumbs a:hover { color: var(--fuchsia); }

/* ---------- Blog ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post { background: #fff; border: 1.5px solid var(--pale); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.post .thumb { aspect-ratio: 16/10; background: var(--grad-soft); display: grid; place-items: center; font-size: 2.6rem; }
.post .body { padding: 24px 26px; }
.post .tag { font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--fuchsia); }
.post h3 { margin: 8px 0 10px; font-size: 1.18rem; }
.post p { font-size: .95rem; }

/* ---------- Contacts ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.info-list { display: grid; gap: 18px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1.5px solid var(--pale); border-radius: var(--radius); padding: 20px 22px; }
.info-item .ico { width: 50px; height: 50px; flex: 0 0 50px; border-radius: 14px; background: var(--grad-soft); display: grid; place-items: center; font-size: 1.3rem; }
.info-item b { display: block; font-size: .85rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.info-item a, .info-item span { font-size: 1.1rem; font-weight: 800; color: var(--ink); }
.msg-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 999px; font-weight: 800; color: #fff; font-size: .95rem; }
.chip.wa { background: var(--green); } .chip.vb { background: var(--viber); } .chip.tg { background: var(--telegram); }
.chip.ig { background: linear-gradient(45deg,#f09433,#dc2743,#bc1888); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--pale); box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 100%; min-height: 440px; border: 0; display: block; }

/* ---------- Floating messenger ---------- */
.float { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.float-toggle { width: 64px; height: 64px; border-radius: 50%; background: var(--green); color: #fff; border: none; cursor: pointer; box-shadow: 0 12px 30px rgba(37,211,102,.42); display: grid; place-items: center; font-size: 1.7rem; transition: transform .2s; animation: pulse 2.4s infinite; }
.float-toggle:hover { transform: scale(1.08); }
.float-items { display: none; flex-direction: column; gap: 10px; align-items: flex-end; }
.float.open .float-items { display: flex; }
.float-item { display: inline-flex; align-items: center; gap: 10px; background: #fff; padding: 9px 16px 9px 12px; border-radius: 999px; box-shadow: var(--shadow); font-weight: 800; font-size: .92rem; }
.float-item .dot { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: #fff; }
.float-item .dot.wa { background: var(--green); } .float-item .dot.vb { background: var(--viber); } .float-item .dot.tg { background: var(--telegram); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5);} 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0);} 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #fff; padding: 64px 0 28px; position: relative; overflow: hidden; }
.site-footer::after { content: ""; position: absolute; right: -40px; top: -30px; width: 220px; height: 220px; background: var(--svg-racket) center/contain no-repeat; opacity: .08; filter: brightness(0) invert(1); transform: rotate(20deg); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; position: relative; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; letter-spacing: .03em; }
.site-footer a, .site-footer p { color: rgba(255,255,255,.72); font-size: .95rem; }
.site-footer a:hover { color: var(--lime); }
.footer-links { display: grid; gap: 10px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: #fff; margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 40px; padding-top: 22px; text-align: center; font-size: .86rem; color: rgba(255,255,255,.55); }

/* ---------- Custom cursor (tennis ball + trail) ---------- */
.cur-ball, .cur-trail { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; border-radius: 50%; background: var(--svg-ball) center/contain no-repeat; transform: translate(-50%, -50%); will-change: transform; }
.cur-ball { width: 24px; height: 24px; filter: drop-shadow(0 3px 5px rgba(182,214,46,.5)); }
.cur-trail { width: 10px; height: 10px; opacity: .35; }
body.no-ball .cur-ball, body.no-ball .cur-trail { display: none !important; }

/* cursor toggle pill */
.cursor-toggle { position: fixed; left: 16px; bottom: 16px; z-index: 90; display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid var(--powder); color: var(--ink-soft); border-radius: 999px; padding: 8px 14px 8px 10px; font-family: var(--font); font-weight: 800; font-size: .8rem; cursor: pointer; box-shadow: var(--shadow-sm); }
.cursor-toggle:hover { border-color: var(--fuchsia); color: var(--fuchsia); }
.cursor-toggle .tball { width: 18px; height: 18px; border-radius: 50%; background: var(--svg-ball) center/contain no-repeat; }
.cursor-toggle.off .tball { filter: grayscale(1); opacity: .5; }

/* ---------- Confetti ---------- */
.confetti-pc { position: fixed; width: 10px; height: 14px; z-index: 9998; pointer-events: none; will-change: transform, opacity; }

/* ---------- Reveal + shimmer ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.text-grad { background-size: 200% auto; animation: shimmer 6s linear infinite; }
@keyframes shimmer { to { background-position: 200% center; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split, .contact-grid, .intro-grid, .about-lead-row, .detail-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .hero-emblem { opacity: .5; right: -90px; width: 240px; }
  .detail-grid .ph, .detail-grid .media-img { position: static; max-width: 420px; }
  .about-lead-row .ph { max-width: 360px; }
  .cards, .posts, .reviews, .bio-grid, .why-grid, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .stats, .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .ph.tall, .gallery-grid .media-img.tall { grid-row: span 1; }
  .motiv, .pers { padding: 42px 28px; }
}
@media (max-width: 760px) {
  section { padding: 64px 0; }
  .nav-links { position: fixed; inset: 76px 0 auto 0; background: #fff; flex-direction: column; align-items: stretch; padding: 16px; gap: 4px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .3s ease; z-index: 99; }
  .nav-links.open { transform: translateY(0); }
  .nav-links > a, .drop-toggle { padding: 13px 14px; }
  .has-drop .drop-menu { position: static; display: block; box-shadow: none; border: none; padding: 2px 0 6px 14px; min-width: 0; margin: 0; }
  .has-drop .drop-toggle .caret { display: none; }
  .drop-menu .all { border: none; }
  .has-drop { width: 100%; }
  .burger { display: flex; }
  .header-cta { display: none; }
  .cards, .posts, .reviews, .form-grid, .bio-grid, .why-grid, .pers-list, .price-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 46px 26px; }
  .form-wrap { padding: 28px 22px; }
  .cur-ball, .cur-trail { display: none; }
}
@media (max-width: 460px) {
  .stats, .steps { grid-template-columns: 1fr; }
  .hero-badge.b1 { left: 6px; } .hero-badge.b2 { right: 6px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero::after { display: none; }
  .cur-ball, .cur-trail { display: none !important; }
}
