:root {
  --bg: #050a0f;
  --bg-2: #07121b;
  --panel: rgba(11, 24, 35, 0.74);
  --panel-strong: rgba(8, 18, 27, 0.92);
  --text: #eef8ff;
  --muted: #9bb1bf;
  --soft: #c7d6df;
  --cyan: #13c8f3;
  --cyan-2: #16a6d7;
  --blue: #096789;
  --line: rgba(140, 224, 255, 0.16);
  --line-strong: rgba(19, 200, 243, 0.35);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1160px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 5%, rgba(19, 200, 243, 0.15), transparent 28rem),
    radial-gradient(circle at 88% 10%, rgba(22, 166, 215, 0.16), transparent 24rem),
    radial-gradient(circle at 50% 100%, rgba(9, 103, 137, 0.18), transparent 35rem),
    var(--bg);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.95), rgba(0,0,0,.22));
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}
.section-pad { padding: 112px 0; }
.section-pad-sm { padding: 78px 0; }
.sr-only, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 16px;
  top: 12px;
  left: 12px;
  z-index: 9999;
  background: var(--cyan);
  color: #001018;
  border-radius: 999px;
}

.liquid-bg { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.bubble {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(120, 230, 255, .22);
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.62), rgba(255,255,255,.06) 16%, rgba(19,200,243,.12) 42%, rgba(19,200,243,.02) 70%);
  box-shadow: inset 0 0 22px rgba(255,255,255,.16), 0 0 48px rgba(19,200,243,.12);
  filter: blur(.1px);
  animation: drift 18s var(--ease) infinite alternate;
  opacity: .75;
}
.bubble-a { width: 88px; height: 88px; top: 14%; left: 6%; animation-duration: 16s; }
.bubble-b { width: 42px; height: 42px; top: 32%; right: 9%; animation-duration: 20s; }
.bubble-c { width: 132px; height: 132px; bottom: 15%; left: 12%; animation-duration: 24s; }
.bubble-d { width: 68px; height: 68px; bottom: 28%; right: 20%; animation-duration: 22s; }
.bubble-e { width: 26px; height: 26px; top: 68%; left: 52%; animation-duration: 18s; }
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(34px, -46px, 0) scale(1.08); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 10px 0;
  background: rgba(5, 10, 15, .64);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.site-header.compact { position: relative; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 74px;
}
.brand img { width: 74px; height: 74px; object-fit: contain; filter: drop-shadow(0 0 18px rgba(19,200,243,.24)); }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  color: var(--soft);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 999px;
  transition: .25s var(--ease);
}
.main-nav a:hover { color: var(--text); background: rgba(255,255,255,.06); }
.nav-cta {
  color: #00131c !important;
  background: linear-gradient(135deg, var(--cyan), #77e9ff);
  box-shadow: 0 12px 35px rgba(19,200,243,.24);
}
.nav-toggle { display: none; }

.hero { padding-top: 92px; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 54px; align-items: center; }
.eyebrow, .section-kicker {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 16px;
}
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 42px; height: 2px; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(46px, 8vw, 92px);
  line-height: .92;
  letter-spacing: -.075em;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: .98;
  letter-spacing: -.055em;
  margin-bottom: 18px;
}
h3 { font-size: 22px; margin-bottom: 10px; letter-spacing: -.02em; }
p { color: var(--muted); line-height: 1.75; font-size: 16px; }
.hero-lead { color: #d9edf7; font-size: clamp(19px, 2.1vw, 25px); line-height: 1.45; max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: .25s var(--ease);
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), #90eeff);
  color: #00131c;
  box-shadow: 0 18px 50px rgba(19,200,243,.25);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 60px rgba(19,200,243,.36); }
.btn-ghost { border-color: var(--line-strong); background: rgba(255,255,255,.04); color: var(--text); }
.btn-ghost:hover { background: rgba(19,200,243,.08); transform: translateY(-3px); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  color: var(--soft);
  font-size: 14px;
  font-weight: 800;
}
.hero-card { position: relative; }
.shine-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.shine-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 30%, rgba(255,255,255,.18) 45%, transparent 58% 100%);
  transform: translateX(-120%);
  animation: shine 6s infinite;
}
@keyframes shine { 0%, 55% { transform: translateX(-120%); } 85%, 100% { transform: translateX(120%); } }
.shine-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.result-pill {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.58);
  backdrop-filter: blur(12px);
  color: white;
  font-size: 13px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.16);
}
.mini-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.mini-cards div {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  border-radius: 18px;
  padding: 14px;
}
.mini-cards strong { display: block; margin-bottom: 4px; }
.mini-cards span { color: var(--muted); font-size: 13px; }

.split-card, .referral-card, .final-card, .area-grid {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.split-card {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 44px;
  padding: clamp(28px, 5vw, 56px);
}
.story-text p:last-child { margin-bottom: 0; }

.section-head { max-width: 770px; text-align: center; margin: 0 auto 42px; }
.section-head.left { text-align: left; margin: 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  transition: .28s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -45% -30%;
  height: 150px;
  background: radial-gradient(circle, rgba(19,200,243,.22), transparent 60%);
  opacity: 0;
  transition: .28s var(--ease);
}
.service-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 22px;
  background: rgba(19,200,243,.1);
  border: 1px solid var(--line-strong);
  font-size: 27px;
}
.service-card.highlight { background: linear-gradient(135deg, rgba(19,200,243,.18), rgba(255,255,255,.04)); }

.gallery-section { background: linear-gradient(180deg, transparent, rgba(19,200,243,.04), transparent); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: transparent;
  color: white;
  box-shadow: 0 20px 55px rgba(0,0,0,.24);
}
.gallery-item.big { grid-column: span 2; grid-row: span 2; min-height: 454px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: .5s var(--ease); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.76), rgba(0,0,0,.05));
}
.gallery-item span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  font-weight: 950;
  letter-spacing: -.02em;
}
.gallery-item:hover img { transform: scale(1.06); }

.booking-section { position: relative; }
.booking-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: start; }
.booking-copy { position: sticky; top: 115px; }
.check-list { display: grid; gap: 12px; padding: 0; margin: 26px 0; list-style: none; }
.check-list li { color: var(--soft); position: relative; padding-left: 32px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 950; }
.slot-box {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}
.booking-form label { color: var(--soft); font-weight: 850; font-size: 14px; }
.booking-form .full { grid-column: 1 / -1; }
input, textarea, select {
  width: 100%;
  margin-top: 8px;
  color: var(--text);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  outline: none;
  border-radius: 16px;
  padding: 14px 14px;
  transition: .2s var(--ease);
}
input:focus, textarea:focus, select:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(19,200,243,.12); }
select option { background: #07121b; color: white; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-weight: 650 !important; }
.consent input { width: 18px; height: 18px; margin-top: 3px; }
.consent a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.form-note { margin: -2px 0 0; font-size: 13px; }

.referral-card { position: relative; overflow: hidden; padding: clamp(28px, 5vw, 56px); }
.referral-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  right: -160px;
  top: -160px;
  background: radial-gradient(circle, rgba(19,200,243,.24), transparent 66%);
}
.referral-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 28px 0; }
.referral-steps div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.045);
}
.referral-steps strong {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cyan);
  color: #00131c;
  margin-bottom: 14px;
}
.referral-steps span { color: var(--soft); font-weight: 850; }
.referral-offer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.referral-offer p {
  margin: 0;
  padding: 18px;
  border-radius: 20px;
  background: rgba(19,200,243,.08);
  border: 1px solid var(--line-strong);
}
.small-print { font-size: 13px; margin: 18px 0 0; }

.area-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 26px; padding: clamp(26px, 5vw, 44px); }
.contact-card {
  min-width: 300px;
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
}
.contact-card span { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.contact-card a:first-of-type { font-size: 27px; font-weight: 950; color: var(--text); }
.contact-card a:last-child { color: var(--cyan); font-weight: 900; }

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 46px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
details {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
}
summary {
  list-style: none;
  padding: 20px 22px;
  font-weight: 950;
  position: relative;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 22px; color: var(--cyan); }
details[open] summary::after { content: "–"; }
details p { padding: 0 22px 20px; margin: 0; }
.final-card { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: clamp(28px, 5vw, 46px); }
.final-card h2 { max-width: 820px; margin: 0; }

.site-footer { padding: 54px 0; border-top: 1px solid rgba(255,255,255,.06); background: rgba(0,0,0,.24); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 26px; }
.site-footer img { width: 86px; margin-bottom: 10px; }
.site-footer h3 { font-size: 16px; color: var(--text); }
.site-footer a { display: block; color: var(--muted); margin: 9px 0; }
.site-footer a:hover { color: var(--cyan); }
.small-footer { padding: 28px 0; }
.footer-line { display: flex; gap: 20px; flex-wrap: wrap; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 26px;
  background: rgba(0,0,0,.86);
  backdrop-filter: blur(12px);
}
.lightbox[hidden] { display: none; }
.lightbox img { max-height: 82vh; border-radius: 24px; border: 1px solid rgba(255,255,255,.16); box-shadow: var(--shadow); }
.lightbox p { color: white; text-align: center; margin: 16px 0 0; }
.lightbox-close {
  position: fixed;
  right: 24px;
  top: 20px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,.12);
  font-size: 32px;
}
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #00131c;
  background: linear-gradient(135deg, var(--cyan), #91efff);
  box-shadow: 0 18px 50px rgba(19,200,243,.35);
  font-weight: 950;
  font-size: 23px;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .72s var(--ease), transform .72s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

.legal-page { background: var(--bg); }
.legal-nav { display: flex !important; }
.legal-main { padding: 64px 0 96px; max-width: 920px; }
.legal-main h1 { font-size: clamp(42px, 7vw, 74px); }
.legal-box {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.045);
  margin: 16px 0;
}
.legal-box h2 { font-size: 24px; letter-spacing: -.03em; margin-bottom: 12px; }
.legal-box a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.warning-box { border-color: rgba(19,200,243,.46); background: rgba(19,200,243,.09); }

@media (max-width: 960px) {
  .section-pad { padding: 82px 0; }
  .hero-grid, .split-card, .booking-grid, .faq-grid, .area-grid { grid-template-columns: 1fr; }
  .booking-copy { position: static; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.big { min-height: 340px; }
  .referral-steps, .referral-offer { grid-template-columns: repeat(2, 1fr); }
  .final-card { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .brand img { width: 62px; height: 62px; }
  .nav-toggle {
    display: grid;
    place-items: center;
    gap: 4px;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.05);
  }
  .nav-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; background: white; }
  .main-nav {
    position: absolute;
    top: 78px;
    left: 14px;
    right: 14px;
    display: none;
    padding: 12px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(6,16,24,.96);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px 16px; }
  .hero { padding-top: 58px; }
  h1 { font-size: clamp(44px, 15vw, 66px); }
  .service-grid, .gallery-grid, .booking-form, .referral-steps, .referral-offer, .footer-grid { grid-template-columns: 1fr; }
  .gallery-item.big { grid-column: auto; grid-row: auto; min-height: 270px; }
  .gallery-item { min-height: 250px; }
  .mini-cards { grid-template-columns: 1fr; }
  .contact-card { min-width: 0; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 54px; height: 54px; }
  .legal-nav { position: static; display: flex !important; flex-direction: row; background: transparent; box-shadow: none; border: 0; padding: 0; }
  .legal-nav a { font-size: 13px; padding: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
}

/* v2.1 refinement: keep v2 visual language, improve hero logo, story, referral and gallery. */
.hero-logo-card { isolation: isolate; }
.logo-stage {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 50% 42%, rgba(19,200,243,.22), transparent 34%),
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.07), transparent 22%),
    linear-gradient(145deg, rgba(0,0,0,.58), rgba(7,18,27,.92));
  box-shadow: var(--shadow), inset 0 0 70px rgba(19,200,243,.08);
  min-height: 510px;
  display: grid;
  place-items: center;
}
.logo-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 32%, rgba(255,255,255,.11) 45%, transparent 60% 100%),
    radial-gradient(circle at 50% 85%, rgba(19,200,243,.13), transparent 30%);
  transform: translateX(-120%);
  animation: shine 6.2s infinite;
  z-index: 2;
  pointer-events: none;
}
.hero-logo-img {
  width: min(96%, 560px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 42px rgba(19,200,243,.18));
  animation: logoIntro 950ms var(--ease) both, logoBreath 5.5s ease-in-out infinite 1.2s;
}
@keyframes logoIntro {
  from { opacity: 0; transform: scale(.88) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes logoBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}
.clean-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(119,233,255,.20);
  background: radial-gradient(circle at 32% 25%, rgba(255,255,255,.75), rgba(255,255,255,.08) 20%, rgba(19,200,243,.10) 56%, transparent 72%);
  box-shadow: inset 0 0 24px rgba(255,255,255,.12), 0 0 34px rgba(19,200,243,.18);
  pointer-events: none;
}
.orbit-one { width: 94px; height: 94px; top: 56px; right: 64px; animation: drift 13s var(--ease) infinite alternate; }
.orbit-two { width: 42px; height: 42px; left: 56px; bottom: 82px; animation: drift 16s var(--ease) infinite alternate-reverse; }
.logo-pill { z-index: 4; }

.story-card { grid-template-columns: 1fr .92fr; align-items: center; }
.story-main p { max-width: 680px; }
.story-main p:last-child { margin-bottom: 0; }
.founder-panel {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 0%, rgba(19,200,243,.15), transparent 42%),
    rgba(255,255,255,.04);
}
.founder-avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
.founder-avatars figure { margin: 0; text-align: center; }
.founder-avatars img {
  width: 104px;
  height: 104px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 45px rgba(0,0,0,.26);
}
.founder-avatars figcaption { margin-top: 9px; color: var(--text); font-weight: 950; }
.language-hub {
  text-align: center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
}
.hub-title {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 11px;
  font-weight: 950;
}
.language-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; }
.language-tags span {
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  color: var(--soft);
  font-size: 13px;
  font-weight: 850;
}

.referral-section { background: linear-gradient(180deg, transparent, rgba(19,200,243,.035), transparent); }
.referral-premium { padding: clamp(28px, 5vw, 54px); }
.referral-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: stretch;
}
.referral-content h2 { max-width: 760px; }
.referral-highlight {
  color: #d9edf7;
  padding: 16px 18px;
  border-left: 3px solid var(--cyan);
  background: rgba(19,200,243,.075);
  border-radius: 0 18px 18px 0;
  margin-bottom: 0;
}
.referral-ticket {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(119,233,255,.35);
  background:
    linear-gradient(135deg, rgba(19,200,243,.22), rgba(255,255,255,.06)),
    rgba(0,0,0,.20);
  box-shadow: 0 24px 70px rgba(19,200,243,.15);
}
.referral-ticket::before,
.referral-ticket::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-2);
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(119,233,255,.18);
}
.referral-ticket::before { left: -23px; }
.referral-ticket::after { right: -23px; }
.referral-ticket span {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 950;
}
.referral-ticket strong {
  display: block;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: .95;
  letter-spacing: -.05em;
  color: white;
}
.referral-ticket small { color: var(--soft); font-weight: 850; }
.referral-ticket em {
  margin-top: 8px;
  color: #00131c;
  font-style: normal;
  font-weight: 950;
  display: inline-flex;
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), #91efff);
}
.referral-steps.compact div { min-height: 108px; }

.gallery-slider {
  position: relative;
  padding: 0 58px;
}
.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 32%);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 4px 18px;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-slide {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.03);
  color: white;
  box-shadow: 0 20px 55px rgba(0,0,0,.24);
  scroll-snap-align: start;
}
.gallery-slide.is-featured { grid-column: auto; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; transition: .5s var(--ease); }
.gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.05));
}
.gallery-slide span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  font-weight: 950;
  letter-spacing: -.02em;
}
.gallery-slide:hover img { transform: scale(1.06); }
.slider-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(6,16,24,.72);
  backdrop-filter: blur(14px);
  font-size: 32px;
  display: grid;
  place-items: center;
  line-height: 1;
}
.slider-prev { left: 0; }
.slider-next { right: 0; }
.slider-arrow:hover { background: rgba(19,200,243,.16); }

@media (max-width: 960px) {
  .hero-card.hero-logo-card { order: -1; }
  .story-card, .referral-content { grid-template-columns: 1fr; }
  .gallery-track { grid-auto-columns: minmax(260px, 48%); }
  .logo-stage { min-height: 430px; }
}
@media (max-width: 760px) {
  .hero { padding-top: 28px; }
  .logo-stage { min-height: 340px; border-radius: 26px; }
  .hero-logo-img { width: min(98%, 380px); }
  .hero-copy { text-align: left; }
  .founder-avatars img { width: 92px; height: 92px; }
  .gallery-slider { padding: 0 0 60px; }
  .gallery-track { grid-auto-columns: 86%; }
  .gallery-slide { min-height: 360px; }
  .slider-arrow { top: auto; bottom: 0; transform: none; }
  .slider-prev { left: calc(50% - 54px); }
  .slider-next { right: calc(50% - 54px); }
  .referral-ticket { min-height: 230px; padding: 24px; }
}

.contact-card p { margin: 0; color: var(--soft); line-height: 1.5; }
.footer-address { display: inline-block; color: var(--soft); font-size: 14px; line-height: 1.5; }
