/* NovaTVV — clean white, subtle pitch/ball decor, local slides */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f8f7;
  --ink: #121a17;
  --ink-soft: #44504b;
  --muted: #6d7873;
  --line: rgba(18, 26, 23, 0.09);
  --brand: #0f6b6b;
  --brand-deep: #0a4f50;
  --brand-soft: #e5f3f1;
  --accent: #c45c26;
  --accent-hover: #a84b1c;
  --wa: #25d366;
  --wa-deep: #1ebe57;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(18, 26, 23, 0.08);
  --container: 1180px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Sora", system-ui, sans-serif;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

.container {
  width: min(100% - 1.5rem, var(--container));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.container.narrow { width: min(100% - 1.5rem, 700px); }

/* ---- Subtle ball decor ---- */
.decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.decor-ball {
  position: absolute;
  color: rgba(15, 107, 107, 0.055);
}

.decor-ball-1 {
  width: 160px;
  height: 160px;
  top: 42%;
  left: -30px;
}

.decor-ball-2 {
  width: 110px;
  height: 110px;
  bottom: 18%;
  right: -10px;
  color: rgba(196, 92, 38, 0.05);
}

@media (max-width: 700px) {
  .decor-ball-1 { width: 100px; height: 100px; top: 55%; }
  .decor-ball-2 { width: 80px; height: 80px; }
}

/* ---- UI ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}

.eyebrow.light { color: #b7e0da; }

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 1.8s infinite;
}

.section { padding: 4.2rem 0; position: relative; z-index: 1; }
.section-soft { background: rgba(246, 248, 247, 0.92); }

.section-head { max-width: 36rem; margin-bottom: 2rem; }
.section-head.center { margin-inline: auto; text-align: center; }

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 4.5vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
  margin-bottom: 0.7rem;
}

.section-lead {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.94rem;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-sm { min-height: 40px; padding: 0.5rem 0.95rem; font-size: 0.86rem; }

.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  position: relative;
  overflow: hidden;
}
.btn-wa:hover { background: var(--wa-deep); }

.btn-pulse {
  animation: ctaPulse 1.7s ease-in-out infinite;
}

.btn-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: shineSweep 2.4s ease-in-out infinite;
}

.btn-nudge {
  animation: softNudge 2.2s ease-in-out infinite;
}

.btn-wa-light {
  background: #fff;
  color: var(--brand-deep);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.btn-primary {
  width: 100%;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(196, 92, 38, 0.22);
}
.btn-primary:hover { background: var(--accent-hover); }

.btn-outline {
  width: 100%;
  background: #fff;
  color: var(--brand-deep);
  border: 1.5px solid rgba(15, 107, 107, 0.28);
}
.btn-outline:hover { background: var(--brand-soft); }

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo { display: inline-flex; align-items: center; gap: 0.6rem; }

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--brand), var(--brand-deep));
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
}

.logo-mark.small { width: 32px; height: 32px; font-size: 0.9rem; }

.logo-text {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 1.08rem;
}
.logo-text span { color: var(--brand); }

.nav-desktop { display: none; gap: 1.35rem; }
.nav-desktop a {
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--ink-soft);
}
.nav-desktop a:hover { color: var(--brand-deep); }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }

.nav-toggle {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid var(--line);
  display: grid;
  place-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-nav {
  display: grid;
  gap: 0.2rem;
  padding: 0.3rem 1rem 1rem;
  border-top: 1px solid var(--line);
  background: #fff;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  font-weight: 650;
  color: var(--ink-soft);
}
.mobile-nav .btn { margin-top: 0.35rem; }
body.nav-open { overflow: hidden; }

/* Hero */
.hero {
  padding: 1.15rem 0 0.5rem;
  position: relative;
  z-index: 1;
}

.slider {
  position: relative;
  z-index: 1;
}

.slider-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #070b0a;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 28px 60px rgba(18, 26, 23, 0.18);
  border: 1px solid rgba(18, 26, 23, 0.1);
}

.slider-viewport {
  position: relative;
  overflow: hidden;
  background: #070b0a;
}

.slider-track {
  position: relative;
  width: 100%;
}

.slide {
  margin: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  inset: 0;
  transition: opacity 0.65s ease, visibility 0.65s ease;
  z-index: 0;
}

.slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center top;
  user-select: none;
  -webkit-user-drag: none;
}

.slider-btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  z-index: 5;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  opacity: 0;
}

.slider-frame:hover .slider-btn,
.slider-frame:focus-within .slider-btn {
  opacity: 1;
}

.slider-btn.prev { left: 0.85rem; }
.slider-btn.next { right: 0.85rem; }
.slider-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}

.slider-ui {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  padding: 0 1rem 0.95rem;
  display: grid;
  gap: 0.55rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  pointer-events: auto;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.slider-dots button.is-active {
  width: 26px;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.25);
}

.slider-progress {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.slider-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #25d366, #7dffb0);
  border-radius: inherit;
}

.hero-panel {
  margin-top: 1.15rem;
  padding: 1.25rem 1.15rem;
  background:
    linear-gradient(135deg, rgba(15, 107, 107, 0.06), transparent 40%),
    linear-gradient(180deg, #ffffff, #f7fbfa);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(18, 26, 23, 0.05);
  display: grid;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  top: -50px;
  border-radius: 50%;
  background: rgba(15, 107, 107, 0.08);
  animation: floaty 5.5s ease-in-out infinite;
}

.live-chip {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 0.5rem;
  margin-left: 0.35rem;
  border-radius: 999px;
  background: #e11d48;
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  animation: liveBlink 1.1s ease-in-out infinite;
}

.hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 5.5vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 0.55rem;
}

.hero-lead {
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 38rem;
  line-height: 1.55;
}

.hero-cta {
  display: grid;
  gap: 0.65rem;
  position: relative;
  z-index: 1;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.trust-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.trust-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(18, 26, 23, 0.08);
}

.trust-hot {
  border-color: rgba(196, 92, 38, 0.28);
  background: linear-gradient(180deg, #fff7f2, #fff);
  animation: hotGlow 2s ease-in-out infinite;
}

.trust-ico {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.trust-hot .trust-ico {
  background: rgba(196, 92, 38, 0.14);
  color: var(--accent);
}

.trust-item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.12rem;
  color: var(--brand-deep);
}

.trust-item span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

/* Features */
/* Why / Features — visual feast */
.section-why {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(15, 107, 107, 0.1), transparent 55%),
    radial-gradient(700px 380px at 100% 40%, rgba(37, 211, 102, 0.08), transparent 50%),
    #fff;
}

.why-decor {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: 40px;
  border-radius: 50%;
  border: 2px solid rgba(15, 107, 107, 0.06);
  pointer-events: none;
}

.why-head {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 1;
}

.why-head .section-head {
  margin-bottom: 0;
}

.why-cta {
  justify-self: start;
}

.feature-grid {
  display: grid;
  gap: 0.95rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  list-style: none;
  background: #fff;
  border: 1px solid rgba(18, 26, 23, 0.08);
  border-radius: 20px;
  padding: 1.2rem 1.15rem 1.25rem;
  box-shadow: 0 10px 28px rgba(18, 26, 23, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--card-accent, var(--brand));
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(18, 26, 23, 0.1);
  border-color: rgba(15, 107, 107, 0.22);
}

.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.95rem;
}

.feature-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  border-radius: 12px;
  background: var(--card-soft, var(--brand-soft));
  color: var(--card-accent, var(--brand));
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.88rem;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--card-accent, var(--brand)), var(--card-deep, var(--brand-deep)));
  box-shadow: 0 10px 22px rgba(15, 107, 107, 0.22);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  font-family: var(--display);
  font-size: 1.08rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}

.feature-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

.tone-1 { --card-accent: #0f6b6b; --card-deep: #0a4f50; --card-soft: #e5f3f1; }
.tone-2 { --card-accent: #1a7f5a; --card-deep: #146347; --card-soft: #e6f6ef; }
.tone-3 { --card-accent: #c45c26; --card-deep: #a84b1c; --card-soft: #fcefe7; }
.tone-4 { --card-accent: #2f6fed; --card-deep: #1f54c4; --card-soft: #eaf0ff; }
.tone-5 { --card-accent: #7a4dff; --card-deep: #5d35db; --card-soft: #f1ebff; }
.tone-6 { --card-accent: #25d366; --card-deep: #1ebe57; --card-soft: #e9fbf0; }

.why-banner {
  margin-top: 1.5rem;
  display: grid;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(18, 26, 23, 0.08);
  box-shadow: 0 18px 40px rgba(18, 26, 23, 0.1);
  background: #0b1210;
  position: relative;
  z-index: 1;
}

.why-banner img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
}

.why-banner-copy {
  padding: 1.35rem 1.2rem 1.45rem;
  background: linear-gradient(145deg, #0f6b6b, #0a4f50 60%, #163a38);
  color: #f4fffc;
}

.why-banner-copy h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}

.why-banner-copy p:not(.eyebrow) {
  opacity: 0.9;
  margin-bottom: 1rem;
}

.why-banner-copy .btn {
  width: 100%;
}

/* Pricing — lively section */
.section-pricing {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(15, 107, 107, 0.1), transparent 55%),
    radial-gradient(700px 360px at 95% 80%, rgba(196, 92, 38, 0.08), transparent 50%),
    #f3f7f5;
}

.pricing-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.pricing-pitch {
  position: absolute;
  width: min(480px, 80vw);
  height: 280px;
  right: -90px;
  top: 18%;
  border: 2px solid rgba(15, 107, 107, 0.08);
  border-radius: 12px;
  transform: rotate(-9deg);
}

.pricing-pitch::before {
  content: "";
  position: absolute;
  inset: 16% 8%;
  border: 2px solid rgba(15, 107, 107, 0.07);
}

.pricing-pitch::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  border: 2px solid rgba(15, 107, 107, 0.08);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pricing-ball {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(15, 107, 107, 0.1);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.55), transparent 45%),
    rgba(15, 107, 107, 0.04);
}

.pricing-ball::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1.5px solid rgba(15, 107, 107, 0.1);
  border-radius: 50%;
}

.pricing-ball-a {
  width: 92px;
  height: 92px;
  left: 4%;
  bottom: 12%;
  animation: floaty 6s ease-in-out infinite;
}

.pricing-ball-b {
  width: 64px;
  height: 64px;
  right: 10%;
  bottom: 8%;
  border-color: rgba(196, 92, 38, 0.14);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.5), transparent 45%),
    rgba(196, 92, 38, 0.05);
  animation: floaty 7.5s ease-in-out infinite reverse;
}

.section-pricing .container { z-index: 1; }

.pricing-grid {
  display: grid;
  gap: 1.1rem;
}

.price-card {
  background: #fff;
  border: 1px solid rgba(18, 26, 23, 0.08);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 36px rgba(18, 26, 23, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(18, 26, 23, 0.12);
}

.price-card.featured {
  border-color: rgba(15, 107, 107, 0.35);
  box-shadow: 0 18px 44px rgba(15, 107, 107, 0.14);
}

.price-visual {
  position: relative;
  min-height: 128px;
  padding: 1.1rem 1.15rem 1rem;
  color: #fff;
  overflow: hidden;
}

.price-visual.tone-a {
  background:
    linear-gradient(135deg, rgba(10, 79, 80, 0.2), rgba(10, 79, 80, 0.55)),
    linear-gradient(145deg, #0f6b6b, #127f7a 45%, #0a4f50);
}

.price-visual.tone-b {
  background:
    linear-gradient(135deg, rgba(20, 32, 28, 0.15), rgba(20, 32, 28, 0.45)),
    linear-gradient(145deg, #1d3b36, #24554c 50%, #16332e);
}

.price-visual::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -30px;
  bottom: -50px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.price-visual::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 120px;
  right: -40px;
  top: 10px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transform: rotate(-12deg);
}

.price-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  min-height: 28px;
  align-items: center;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.price-badge.muted {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.price-gift {
  position: relative;
  z-index: 1;
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: #c45c26;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(196, 92, 38, 0.35);
}

.price-term {
  position: relative;
  z-index: 1;
  margin-top: 0.7rem;
  font-size: 0.95rem;
  opacity: 0.92;
}

.price-term strong {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.price-body {
  padding: 1.2rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}

.price-card h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.price-desc { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.55; }

.price-value {
  font-family: var(--display);
  font-size: 2.55rem;
  letter-spacing: -0.04em;
  color: var(--brand-deep);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.price-value small {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0;
}

.price-features {
  display: grid;
  gap: 0.5rem;
  margin: 0.1rem 0 0.25rem;
}

.price-features li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(15, 107, 107, 0.12);
}

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

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Devices */
.device-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.device-grid li {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.8rem 0.5rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 0.92rem;
}

/* FAQ */
.faq-list { display: grid; gap: 0.65rem; }

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.1rem 1rem;
}

.faq-item summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--brand);
  font-size: 1.25rem;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  padding: 0 0 0.95rem;
  color: var(--ink-soft);
}

/* Contact */
.contact {
  padding: 2rem 0 3.5rem;
  position: relative;
  z-index: 1;
}

.contact-inner {
  background: linear-gradient(145deg, #0f6b6b, #0a4f50 60%, #163a38);
  color: #f4fffc;
  border-radius: 24px;
  padding: 2rem 1.35rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.contact-inner h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  letter-spacing: -0.035em;
  margin-bottom: 0.7rem;
}

.contact-prices {
  opacity: 0.9;
  margin-bottom: 0.7rem;
}

.phone-link {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(1.35rem, 4.5vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 1.15rem;
  letter-spacing: -0.03em;
}

.contact-inner .btn { width: 100%; max-width: 320px; }

/* Footer */
.site-footer {
  padding: 1.8rem 0 calc(5.2rem + var(--safe-bottom));
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
  background: #fff;
}

.footer-inner { display: grid; gap: 0.9rem; }
.footer-brand { display: flex; align-items: center; gap: 0.7rem; }
.footer-brand strong { font-family: var(--display); letter-spacing: -0.03em; }
.footer-brand p,
.footer-copy { color: var(--muted); font-size: 0.9rem; }

/* FAB */
.wa-fab {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, var(--safe-bottom));
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  z-index: 60;
}
.wa-fab:hover { background: var(--wa-deep); }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(15, 107, 107, 0.4); }
  70% { box-shadow: 0 0 0 9px rgba(15, 107, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(15, 107, 107, 0); }
}

@keyframes ctaPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  }
  50% {
    transform: scale(1.035);
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.55), 0 0 0 8px rgba(37, 211, 102, 0.15);
  }
}

@keyframes shineSweep {
  0%, 35% { transform: translateX(-120%); }
  55% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

@keyframes softNudge {
  0%, 100% { transform: translateY(0); border-color: var(--line); }
  50% { transform: translateY(-2px); border-color: rgba(15, 107, 107, 0.35); }
}

@keyframes liveBlink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.45); }
  50% { opacity: 0.72; box-shadow: 0 0 0 6px rgba(225, 29, 72, 0); }
}

@keyframes hotGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 92, 38, 0.12); }
  50% { box-shadow: 0 8px 22px rgba(196, 92, 38, 0.18); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .slider-track, .pulse-dot,
  .btn-pulse, .btn-shine, .btn-nudge, .live-chip, .trust-hot, .pricing-ball {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 699px) {
  .slider-btn {
    opacity: 1;
    width: 40px;
    height: 40px;
    top: 32%;
  }
  .slider-frame { border-radius: 16px; }
}

@media (min-width: 640px) {
  .hero-panel {
    grid-template-columns: 1.3fr auto;
    align-items: center;
    padding: 1.35rem 1.5rem;
    gap: 1.5rem;
  }

  .hero-cta {
    grid-template-columns: auto auto;
    justify-content: end;
  }

  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .why-head {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
  .why-banner {
    grid-template-columns: 1.3fr 1fr;
    align-items: stretch;
  }
  .why-banner img {
    height: 100%;
    min-height: 260px;
  }
  .why-banner-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.8rem 1.6rem;
  }
  .why-banner-copy .btn { width: auto; align-self: start; }
  .device-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-inner { padding: 2.4rem 2rem; }
  .contact-inner .btn { width: auto; }
}

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .nav-toggle,
  .mobile-nav { display: none !important; }

  .hero { padding: 1.5rem 0 0.75rem; }

  .slider-frame { border-radius: 26px; }

  .slider-btn {
    width: 54px;
    height: 54px;
  }
  .slider-btn.prev { left: 1.15rem; }
  .slider-btn.next { right: 1.15rem; }

  .hero-panel {
    margin-top: 1.25rem;
    padding: 1.45rem 1.75rem;
  }

  .hero-copy h1 {
    font-size: 2.1rem;
  }

  .section { padding: 5rem 0; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 860px;
    margin-inline: auto;
    gap: 1.15rem;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .site-footer { padding-bottom: 2.2rem; }
}
