/* ============================================================
   TipsbyBence — Luxury dark landing page
   ============================================================ */

:root {
  --bg: #000000;
  --bg-elev: #0a0a0c;
  --card: rgba(255, 255, 255, 0.04);
  --card-solid: #101013;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f5f7;
  --text-muted: #a1a1a6;
  --text-dim: #6e6e73;
  --metal: linear-gradient(105deg, #6e6e73 0%, #d8d8dc 38%, #f5f5f7 50%, #a9a9ae 64%, #58585c 100%);
  --green: #00b67a;
  --radius: 20px;
  --radius-lg: 28px;
  --nav-h: 72px;
  --font-display: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(255, 255, 255, 0.2); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.container {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}

section { position: relative; padding: 110px 0; }

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 560px;
}

.metal-text {
  background: var(--metal);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: metal-shine 6s linear infinite;
}

@keyframes metal-shine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  padding: 14px 30px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), opacity 0.35s;
  will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn[hidden] { display: none; }

.btn-primary {
  background: #f5f5f7;
  color: #000;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px rgba(255, 255, 255, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.btn-lg { padding: 17px 38px; font-size: 16px; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.94) translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal-scale.is-visible { opacity: 1; transform: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.55s var(--ease), opacity 0.45s var(--ease);
}
.navbar.nav-hidden {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}

.nav-inner {
  width: min(1280px, 100% - 40px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.brand img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-inline: auto;
  list-style: none;
}
.nav-links a {
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s, background 0.3s;
}
.nav-links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.07); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.lang-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.lang-toggle button {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 12px;
  transition: color 0.3s, background 0.3s;
}
.lang-toggle button.active { color: #000; background: #f5f5f7; }

.nav-cta { padding: 11px 22px; font-size: 14px; }

.nav-burger {
  display: none;
  background: none;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.6px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s, top 0.4s var(--ease);
}
.nav-burger span:nth-child(1) { top: 15px; }
.nav-burger span:nth-child(2) { top: 21px; }
.nav-burger span:nth-child(3) { top: 27px; }
.nav-burger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px 28px;
  display: none;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; transform: none; }
.mobile-menu a {
  padding: 14px 8px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero-content { will-change: transform, opacity; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.52) contrast(1.06) saturate(0.7);
  transform: scale(1.06);
  animation: hero-zoom 2.4s var(--ease) forwards;
}
@keyframes hero-zoom {
  to { transform: scale(1); }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 10%, transparent 40%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.05) 30%, rgba(0, 0, 0, 0.2) 62%, #000 98%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px calc(12vh + 20px);
  width: 100%;
}

.hero-title {
  font-size: clamp(56px, 11.5vw, 158px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
  opacity: 0;
  animation: hero-rise 1.3s var(--ease) 0.25s forwards;
}

.hero-sub {
  margin-top: 22px;
  font-size: clamp(17px, 2.2vw, 23px);
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  opacity: 0;
  animation: hero-rise 1.3s var(--ease) 0.5s forwards;
}

.hero-cta-wrap {
  margin-top: 38px;
  opacity: 0;
  animation: hero-rise 1.3s var(--ease) 0.72s forwards;
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(44px); }
  to { opacity: 1; transform: none; }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  opacity: 0;
  animation: hero-rise 1.2s var(--ease) 1.3s forwards;
}
.hero-scroll-hint::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.7);
  animation: scroll-dot 2.1s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0; }
}

/* ============================================================
   TELEGRAM SHOWCASE
   ============================================================ */
.telegram { padding-top: 130px; }

.typewriter-wrap {
  text-align: center;
  margin-bottom: 70px;
}
.typewriter {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  min-height: 1.3em;
}
.typewriter .caret {
  display: inline-block;
  width: 3px;
  height: 0.95em;
  margin-left: 4px;
  vertical-align: -0.12em;
  background: var(--text);
  border-radius: 2px;
  animation: caret-blink 1s step-end infinite;
}
@keyframes caret-blink { 50% { opacity: 0; } }

.phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(14px, 3vw, 44px);
}
.phone {
  flex: 0 1 320px;
  border-radius: 40px;
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), filter 0.55s var(--ease);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
  will-change: transform, opacity;
}
.phone img { border-radius: 36px; }
.phone:nth-child(2) { transform: translateY(-18px) scale(1.04); z-index: 1; }

.phones:hover .phone { opacity: 0.32; }
.phones .phone:hover {
  opacity: 1;
  transform: translateY(-14px) scale(1.05);
}
.phones .phone:nth-child(2):hover { transform: translateY(-30px) scale(1.08); }

/* ============================================================
   ABOUT / TIMELINE
   ============================================================ */
.about { overflow: hidden; }

.about-header {
  text-align: center;
  margin-bottom: 90px;
  position: relative;
}

.eye-orb {
  width: 96px;
  height: 96px;
  margin: 0 auto 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 0 60px -10px rgba(255, 120, 60, 0.35), inset 0 0 30px rgba(0, 0, 0, 0.5);
  animation: eye-pulse 5s ease-in-out infinite;
}
.eye-orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.15);
  animation: eye-look 9s ease-in-out infinite;
}
@keyframes eye-pulse {
  0%, 100% { box-shadow: 0 0 46px -12px rgba(255, 120, 60, 0.28), inset 0 0 30px rgba(0,0,0,.5); }
  50% { box-shadow: 0 0 76px -8px rgba(255, 120, 60, 0.5), inset 0 0 30px rgba(0,0,0,.5); }
}
@keyframes eye-look {
  0%, 100% { transform: scale(1.15) translate(0, 0); }
  30% { transform: scale(1.2) translate(-3%, 1%); }
  65% { transform: scale(1.17) translate(3%, -1%); }
}

.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 20px 0 10px;
}
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
.timeline-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f5f5f7, rgba(255, 255, 255, 0.35));
  transform-origin: top;
  transform: scaleY(var(--progress, 0));
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 34px 60px 34px 0;
}
.timeline-item:nth-child(even) {
  margin-left: 50%;
  padding: 34px 0 34px 60px;
  text-align: left;
}
.timeline-item:nth-child(odd) { text-align: right; }

.timeline-dot {
  position: absolute;
  top: 50px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #0a0a0c;
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: background 0.5s, border-color 0.5s, box-shadow 0.5s;
}
.timeline-item:nth-child(odd) .timeline-dot { right: -8px; }
.timeline-item:nth-child(even) .timeline-dot { left: -8px; }
.timeline-item.is-visible .timeline-dot {
  background: #f5f5f7;
  border-color: #f5f5f7;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.55);
}

.timeline-step {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: block;
  margin-bottom: 10px;
}
.timeline-item h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.timeline-item p {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 15.5px;
}

.timeline-photo {
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
}
.timeline-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.timeline-item:hover .timeline-photo img { transform: scale(1.05); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  background: var(--bg);
}
/* Top glow rendered as one large ellipse that crosses the section boundary,
   fading radially in every direction so no seam is visible. */
.pricing::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -440px;
  transform: translateX(-50%);
  width: min(1500px, 130vw);
  height: 1000px;
  background: radial-gradient(50% 50% at 50% 50%,
    rgba(120, 130, 160, 0.11) 0%,
    rgba(120, 130, 160, 0.055) 38%,
    rgba(120, 130, 160, 0.02) 62%,
    transparent 78%);
  pointer-events: none;
}
.pricing > .container { position: relative; }

.pricing-header { text-align: center; margin-bottom: 70px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.price-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(80% 60% at 50% -10%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.price-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.09), transparent 65%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}
.price-card:hover::after { opacity: 1; }
.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.9);
}

.price-card.featured {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 90px -30px rgba(200, 210, 255, 0.25);
}

.plan-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  background: #f5f5f7;
  color: #000;
}

.plan-name { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; }
.plan-desc { color: var(--text-muted); font-size: 14.5px; margin-top: 6px; }

.plan-price {
  margin: 26px 0 4px;
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.plan-price .per {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0;
}

.plan-trial {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 24px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 34px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-muted);
}
.plan-features .check {
  flex: 0 0 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.plan-features .check svg { width: 10px; height: 10px; }

.price-card .btn { margin-top: auto; width: 100%; }

.pricing-notes {
  margin-top: 44px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-notes p {
  font-size: 12.5px;
  color: var(--text-dim);
  max-width: 720px;
  margin-inline: auto;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.trust-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
}
.trust-score {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.stars { display: flex; gap: 5px; }
.stars .star {
  width: 30px;
  height: 30px;
  background: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.stars .star svg { width: 19px; height: 19px; fill: #fff; }
.stars .star.partial { position: relative; background: rgba(255,255,255,0.12); overflow: hidden; }
.stars .star.partial::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 80%;
  background: var(--green);
}
.stars .star.partial svg { position: relative; z-index: 1; }
.trust-caption { font-size: 14px; color: var(--text-muted); }

.testimonial-grid {
  columns: 3;
  column-gap: 20px;
}

.t-card {
  break-inside: avoid;
  margin-bottom: 20px;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid var(--border);
  transition: transform 0.5s var(--ease), border-color 0.5s, background 0.5s;
}
.t-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.085) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.t-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.t-stars svg { width: 15px; height: 15px; fill: var(--green); }

.t-text { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.t-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(140deg, #2c2c30, #131316);
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.t-name { font-size: 14.5px; font-weight: 600; }
.t-role { font-size: 12.5px; color: var(--text-dim); }

/* ============================================================
   IMAGE SLIDER (bet slips)
   ============================================================ */
.slips { overflow: hidden; }

.slips-header {
  text-align: center;
  margin-bottom: 70px;
}

.slips-marquee {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  animation: marquee-left 55s linear infinite;
  padding: 10px 0 26px;
}
.slips:hover .slips-marquee,
.slips-marquee:hover { animation-play-state: paused; }

.slip-card {
  flex: 0 0 auto;
  width: clamp(240px, 26vw, 320px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.85);
  transition: transform 0.6s var(--ease), border-color 0.5s;
  animation: slip-float 7s ease-in-out infinite;
}
.slip-card:nth-child(odd) { animation-delay: -3.5s; }
.slip-card:nth-child(3n) { animation-delay: -1.8s; }
.slip-card:hover { transform: translateY(-10px) scale(1.03); border-color: var(--border-strong); }
.slip-card img { width: 100%; height: auto; }

@keyframes slip-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}
@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-header { text-align: center; margin-bottom: 60px; }
.faq-header .btn { margin-top: 26px; }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.4s, background 0.4s;
}
.faq-item.open { border-color: var(--border-strong); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 16.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: left;
  font-family: var(--font-body);
}
.faq-q .faq-icon {
  flex: 0 0 22px;
  height: 22px;
  position: relative;
  transition: transform 0.45s var(--ease);
}
.faq-q .faq-icon::before,
.faq-q .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.8px;
  background: var(--text-muted);
  border-radius: 2px;
  translate: -50% -50%;
}
.faq-q .faq-icon::after { rotate: 90deg; transition: rotate 0.45s var(--ease), opacity 0.3s; }
.faq-item.open .faq-icon::after { rotate: 0deg; opacity: 0; }
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease);
}
.faq-a-inner {
  padding: 0 26px 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.faq-bottom { text-align: center; margin-top: 60px; }

/* ============================================================
   LOGO CLOUD
   ============================================================ */
.logo-cloud {
  padding: 70px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}
.logo-cloud::before,
.logo-cloud::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.logo-cloud::before { left: 0; background: linear-gradient(90deg, #000, transparent); }
.logo-cloud::after { right: 0; background: linear-gradient(-90deg, #000, transparent); }

.logo-track {
  display: flex;
  align-items: center;
  gap: clamp(56px, 8vw, 110px);
  width: max-content;
  animation: marquee-left 38s linear infinite;
}
.logo-track img {
  height: 140px;
  width: auto;
  opacity: 0.55;
  transition: opacity 0.4s;
}
.logo-track img:hover { opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  padding: 90px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, #050506 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 70px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14.5px;
  max-width: 280px;
  margin-top: 14px;
}

.footer h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  color: var(--text-muted);
  font-size: 14.5px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--text); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.social-pill:hover { color: var(--text); border-color: var(--border-strong); transform: translateY(-2px); }
.social-pill svg { width: 15px; height: 15px; fill: currentColor; }
.social-pill.disabled { opacity: 0.45; pointer-events: none; }

.footer-legalline {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 26px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--text-dim);
}

.footer-wordmark {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(64px, 13.5vw, 200px);
  letter-spacing: -0.05em;
  line-height: 0.8;
  padding-bottom: 0;
  margin-bottom: -0.14em;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.015) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

/* ============================================================
   FLOATING JOIN CTA
   ============================================================ */
.float-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1500;
  padding: 14px 26px;
  font-size: 14.5px;
  box-shadow: 0 18px 50px -12px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateY(18px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.float-cta.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.consent-banner {
  position: fixed;
  z-index: 2000;
  left: 20px;
  right: 20px;
  bottom: 20px;
  margin-inline: auto;
  max-width: 620px;
  border-radius: 22px;
  background: rgba(14, 14, 16, 0.88);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  border: 1px solid var(--border-strong);
  box-shadow: 0 30px 90px -20px rgba(0, 0, 0, 0.9);
  padding: 26px 28px;
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.6s var(--ease), opacity 0.5s var(--ease);
}
.consent-banner.show { transform: none; opacity: 1; pointer-events: auto; }

.consent-banner h3 { font-size: 17px; margin-bottom: 8px; }
.consent-banner p { font-size: 13.5px; color: var(--text-muted); }
.consent-banner p a { text-decoration: underline; text-underline-offset: 3px; }

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.consent-actions .btn { padding: 11px 20px; font-size: 13.5px; }
.btn-link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 11px 8px;
}
.btn-link:hover { color: var(--text); }

.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.consent-modal.show { opacity: 1; pointer-events: auto; }

.consent-modal-card {
  width: min(560px, 100%);
  max-height: 86vh;
  overflow-y: auto;
  border-radius: 24px;
  background: #0e0e10;
  border: 1px solid var(--border-strong);
  padding: 34px;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.5s var(--ease);
}
.consent-modal.show .consent-modal-card { transform: none; }

.consent-modal-card h3 { font-size: 22px; margin-bottom: 6px; }
.consent-modal-card > p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }

.consent-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.consent-row h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.consent-row p { font-size: 13px; color: var(--text-muted); }

.switch {
  position: relative;
  flex: 0 0 48px;
  height: 28px;
  margin-top: 2px;
}
.switch input { opacity: 0; width: 100%; height: 100%; position: absolute; margin: 0; cursor: pointer; z-index: 1; }
.switch .track {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.35s;
}
.switch .track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.35s var(--ease);
}
.switch input:checked + .track { background: var(--green); }
.switch input:checked + .track::after { transform: translateX(20px); }
.switch input:disabled + .track { opacity: 0.5; }

.consent-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 26px;
  flex-wrap: wrap;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-main {
  padding: calc(var(--nav-h) + 70px) 0 110px;
}
.legal-main .container { max-width: 800px; }
.legal-main h1 { font-size: clamp(34px, 5vw, 52px); margin-bottom: 10px; }
.legal-updated { color: var(--text-dim); font-size: 14px; margin-bottom: 46px; }
.legal-main h2 {
  font-size: 22px;
  margin: 44px 0 14px;
  letter-spacing: -0.02em;
}
.legal-main h3 { font-size: 17px; margin: 28px 0 10px; }
.legal-main p, .legal-main li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}
.legal-main p { margin-bottom: 14px; }
.legal-main ul { padding-left: 22px; margin-bottom: 14px; }
.legal-main li { margin-bottom: 8px; }
.legal-main a { text-decoration: underline; text-underline-offset: 3px; }
.legal-main strong { color: var(--text); font-weight: 600; }

.legal-details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 26px 30px;
  margin: 24px 0 10px;
}
.legal-details p { margin-bottom: 6px; font-size: 14.5px; }

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 34px;
  transition: color 0.3s;
}
.back-home:hover { color: var(--text); }

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-main {
  min-height: 100svh;
  padding: calc(var(--nav-h) + 60px) 0 90px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(60% 38% at 50% 0%, rgba(0, 182, 122, 0.07) 0%, transparent 75%),
    var(--bg);
}
.success-main .container {
  max-width: 640px;
  text-align: center;
}

.success-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  border: 1px solid rgba(0, 182, 122, 0.35);
  background: rgba(0, 182, 122, 0.08);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.success-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: check-pop 0.7s var(--ease) 0.3s backwards;
}
.success-check svg { width: 10px; height: 10px; }
@keyframes check-pop {
  from { transform: scale(0); }
  60% { transform: scale(1.25); }
  to { transform: scale(1); }
}

.success-title { font-size: clamp(36px, 6vw, 58px); margin-bottom: 18px; }
.success-sub {
  color: var(--text-muted);
  font-size: clamp(16px, 1.8vw, 18.5px);
  max-width: 460px;
  margin: 0 auto 52px;
}

/* ---------- Stepper ---------- */
.stepper {
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border);
  padding: 34px 30px 30px;
  position: relative;
  overflow: hidden;
}

.stepper-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 26px;
}
.stepper-dot {
  width: 26px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.45s var(--ease), width 0.45s var(--ease);
}
.stepper-dot.active { background: #f5f5f7; width: 40px; }
.stepper-dot.done { background: var(--green); }

.stepper-count {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
  display: block;
}

.stepper-panels { position: relative; }
.step-panel {
  display: none;
  animation: step-in 0.55s var(--ease);
}
.step-panel.active { display: block; }
@keyframes step-in {
  from { opacity: 0; transform: translateX(34px); }
  to { opacity: 1; transform: none; }
}
.step-panel.from-left { animation-name: step-in-left; }
@keyframes step-in-left {
  from { opacity: 0; transform: translateX(-34px); }
  to { opacity: 1; transform: none; }
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 4px auto 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon svg { width: 28px; height: 28px; stroke: #f5f5f7; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.step-panel h2 {
  font-size: clamp(21px, 3vw, 27px);
  letter-spacing: -0.02em;
  margin-bottom: 26px;
  min-height: 2.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stepper-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
}
.stepper-nav .btn { min-width: 150px; }
.btn-back {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  min-width: auto !important;
  padding: 14px 20px;
}
.btn-back:hover { color: var(--text); border-color: var(--border-strong); }
.btn-back[hidden] { display: none; }

.success-email-note {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--text-dim);
}

.success-cta { width: 100%; font-size: 16.5px; padding: 18px 30px; }

/* ---------- Success FAQ ---------- */
.success-faq {
  margin-top: 54px;
  text-align: left;
}
.success-faq h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 18px;
}
.success-faq-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 10px;
}
.success-faq-item .q { font-size: 14.5px; font-weight: 500; flex-shrink: 0; }
.success-faq-item .a { font-size: 14px; color: var(--text-muted); text-align: right; }

.success-contact {
  margin-top: 34px;
  font-size: 14.5px;
  color: var(--text-muted);
}
.success-contact a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 480px) {
  .stepper { padding: 28px 20px 24px; }
  .success-faq-item { flex-direction: column; gap: 4px; }
  .success-faq-item .a { text-align: left; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .testimonial-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .mobile-menu { display: flex; visibility: hidden; }
  .mobile-menu.open { visibility: visible; }

  section { padding: 80px 0; }

  .phones {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 10px 24px 30px;
    margin: 0 -24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .phones::-webkit-scrollbar { display: none; }
  .phone { flex: 0 0 240px; scroll-snap-align: center; }
  .phone:nth-child(2) { transform: none; }
  .phones:hover .phone { opacity: 1; }

  .timeline-line { left: 20px; }
  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding: 26px 0 26px 56px;
    text-align: left;
  }
  .timeline-item:nth-child(odd) { text-align: left; }
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot { left: 13px; right: auto; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price-card.featured { order: -1; }

  .testimonial-grid { columns: 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-legalline { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 40px); }
  .hero-title { font-size: clamp(48px, 15vw, 72px); }
  .consent-banner { left: 12px; right: 12px; bottom: 12px; padding: 22px; }
  .consent-actions .btn { flex: 1 1 auto; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-scale { opacity: 1; transform: none; }
  .hero-title, .hero-sub, .hero-cta-wrap, .hero-scroll-hint { opacity: 1; }
}

/* ---------- Focus styles (accessibility) ---------- */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
  border-radius: 6px;
}
