/* GetTestified — Marketing site tokens & layout */

:root {
  --bg-deep: #05060a;
  --bg: #07080d;
  --bg-elevated: #0c0e14;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.09);
  --border-glow: rgba(59, 130, 246, 0.35);
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --text-soft: #64748b;
  --accent: #2563eb;
  --accent-bright: #3b82f6;
  --accent-muted: rgba(37, 99, 235, 0.12);
  --cyan: #06b6d4;
  --success: #22c55e;
  --danger: #f87171;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.55);
  --shadow-card: 0 0 0 1px var(--border), 0 20px 50px rgba(0, 0, 0, 0.35);
  --header-h: 72px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

::selection {
  background: rgba(37, 99, 235, 0.35);
  color: var(--text);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button {
  font: inherit;
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 2000;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

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

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Page loader */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background: var(--bg-deep);
  transition: opacity 0.55s var(--ease-out), visibility 0.55s;
}

.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: loader-pop 0.7s var(--ease-out);
}

@keyframes loader-pop {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(8px);
  }
}

.page-loader__logo {
  width: auto;
  height: auto;
  max-height: 88px;
  max-width: min(220px, 70vw);
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  box-shadow: 0 16px 50px rgba(37, 99, 235, 0.25);
  animation: pulse-loader-logo 1.2s ease-in-out infinite;
}

@keyframes pulse-loader-logo {
  50% {
    transform: scale(1.04);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
  }
}

.page-loader__text {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}

/* Header */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(7, 8, 13, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.header-inner {
  width: min(1180px, 94vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-width: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--text);
}

.logo__img {
  display: block;
  height: 44px;
  width: auto;
  max-height: 44px;
  max-width: min(240px, 46vw);
  object-fit: contain;
  object-position: left center;
  border-radius: 10px;
}

.logo--footer .logo__img {
  height: 44px;
  max-height: 44px;
  max-width: min(220px, 55vw);
}

.nav {
  margin-left: auto;
  min-width: 0;
}

.nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.nav__list a {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.nav__list a:hover {
  color: var(--text);
  background: var(--surface);
}

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

/* Prevent header overflow on medium screens */
@media (max-width: 1140px) {
  .logo__img {
    height: 40px;
    max-height: 40px;
    max-width: min(190px, 38vw);
  }

  .nav__list a {
    padding: 0.45rem 0.7rem;
  }

  /* keep primary CTA, hide secondary socials first */
  .header-actions a:nth-child(3),
  .header-actions a:nth-child(4) {
    display: none;
  }
}

@media (max-width: 1040px) {
  .logo__img {
    height: 38px;
    max-height: 38px;
    max-width: min(170px, 36vw);
  }

  .nav__list a {
    padding: 0.4rem 0.6rem;
    font-size: 0.9rem;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.65rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.nav-toggle__bar {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .header-actions {
    display: none;
  }

  .nav__list {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(var(--header-h) + 8px);
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.85rem;
    background: rgba(12, 14, 20, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out),
      visibility 0.25s;
  }

  .nav__list.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__list a {
    width: 100%;
    padding: 0.75rem 1rem;
  }

  body.nav-open .site-footer,
  body.nav-open main {
    pointer-events: none;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.72rem 1.35rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.25s, background 0.25s,
    border-color 0.25s, color 0.25s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #1d4ed8 100%);
  color: white;
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn--primary:hover {
  box-shadow: 0 14px 44px rgba(37, 99, 235, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn--secondary {
  background: var(--surface-strong);
  color: var(--text);
  border-color: var(--border);
}

.btn--secondary:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}

.btn--ghost:hover {
  color: var(--text);
  border-color: var(--text-soft);
}

.btn--block {
  width: 100%;
}

.btn__icon {
  flex-shrink: 0;
}

.btn__spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
}

.btn.is-busy .btn__label {
  opacity: 0.7;
}
.btn.is-busy .btn__spinner {
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Sections */

main {
  padding-top: var(--header-h);
}

.section {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.section--tight {
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(12, 14, 20, 0.5) 0%, transparent 100%);
}

.section--cta {
  background: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(37, 99, 235, 0.18), transparent);
  padding-bottom: clamp(5rem, 14vw, 9rem);
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}

.eyebrow--center {
  display: inline-block;
  width: 100%;
}

.section-title {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.section-title--left {
  text-align: left;
}

.section-desc {
  margin: 0 auto;
  max-width: 52ch;
  font-size: 1.0625rem;
  color: var(--text-soft);
}

.section-desc--left {
  margin: 0 0 1.75rem;
  max-width: 48ch;
  text-align: left;
}

.text-gradient {
  background: linear-gradient(135deg, #93c5fd 0%, var(--accent-bright) 46%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero */

.hero {
  padding-bottom: clamp(3rem, 8vw, 5rem);
  overflow: clip;
}

.hero__glow {
  pointer-events: none;
  position: absolute;
  top: -160px;
  left: 50%;
  translate: -50% 0;
  width: min(900px, 120vw);
  height: 480px;
  background: radial-gradient(ellipse closest-side, rgba(37, 99, 235, 0.24), transparent);
  opacity: 0.9;
}

.hero__grid {
  position: relative;
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

.hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.25rem, 5.5vw, 3.45rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text);
}

.hero__sub {
  margin: 0 0 1.75rem;
  font-size: 1.125rem;
  color: var(--text-soft);
}

.hero__sub strong {
  color: var(--text-muted);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.hero__trust {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9375rem;
  color: var(--text-soft);
}

.hero__trust svg {
  color: var(--success);
  flex-shrink: 0;
}

/* Device mock */

.hero__visual {
  position: relative;
}

.device-frame {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 0.85rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card), var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: float-device 14s ease-in-out infinite;
}

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

@media (prefers-reduced-motion: reduce) {
  .device-frame {
    animation: none;
  }
}

.device-frame__chrome {
  display: flex;
  gap: 6px;
  margin-bottom: 0.75rem;
  padding-left: 0.25rem;
}

.device-frame__chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.device-frame__chrome span:nth-child(1) {
  background: #f87171;
}
.device-frame__chrome span:nth-child(2) {
  background: #fbbf24;
}
.device-frame__chrome span:nth-child(3) {
  background: #22c55e;
}

.device-frame__screen {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #0f1118 0%, #08090e 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.dash {
  padding: 1.25rem 1.35rem 1.5rem;
}

.dash__top {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.dash__badge {
  align-self: flex-start;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dash__badge--ok {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.dash__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
}

.dash__stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.dash__stat {
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.dash__stat-val {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
}

.dash__stat-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.dash__bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  margin-bottom: 1.25rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

.dash__bar {
  flex: 1;
  height: var(--h);
  min-height: 12%;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--accent-bright), rgba(37, 99, 235, 0.4));
  animation: bar-pulse 2.8s ease-in-out infinite alternate;
}

.dash__bar:nth-child(2) {
  animation-delay: 0.2s;
}
.dash__bar:nth-child(3) {
  animation-delay: 0.4s;
}
.dash__bar:nth-child(4) {
  animation-delay: 0.55s;
}
.dash__bar:nth-child(5) {
  animation-delay: 0.7s;
}

@keyframes bar-pulse {
  from {
    opacity: 0.55;
    filter: brightness(0.95);
  }
  to {
    opacity: 1;
    filter: brightness(1.08);
  }
}

.dash__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--success);
}

.dash__pill {
  font-size: 0.8125rem;
  color: var(--text-soft);
}

/* Floating cards hero */

.glass-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(12, 14, 20, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.glass-card--sm {
  padding: 0.85rem 1rem;
  font-size: 0.8125rem;
  color: var(--text-soft);
}

.glass-card--sm strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.hero__floating {
  position: absolute;
}

.hero__floating--one {
  top: -4%;
  right: -8%;
}

.hero__floating--two {
  bottom: 14%;
  left: -14%;
}

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

.hero__footnote {
  margin: 0.85rem 0 0;
  font-size: 0.6875rem;
  color: var(--text-soft);
  max-width: 28ch;
  margin-inline: auto;
  text-align: center;
  opacity: 0.85;
}

/* Glass panels (shared) */

.glass-panel {
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 1.85rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s var(--ease-out), transform 0.35s var(--ease-out),
    box-shadow 0.35s;
}

.glass-panel:hover {
  border-color: rgba(59, 130, 246, 0.25);
}

/* Stats */

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 1.35rem);
}

@media (max-width: 920px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stats__number {
  display: block;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats__number span[data-count] {
  font-variant-numeric: tabular-nums;
}

.stats__label {
  font-size: 0.9375rem;
  color: var(--text-soft);
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 860px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step-card__idx {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent-bright);
  opacity: 0.95;
}

.step-card__title {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.step-card__text {
  margin: 0;
  font-size: 0.9625rem;
  color: var(--text-soft);
}

/* Features grid */

.card-grid {
  display: grid;
  gap: 1.15rem;
}

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

.span-2-md {
  grid-column: span 2;
}

@media (max-width: 1100px) {
  .card-grid--5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .span-2-md {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .card-grid--5,
  .card-grid--5 .span-2-md {
    grid-template-columns: 1fr;
    grid-column: auto;
  }
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  border-radius: 14px;
  background: var(--accent-muted);
  color: var(--accent-bright);
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.feature-card__title {
  margin: 0 0 0.6rem;
  font-size: 1.0825rem;
  font-weight: 700;
  color: var(--text);
}

.feature-card__text {
  margin: 0;
  font-size: 0.9175rem;
  color: var(--text-soft);
}

/* Testimonials */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

@media (max-width: 940px) {
  .testimonials {
    grid-template-columns: 1fr;
  }
}

.testimonial {
  display: flex;
  flex-direction: column;
}

.testimonial__quote {
  margin: 0 0 1.35rem;
  font-size: 1rem;
  line-height: 1.62;
  color: var(--text-muted);
}

.testimonial__meta {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), rgba(6, 182, 212, 0.25));
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text);
}

.testimonial__name {
  font-style: normal;
  font-weight: 700;
  color: var(--text);
  display: block;
}

.testimonial__role {
  font-size: 0.8125rem;
  color: var(--text-soft);
}

.testimonial__stars {
  color: #fbbf24;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
}

/* Pricing */

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

.pricing--split {
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  max-width: 1020px;
  margin-inline: auto;
}

@media (max-width: 960px) {
  .pricing {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .pricing--split {
    grid-template-columns: 1fr;
    align-items: stretch;
    max-width: 420px;
  }
}

.price-card {
  position: relative;
  padding-top: clamp(2rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
  will-change: transform;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.32), var(--shadow-card);
}

.price-card__ribbon {
  position: absolute;
  top: -1px;
  right: 1.35rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-bright), var(--cyan));
  color: var(--bg-deep);
}

.price-card__name {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
}

.price-card__price {
  margin: 0 0 1.25rem;
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--text);
}

.price-card__list {
  margin: 0 0 1.6rem;
  padding: 0;
  list-style: none;
  flex-grow: 1;
  font-size: 0.9425rem;
  color: var(--text-soft);
}

.price-card__list li {
  margin-bottom: 0.75rem;
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  column-gap: 0.65rem;
  line-height: 1.45;
  text-align: left;
}

.price-card__list li:last-child {
  margin-bottom: 0;
}

.price-card__icon {
  flex-shrink: 0;
  margin-top: 0;
  color: var(--success);
}

.price-card--featured {
  background: radial-gradient(120% 90% at 50% 0%, rgba(6, 182, 212, 0.16), rgba(37, 99, 235, 0.06) 45%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(34, 211, 238, 0.38);
  transform: scale(1.03);
  box-shadow: 0 34px 80px rgba(6, 182, 212, 0.16), 0 28px 70px rgba(37, 99, 235, 0.18), var(--shadow-card);
}

.price-card--featured:hover {
  transform: scale(1.05);
  border-color: rgba(103, 232, 249, 0.65);
  box-shadow: 0 40px 95px rgba(6, 182, 212, 0.2), 0 32px 80px rgba(37, 99, 235, 0.2), var(--shadow-card);
}

/* Premium but not "most popular" */
.price-card--priority {
  border-color: rgba(34, 211, 238, 0.38);
}

.price-card--priority:hover {
  border-color: rgba(103, 232, 249, 0.65);
}

.price-card__fineprint {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--text-soft);
}

@media (max-width: 960px) {
  .price-card--featured {
    transform: none;
  }

  .price-card--featured:hover {
    transform: translateY(-6px);
  }
}

.pricing-note {
  text-align: center;
  padding: 1.15rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  justify-self: center;
  align-self: stretch;
  width: min(420px, 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}

.pricing-trust {
  margin: 0.25rem 0 0.35rem;
  color: var(--text-muted);
}

.pricing-fineprint {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.pricing-fineprint a {
  color: var(--accent-bright);
  text-decoration: underline;
  text-decoration-color: rgba(59, 130, 246, 0.5);
  text-underline-offset: 3px;
}

.pricing-fineprint a:hover {
  text-decoration-color: rgba(147, 197, 253, 0.85);
}

/* FAQ */

.faq {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq__item {
  overflow: clip;
}

.faq__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0;
  padding-block: 0.85rem;
  margin: -0.5rem -1rem;
  padding-inline: 1rem;
  margin-block: calc(-1 * 0.5rem + 1px);
  background: transparent;
  border: 0;
  color: var(--text);
  font-weight: 600;
  font-size: 1.0625rem;
  text-align: left;
}

.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
  position: relative;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background: currentColor;
  transition: rotate 0.3s var(--ease-out), opacity 0.3s;
}

.faq__icon::before {
  width: 12px;
  height: 2px;
}
.faq__icon::after {
  width: 2px;
  height: 12px;
}

.faq__trigger[aria-expanded="true"] .faq__icon::after {
  rotate: 90deg;
  opacity: 0;
}

.faq__panel {
  overflow: hidden;
  transition: grid-template-rows 0.38s var(--ease-out), opacity 0.35s;
}

.faq__panel:not([hidden]) {
  animation: fade-panel 0.35s ease;
}

@keyframes fade-panel {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
}

.faq__panel p {
  margin: 0;
  padding: 0.25rem 0 1.15rem;
  font-size: 0.97rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* CTA + Contact */

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (max-width: 900px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.contact-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
}

.contact-card__subtitle {
  margin: 0 0 1.5rem;
  font-size: 0.9425rem;
  color: var(--text-soft);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-row label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.82rem 1rem;
  font: inherit;
  color: var(--text);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(148, 163, 184, 0.6);
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-row.has-error input,
.form-row.has-error textarea,
.form-row.has-error select {
  border-color: rgba(248, 113, 113, 0.6);
}

.field-error {
  min-height: 1.25em;
  font-size: 0.8125rem;
  color: var(--danger);
}

.form-status {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  min-height: 1.35em;
  color: var(--success);
}

.form-status[data-tone="warn"] {
  color: var(--danger);
}

/* Footer */

.site-footer {
  padding: clamp(3rem, 8vw, 4.5rem) 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-tagline {
  margin: 1rem 0 0;
  max-width: 28ch;
  font-size: 0.9425rem;
  color: var(--text-soft);
}

.footer-heading {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
}

.footer-col p {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.footer-col a {
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent-bright);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-soft);
}

.footer-legal {
  margin: 0;
  font-size: 0.785rem;
  opacity: 0.85;
  max-width: 44ch;
  text-align: right;
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-legal {
    text-align: left;
  }
}

/* FAB */

.fab {
  position: fixed;
  right: 1.35rem;
  bottom: calc(1.35rem + env(safe-area-inset-bottom));
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.fab__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
}

.fab__btn:hover {
  transform: scale(1.06);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.fab__btn:active {
  transform: scale(0.97);
}

.fab__btn--wa {
  background: linear-gradient(145deg, #25d366, #128c7e);
  color: white;
}

.fab__btn--ig {
  background: linear-gradient(
    145deg,
    #f58529,
    #dd2a7b 45%,
    #8134af 70%,
    #515bd4
  );
  color: white;
}

.fab__btn--fb {
  background: linear-gradient(145deg, #1877f2, #0c63d4);
  color: white;
}

.fab__btn--x {
  background: linear-gradient(145deg, #111827, #000000);
  color: white;
}

/* Motion / reveal */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: calc(var(--reveal-delay, 0s));
}

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

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none;
  }
}
