/* STRIVV FIT Website Styles */
:root {
  color-scheme: dark;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #e5ecff;
  background: #07111f;
  --bg: #07111f;
  --bg-soft: #0b1830;
  --bg-panel: rgba(11, 24, 48, 0.84);
  --bg-panel-strong: rgba(14, 31, 59, 0.96);
  --line: rgba(180, 206, 255, 0.14);
  --line-strong: rgba(145, 196, 255, 0.24);
  --text: #e5ecff;
  --text-muted: rgba(220, 230, 255, 0.74);
  --accent: #3db4ff;
  --accent-deep: #116dff;
  --accent-soft: rgba(61, 180, 255, 0.16);
  --success: #34d399;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 15%, rgba(61, 180, 255, 0.16), transparent 22%),
    radial-gradient(circle at 88% 8%, rgba(17, 109, 255, 0.18), transparent 20%),
    linear-gradient(180deg, #08121f 0%, #07111f 42%, #050d18 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 48%, transparent 100%);
  opacity: 0.32;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.topbar-inner p,
.topbar-inner a {
  margin: 0;
  font-size: 0.92rem;
}

.topbar-inner p {
  color: var(--text-muted);
}

.topbar-inner a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: rgba(6, 12, 24, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 10, 20, 0.94);
  border-bottom-color: rgba(145, 196, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand-logo {
  height: 50px;
  width: auto;
  margin-right: 2px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 12px 30px rgba(17, 109, 255, 0.35);
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
}

.brand-copy strong {
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

.brand-copy small {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.32rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.main-nav a {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  color: #dbe8ff;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(17, 109, 255, 0.28);
}

main {
  position: relative;
  z-index: 1;
}

.section,
.section-lg {
  position: relative;
}

.section {
  padding: 4rem 0;
}

.section-lg {
  padding: 5.5rem 0;
}

.section-light {
  background: linear-gradient(180deg, rgba(9, 20, 39, 0.92), rgba(10, 22, 44, 0.97));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-featured {
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.88), rgba(9, 22, 40, 0.96));
}

.section-header {
  margin-bottom: 2rem;
}

.section-header--center {
  text-align: center;
}

.section-copy,
.hero-copy,
.page-hero .hero-copy,
.section-header p,
.final-cta-card p,
.cta-card p,
.small-text {
  color: var(--text-muted);
}

.hero {
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(22px);
}

.hero::before {
  width: 360px;
  height: 360px;
  top: -110px;
  right: -80px;
  background: radial-gradient(circle, rgba(61, 180, 255, 0.24), transparent 64%);
}

.hero::after {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -60px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 62%);
}

.hero-grid,
.split-section,
.contact-grid,
.problem-grid,
.audience-solution-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}

.problem-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audience-solution-grid {
  grid-template-columns: 0.92fr 1.08fr;
}

.split-section {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.contact-grid {
  grid-template-columns: 1.02fr 1.08fr;
  align-items: start;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #8ed7ff;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero h1,
.page-hero h1,
.section-header h2,
.cta-card h2,
.final-cta-card h2 {
  margin: 0;
  font-size: clamp(2.5rem, 3vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.page-hero {
  text-align: center;
}

.page-hero .container {
  max-width: 760px;
}

.hero-actions,
.cta-buttons,
.final-cta-buttons,
.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.55rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-ghost {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-meta,
.hero-stats,
.feature-grid,
.pricing-grid,
.screenshot-grid,
.feature-list,
.choice-grid,
.audience-grid,
.legal-layout {
  display: grid;
  gap: 1.25rem;
}
.pricing-grid article {
  margin-bottom: 40px;
}
.hero-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.hero-meta div,
.hero-stat,
.feature-card,
.pricing-card,
.screenshot-card,
.problem-card,
.solution-card,
.audience-panel,
.choice-panel,
.feature-list article,
.contact-info,
.contact-form,
.legal-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.hero-meta div {
  padding: 1.1rem 1.2rem;
}

.hero-meta strong {
  display: block;
  font-size: 1.28rem;
  color: #fff;
}

.hero-meta span {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.value-strip {
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.3rem 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}

.value-grid div {
  padding: 1rem 1.1rem;
  border-radius: 999px;
  background: rgba(61, 180, 255, 0.08);
  border: 1px solid rgba(61, 180, 255, 0.12);
  color: #eaf4ff;
  font-weight: 700;
}

.problem-card,
.solution-card,
.audience-panel,
.choice-panel,
.contact-info,
.contact-form,
.legal-card {
  padding: 2rem;
}

.card-top {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: rgba(61, 180, 255, 0.18);
  border: 1px solid rgba(61, 180, 255, 0.28);
}

.icon-badge--success {
  background: rgba(52, 211, 153, 0.18);
  border-color: rgba(52, 211, 153, 0.28);
}

.problem-list,
.checklist,
.audience-list,
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.problem-list {
  display: grid;
  gap: 1rem;
}

.problem-list li,
.pricing-card li {
  padding: 1rem 1.15rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.problem-list li strong {
  display: block;
  color: #fff;
  margin-bottom: 0.35rem;
}

.problem-list li span,
.pricing-card li,
.contact-info p,
.legal-card p {
  color: var(--text-muted);
}

.audience-grid {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin-top: 1.5rem;
}

.pill-card {
  padding: 1rem 1.2rem;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  color: #f4f9ff;
  background: rgba(61, 180, 255, 0.12);
  border: 1px solid rgba(61, 180, 255, 0.18);
}

.choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.choice-card {
  min-height: 150px;
  padding: 1.4rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.choice-card:hover,
.feature-card:hover,
.pricing-card:hover,
.screenshot-card:hover,
.feature-list article:hover,
.legal-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  background: var(--bg-panel-strong);
}

.choice-card span {
  color: #8ed7ff;
  font-size: 1rem;
  font-weight: 800;
}

.choice-card h4,
.feature-card h3,
.screenshot-card h3,
.pricing-card h2,
.feature-list article h2,
.legal-card h2 {
  margin: 0.7rem 0;
  color: #fff;
}

.plan-kicker {
  margin: 0;
  color: #7ed0ff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.choice-card p,
.feature-card p,
.screenshot-card p,
.feature-list article p {
  margin: 0;
  color: var(--text-muted);
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.screenshot-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-list {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card,
.pricing-card,
.screenshot-card,
.feature-list article {
  padding: 1.8rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.screenshot-pill {
  display: inline-flex;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(61, 180, 255, 0.14);
  color: #bfe7ff;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.showcase-section {
  overflow: hidden;
}

.showcase-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.showcase-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: showcase-scroll 36s linear infinite;
}

.app-shot {
  flex: 0 0 min(320px, 78vw);
  padding: 1.1rem;
  border-radius: 1.7rem;
  background: rgba(8, 18, 34, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.showcase-marquee:hover .showcase-track {
  animation-play-state: paused;
}

.app-shot:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  background: rgba(10, 22, 40, 0.96);
}

.app-shot__frame {
  position: relative;
  padding: 0.85rem;
  border-radius: 1.55rem;
  background:
    radial-gradient(circle at top right, rgba(97, 112, 255, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(17, 26, 50, 0.98), rgba(13, 21, 41, 0.98));
  border: 1px solid rgba(139, 177, 255, 0.14);
  overflow: hidden;
}

.app-shot__frame::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 50%;
  width: 34%;
  height: 0.32rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  z-index: 1;
}

.app-shot__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(97, 112, 255, 0.22), transparent 28%),
    radial-gradient(circle at bottom left, rgba(61, 180, 255, 0.12), transparent 26%);
  pointer-events: none;
}

.app-shot__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
}

.app-shot__copy {
  padding: 1.1rem 0.4rem 0.1rem;
}

.app-shot__copy h3 {
  margin: 0;
}

.app-shot__copy p {
  margin: 0.7rem 0 0;
  color: var(--text-muted);
}

.feature-screen-grid,
.app-preview-strip {
  display: grid;
  gap: 1.5rem;
}

.feature-screen-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-screen-card,
.preview-strip-card,
.download-showcase-copy,
.download-phone {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-screen-card {
  display: grid;
  gap: 1.25rem;
  padding: 1.35rem;
  border-radius: 1.6rem;
}

.feature-screen-copy h3,
.preview-strip-card h3 {
  margin: 0;
  color: #fff;
}

.feature-screen-copy p,
.preview-strip-card p {
  margin: 0.8rem 0 0;
  color: var(--text-muted);
}

.feature-screen-visual {
  padding: 0.9rem;
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at top right, rgba(97, 112, 255, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(17, 26, 50, 0.98), rgba(13, 21, 41, 0.98));
  border: 1px solid rgba(139, 177, 255, 0.14);
}

.feature-screen-image,
.preview-strip-image,
.download-phone-image {
  width: 100%;
  height: auto;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
}

.download-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.download-showcase-copy {
  padding: 2rem;
  border-radius: 1.7rem;
  background:
    radial-gradient(circle at top left, rgba(61, 180, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(10, 24, 46, 0.98), rgba(7, 16, 30, 0.98));
}

.download-showcase-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 2.7vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.download-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.download-badges span {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(61, 180, 255, 0.12);
  border: 1px solid rgba(61, 180, 255, 0.18);
  color: #eaf6ff;
  font-weight: 700;
}

.download-phone-stack {
  position: relative;
  min-height: 650px;
}

.download-phone {
  position: absolute;
  width: min(270px, 42vw);
  padding: 0.8rem;
  border-radius: 1.7rem;
  background:
    radial-gradient(circle at top right, rgba(97, 112, 255, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(17, 26, 50, 0.98), rgba(13, 21, 41, 0.98));
  transition: transform 0.25s ease;
}

.download-phone:hover {
  transform: translateY(-8px);
}

.download-phone--front {
  top: 0;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
}

.download-phone--mid {
  top: 90px;
  left: 8%;
  z-index: 2;
  transform: rotate(-8deg);
}

.download-phone--back {
  top: 120px;
  right: 6%;
  z-index: 1;
  transform: rotate(9deg);
}

.app-preview-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.preview-strip-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.2rem;
  border-radius: 1.6rem;
}

.preview-strip-image {
  max-height: 340px;
  object-fit: cover;
}

.pricing-card.featured {
  border-color: rgba(61, 180, 255, 0.28);
  box-shadow: 0 28px 90px rgba(17, 109, 255, 0.22);
}

.pricing-card .price {
  margin: 0 0 1rem;
  color: #9edfff;
  font-weight: 700;
}

.plan-fit {
  margin: 1.2rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.plan-fit strong {
  color: #fff;
}

.checklist,
.audience-list {
  display: grid;
  gap: 0.9rem;
}

.checklist li,
.audience-list li {
  position: relative;
  padding: 0.95rem 1rem 0.95rem 3rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.checklist li::before,
.audience-list li::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 0 0 6px rgba(61, 180, 255, 0.12);
}

.cta-card,
.final-cta-card {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2.5rem;
  border-radius: 1.8rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(135deg, #0f1f39, #116dff);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(3, 10, 20, 0.3);
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #dce8ff;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(145, 196, 255, 0.18);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  font: inherit;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(61, 180, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(61, 180, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.legal-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-card {
  padding: 1.8rem;
}

.legal-card--wide {
  grid-column: 1 / -1;
}

.legal-card a {
  color: #bfe7ff;
}

.site-footer {
  position: relative;
  padding: 3.5rem 0 1.5rem;
  background:
    linear-gradient(180deg, rgba(8, 17, 31, 0.8), rgba(4, 10, 18, 0.98)),
    linear-gradient(90deg, rgba(61, 180, 255, 0.08), transparent 40%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.9fr;
  gap: 1.5rem;
}

.footer-brand-block p {
  max-width: 28rem;
  color: var(--text-muted);
}

.brand-footer {
  margin-bottom: 1rem;
}

.footer-links-group {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.footer-links-group h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.footer-links-group a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links-group a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.3rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(220, 230, 255, 0.6);
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 6rem;
  z-index: 45;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #1fb96d, #129a57);
  box-shadow: 0 18px 40px rgba(18, 154, 87, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(18, 154, 87, 0.34);
}

.mobile-sticky-cta {
  display: none;
}

.hero-phone {
  position: relative;
  width: min(420px, 100%);
  margin: 0 auto;
}

.hero-phone__device {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
  background: linear-gradient(180deg, rgba(12, 24, 49, 0.98), rgba(8, 16, 33, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  animation: float 6.5s ease-in-out infinite;
}

.hero-phone__topbar {
  height: 18px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
}

.hero-phone__content {
  display: grid;
  gap: 1.5rem;
  padding: 1.8rem 1.5rem 1.6rem;
}

.hero-phone__headline {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

.hero-phone__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-phone__metrics div {
  padding: 1rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.05);
}

.hero-phone__metrics span {
  display: block;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
}

.hero-phone__metrics p {
  margin: 0.3rem 0 0;
  color: var(--text-muted);
}

.hero-phone__chart {
  display: flex;
  align-items: flex-end;
  gap: 0.7rem;
  min-height: 170px;
  padding-top: 1rem;
}

.chart-bar {
  flex: 1;
  height: calc(var(--height) * 1% * 1.55);
  min-height: 52px;
  border-radius: 1rem 1rem 0.6rem 0.6rem;
  background: linear-gradient(180deg, #75d2ff 0%, #116dff 100%);
  transform-origin: bottom;
  animation: growBar 1.4s ease forwards;
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.hero-stat {
  padding: 1rem 1.05rem;
}

.hero-stat strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #fff;
}

.hero-stat span {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children > * {
  transition-delay: calc(var(--stagger-index, 0) * 90ms);
}

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

@keyframes growBar {
  from {
    transform: scaleY(0.2);
    opacity: 0.25;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes showcase-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .problem-grid,
  .audience-solution-grid,
  .choice-grid,
  .footer-layout,
  .legal-layout,
  .feature-screen-grid,
  .download-showcase,
  .app-preview-strip {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    gap: 2rem;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .split-section,
  .contact-grid,
  .hero-meta,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-inner {
    flex-wrap: wrap;
    align-items: center;
  }

  .brand {
    flex: 1;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    width: 100%;
    order: 3;
    margin-top: 0.85rem;
    padding: 0.75rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    border-radius: 1.2rem;
    background: rgba(8, 16, 30, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
  }

  .nav-cta {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 720px) {
  .topbar {
    display: none;
  }

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

  .section {
    padding: 3rem 0;
  }

  .section-lg {
    padding: 4rem 0;
  }

  .topbar-inner p,
  .topbar-inner a {
    font-size: 0.86rem;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.72rem;
  }

  .hero-actions,
  .cta-buttons,
  .final-cta-buttons,
  .contact-cta,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .value-grid,
  .feature-grid,
  .pricing-grid,
  .screenshot-grid,
  .feature-list,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .app-shot {
    padding: 0.9rem;
  }

  .showcase-marquee {
    mask-image: none;
  }

  .showcase-track {
    gap: 1rem;
    animation-duration: 28s;
  }

  .download-phone-stack {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .download-phone {
    position: static;
    width: 100%;
    transform: none;
  }

  .preview-strip-card {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 5.5rem;
  }

  .whatsapp-float {
    bottom: 5.7rem;
  }

  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 48;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    background: rgba(5, 10, 18, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-sticky-cta a {
    flex: 1;
    padding: 0.9rem 0.75rem;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  }
}
