/* ===================================================================
   Levertide — premium light SaaS theme
   Light backgrounds, brand gradient accents (blue→purple→teal),
   subtle animation: shimmering gradient text/buttons + floating glows.
   Honors prefers-reduced-motion.
   =================================================================== */

:root {
  --bg:        #FFFFFF;
  --bg-alt:    #F5F7FB;
  --surface:   #FFFFFF;
  --surface-2: #F0F3FA;
  --line:      rgba(16, 24, 48, 0.08);
  --line-2:    rgba(16, 24, 48, 0.16);
  --text:      #0E2247;
  --muted:     #5A6788;
  --brand:     #1A8AFF;
  --brand-2:   #2A5EE6;
  --accent:    #0FB99B;
  --grad:      linear-gradient(120deg, #1A8AFF 0%, #2A5EE6 55%, #0E2247 100%);
  --radius:    18px;
  --shadow:    0 22px 50px -22px rgba(40, 56, 120, 0.28);
  --maxw:      1180px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: "Space Grotesk", "Inter", sans-serif; line-height: 1.1; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 780px; }

.grad {
  background: var(--grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn--sm { padding: 10px 20px; font-size: 0.9rem; }
.btn--primary {
  color: #FFFFFF;
  background: var(--grad);
  background-size: 200% 200%;
  box-shadow: 0 14px 30px -12px rgba(84, 104, 255, 0.5);
  animation: gradientShift 6s ease infinite;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(139, 92, 246, 0.55); }
.btn--ghost {
  color: var(--text);
  border-color: var(--line-2);
  background: rgba(84, 104, 255, 0.04);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--brand); background: rgba(84, 104, 255, 0.1); }

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -16px rgba(40, 56, 120, 0.4);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: "Space Grotesk"; font-weight: 700; font-size: 1.2rem; }
/* Round icon-only crop from the top of the logo PNG.
   The source image has the icon mark centered in the top portion
   followed by wordmark + tagline. object-fit + object-position let
   us show only the icon area inside a circular frame. */
.brand__logo {
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;   /* shifts visible area up to crop just the icon */
  background: #FFFFFF;            /* keeps the white-bg PNG seamless on any backdrop */
  box-shadow: 0 4px 14px -4px rgba(40, 56, 120, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  image-rendering: -webkit-optimize-contrast;
}
.brand:hover .brand__logo {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 8px 22px -6px rgba(26, 138, 255, 0.4);
}
.brand--footer .brand__logo { width: 56px; height: 56px; }
.brand__text {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.nav__links { display: flex; gap: 30px; }
.nav__links a { color: var(--muted); font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.nav__links a:hover { color: var(--text); }
.nav__social { display: flex; align-items: center; gap: 8px; margin-left: 4px; }
.nav__social a {
  display: grid; place-items: center;
  width: 32px; height: 32px; border-radius: 8px;
  color: var(--muted);
  border: 1px solid var(--line);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.nav__social a:hover {
  color: #fff; border-color: transparent;
  background: var(--grad); background-size: 200% 200%;
  transform: translateY(-2px);
  animation: gradientShift 6s ease infinite;
}
.nav__cta { display: inline-flex; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 90px 0 80px; text-align: center; overflow: hidden; }
.hero__glow {
  position: absolute; top: -280px; left: 50%;
  width: 920px; height: 720px;
  background: radial-gradient(ellipse at center, rgba(84, 104, 255, 0.16), rgba(139, 92, 246, 0.1) 40%, transparent 70%);
  filter: blur(34px); pointer-events: none; z-index: 0;
  animation: floatGlow 14s ease-in-out infinite;
}
@keyframes floatGlow {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50%      { transform: translateX(-50%) translateY(28px) scale(1.06); }
}
.hero__inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
.pill {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 8px 18px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(84, 104, 255, 0.05);
  margin-bottom: 28px;
}
.hero__title { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; margin-bottom: 22px; }
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--muted); max-width: 640px; margin: 0 auto 36px; }
.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__trust { margin-top: 56px; color: var(--muted); font-size: 0.82rem; }
.hero__trust span { display: block; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; }
.hero__micro {
  margin-top: 14px; color: var(--muted); font-size: 0.88rem;
  letter-spacing: 0.01em; font-style: italic;
}
.hero__trustline {
  margin-top: 28px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem; font-weight: 500;
  color: var(--text); opacity: 0.7;
}

/* ---------- Problem section ---------- */
.problem {
  text-align: center;
}
.problem p {
  font-size: 1.12rem; color: var(--muted);
  max-width: 640px; margin: 0 auto 22px;
  line-height: 1.65;
}
.problem__punch {
  margin-top: 32px !important;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--text) !important;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem !important;
  font-weight: 600;
  line-height: 1.4 !important;
}
.problem__punch strong { color: var(--brand); }

/* ---------- Coming Soon waitlist ---------- */
.soon {
  margin-top: 40px;
  padding: 32px 36px;
  border: 1px dashed rgba(26, 138, 255, 0.4);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(26, 138, 255, 0.06), transparent 60%),
    var(--surface);
  text-align: center;
}
.soon__head {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; margin-bottom: 12px;
}
.soon__tag {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--brand);
  padding: 6px 14px; border-radius: 999px;
  background: rgba(26, 138, 255, 0.1);
  border: 1px solid rgba(26, 138, 255, 0.25);
}
.soon__head h3 { font-size: 1.35rem; }
.soon p { color: var(--muted); font-size: 0.98rem; margin-bottom: 20px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ---------- Hero offer block ---------- */
.offer {
  display: inline-flex; flex-direction: column; align-items: center;
  gap: 8px;
  margin: 8px auto 32px;
  padding: 18px 28px;
  border-radius: 16px;
  border: 1px solid rgba(84, 104, 255, 0.22);
  background:
    linear-gradient(120deg, rgba(84, 104, 255, 0.08), rgba(139, 92, 246, 0.06) 50%, rgba(15, 185, 155, 0.06)),
    var(--surface);
  background-size: 200% 200%;
  box-shadow: 0 18px 40px -20px rgba(84, 104, 255, 0.28);
  animation: gradientShift 10s ease infinite;
  max-width: 640px;
}
.offer__tag {
  display: inline-block;
  font-size: 0.74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: #fff;
  padding: 5px 14px; border-radius: 999px;
  background: var(--grad); background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
}
.offer__line { font-size: 1.05rem; color: var(--text); line-height: 1.45; }
.offer__line strong { font-weight: 700; }
.offer__sub {
  display: block; margin-top: 4px;
  font-size: 0.92rem; color: var(--muted); font-weight: 500;
}

/* ---------- VSL placeholder ---------- */
.vsl { margin-top: 70px; }
.vsl__frame {
  position: relative;
  max-width: 920px; margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at center, rgba(84, 104, 255, 0.08), transparent 65%),
    linear-gradient(180deg, var(--surface), var(--bg-alt));
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid; place-items: center;
}
.vsl__thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease, filter 0.3s ease;
}
.vsl__frame:hover .vsl__thumb { transform: scale(1.02); filter: brightness(0.92); }
.vsl__iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
}
.vsl__play {
  position: absolute; z-index: 2;
  width: 84px; height: 84px; border-radius: 50%;
  border: none; cursor: pointer;
  color: #fff;
  background: var(--grad); background-size: 200% 200%;
  box-shadow: 0 20px 40px -10px rgba(26, 138, 255, 0.5);
  animation: gradientShift 5s ease infinite, pulse 2.6s ease-in-out infinite;
  display: grid; place-items: center;
  padding-left: 4px;  /* visual nudge for play triangle */
  transition: transform 0.2s ease;
}
.vsl__play:hover { transform: scale(1.06); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 20px 40px -10px rgba(26, 138, 255, 0.5), 0 0 0 0 rgba(26, 138, 255, 0.45); }
  50%      { box-shadow: 0 20px 40px -10px rgba(26, 138, 255, 0.5), 0 0 0 22px rgba(26, 138, 255, 0); }
}
.logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px; }
.logos span {
  font-family: "Space Grotesk"; font-weight: 600; font-size: 1rem;
  color: var(--text); opacity: 0.5; transition: opacity 0.2s;
}
.logos span:hover { opacity: 1; }

/* ---------- Dashboard mockup ---------- */
.mockup {
  margin-top: 70px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mockup__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px; border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}
.mockup__bar .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); }
.mockup__url { margin-left: 16px; font-size: 0.8rem; color: var(--muted); font-family: "Space Grotesk"; }
.mockup__body { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 28px; }
.mk-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  text-align: left;
}
.mk-label { color: var(--muted); font-size: 0.82rem; margin-bottom: 8px; }
.mk-stat { font-family: "Space Grotesk"; font-size: 2.4rem; font-weight: 700; }
.mk-stat span { font-size: 1.2rem; color: var(--muted); }
.mk-delta { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.mk-delta.up { color: var(--accent); }
.mk-flow {
  grid-column: 1 / -1;
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  padding: 18px 22px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.mk-flow .node {
  font-size: 0.85rem; font-weight: 600;
  padding: 8px 16px; border-radius: 8px;
  background: rgba(108, 140, 255, 0.12);
  border: 1px solid rgba(108, 140, 255, 0.4);
  color: var(--text);
}
.mk-flow .node--ok { background: rgba(52, 224, 196, 0.14); border-color: rgba(52, 224, 196, 0.5); }
.mk-flow .wire { flex: 1; min-width: 24px; height: 2px; background: linear-gradient(90deg, var(--brand), transparent); }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section__head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 700; margin-bottom: 16px; }
.section__lead { color: var(--muted); font-size: 1.08rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--brand); margin-bottom: 16px;
}

/* ---------- Tech logo band ---------- */
.logos-band {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}
.logos-band__label {
  text-align: center; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.74rem; margin-bottom: 22px;
}
.logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 40px; }
.logos span {
  font-family: "Space Grotesk"; font-weight: 600; font-size: 1.1rem;
  color: var(--text); opacity: 0.45; transition: opacity 0.2s, transform 0.2s;
}
.logos span:hover { opacity: 1; transform: translateY(-2px); }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 22px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Work wall (sample systems) ---------- */
.work {
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.work:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: var(--shadow); }
.work__top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.work__top h3 { font-size: 1.2rem; }
.work__badge {
  flex-shrink: 0; font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent); background: rgba(52, 224, 196, 0.12);
  border: 1px solid rgba(52, 224, 196, 0.4);
  padding: 5px 11px; border-radius: 999px;
}
.work p { color: var(--muted); font-size: 0.95rem; margin-bottom: 18px; }
.work__tools { display: flex; flex-wrap: wrap; gap: 8px; }
.work__tools span {
  font-size: 0.78rem; font-family: "Space Grotesk"; font-weight: 500;
  color: var(--muted); background: var(--surface-2);
  border: 1px solid var(--line); padding: 5px 12px; border-radius: 8px;
}

/* ---------- Mid-page CTA band ---------- */
.band {
  background: linear-gradient(120deg, rgba(108, 140, 255, 0.14), rgba(156, 108, 255, 0.12) 50%, rgba(52, 224, 196, 0.1));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.band__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.band__inner h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; margin-bottom: 8px; }
.band__inner p { color: var(--muted); font-size: 1.02rem; }

/* ---------- Service cards ---------- */
.card {
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(108, 140, 255, 0.12), transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card__icon {
  width: 52px; height: 52px; display: grid; place-items: center;
  font-size: 1.5rem; border-radius: 14px;
  background: rgba(108, 140, 255, 0.12);
  border: 1px solid rgba(108, 140, 255, 0.3);
  margin-bottom: 20px;
}
.card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.96rem; margin-bottom: 18px; }
.card__out {
  display: block; font-size: 0.86rem; font-weight: 600;
  color: var(--accent); border-top: 1px solid var(--line); padding-top: 14px;
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  position: relative;
}
.step__num {
  font-family: "Space Grotesk"; font-size: 2.6rem; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; display: block; margin-bottom: 14px;
}
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Demos ---------- */
.demo {
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.3s, border-color 0.3s;
}
.demo:hover { transform: translateY(-5px); border-color: var(--line-2); }
.demo__tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--brand); background: rgba(108, 140, 255, 0.1);
  border: 1px solid rgba(108, 140, 255, 0.3);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 16px;
}
.demo h3 { font-size: 1.15rem; margin-bottom: 16px; }
.demo__flow {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 0.82rem; color: var(--text); margin-bottom: 16px;
}
.demo__flow span {
  background: var(--surface-2); border: 1px solid var(--line);
  padding: 7px 12px; border-radius: 8px;
}
.demo__flow i { color: var(--brand); font-style: normal; font-weight: 700; }
.demo p { color: var(--muted); font-size: 0.92rem; }
.demo--cta {
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: center; gap: 14px;
  background: linear-gradient(135deg, rgba(108, 140, 255, 0.14), rgba(156, 108, 255, 0.1));
  border-color: rgba(108, 140, 255, 0.35);
}
.demo--cta h3 { font-size: 1.3rem; }

/* ---------- Why ---------- */
.why {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.3s, border-color 0.3s;
}
.why:hover { transform: translateY(-4px); border-color: var(--line-2); }
.why h3 { font-size: 1.12rem; margin-bottom: 10px; }
.why h3::before { content: "▹ "; color: var(--accent); }
.why p { color: var(--muted); font-size: 0.94rem; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 24px;
  transition: border-color 0.25s;
}
.faq details[open] { border-color: var(--line-2); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center;
  list-style: none; cursor: pointer;
  font-family: "Space Grotesk"; font-weight: 600; font-size: 1.05rem;
  padding: 18px 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq__i { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq__i::before, .faq__i::after {
  content: ""; position: absolute; background: var(--brand);
  border-radius: 2px; transition: transform 0.25s;
}
.faq__i::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq__i::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq details[open] .faq__i::after { transform: rotate(90deg); opacity: 0; }
.faq details p { color: var(--muted); padding: 0 0 20px; font-size: 0.96rem; }

/* ---------- Final CTA ---------- */
.cta { position: relative; padding: 110px 0; overflow: hidden; text-align: center; }
.cta__glow {
  position: absolute; bottom: -320px; left: 50%;
  width: 1020px; height: 720px;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.16), rgba(15, 185, 155, 0.08) 45%, transparent 70%);
  filter: blur(44px); pointer-events: none;
  animation: floatGlow 16s ease-in-out infinite;
}
.cta__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta h2 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; margin-bottom: 18px; }
.cta__inner > p { color: var(--muted); font-size: 1.08rem; margin-bottom: 40px; }
#cal-booking {
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--surface);
}
.cta__divider {
  display: flex; align-items: center; gap: 16px;
  color: var(--muted); font-size: 0.85rem; margin: 44px 0 28px;
}
.cta__divider::before, .cta__divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* ---------- Form ---------- */
.form { text-align: left; display: flex; flex-direction: column; gap: 14px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form input, .form select, .form textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.96rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form input::placeholder, .form textarea::placeholder { color: var(--muted); }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(108, 140, 255, 0.18);
}
.form select { appearance: none; }
.form select option { background: var(--surface); }
.form .btn { margin-top: 6px; }
.form__note { font-size: 0.9rem; color: var(--accent); min-height: 1.2em; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 56px 0; background: var(--bg-alt); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer__tag { color: var(--muted); font-size: 0.92rem; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer__links a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--text); }
.footer__social { display: flex; gap: 14px; justify-content: center; }
.footer__social a {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 10px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: color 0.2s, border-color 0.2s, transform 0.2s, background 0.2s;
}
.footer__social a:hover {
  color: #fff;
  border-color: transparent;
  background: var(--grad);
  background-size: 200% 200%;
  transform: translateY(-2px);
  animation: gradientShift 6s ease infinite;
}
.footer__copy { color: var(--muted); font-size: 0.82rem; opacity: 0.7; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .mockup__body { grid-template-columns: 1fr; }
  .band__inner { flex-direction: column; text-align: center; }
}
@media (max-width: 760px) {
  .nav__links, .nav__cta, .nav__social { display: none; }
  .nav__toggle { display: flex; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 30px -20px rgba(40, 56, 120, 0.4);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px;
  }
  .nav.open .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav.open .nav__cta { display: inline-flex; margin: 16px 24px; width: calc(100% - 48px); }
  .section { padding: 70px 0; }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 60px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
