﻿:root {
  --ink: #0f172a;
  --ink-soft: #1e293b;
  --paper: #f8f7f4;
  --panel: #ffffff;
  --line: #dbe3ef;
  --muted: #5f6f88;
  --accent: #0f62fe;
  --accent-dark: #0043ce;
  --accent-soft: #eaf1ff;
  --warm: #ff8a00;
  --ring: #7fb4ff;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 16px 40px rgba(15, 23, 42, 0.14);
  --shadow-lg: 0 24px 65px rgba(15, 23, 42, 0.2);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Sora", "Poppins", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

section[id] {
  scroll-margin-top: 110px;
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 5000;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  z-index: 2100;
  transition: background-color 220ms ease, border-color 220ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #000;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.3rem;
  position: relative;
}

.logo {
  font-family: "Poppins", sans-serif;
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

.site-header.scrolled .logo {
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 500;
  position: relative;
}

.site-header.scrolled .nav-links a {
  color: var(--ink-soft);
}

.nav-links a:not(.cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--warm);
  transition: width 220ms ease;
}

.nav-links a:not(.cta):hover::after,
.nav-links a:not(.cta):focus-visible::after {
  width: 100%;
}

.nav-links .cta {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 999px;
  padding: 0.55rem 1.05rem;
}

.nav-links .cta:hover {
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  cursor: pointer;
}

.hero {
  position: relative;
  width: min(1280px, calc(100% - 0.4rem));
  min-height: calc(100vh - 112px);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: clip;
  background: url("https://media2.giphy.com/media/v1.Y2lkPTc5MGI3NjExazJrODZkdmRxcjNmb2tvcGNqcTJ5Nzlzemc4dWphc24zcDg4bHllMiZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/Ta3v3I4GI1gH7Rqek6/giphy.gif") center/cover no-repeat;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero::before {
  display: block;
  background: rgba(0, 0, 0, 0.44);
}

.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 9vw, 6.6rem) 0 4.2rem;
  text-align: center;
  color: #fff;
}

.eyebrow {
  margin: 0 auto 1rem;
  width: fit-content;
  color: #dbecff;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.dynamic-title-container {
  margin: 0 auto;
  max-width: 980px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 6.5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.static-text,
.after-text {
  color: #f2f7ff;
}

.dynamic-text {
  display: inline-block;
  min-width: 180px;
  margin-inline: 0.25rem;
  background: linear-gradient(90deg, #9aceff, #7fe3ff, #ffd588, #9aceff);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-right: 3px solid #fff;
  padding-right: 0.35rem;
  animation: wordFlow 2.9s ease infinite, wordCaret 0.85s steps(1) infinite;
}

.hero-lead {
  margin: 1.45rem auto 0;
  max-width: 760px;
  font-size: clamp(1.02rem, 2.2vw, 1.28rem);
  color: rgba(243, 249, 255, 0.95);
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  padding: 0.86rem 1.3rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 14px 28px rgba(0, 67, 206, 0.42);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-points {
  list-style: none;
  margin: 2rem auto 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
}

.hero-screenshot {
  margin: clamp(2.2rem, 3.8vw, 3.2rem) auto 0;
  width: min(920px, 92%);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(234, 241, 255, 0.35);
  transform: translateY(0);
}

.hero-screenshot img {
  width: 100%;
  object-fit: cover;
}

body.motion-safe:not(.is-ready) .site-header {
  opacity: 0;
}

body.motion-safe:not(.is-ready) .eyebrow,
body.motion-safe:not(.is-ready) .dynamic-title-container,
body.motion-safe:not(.is-ready) .hero-lead,
body.motion-safe:not(.is-ready) .hero-buttons,
body.motion-safe:not(.is-ready) .hero-points,
body.motion-safe:not(.is-ready) .hero-screenshot {
  opacity: 0;
  transform: translateY(26px);
}

body.motion-safe.is-ready .site-header {
  animation: navReveal 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.motion-safe.is-ready .eyebrow {
  animation: riseFade 700ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.motion-safe.is-ready .dynamic-title-container {
  animation: riseFade 820ms 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.motion-safe.is-ready .hero-lead {
  animation: riseFade 760ms 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.motion-safe.is-ready .hero-buttons {
  animation: riseFade 760ms 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.motion-safe.is-ready .hero-points {
  animation: riseFade 760ms 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.motion-safe.is-ready .hero-screenshot {
  animation:
    riseFade 900ms 620ms cubic-bezier(0.22, 1, 0.36, 1) both,
    floatShot 6s ease-in-out 1.7s infinite;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 780ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 780ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 780ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.section {
  padding: clamp(4.3rem, 7vw, 6rem) 0;
}

.section-title {
  margin: 0;
  text-align: center;
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.section-title::after {
  display: none;
}

.section-subtitle {
  max-width: 760px;
  margin: 1.1rem auto 0;
  text-align: center;
  color: var(--muted);
}

.features {
  position: relative;
  background: var(--paper);
}

.features-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(1.7rem, 4vw, 2.8rem);
  border-radius: calc(var(--radius-lg) + 4px);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.features-shell::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: calc(var(--radius-lg) - 2px);
  border: 1px solid rgba(15, 23, 42, 0.05);
  pointer-events: none;
}

.features-intro {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.features .section-title {
  margin-inline: auto;
  color: var(--ink);
  text-wrap: balance;
}

.features .section-subtitle {
  color: var(--muted);
}

.features-grid {
  position: relative;
  z-index: 1;
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.05rem;
}

.feature-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.82rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 88px;
  height: 4px;
  border-radius: 0 0 14px 0;
  background: var(--accent);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #c9d8f5;
  box-shadow: var(--shadow-md);
  background: #fff;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.28rem;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border: 1px solid rgba(15, 98, 254, 0.12);
}

.feature-title {
  margin: 0;
  font-size: 1.12rem;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.feature-description {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  flex-grow: 1;
}

.feature-link {
  text-decoration: none;
  color: var(--accent-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  padding: 0;
}

.feature-link i {
  color: currentColor;
}

.feature-link:hover {
  gap: 0.6rem;
}

.used-by {
  background: var(--paper);
}

.not {
  text-decoration: line-through;
}

.logos {
  margin-top: 2.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.2rem;
}

.logos img {
  height: 48px;
  width: auto;
  opacity: 0.34;
  filter: grayscale(100%);
  transition: opacity 200ms ease, filter 200ms ease, transform 200ms ease;
}

.logos img:hover {
  opacity: 0.72;
  filter: grayscale(35%);
  transform: translateY(-2px);
}

.pricing {
  background: var(--paper);
}

.no-price {
  margin-top: 2rem;
  background: #ffffff;
  border: 1px solid #e3e8f1;
  border-radius: var(--radius-md);
  padding: 1.2rem;
}

.companies {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.company {
  background: #f9fbff;
  border: 1px solid #e9edf5;
  border-radius: 13px;
  padding: 0.9rem;
  text-align: left;
}

.strike {
  position: relative;
  font-size: 0.94rem;
  font-weight: 700;
  color: #4a5568;
}

.strike::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 2px;
  background: #ff4b4b;
  transform: rotate(-2.8deg);
}

.annotation {
  margin-top: 0.48rem;
  font-size: 0.82rem;
  color: #64748b;
}

.footnote {
  margin: 1rem auto 0;
  max-width: 760px;
  color: #63748b;
  font-size: 0.84rem;
}

.price-card {
  margin: 3rem auto 0;
  max-width: 480px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  position: relative;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.08);
  filter: blur(22px);
  opacity: 0;
  z-index: -1;
  transition: opacity 320ms ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.12);
}

.price-card:hover::before {
  opacity: 1;
}

.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.84rem;
  font-weight: 600;
}

.price-card-header {
  text-align: center;
  padding: 1rem 0 1.5rem;
}

.tier-name {
  margin: 0;
  padding-top: 0;
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.tier-mark {
  color: var(--muted);
  font-weight: 500;
}

.tier-description {
  margin: 0.7rem auto 0;
  max-width: 90%;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.price-divider {
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
}

.price {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.35rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.price-amount {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.price small {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 500;
}

.features-list {
  margin: 0;
  padding: 1.6rem 0;
  list-style: none;
  text-align: left;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--ink);
  font-size: 0.95rem;
}

.feature-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.feature-check i {
  color: var(--ink);
  font-size: 0.72rem;
}

.cta-button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: var(--ink);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 1.2rem;
  box-shadow: none;
  transition: background-color 200ms ease, transform 200ms ease;
}

.cta-button:hover {
  transform: translateY(-1px);
  background: #1b2436;
}

.cta-button i {
  transition: transform 200ms ease;
}

.cta-button:hover i {
  transform: translateX(4px);
}

.price-note {
  margin: 1rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.76rem;
}

.testimonials {
  background: #fff;
}

.testimonials-note {
  margin: 0.75rem auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.testimonial-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  background: linear-gradient(180deg, #fff, #f9fbff);
  display: flex;
  flex-direction: column;
}

.testimonial-content {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  flex-grow: 1;
  position: relative;
  padding-left: 0.8rem;
}

.testimonial-content::before {
  content: "\201C";
  position: absolute;
  left: -0.12rem;
  top: -0.48rem;
  color: #c9dbf8;
  font-size: 2.2rem;
  line-height: 1;
}

.testimonial-author {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.74rem;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  margin: 0;
  font-weight: 700;
}

.testimonial-role {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.testimonial-rating {
  margin-top: 0.32rem;
  display: flex;
  gap: 0.22rem;
  color: #f6b316;
  font-size: 0.82rem;
}

.faq {
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.faq-grid {
  margin: 2rem auto 0;
  max-width: 920px;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 0.2rem 1rem 0.85rem;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  appearance: none;
  border: 0;
  width: 100%;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.82rem 0 0.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  color: var(--accent-dark);
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.faq-answer {
  margin: 0;
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 220ms ease, opacity 220ms ease, padding-top 220ms ease;
}

.faq-item.active .faq-answer {
  max-height: 220px;
  opacity: 1;
  padding-top: 0.55rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--accent-dark);
  color: #fff;
}

.cta-section {
  padding: clamp(4rem, 7vw, 5rem) 0;
  background: linear-gradient(140deg, #0f62fe, #0037a8 52%, #202f58);
  color: #f6fbff;
  position: relative;
  overflow: clip;
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
  right: -120px;
  top: -170px;
}

.cta-title {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  text-align: center;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.cta-description {
  text-align: center;
  margin: 1rem auto 0;
  max-width: 760px;
  color: #dbe8fb;
}

.cta-buttons {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cta-button-primary,
.cta-button-secondary {
  display: inline-block;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  padding: 0.82rem 1.2rem;
  transition: transform 180ms ease, background-color 180ms ease;
}

.cta-button-primary {
  color: var(--accent-dark);
  background: #fff;
}

.cta-button-primary:hover {
  transform: translateY(-2px);
}

.cta-button-secondary {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.footer {
  background: #0a1021;
  color: #e2e9f7;
  padding: 3.3rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.footer-col h3 {
  margin: 0 0 0.7rem;
  color: #fff;
  font-size: 1.02rem;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li+li {
  margin-top: 0.48rem;
}

.footer-links a {
  text-decoration: none;
  color: #bfd0ea;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact p {
  margin: 0;
  color: #bfd0ea;
  font-size: 0.9rem;
}

.footer-social {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #d8e3f7;
}

.footer-social a:hover {
  background: var(--accent);
  color: #fff;
}

.footer-bottom {
  margin-top: 1.6rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: #bfd0ea;
  font-size: 0.84rem;
}

.footer-bottom-links {
  display: flex;
  gap: 0.8rem;
}

.footer-bottom-links a {
  text-decoration: none;
  color: #bfd0ea;
  font-size: 0.84rem;
}

.footer-bottom-links a:hover {
  color: #fff;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
}

.legal-page {
  background: var(--paper);
  color: var(--ink);
}

.legal-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.legal-nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-header .logo {
  color: var(--ink);
}

.legal-main {
  padding: 2.2rem 0 3rem;
}

.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.legal-card h1 {
  margin-top: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

.legal-card h2 {
  margin-top: 1.4rem;
  font-size: 1.1rem;
}

.legal-card p,
.legal-card li {
  color: var(--ink-soft);
}

.legal-list {
  margin: 0;
  padding-left: 1.1rem;
}

.legal-footer {
  border-top: 1px solid var(--line);
  padding: 1rem 0 2rem;
  color: var(--muted);
  font-size: 0.86rem;
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes wordCaret {

  0%,
  100% {
    border-color: transparent;
  }

  50% {
    border-color: #fff;
  }
}

@keyframes floatShot {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes riseFade {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navReveal {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 1060px) {

  .features-grid,
  .testimonial-grid,
  .companies,
  .footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links {
    gap: 0.9rem;
  }
}

@media (max-width: 860px) {
  .site-header {
    top: 8px;
    margin-top: 0;
  }

  .hamburger {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    right: 0;
    top: calc(100% + 0.55rem);
    width: min(320px, 88vw);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0.8rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: var(--ink-soft);
    padding: 0.5rem 0.55rem;
    border-radius: 10px;
  }

  .nav-links a:hover {
    background: #f1f6ff;
  }

  .nav-links .cta {
    text-align: center;
    color: #fff;
    margin-top: 0.2rem;
  }

  .hero {
    width: min(1280px, calc(100% - 0.4rem));
    margin-top: 0;
    min-height: auto;
  }

  .hero-content {
    padding-top: 5.2rem;
  }

  .features-grid,
  .testimonial-grid,
  .companies,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, 100% - 1.6rem);
  }

  .features-shell {
    padding: 1.3rem 1rem;
  }

  .features-shell::before {
    inset: 10px;
  }

  .hero {
    border-radius: 18px;
  }

  .price-card {
    margin-top: 2.6rem;
    padding: 1.7rem 1.2rem;
  }

  .popular-tag {
    font-size: 0.78rem;
    padding: 0.4rem 0.8rem;
  }

  .price-amount {
    font-size: 3.2rem;
  }

  .dynamic-text {
    min-width: 132px;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .cta-button-primary,
  .cta-button-secondary {
    text-align: center;
  }

  .faq-question {
    font-size: 0.95rem;
  }
}

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

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

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .dynamic-text {
    border-right: 0;
  }
}
