/* =========================================================
   FRENDZO — Brand stylesheet
   Design language: playful + bubbly, soft gradients, rounded
   geometry that mirrors the dual-balloon heart in the logo.
   ========================================================= */

/* --- Fonts -------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:wght@400;500;600;700;800&display=swap');

/* --- Design tokens ----------------------------------------- */
:root {
  /* Brand colors (sampled from the logo) */
  --pink: #ff4d8d;
  --pink-deep: #c850c0;
  --blue: #4facfe;
  --blue-deep: #667eea;
  --orange: #ff8a3d;
  --red: #ff4757;

  /* Surfaces */
  --bg: #fdf7fb;
  --bg-alt: #f0f5ff;
  --surface: #ffffff;
  --ink: #1c1830;
  --ink-soft: #5a5670;
  --ink-mute: #8a86a0;
  --line: #ece6f3;

  /* Brand gradient — used everywhere */
  --grad-brand: linear-gradient(135deg, #ff4d8d 0%, #c850c0 50%, #4facfe 100%);
  --grad-warm: linear-gradient(135deg, #ff4d8d, #ff8a3d);
  --grad-cool: linear-gradient(135deg, #667eea, #4facfe);
  --grad-soft: linear-gradient(135deg, #ffe4ef 0%, #e7eeff 100%);

  /* Shadows — soft + bubbly */
  --shadow-sm: 0 4px 12px rgba(255, 77, 141, 0.10);
  --shadow-md: 0 12px 32px rgba(102, 126, 234, 0.16);
  --shadow-lg: 0 24px 60px rgba(200, 80, 192, 0.22);

  /* Radii */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-pill: 999px;

  /* Layout */
  --max-w: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
}

/* --- Reset -------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 500;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }

/* --- Decorative blobs in the page background ---------------- */
body::before, body::after {
  content: "";
  position: fixed;
  width: 520px; height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
}
body::before { background: var(--pink); top: -180px; left: -160px; }
body::after  { background: var(--blue); bottom: -200px; right: -180px; }

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(236, 230, 243, 0.6);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
}
.brand__logo {
  width: 42px; height: 42px;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.brand__name {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.5px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav__links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  position: relative;
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--pink); }
.nav__links a.active { color: var(--pink); }
.nav__links a.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -8px;
  height: 3px; border-radius: 3px; background: var(--grad-warm);
}
.nav__cta {
  padding: 10px 22px;
  border-radius: var(--r-pill);
  background: var(--grad-brand);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grad-soft);
  align-items: center; justify-content: center;
}
.nav__toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px;
  position: relative;
}
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px;
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top:  6px; }

/* =========================================================
   BUTTONS / chips
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn--ghost {
  background: rgba(255,255,255,0.85);
  color: var(--ink);
  border: 2px solid var(--line);
}
.btn--ghost:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }
.btn--store {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px;
  background: #1c1830;
  color: #fff;
  border-radius: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn--store:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--store small {
  display: block;
  font-size: 11px;
  opacity: 0.75;
  font-weight: 500;
}
.btn--store strong {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 17px;
  font-weight: 600;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1.5px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
}
.chip__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(255,77,141,0.18);
}

/* =========================================================
   SECTION SHELL
   ========================================================= */
.section {
  padding: clamp(60px, 9vw, 110px) var(--gutter);
}
.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  background: rgba(255,77,141,0.10);
  color: var(--pink);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.h1, .h2, .h3 { font-family: 'Fredoka', sans-serif; font-weight: 600; line-height: 1.15; color: var(--ink); }
.h1 { font-size: clamp(36px, 6.4vw, 68px); letter-spacing: -1px; }
.h2 { font-size: clamp(30px, 4.4vw, 46px); letter-spacing: -0.5px; }
.h3 { font-size: clamp(20px, 2.4vw, 24px); }
.lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ink-soft);
  max-width: 600px;
}
.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(50px, 8vw, 100px) var(--gutter) clamp(70px, 10vw, 120px);
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}
.hero__copy h1 { margin: 16px 0 22px; }
.hero__copy .lead { margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero__stat strong {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 32px;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__stat span {
  display: block;
  color: var(--ink-mute);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* hero visual: bubbly stack */
.hero__visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 12% 12% 12% 12%;
  border-radius: 50%;
  background: var(--grad-soft);
  filter: blur(40px);
  z-index: -1;
}
.hero__logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: floatLogo 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 50px rgba(255, 77, 141, 0.35));
}
.hero__bubble {
  position: absolute;
  background: #fff;
  border-radius: 24px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  animation: floatBubble 5s ease-in-out infinite;
}
.hero__bubble--1 { top: 8%;  left: -4%; animation-delay: 0s; }
.hero__bubble--2 { top: 38%; right: -8%; animation-delay: 1s; }
.hero__bubble--3 { bottom: 10%; left: 4%; animation-delay: 2s; }
.hero__bubble .dot { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.hero__bubble--1 .dot { background: linear-gradient(135deg, #ff4d8d, #ff8a3d); }
.hero__bubble--2 .dot { background: linear-gradient(135deg, #4facfe, #667eea); }
.hero__bubble--3 .dot { background: linear-gradient(135deg, #c850c0, #4facfe); }

@keyframes floatLogo {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(2deg); }
}
@keyframes floatBubble {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* =========================================================
   FEATURE GRID
   ========================================================= */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature {
  position: relative;
  background: #fff;
  border-radius: var(--r-md);
  padding: 30px 28px;
  border: 1.5px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature:hover::before { transform: scaleX(1); }
.feature__icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  background: var(--grad-soft);
}
.feature--pink .feature__icon { background: linear-gradient(135deg, #ffd6e3, #ffe5d3); }
.feature--blue .feature__icon { background: linear-gradient(135deg, #d6e7ff, #e0f1ff); }
.feature--violet .feature__icon { background: linear-gradient(135deg, #efd6ff, #d6e0ff); }
.feature--peach .feature__icon { background: linear-gradient(135deg, #ffe1d6, #ffd6e3); }
.feature h3 { margin-bottom: 10px; font-size: 20px; }
.feature p { color: var(--ink-soft); font-size: 15px; }

/* =========================================================
   LANGUAGE STRIP
   ========================================================= */
.langs {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px clamp(24px, 4vw, 48px);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.langs__title {
  text-align: center;
  margin-bottom: 24px;
}
.langs__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.lang-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 12px;
  border-radius: var(--r-pill);
  background: var(--grad-soft);
  font-weight: 700;
  font-size: 15px;
}
.lang-chip__flag {
  width: 30px; height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.lang-chip__native { color: var(--ink-mute); font-weight: 600; font-size: 13px; margin-left: 4px; }

/* =========================================================
   STEPS — How it works
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  position: relative;
}
.step {
  position: relative;
  text-align: center;
  padding: 32px 22px;
  background: #fff;
  border-radius: var(--r-md);
  border: 1.5px solid var(--line);
  transition: transform .25s ease;
}
.step:hover { transform: translateY(-4px); }
.step__num {
  display: inline-flex;
  width: 56px; height: 56px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #fff;
  background: var(--grad-brand);
  box-shadow: var(--shadow-md);
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 8px; font-size: 19px; }
.step p { color: var(--ink-soft); font-size: 14.5px; }

/* =========================================================
   TWO-COL SAFETY / VALUES
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
.split__visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--grad-soft);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  position: relative;
}
.split__visual img { max-height: 100%; width: auto; filter: drop-shadow(0 20px 40px rgba(102,126,234,0.25)); }
.split__list { display: grid; gap: 20px; margin-top: 24px; }
.split__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.split__check {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-warm);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}
.split__item h4 { font-family: 'Fredoka', sans-serif; font-size: 17px; margin-bottom: 4px; color: var(--ink); }
.split__item p { color: var(--ink-soft); font-size: 14.5px; }

/* =========================================================
   COIN PRICING
   ========================================================= */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.coin {
  background: #fff;
  border-radius: var(--r-md);
  padding: 26px 22px;
  text-align: center;
  border: 2px solid var(--line);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative;
}
.coin:hover { transform: translateY(-6px); border-color: var(--pink); box-shadow: var(--shadow-md); }
.coin--popular { border-color: transparent; background: linear-gradient(180deg, #fff, #fff7fb); box-shadow: var(--shadow-md); }
.coin--popular::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--grad-warm);
  color: #fff;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}
.coin__amt {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: var(--ink);
}
.coin__amt span { font-size: 14px; color: var(--ink-mute); display: block; font-weight: 600; margin-top: 4px; }
.coin__price {
  margin-top: 14px;
  font-family: 'Fredoka', sans-serif;
  font-size: 22px;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item {
  background: #fff;
  border-radius: var(--r-md);
  border: 1.5px solid var(--line);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq__item[open] { border-color: var(--pink); box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 28px;
  color: var(--pink);
  transition: transform .25s ease;
  font-weight: 300;
  line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 26px 22px; color: var(--ink-soft); font-size: 15px; }

/* =========================================================
   CTA banner
   ========================================================= */
.cta-banner {
  background: var(--grad-brand);
  border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 64px);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.cta-banner::before { width: 200px; height: 200px; top: -80px; left: -50px; }
.cta-banner::after  { width: 280px; height: 280px; bottom: -120px; right: -80px; }
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.92); margin: 0 auto 28px; max-width: 540px; font-size: 17px; }
.cta-banner .btn--primary {
  background: #fff;
  color: var(--pink);
}
.cta-banner .btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.cta-banner .btn--ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.12); }
.cta-banner__buttons { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #1c1830;
  color: rgba(255,255,255,0.78);
  padding: 70px var(--gutter) 30px;
  margin-top: 60px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__brand .brand__name { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer__brand p { margin-top: 16px; font-size: 14px; color: rgba(255,255,255,0.65); max-width: 320px; }
.footer h4 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-bottom: 18px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color .2s ease;
}
.footer ul a:hover { color: var(--pink); }
.footer__bottom {
  max-width: var(--max-w);
  margin: 50px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer__contact a { color: var(--pink); font-weight: 700; }

/* =========================================================
   GENERIC PAGE / DOC PAGES (terms, privacy, etc)
   ========================================================= */
.page-hero {
  padding: 80px var(--gutter) 50px;
  text-align: center;
  background: var(--grad-soft);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero p  { max-width: 620px; margin: 0 auto; color: var(--ink-soft); font-size: 17px; }

.doc {
  max-width: 860px;
  margin: -30px auto 0;
  padding: 0 var(--gutter) 80px;
  position: relative;
  z-index: 1;
}
.doc__card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 56px);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.doc__card h2 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--pink);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--bg);
}
.doc__card h2:first-child { margin-top: 0; }
.doc__card h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin: 22px 0 10px;
  color: var(--ink);
}
.doc__card p, .doc__card li {
  font-size: 15.5px;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.doc__card ul { padding-left: 22px; margin: 8px 0 14px; }
.doc__card a { color: var(--pink); font-weight: 700; }
.doc__card .callout {
  background: linear-gradient(135deg, #fff0f7, #f0f5ff);
  border-left: 4px solid var(--pink);
  border-radius: 14px;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14.5px;
}
.doc__card .warn {
  background: #fff3f3;
  border: 1px solid #ffd1d6;
  border-radius: 14px;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14.5px;
  color: #c62828;
  font-weight: 600;
}

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px;
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { margin-bottom: 12px; }
.contact-card .channels { margin-top: 24px; display: grid; gap: 16px; }
.channel {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--grad-soft);
  border-radius: 16px;
  align-items: center;
}
.channel__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.channel strong { display: block; font-family: 'Fredoka', sans-serif; font-weight: 500; font-size: 16px; color: var(--ink); }
.channel a, .channel span { font-size: 14px; color: var(--ink-soft); }
.channel a:hover { color: var(--pink); }

.form { display: grid; gap: 18px; }
.form label {
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 2px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(255,77,141,0.12);
}
.form textarea { min-height: 130px; resize: vertical; }
.form__row { display: grid; gap: 6px; }
.form__hint { font-size: 13px; color: var(--ink-mute); }
.form__success {
  display: none;
  padding: 16px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #d6ffe5, #d6f0ff);
  border-left: 4px solid #4caf50;
  color: #1b5e20;
  font-weight: 700;
  font-size: 14.5px;
}
.form__success.show { display: block; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .nav__links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; padding: 16px var(--gutter); background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 12px 0; width: 100%; }
  .nav__links a.active::after { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy .lead { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { max-width: 380px; }

  .split { grid-template-columns: 1fr; }
  .split__visual { order: -1; aspect-ratio: 1.4; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer__inner { grid-template-columns: 1fr; }
  .hero__bubble { font-size: 12px; padding: 10px 12px; }
  .hero__bubble .dot { width: 28px; height: 28px; font-size: 14px; }
  .btn { padding: 12px 22px; font-size: 14px; }
}

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
