:root {
  color-scheme: light;
  --bg: #f4f8fb;
  --bg-elevated: rgba(255, 255, 255, 0.84);
  --bg-soft: rgba(255, 255, 255, 0.64);
  --surface: #ffffff;
  --surface-2: rgba(255, 255, 255, 0.72);
  --text: #0e1728;
  --text-muted: #556276;
  --line: rgba(56, 73, 99, 0.14);
  --line-strong: rgba(56, 73, 99, 0.28);
  --primary: #0b7cff;
  --primary-deep: #0856bc;
  --primary-soft: rgba(11, 124, 255, 0.1);
  --accent: #17c3b2;
  --accent-soft: rgba(23, 195, 178, 0.12);
  --danger: #ff5f6d;
  --danger-soft: rgba(255, 95, 109, 0.14);
  --feature-surface: #f8fbff;
  --feature-border: rgba(11, 124, 255, 0.12);
  --feature-icon: #06c8ff;
  --shadow: 0 24px 80px rgba(8, 35, 69, 0.12);
  --shadow-soft: 0 18px 44px rgba(17, 32, 70, 0.1);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 82px;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #02060f;
  --bg-elevated: rgba(5, 10, 20, 0.9);
  --bg-soft: rgba(9, 16, 30, 0.8);
  --surface: #081121;
  --surface-2: rgba(12, 22, 40, 0.82);
  --text: #edf4ff;
  --text-muted: #99a9c2;
  --line: rgba(151, 183, 228, 0.12);
  --line-strong: rgba(151, 183, 228, 0.22);
  --primary: #4da3ff;
  --primary-deep: #1e7fe0;
  --primary-soft: rgba(77, 163, 255, 0.16);
  --accent: #2ce0c9;
  --accent-soft: rgba(44, 224, 201, 0.12);
  --danger: #ff7d8a;
  --danger-soft: rgba(255, 125, 138, 0.16);
  --feature-surface: #0c1016;
  --feature-border: rgba(56, 76, 108, 0.42);
  --feature-icon: #11d3ff;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 22px 52px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(3, 7, 15, 0.82) 0%, rgba(2, 6, 13, 0.96) 100%),
    radial-gradient(circle at top left, rgba(11, 124, 255, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(23, 195, 178, 0.06), transparent 26%),
    url("./files/agency_bg1.jpg") center top / cover no-repeat,
    linear-gradient(180deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 84%, #ffffff 16%) 100%);
  transition: background-color 0.25s ease, color 0.25s ease;
}

:root[data-theme="light"] body,
:root:not([data-theme="dark"]) body {
  background:
    linear-gradient(180deg, rgba(244, 248, 252, 0.88) 0%, rgba(240, 246, 252, 0.96) 100%),
    radial-gradient(circle at top left, rgba(11, 124, 255, 0.08), transparent 28%),
    url("./files/agency_bg2.jpg") center top / cover no-repeat,
    linear-gradient(180deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 86%, #ffffff 14%) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-shell {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
}

.background-bubbles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.38;
}

.site-shell > :not(.background-bubbles) {
  position: relative;
  z-index: 1;
}

.background-bubbles .bubble {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(44px);
  will-change: transform;
  background:
    radial-gradient(circle at 50% 50%, rgba(61, 177, 255, 0.18) 0%, rgba(12, 33, 66, 0.72) 42%, rgba(3, 9, 18, 0.02) 78%);
}

.background-bubbles .bubble-1 {
  top: -8vh;
  left: -10vw;
  width: 42rem;
  height: 42rem;
  opacity: 0.4;
  animation: bubbleDriftA 26s ease-in-out infinite alternate;
}

.background-bubbles .bubble-2 {
  top: 8vh;
  right: -8vw;
  width: 34rem;
  height: 34rem;
  opacity: 0.3;
  animation: bubbleDriftB 24s ease-in-out infinite alternate;
}

.background-bubbles .bubble-3 {
  top: 46vh;
  left: 10vw;
  width: 30rem;
  height: 30rem;
  opacity: 0.26;
  animation: bubbleDriftC 22s ease-in-out infinite alternate;
}

.background-bubbles .bubble-4 {
  top: 62vh;
  right: 8vw;
  width: 38rem;
  height: 38rem;
  opacity: 0.22;
  animation: bubbleDriftD 28s ease-in-out infinite alternate;
}

:root[data-theme="dark"] .background-bubbles .bubble {
  background:
    radial-gradient(circle at 50% 50%, rgba(72, 183, 255, 0.2) 0%, rgba(8, 21, 44, 0.82) 44%, rgba(2, 6, 14, 0.02) 78%);
}

:root[data-theme="light"] .background-bubbles .bubble {
  filter: blur(48px);
  background:
    radial-gradient(circle at 50% 50%, rgba(62, 151, 224, 0.16) 0%, rgba(32, 65, 110, 0.38) 42%, rgba(4, 10, 20, 0.01) 78%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(16px);
  background: color-mix(in srgb, var(--bg-elevated) 88%, transparent);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}

.header-row {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow: visible;
}

.brand-logo {
  width: 236px;
  height: auto;
}

.desktop-nav,
.header-actions,
.footer-links,
.hero-actions,
.billing-toggle,
.cta-actions,
.section-cta-row {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 1.5rem;
}

.desktop-nav a,
.mobile-nav a:not(.button),
.footer-links a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:not(.button):hover,
.footer-links a:hover {
  color: var(--text);
}

.mobile-nav .button-ghost {
  color: var(--text);
}

.mobile-nav .button-primary {
  color: #ffffff;
}

.header-actions {
  gap: 0.75rem;
}

.icon-button {
  position: relative;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.icon-button:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.icon-sun,
.icon-moon {
  position: absolute;
  font-size: 1rem;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

:root[data-theme="light"] .icon-moon,
:root:not([data-theme="dark"]) .icon-moon {
  opacity: 0;
  transform: rotate(80deg) scale(0.5);
}

:root[data-theme="dark"] .icon-sun {
  opacity: 0;
  transform: rotate(-80deg) scale(0.5);
}

.language-switcher {
  position: relative;
  z-index: 60;
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  z-index: 121;
  min-width: 10rem;
  padding: 0.4rem;
  display: grid;
  gap: 0.3rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.language-menu.is-floating {
  position: fixed;
  top: var(--menu-top, 5.25rem);
  right: auto;
  left: var(--menu-left, 0);
  z-index: 9999;
}

.language-option {
  width: 100%;
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 0.8rem;
  text-align: left;
  color: var(--text);
}

.language-option:hover,
.language-option.is-active {
  background: var(--primary-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 2.75rem;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  box-shadow: 0 20px 36px rgba(8, 86, 188, 0.24);
}

.button-primary:hover {
  box-shadow: 0 24px 42px rgba(8, 86, 188, 0.28);
}

.button-outline {
  border-color: var(--line);
  background: var(--bg-soft);
}

.button-ghost {
  border-color: var(--line);
  background: transparent;
}

.button-large {
  min-height: 3.6rem;
  padding: 0.95rem 1.6rem;
}

.animated-cta {
  position: relative;
  min-width: min(100%, 21rem);
  justify-content: space-between;
  gap: 1.25rem;
  padding-inline: 1.45rem 1.35rem;
  color: #f7fbff;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(7, 14, 18, 0.96) 0%, rgba(2, 6, 11, 0.98) 100%) padding-box,
    linear-gradient(
      115deg,
      rgba(56, 112, 140, 0.3) 0%,
      rgba(109, 243, 255, 0.9) 16%,
      rgba(55, 125, 162, 0.24) 34%,
      rgba(56, 112, 140, 0.22) 48%,
      rgba(62, 196, 220, 0.82) 64%,
      rgba(56, 112, 140, 0.22) 82%,
      rgba(56, 112, 140, 0.3) 100%
    ) border-box;
  background-size: 100% 100%, 220% 220%;
  background-position: 0 0, 0% 50%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(72, 184, 206, 0.06),
    0 18px 40px rgba(4, 10, 18, 0.26);
  overflow: hidden;
  animation: ctaGlowPulse 4.6s ease-in-out infinite, ctaBorderFlow 5.4s linear infinite;
}

.animated-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 22% 50%, rgba(33, 216, 198, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(33, 216, 198, 0.08), transparent 34%, transparent 66%, rgba(54, 181, 255, 0.06));
  pointer-events: none;
  opacity: 0.95;
  animation: ctaSurfaceShift 6.2s ease-in-out infinite;
}

.animated-cta::after {
  content: "";
  position: absolute;
  top: -46%;
  left: -28%;
  width: 5.8rem;
  height: 180%;
  background: linear-gradient(180deg, rgba(90, 241, 255, 0), rgba(112, 244, 255, 0.28), rgba(90, 241, 255, 0));
  opacity: 0.86;
  filter: blur(12px);
  transform: rotate(18deg);
  pointer-events: none;
  animation: ctaShineSweep 3.6s ease-in-out infinite;
}

.animated-cta > * {
  position: relative;
  z-index: 1;
}

.animated-cta.animated-cta-arrow span:last-child {
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.2s ease;
  animation: ctaArrowPulse 1.6s ease-in-out infinite;
}

.animated-cta:hover {
  background:
    linear-gradient(180deg, rgba(9, 16, 22, 0.98) 0%, rgba(3, 8, 14, 1) 100%) padding-box,
    linear-gradient(
      115deg,
      rgba(79, 171, 194, 0.38) 0%,
      rgba(137, 247, 255, 1) 16%,
      rgba(67, 151, 190, 0.3) 34%,
      rgba(79, 171, 194, 0.24) 48%,
      rgba(86, 225, 236, 0.96) 64%,
      rgba(79, 171, 194, 0.24) 82%,
      rgba(79, 171, 194, 0.38) 100%
    ) border-box;
  background-size: 100% 100%, 220% 220%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(96, 226, 244, 0.08),
    0 24px 52px rgba(4, 10, 18, 0.3);
  animation-duration: 2.6s;
}

.animated-cta.animated-cta-arrow:hover span:last-child {
  transform: translateX(3px);
}

.animated-cta-compact {
  min-width: 0;
  gap: 0.7rem;
  padding-inline: 1.1rem;
  font-size: 0.94rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 0 0 1px rgba(72, 184, 206, 0.05),
    0 14px 30px rgba(4, 10, 18, 0.18);
}

.animated-cta-compact::after {
  width: 4.8rem;
  opacity: 0.72;
}

.cta-primary-cta {
  min-width: min(100%, 24rem);
}

.desktop-only {
  display: inline-flex;
}

.mobile-nav-toggle {
  display: none;
}

.mobile-nav {
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-elevated) 94%, transparent);
}

.mobile-nav-inner {
  display: grid;
  gap: 0.9rem;
  padding: 1rem 0 1.2rem;
}

.mobile-nav-inner .button {
  width: 100%;
}

.hero-section,
.section-block {
  padding: 4rem 0;
}

.hero-section {
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-section::before {
  background:
    linear-gradient(90deg, rgba(3, 8, 16, 0.72) 0%, rgba(3, 8, 16, 0.42) 42%, rgba(3, 8, 16, 0.78) 100%),
    url("./files/agency_bg1.jpg") center center / cover no-repeat;
  opacity: 0.72;
}

.hero-section::after {
  background:
    url("./files/agency_form_section-bg.png") right -8rem center / min(44vw, 34rem) no-repeat;
  opacity: 0.62;
}

.hero-section > .container {
  position: relative;
  z-index: 1;
}

:root[data-theme="light"] .hero-section::before,
:root:not([data-theme="dark"]) .hero-section::before {
  background:
    linear-gradient(90deg, rgba(244, 248, 252, 0.82) 0%, rgba(244, 248, 252, 0.58) 42%, rgba(244, 248, 252, 0.9) 100%),
    url("./files/agency_bg2.jpg") center center / cover no-repeat;
  opacity: 0.96;
}

:root[data-theme="light"] .hero-section::after,
:root:not([data-theme="dark"]) .hero-section::after {
  opacity: 0.24;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  gap: 3rem;
  align-items: start;
}

.hero-copy {
  display: grid;
  gap: 1.4rem;
}

.eyebrow-badge,
.eyebrow-subtle,
.save-badge,
.testimonial-video-badge,
.plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  font-weight: 700;
}

.eyebrow-badge {
  padding: 0.7rem 1rem;
  color: var(--primary-deep);
  background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft));
  border: 1px solid color-mix(in srgb, var(--primary) 22%, transparent);
}

.eyebrow-subtle {
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #f4f8ff;
  border: 1px solid color-mix(in srgb, var(--feature-icon) 38%, transparent);
  background: rgba(8, 24, 38, 0.62);
}

.hero-title,
.section-intro h2,
.section-title-split,
.cta-title {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-title {
  display: grid;
  gap: 0.25rem;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
}

.hero-title-accent,
.cta-accent-top,
.cta-accent-bottom {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle,
.section-intro p,
.cta-panel p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.hero-actions {
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  color: var(--text-muted);
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-highlight-mark,
.feature-icon,
.step-icon,
.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-highlight-mark {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-size: 0.78rem;
}

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

.stat-card {
  padding: 1rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.stat-value {
  margin: 0 0 0.4rem;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.inbox-card,
.feature-card,
.step-card,
.pricing-card,
.testimonial-card,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 80%, transparent), color-mix(in srgb, var(--surface-2) 86%, transparent)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 65%);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.inbox-card {
  height: 560px;
  min-height: 560px;
  max-height: 560px;
  padding: 1.35rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  overflow: hidden;
}

.inbox-card-header,
.inbox-card-footer,
.inbox-item-top,
.inbox-item-body,
.testimonial-author {
  display: flex;
  align-items: center;
}

.inbox-card-header,
.inbox-card-footer {
  justify-content: space-between;
  gap: 1rem;
}

.inbox-title-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.inbox-title-group h2 {
  margin: 0;
  font-size: 1rem;
}

.inbox-icon,
.shield-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
}

.inbox-counter,
.save-badge,
.testimonial-video-badge,
.plan-badge {
  padding: 0.45rem 0.8rem;
  font-size: 0.82rem;
}

.inbox-counter {
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
}

.inbox-items {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-height: 0;
  overflow: hidden;
}

.inbox-item {
  padding: 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  animation: inboxEnter 0.45s ease;
}

.inbox-item.safe {
  background: color-mix(in srgb, var(--primary-soft) 78%, transparent);
  border-color: color-mix(in srgb, var(--primary) 28%, transparent);
}

.inbox-item.blocked {
  background: color-mix(in srgb, var(--danger-soft) 84%, transparent);
  border-color: color-mix(in srgb, var(--danger) 36%, transparent);
}

.inbox-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 0.8rem;
  font-weight: 800;
}

.inbox-item.safe .inbox-avatar {
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 14%, transparent);
}

.inbox-item.blocked .inbox-avatar {
  color: var(--danger);
  background: color-mix(in srgb, var(--danger) 16%, transparent);
}

.inbox-meta {
  min-width: 0;
  flex: 1;
}

.inbox-item-body {
  align-items: flex-start;
  gap: 0.8rem;
}

.inbox-item-top {
  justify-content: space-between;
  gap: 0.7rem;
}

.inbox-sender,
.inbox-subject {
  margin: 0;
}

.inbox-sender {
  font-size: 0.95rem;
  font-weight: 700;
}

.inbox-subject,
.inbox-time,
.inbox-threats,
.inbox-accuracy {
  color: var(--text-muted);
}

.inbox-subject {
  margin-top: 0.2rem;
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.inbox-time {
  font-size: 0.75rem;
}

.status-chip {
  font-size: 0.9rem;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
  display: grid;
  gap: 1rem;
}

.section-intro h2,
.section-title-split {
  font-size: clamp(1.7rem, 3.8vw, 3.15rem);
}

.section-title-split {
  display: inline-flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.feature-grid,
.steps-grid,
.pricing-grid,
.testimonial-grid {
  display: grid;
  gap: 1.3rem;
}

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

.feature-card,
.step-card,
.pricing-card,
.testimonial-card {
  position: relative;
}

.feature-card {
  min-height: 308px;
  padding: 1.7rem 1.5rem 1.9rem;
  border-radius: 20px;
  border: 1px solid var(--feature-border);
  background: var(--feature-surface);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--feature-icon) 32%, var(--feature-border));
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1.45rem;
  color: var(--feature-icon);
  background: transparent;
}

.step-icon {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1rem;
  margin-bottom: 1.1rem;
  font-size: 1.5rem;
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft));
}

.feature-card h3,
.step-card h3,
.pricing-card h3,
.testimonial-card h3 {
  margin: 0 0 0.7rem;
  font-family: "Space Grotesk", sans-serif;
}

.feature-card h3 {
  margin-bottom: 0.9rem;
  font-size: 1.15rem;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.99rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--text-muted) 92%, #ffffff 8%);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card p,
.step-card p,
.pricing-card p,
.testimonial-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  gap: 3.2rem;
  margin-top: 4.4rem;
  align-items: start;
}

.step-card {
  padding: 0 1.25rem;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 6.85rem;
  left: 18%;
  right: 18%;
  height: 1px;
  background: color-mix(in srgb, var(--line-strong) 70%, transparent);
}

.step-media {
  position: relative;
  display: inline-flex;
  margin-bottom: 2rem;
}

.step-icon {
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 1.35rem;
  margin: 0;
  color: var(--feature-icon);
  background: rgba(8, 52, 78, 0.88);
  border: 1px solid rgba(17, 211, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.step-card-2 .step-icon {
  background: rgba(39, 29, 79, 0.9);
  border-color: rgba(133, 92, 255, 0.28);
}

.step-card-3 .step-icon {
  background: rgba(13, 60, 44, 0.88);
  border-color: rgba(40, 216, 133, 0.24);
}

.step-icon svg {
  width: 52%;
  height: 52%;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-number {
  position: absolute;
  top: -0.95rem;
  right: -0.95rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.68);
  background: #11151d;
  border: 1px solid rgba(100, 122, 160, 0.24);
  font-weight: 700;
  font-size: 0.78rem;
  z-index: 2;
}

.step-card h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  line-height: 1.2;
  max-width: 19rem;
}

.step-card p {
  max-width: 22rem;
  font-size: 0.98rem;
  line-height: 1.72;
  color: color-mix(in srgb, var(--text-muted) 92%, #ffffff 8%);
}

.how-section .section-intro {
  max-width: 980px;
  margin-bottom: 1.2rem;
  gap: 1.25rem;
}

.how-section .section-title-split {
  font-size: clamp(2.55rem, 5.5vw, 4.9rem);
  gap: 0.7rem;
}

.how-section .section-intro p {
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.55;
}

@media (max-width: 960px) {
  .steps-grid::before {
    display: none;
  }

  .step-card {
    padding: 0;
  }

  .how-section .section-title-split {
    font-size: clamp(2rem, 9vw, 3.4rem);
  }
}

.billing-toggle {
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.billing-toggle span {
  font-weight: 700;
}

.billing-switch {
  width: 3.8rem;
  height: 2rem;
  padding: 0.2rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text) 11%, transparent);
  border: 1px solid var(--line);
}

.billing-switch-thumb {
  display: block;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transition: transform 0.25s ease;
}

.billing-switch.is-annual .billing-switch-thumb {
  transform: translateX(1.7rem);
}

.save-badge {
  color: #ffffff;
  background: linear-gradient(135deg, #1db954, #38d39f);
}

#pricing {
  position: relative;
  overflow: hidden;
}

#pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 7, 15, 0.08) 0%, rgba(3, 7, 15, 0.24) 38%, rgba(3, 7, 15, 0.52) 100%),
    url("./files/agency_bg2.jpg") center 78% / cover no-repeat;
  opacity: 0.52;
  pointer-events: none;
}

#pricing > .container {
  position: relative;
  z-index: 1;
}

:root[data-theme="light"] #pricing::before,
:root:not([data-theme="dark"]) #pricing::before {
  background:
    linear-gradient(180deg, rgba(244, 248, 252, 0.2) 0%, rgba(244, 248, 252, 0.58) 38%, rgba(244, 248, 252, 0.84) 100%),
    url("./files/agency_bg2.jpg") center 78% / cover no-repeat;
  opacity: 0.26;
}

.pricing-grid {
  align-items: stretch;
  gap: 1.25rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.15rem;
}

.pricing-card {
  position: relative;
  padding: 2rem 1.6rem 1.6rem;
  display: grid;
  grid-template-rows: auto auto auto;
  background:
    linear-gradient(180deg, rgba(12, 17, 27, 0.98) 0%, rgba(10, 15, 24, 0.98) 100%);
  border: 1px solid rgba(151, 183, 228, 0.11);
  border-radius: 26px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.015);
  overflow: visible;
}

.pricing-card.is-popular {
  background:
    linear-gradient(180deg, rgba(8, 24, 18, 0.98) 0%, rgba(8, 20, 16, 0.99) 100%);
  border-color: rgba(39, 201, 91, 0.52);
  box-shadow:
    0 20px 48px rgba(5, 8, 14, 0.32),
    0 0 30px rgba(39, 201, 91, 0.08);
}

.plan-badge-row {
  min-height: 1rem;
  position: relative;
  margin-bottom: 1.35rem;
}

.pricing-card.is-popular .plan-badge-row {
  z-index: 3;
}

.plan-badge {
  position: absolute;
  top: -2.45rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  white-space: nowrap;
  color: #ffffff;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #27c95a, #38d06d);
  box-shadow: 0 8px 20px rgba(39, 201, 91, 0.18);
  z-index: 4;
}

.plan-badge-spacer {
  display: block;
  width: 100%;
  height: 1px;
}

.pricing-card h3 {
  min-height: 3.6rem;
  display: flex;
  align-items: flex-start;
  font-size: 1.05rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin: 0;
}

.plan-head {
  display: grid;
  align-content: start;
  gap: 0;
}

.pricing-card.is-monthly .plan-head {
  min-height: 12.2rem;
}

.pricing-card.is-annual .plan-head {
  min-height: 15.4rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem;
  min-height: 4.4rem;
  margin: 0.15rem 0 0;
}

.plan-price-amount {
  font-size: 3rem;
  line-height: 0.96;
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
  white-space: nowrap;
}

.plan-price-period {
  font-size: 0.98rem;
}

.plan-price-period,
.plan-meta,
.pricing-features li {
  color: var(--text-muted);
}

.plan-meta {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

.plan-meta-label {
  margin-right: 0.25rem;
  color: var(--text);
  font-weight: 600;
}

.plan-meta-strong {
  color: var(--text);
  font-weight: 700;
}

.pricing-card.is-monthly .plan-meta {
  min-height: 2rem;
  padding-top: 0.35rem;
}

.pricing-card.is-annual .plan-meta {
  min-height: 5.9rem;
  padding-top: 0.6rem;
}

.pricing-card > .button {
  width: 100%;
  align-self: start;
  min-height: 3rem;
  border-radius: 16px;
  font-size: 0.98rem;
  margin-top: 0.15rem;
}

.pricing-card .button-outline {
  color: #f4f7ff;
  border-color: rgba(151, 183, 228, 0.12);
  background: rgba(24, 29, 39, 0.78);
  box-shadow: none;
}

.pricing-card .button-outline:hover {
  border-color: rgba(151, 183, 228, 0.18);
  background: rgba(28, 34, 46, 0.9);
}

.pricing-card .button-primary {
  color: #ffffff;
  background: #27c95a;
  box-shadow: 0 14px 28px rgba(39, 201, 90, 0.16);
}

.pricing-card .button-primary:hover {
  background: #30d264;
  box-shadow: 0 18px 34px rgba(39, 201, 90, 0.2);
}

:root[data-theme="light"] .pricing-card,
:root:not([data-theme="dark"]) .pricing-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 250, 255, 0.96) 100%);
  border-color: rgba(44, 78, 126, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 24px 48px rgba(17, 45, 84, 0.08);
}

:root[data-theme="light"] .pricing-card.is-popular,
:root:not([data-theme="dark"]) .pricing-card.is-popular {
  background:
    linear-gradient(180deg, rgba(242, 255, 247, 0.98) 0%, rgba(233, 252, 241, 0.98) 100%);
  border-color: rgba(39, 201, 91, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 28px 52px rgba(39, 201, 91, 0.1);
}

:root[data-theme="light"] .pricing-card h3,
:root[data-theme="light"] .plan-price-amount,
:root:not([data-theme="dark"]) .pricing-card h3,
:root:not([data-theme="dark"]) .plan-price-amount {
  color: #10233e;
}

:root[data-theme="light"] .plan-price-period,
:root[data-theme="light"] .plan-meta,
:root[data-theme="light"] .pricing-features li,
:root:not([data-theme="dark"]) .plan-price-period,
:root:not([data-theme="dark"]) .plan-meta,
:root:not([data-theme="dark"]) .pricing-features li {
  color: #5f7088;
}

:root[data-theme="light"] .plan-meta-label,
:root[data-theme="light"] .plan-meta-strong,
:root:not([data-theme="dark"]) .plan-meta-label {
  color: #10233e;
}

:root:not([data-theme="dark"]) .plan-meta-strong {
  color: #10233e;
}

:root[data-theme="light"] .pricing-card .button-outline,
:root:not([data-theme="dark"]) .pricing-card .button-outline {
  color: #10233e;
  border-color: rgba(44, 78, 126, 0.14);
  background: rgba(244, 248, 253, 0.92);
}

:root[data-theme="light"] .pricing-card .button-outline:hover,
:root:not([data-theme="dark"]) .pricing-card .button-outline:hover {
  border-color: rgba(44, 78, 126, 0.22);
  background: rgba(236, 243, 251, 0.98);
}

.pricing-features {
  margin: 1.55rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.96rem;
  line-height: 1.45;
}

.pricing-features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 800;
}

.pricing-features li::before {
  content: "";
  flex: 0 0 1.1rem;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.18rem;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Ccircle cx='9' cy='9' r='7' stroke='%230bd1ff' stroke-width='1.8'/%3E%3Cpath d='M6 9.25L8.15 11.35L12.2 6.95' stroke='%230bd1ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.pricing-trial {
  margin: 2.2rem 0 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0;
  letter-spacing: 0.01em;
}

.pricing-trial span {
  font-size: 0.98rem;
}

.pricing-trial::before {
  content: "✦";
  display: inline-flex;
  margin-right: 0.45rem;
  color: #f5b65f;
}

.pricing-trial-star {
  display: inline-flex;
  margin-right: 0.45rem;
  color: #f5b65f;
}

.pricing-trial::before {
  content: "\2726";
  font-size: 0.98rem;
}

.testimonial-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent, color-mix(in srgb, var(--primary-soft) 26%, transparent) 38%, transparent),
    transparent;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 7, 15, 0.18), rgba(3, 7, 15, 0.48)),
    url("./files/agency_bg2.jpg") center 24% / cover no-repeat;
  opacity: 0.42;
  pointer-events: none;
}

.testimonial-section > .container {
  position: relative;
  z-index: 1;
}

:root[data-theme="light"] .testimonial-section::before,
:root:not([data-theme="dark"]) .testimonial-section::before {
  opacity: 0.18;
  background:
    linear-gradient(180deg, rgba(245, 249, 253, 0.7), rgba(245, 249, 253, 0.88)),
    url("./files/agency_bg2.jpg") center 24% / cover no-repeat;
}

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

.testimonial-card {
  padding: 1.8rem;
}

.testimonial-card.is-video {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1.8rem;
  align-items: center;
}

.testimonial-video-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.video-trigger {
  width: 6rem;
  height: 6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 18px 44px rgba(11, 124, 255, 0.28);
  font-size: 1.75rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 1rem;
  color: #f7b500;
}

.testimonial-quote {
  margin: 0 0 1.2rem;
}

.testimonial-author {
  gap: 0.85rem;
}

.testimonial-author-meta {
  display: grid;
  gap: 0.2rem;
}

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

.testimonial-author-role {
  margin: 0;
  color: var(--text-muted);
}

.section-cta-row {
  justify-content: center;
  margin-top: 2.2rem;
}

.cta-panel {
  position: relative;
  padding: clamp(2rem, 4vw, 4rem);
  overflow: hidden;
  text-align: center;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(11, 124, 255, 0.16), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(23, 195, 178, 0.14), transparent 28%);
  pointer-events: none;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.2rem;
  border-radius: 1.4rem;
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft));
  font-size: 2rem;
}

.cta-title {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  font-size: clamp(1.9rem, 4.2vw, 3.6rem);
}

.cta-actions {
  margin-top: 1.5rem;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.cta-actions p {
  font-size: 0.98rem;
}

.site-footer {
  padding: 1.4rem 0 2.2rem;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-elevated) 80%, transparent);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-logo {
  width: 184px;
}

.footer-brand p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer-links {
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 22, 0.72);
  backdrop-filter: blur(8px);
}

.video-dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), 980px);
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.video-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #070d18;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  color: #ffffff;
  text-align: left;
}

.video-fallback-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.22), rgba(5, 10, 18, 0.88)),
    url("https://i.ytimg.com/vi/fucC_l6TNpI/hqdefault.jpg") center / cover no-repeat;
}

.video-fallback-content {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}

.video-fallback-kicker {
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.video-fallback-title {
  margin: 0 0 0.8rem;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.08;
  font-family: "Space Grotesk", sans-serif;
}

.video-fallback-text {
  margin: 0 0 1.4rem;
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

@media (max-width: 720px) {
  .video-dialog {
    width: min(calc(100% - 1rem), 420px);
    padding: 0.75rem;
  }

  .video-frame {
    width: min(100%, 360px);
    margin: 0 auto;
    padding-top: 177.78%;
    max-height: calc(100vh - 6rem);
  }

  .video-fallback {
    align-items: flex-end;
    padding: 1.25rem;
  }

  .video-fallback-backdrop {
    background:
      linear-gradient(180deg, rgba(5, 10, 18, 0.14), rgba(5, 10, 18, 0.86)),
      url("https://i.ytimg.com/vi/fucC_l6TNpI/hqdefault.jpg") center top / cover no-repeat;
  }

  .video-fallback-content {
    max-width: none;
  }

  .video-fallback-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }

  .video-fallback-text {
    font-size: 0.98rem;
    line-height: 1.55;
  }
}

[hidden] {
  display: none !important;
}

@keyframes bubbleDriftA {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(7vw, 5vh, 0) scale(1.08);
  }
}

@keyframes bubbleDriftB {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-6vw, 6vh, 0) scale(1.1);
  }
}

@keyframes bubbleDriftC {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(4vw, -7vh, 0) scale(1.12);
  }
}

@keyframes bubbleDriftD {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-5vw, -6vh, 0) scale(1.1);
  }
}

@keyframes ctaGlowPulse {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      inset 0 0 0 1px rgba(72, 184, 206, 0.06),
      0 18px 40px rgba(4, 10, 18, 0.26);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 0 0 1px rgba(97, 232, 246, 0.1),
      0 22px 48px rgba(4, 10, 18, 0.32),
      0 0 0 1px rgba(78, 214, 224, 0.1);
  }
}

@keyframes ctaBorderFlow {
  0% {
    background-position: 0 0, 0% 50%;
  }
  100% {
    background-position: 0 0, 200% 50%;
  }
}

@keyframes ctaSurfaceShift {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.88;
  }
  50% {
    transform: translateX(4%);
    opacity: 1;
  }
}

@keyframes ctaShineSweep {
  0% {
    transform: translate3d(-170%, 0, 0) rotate(18deg);
    opacity: 0;
  }
  18% {
    opacity: 0.9;
  }
  45% {
    transform: translate3d(390%, 0, 0) rotate(18deg);
    opacity: 0.7;
  }
  100% {
    transform: translate3d(390%, 0, 0) rotate(18deg);
    opacity: 0;
  }
}

@keyframes ctaArrowPulse {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
}

@keyframes inboxEnter {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .background-bubbles .bubble {
    animation: none;
  }

  .animated-cta,
  .animated-cta::before,
  .animated-cta::after,
  .animated-cta.animated-cta-arrow span:last-child {
    animation: none;
  }
}

@media (max-width: 1080px) {
  .feature-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .desktop-nav,
  .desktop-only {
    display: none;
  }

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

  .hero-grid,
  .footer-row {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 2.4rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card.is-video {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .brand-logo {
    width: 156px;
  }

  .hero-section,
  .section-block {
    padding: 3.2rem 0;
  }

  .hero-actions,
  .stats-grid,
  .feature-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlights,
  .billing-toggle,
  .header-row,
  .footer-brand {
    flex-wrap: wrap;
  }

  .header-row {
    padding: 0.85rem 0;
  }

  .billing-toggle {
    justify-content: flex-start;
  }

  .testimonial-card.is-video {
    grid-column: span 1;
  }

  .testimonial-video-badge,
  .plan-badge {
    position: static;
    margin-bottom: 1rem;
  }

  .pricing-card.is-popular .plan-badge {
    position: absolute;
    top: -2.45rem;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
  }
}
