:root {
  --bg: #060708;
  --bg-soft: #0c0d10;
  --bg-card: rgba(13, 15, 18, 0.86);
  --bg-card-strong: rgba(18, 20, 24, 0.94);
  --surface: rgba(255, 255, 255, 0.03);
  --line: rgba(255, 170, 75, 0.18);
  --line-strong: rgba(255, 170, 75, 0.34);
  --text: #f7f1e6;
  --muted: #d2c1ab;
  --muted-strong: #f2dbc2;
  --primary: #ff9f2e;
  --primary-strong: #ff6b0b;
  --primary-soft: rgba(255, 159, 46, 0.16);
  --success: #0099ff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1200px, calc(100vw - 2rem));
  --card-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  --card-shadow-hover: 0 34px 86px rgba(0, 0, 0, 0.42);
  --interactive-lift: translateY(-8px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top center, rgba(255, 166, 60, 0.08), transparent 26%),
    radial-gradient(circle at 78% 22%, rgba(98, 176, 255, 0.05), transparent 22%),
    linear-gradient(180deg, #030405 0%, #060708 38%, #090b0d 70%, #050607 100%);
  color: var(--text);
  font-family: "Sora", sans-serif;
}

.network-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.9;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
  pointer-events: none;
  z-index: -2;
}

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

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

a,
button,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.site-shell {
  position: relative;
  z-index: 0;
  overflow: clip;
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(84rem, 92vw);
  height: 38rem;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 171, 78, 0.09), transparent 68%);
  pointer-events: none;
  z-index: -1;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 999;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--primary);
  color: #160b04;
  font-weight: 700;
}

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

.section-anchor {
  scroll-margin-top: 6rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  padding-top: 1rem;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(8, 10, 12, 0.84);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.brand img {
  width: 2.65rem;
  height: 2.65rem;
  object-fit: contain;
  padding: 0.35rem;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 159, 46, 0.2), rgba(255, 107, 11, 0.32)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 188, 118, 0.25);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  transition:
    color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 188, 118, 0.12);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  padding: 0.25rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.45rem;
  height: 2px;
  margin: 0.32rem 0;
  border-radius: 999px;
  background: var(--text);
}

.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -140% auto auto -30%;
  width: 48%;
  height: 380%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: rotate(20deg) translateX(-220%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.button::after {
  content: "";
  position: absolute;
  inset: auto 14% -0.8rem;
  height: 1.25rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 170, 65, 0.22), transparent 72%);
  opacity: 0;
  transition: opacity 0.24s ease;
  pointer-events: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover::before,
.button:focus-visible::before {
  transform: rotate(20deg) translateX(420%);
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
}

.button.small {
  padding: 0.72rem 1rem;
  font-size: 0.9rem;
}

.button.full {
  width: 100%;
}

.button.primary {
  background: linear-gradient(135deg, var(--primary), #ffd08a);
  color: #160b04;
  box-shadow: 0 18px 38px rgba(255, 124, 23, 0.24);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 24px 48px rgba(255, 124, 23, 0.32);
}

.button.secondary,
.button.ghost {
  border-color: rgba(255, 188, 118, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button.secondary:hover,
.button.secondary:focus-visible,
.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: rgba(255, 188, 118, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  padding: 5.6rem 0 3.2rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  color: #ffbe74;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #ffd08a);
  box-shadow: 0 0 16px rgba(255, 159, 46, 0.55);
}

.hero h1,
.section-heading h2,
.split-copy h2,
.about-copy h2,
.contact-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.hero h1 {
  max-width: none;
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  color: #ffb316;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  word-spacing: 0.12em;
  font-size: clamp(1.28rem, 2.35vw, 2.25rem);
  line-height: 1.02;
  text-align: center;
  text-shadow:
    0 0 6px rgba(255, 179, 22, 0.35),
    0 0 14px rgba(255, 179, 22, 0.3),
    0 0 26px rgba(255, 179, 22, 0.22),
    0 0 44px rgba(255, 140, 0, 0.14);
  filter: drop-shadow(0 0 12px rgba(255, 179, 22, 0.22));
  animation: hero-title-neon-pulse 2.8s ease-in-out infinite;
}

.hero h1::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  background:
    linear-gradient(
      108deg,
      transparent 32%,
      rgba(255, 255, 255, 0.05) 41%,
      rgba(255, 255, 255, 0.82) 50%,
      rgba(255, 255, 255, 0.1) 59%,
      transparent 68%
    );
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.95;
}

@keyframes hero-title-neon-pulse {
  0%,
  100% {
    text-shadow:
      0 0 6px rgba(255, 179, 22, 0.35),
      0 0 14px rgba(255, 179, 22, 0.3),
      0 0 26px rgba(255, 179, 22, 0.22),
      0 0 44px rgba(255, 140, 0, 0.14);
    filter: drop-shadow(0 0 12px rgba(255, 179, 22, 0.22));
  }

  50% {
    text-shadow:
      0 0 8px rgba(255, 214, 102, 0.46),
      0 0 18px rgba(255, 179, 22, 0.42),
      0 0 34px rgba(255, 179, 22, 0.34),
      0 0 58px rgba(255, 140, 0, 0.22);
    filter: drop-shadow(0 0 18px rgba(255, 179, 22, 0.34));
  }
}

.hero-text,
.hero-lead,
.feature-card p,
.split-copy p,
.audience-copy p,
.faq-item p,
.about-copy p,
.company-card p,
.footer-column a,
.footer-column p {
  color: var(--muted);
  line-height: 1.78;
}

.hero-lead {
  max-width: 52rem;
  margin: 0 0 0.55rem;
  color: #fff4e4;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.62;
  text-align: center;
}

.hero-text {
  max-width: 62rem;
  margin: 0;
  color: #f4ede4;
  font-size: 0.98rem;
  line-height: 1.84;
  text-align: center;
  opacity: 0.88;
}

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

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  width: 100%;
  max-width: none;
}

.hero-copy-main {
  width: 100%;
}

.hero-copy-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-proof-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  margin-top: 1.4rem;
}

.hero-proof-grid span,
.trust-band-items span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 188, 118, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #f2dbc2;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.hero-proof-grid span::before,
.trust-band-items span::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #ffd08a);
  box-shadow: 0 0 14px rgba(255, 171, 78, 0.42);
}

.hero-visual {
  position: relative;
  width: 100%;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.8;
  z-index: -1;
}

.hero-visual::before {
  top: -4%;
  right: 2%;
  width: 13rem;
  height: 13rem;
  background: rgba(255, 107, 11, 0.18);
}

.hero-visual::after {
  left: -4%;
  bottom: -3%;
  width: 16rem;
  height: 16rem;
  background: rgba(255, 176, 87, 0.14);
}

.hero-frame,
.image-panel,
.feature-card,
.spotlight-card,
.audience-card,
.plan-card,
.faq-item,
.about-layout,
.footer-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--bg-card);
  backdrop-filter: blur(16px);
  box-shadow: var(--card-shadow);
}

.hero-frame,
.feature-card,
.spotlight-card,
.audience-card,
.plan-card,
.faq-item,
.about-layout,
.footer-card {
  transform: perspective(1400px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg)) translateY(0);
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-frame {
  position: relative;
  padding: 0;
  border: 1px solid rgba(255, 179, 22, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: none;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.hero-frame img {
  width: 100%;
  border-radius: 24px;
  transition: transform 0.5s ease, filter 0.35s ease;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: auto 4% -5%;
  height: 4rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 159, 46, 0.2), transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}

.hero .eyebrow {
  display: none;
}

.trust-band {
  display: grid;
  gap: 1rem;
  margin-top: 2.15rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(255, 188, 118, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(12, 14, 17, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.trust-band-title {
  color: #fff0d7;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.trust-band-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual::before,
.hero-visual::after {
  display: none;
}

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

.feature-card {
  position: relative;
  min-height: 100%;
  padding: 1.55rem 1.55rem 1.7rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 179, 22, 0.4), transparent 72%);
}

.feature-card::after {
  content: "";
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 179, 22, 0.16), transparent 68%);
  pointer-events: none;
}

.feature-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: #ffca86;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  color: #ffbf52;
  filter: drop-shadow(0 0 8px rgba(255, 179, 22, 0.22));
  transition: transform 0.28s ease, filter 0.28s ease;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.feature-card h2,
.audience-copy h3,
.company-card h2,
.footer-column h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.feature-card h2 {
  font-size: 1.15rem;
}

.feature-card p {
  margin: 0.95rem 0 0;
  font-size: 0.92rem;
}

.feature-card-accent {
  border-color: rgba(255, 179, 22, 0.32);
  background:
    radial-gradient(circle at top right, rgba(255, 179, 22, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--bg-card);
}

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

.metric-card {
  position: relative;
  padding: 1.35rem 1.3rem 1.45rem;
  border: 1px solid rgba(255, 188, 118, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(12, 14, 17, 0.82);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.metric-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 188, 118, 0.42), transparent 78%);
}

.metric-card strong {
  display: block;
  color: #ffbf52;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.metric-card h3 {
  margin: 0.9rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.metric-card p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.section {
  padding: 5.8rem 0;
}

.section-soft {
  position: relative;
}

.section-soft::before {
  content: "";
  position: absolute;
  inset: 4rem 0;
  background: none;
  pointer-events: none;
}

.section-heading {
  max-width: 54rem;
  margin-bottom: 0.4rem;
}

.section-intro {
  max-width: 48rem;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.section-heading h2,
.split-copy h2,
.about-copy h2,
.contact-heading h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.06;
}

.split-layout,
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 1.5rem;
  align-items: center;
}

.split-layout-reverse {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.image-panel {
  padding: 0.95rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.image-panel-plain {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.image-panel-plain img {
  border-radius: 0;
}

.image-panel img,
.audience-card img,
.about-media img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-xl) - 12px);
}

.split-copy,
.about-copy {
  position: relative;
}

.split-copy p,
.about-copy p {
  margin: 1rem 0 0;
}

.about-quote {
  position: relative;
  margin: 1.6rem 0;
  padding: 1.85rem 1.55rem 1.55rem 2.35rem;
  border: 1px solid rgba(255, 188, 118, 0.18);
  border-radius: calc(var(--radius-lg) - 2px);
  background:
    radial-gradient(circle at top left, rgba(255, 159, 46, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.about-quote::before,
.about-quote::after {
  position: absolute;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.6rem, 7vw, 5.6rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 191, 120, 0.28);
  pointer-events: none;
}

.about-quote::before {
  content: "\201C";
  top: -0.25rem;
  left: 1.1rem;
}

.about-quote::after {
  content: "\201D";
  right: 1.05rem;
  bottom: -1.6rem;
}

.about-quote p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-left: 1.4rem;
  border-left: 2px solid rgba(255, 159, 46, 0.3);
}

.about-quote p + p {
  margin-top: 1rem;
}

.spotlight-card {
  padding: 1.7rem;
  border-radius: var(--radius-xl);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.spotlight-card-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
  gap: 2rem;
  align-items: center;
}

.spotlight-copy {
  max-width: none;
  order: 2;
}

.showcase-image {
  order: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin: -1.7rem 0 -1.7rem -1.7rem;
  padding: 1rem 0 1rem 1rem;
}

.showcase-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(255, 179, 22, 0.18);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}

.spotlight-card-showcase-right .spotlight-copy {
  order: 1;
}

.showcase-image-right {
  order: 2;
  justify-content: flex-end;
  margin: -1.7rem -1.7rem -1.7rem 0;
  padding: 1rem 1rem 1rem 0;
}

.bullet-list,
.plan-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.bullet-list li,
.plan-list li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--muted-strong);
}

.bullet-list li::before,
.plan-list li::before {
  content: "";
  position: absolute;
  top: 0.66rem;
  left: 0;
  width: 0.66rem;
  height: 0.66rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #ffd08a);
}

.spotlight-card .button {
  margin-top: 1.8rem;
}

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

.audience-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.audience-card img {
  transition: transform 0.5s ease, filter 0.35s ease;
}

.audience-copy {
  padding: 1.45rem 1.45rem 1.7rem;
}

.audience-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 159, 46, 0.12);
  border: 1px solid rgba(255, 159, 46, 0.18);
  color: #ffcf98;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.audience-copy h3 {
  margin-top: 1rem;
  font-size: 1.35rem;
}

.audience-copy p {
  margin: 0.95rem 0 0;
}

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

.plan-card {
  display: flex;
  flex-direction: column;
  padding: 1.55rem;
  border-radius: var(--radius-xl);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 2rem;
  margin-bottom: 0.95rem;
  padding: 0.38rem 0.7rem;
  border: 1px solid rgba(255, 188, 118, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffd09a;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-badge-highlight {
  border-color: rgba(255, 188, 118, 0.3);
  background: rgba(255, 165, 65, 0.14);
  color: #fff0d7;
  box-shadow: 0 8px 22px rgba(255, 130, 22, 0.14);
}

.plan-card.featured {
  position: relative;
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at top right, rgba(255, 159, 46, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--bg-card-strong);
  transform: perspective(1400px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg)) translateY(-0.5rem);
}

.plan-card.featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 209, 138, 0.9), rgba(255, 159, 46, 0.2));
}

.plan-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.plan-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.plan-price {
  text-align: right;
}

.plan-price strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.plan-price span,
.plan-note {
  color: var(--muted);
}

.plan-note {
  margin: 1rem 0 0;
  font-weight: 600;
}

.plan-summary {
  margin: 1rem 0 0;
  color: #f3dfc7;
  line-height: 1.74;
}

.plan-list {
  margin-top: 1.4rem;
  flex: 1;
}

.plan-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
  padding-right: 0.1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(0, 153, 255, 0.2);
  color: #8dd2ff;
  font-size: 0.72rem;
  font-weight: 700;
}

.pricing-grid .button.full {
  min-height: 3.45rem;
  padding-top: 1.12rem;
  padding-bottom: 1.12rem;
  margin-top: 1.15rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.faq-item {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--muted-strong);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: #ffcf98;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.24s ease, color 0.24s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0.9rem 0 0;
}

.about-layout {
  grid-template-columns: minmax(16rem, 35%) minmax(0, 65%);
  align-items: start;
  padding: 1rem;
  border-radius: calc(var(--radius-xl) + 6px);
  box-shadow: var(--shadow);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.about-media {
  position: relative;
  align-self: start;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: auto 6% -6% auto;
  width: 11rem;
  height: 11rem;
  border-radius: 999px;
  background: rgba(255, 159, 46, 0.16);
  filter: blur(18px);
  z-index: -1;
}

.footer {
  padding: 1rem 0 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.footer-card {
  height: 100%;
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.footer-unified {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1.2rem;
}

.footer-panel {
  min-width: 0;
  padding: 0.35rem;
}

.footer-meta {
  display: grid;
  grid-template-columns: minmax(14.5rem, 0.66fr) minmax(0, 1.34fr);
  gap: 1.15rem;
  align-items: start;
}

.company-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.company-brand img {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
  padding: 0.35rem;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 159, 46, 0.22), rgba(255, 107, 11, 0.34)),
    rgba(255, 255, 255, 0.04);
}

.company-card h2 {
  margin: 0;
  font-size: 1rem;
}

.company-seal {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  margin-bottom: 0.7rem;
  padding: 0.34rem 0.62rem;
  border: 1px solid rgba(255, 188, 118, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #ffd09a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-card p {
  margin: 0.32rem 0 0;
  font-size: 0.9rem;
  line-height: 1.42;
}

.links-card {
  display: grid;
  grid-template-columns: minmax(8.75rem, 0.92fr) minmax(7.75rem, 0.86fr) minmax(15.5rem, 1.3fr);
  gap: 1rem;
  align-items: start;
}

.footer-column {
  min-width: 0;
}

.footer-column h3 {
  margin-bottom: 0.95rem;
  font-size: 0.88rem;
}

.footer-column a,
.footer-column p {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.4;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.links-card .footer-column:first-child a {
  white-space: nowrap;
}

.footer-column-contact {
  min-width: 15.5rem;
}

.footer-column-contact a {
  white-space: nowrap;
  overflow-wrap: normal;
}

.footer-whatsapp {
  margin-top: 1rem;
  align-self: flex-start;
  white-space: nowrap;
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.9rem;
  height: 3.9rem;
  padding: 0;
  border-radius: 999px;
  background: #25d366;
  color: #062913;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.26);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #fff;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.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;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

.feature-grid > :nth-child(2),
.metrics-grid > :nth-child(2),
.pricing-grid > :nth-child(2),
.faq-list > :nth-child(2) {
  transition-delay: 0.08s;
}

.feature-grid > :nth-child(3),
.metrics-grid > :nth-child(3),
.pricing-grid > :nth-child(3),
.faq-list > :nth-child(3) {
  transition-delay: 0.16s;
}

.feature-grid > :nth-child(4),
.metrics-grid > :nth-child(4),
.faq-list > :nth-child(4) {
  transition-delay: 0.24s;
}

.feature-grid > :nth-child(5),
.faq-list > :nth-child(5) {
  transition-delay: 0.32s;
}

.feature-grid > :nth-child(6),
.faq-list > :nth-child(6) {
  transition-delay: 0.4s;
}

.navbar:hover {
  border-color: rgba(255, 188, 118, 0.28);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.32);
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
}

.brand:hover img,
.brand:focus-visible img {
  transform: rotate(-4deg) scale(1.03);
  box-shadow: 0 10px 22px rgba(255, 124, 23, 0.18);
}

.hero-frame:hover {
  transform: perspective(1400px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg)) translateY(-8px);
  border-color: rgba(255, 188, 118, 0.3);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

.hero-frame:hover img {
  transform: scale(1.012);
  filter: saturate(1.02);
}

.feature-card:hover,
.feature-card:focus-within,
.metric-card:hover,
.metric-card:focus-within,
.spotlight-card:hover,
.spotlight-card:focus-within,
.audience-card:hover,
.audience-card:focus-within,
.plan-card:hover,
.plan-card:focus-within,
.faq-item:hover,
.faq-item:focus-within,
.about-layout:hover,
.footer-card:hover {
  transform: perspective(1400px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg)) translateY(-8px);
  border-color: rgba(255, 188, 118, 0.28);
  box-shadow: var(--card-shadow-hover);
}

.hero-proof-grid span:hover,
.hero-proof-grid span:focus-visible,
.trust-band-items span:hover,
.trust-band-items span:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 188, 118, 0.28);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.feature-card:hover .feature-icon,
.feature-card:focus-within .feature-icon {
  transform: scale(1.08) translateY(-2px);
  filter: drop-shadow(0 0 14px rgba(255, 179, 22, 0.32));
}

.feature-card:hover::after,
.feature-card:focus-within::after {
  background: radial-gradient(circle, rgba(255, 179, 22, 0.24), transparent 68%);
}

.spotlight-card:hover .showcase-image img,
.spotlight-card:focus-within .showcase-image img {
  transform: scale(1.02);
  border-color: rgba(255, 188, 118, 0.3);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.28);
}

.audience-card:hover img,
.audience-card:focus-within img {
  transform: scale(1.04);
  filter: saturate(1.04);
}

.metric-card:hover strong,
.metric-card:focus-within strong {
  text-shadow: 0 0 20px rgba(255, 179, 22, 0.18);
}

.plan-card:hover .plan-price strong,
.plan-card:focus-within .plan-price strong {
  color: #ffd08a;
  text-shadow: 0 0 18px rgba(255, 179, 22, 0.18);
}

.faq-item:hover summary::after,
.faq-item:focus-within summary::after,
.faq-item[open] summary::after {
  transform: scale(1.12);
  color: #ffd08a;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--text);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 24px 42px rgba(37, 211, 102, 0.34);
}

:focus-visible {
  outline: 2px solid rgba(255, 188, 118, 0.58);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .hero-layout,
  .split-layout,
  .split-layout-reverse,
  .about-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-unified {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-copy {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .spotlight-card-showcase {
    grid-template-columns: 1fr;
  }

  .spotlight-copy,
  .showcase-image {
    order: initial;
  }

  .showcase-image {
    margin: 0 -1.7rem -1.7rem;
    padding: 0;
    justify-content: center;
  }

  .showcase-image img {
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  }

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

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

  .plan-card.featured {
    transform: none;
  }
}

@media (max-width: 860px) {
  .topbar {
    padding-top: 0.75rem;
  }

  .navbar {
    position: relative;
    align-items: flex-start;
    border-radius: 28px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(10, 8, 6, 0.96);
    backdrop-filter: blur(18px);
  }

  .feature-card:hover,
  .feature-card:focus-within,
  .spotlight-card:hover,
  .spotlight-card:focus-within,
  .audience-card:hover,
  .audience-card:focus-within,
  .plan-card:hover,
  .plan-card:focus-within,
  .faq-item:hover,
  .faq-item:focus-within,
  .about-layout:hover,
  .footer-card:hover {
    transform: perspective(1400px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg)) translateY(-4px);
  }

  .navbar.is-open .nav-links {
    display: flex;
  }

  .feature-grid,
  .pricing-grid,
  .metrics-grid,
  .audience-grid,
  .links-card {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 100%;
  }

  .footer-grid {
    gap: 0.9rem;
  }
}

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

  .hero {
    padding-top: 4rem;
  }

  .hero h1 {
    font-size: clamp(1.2rem, 5.8vw, 1.75rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-proof-grid,
  .trust-band-items {
    gap: 0.6rem;
  }

  .hero-proof-grid span,
  .trust-band-items span {
    width: 100%;
    justify-content: center;
  }

  .section,
  .footer {
    padding-top: 4.6rem;
    padding-bottom: 4.6rem;
  }

  .hero-frame,
  .image-panel,
  .spotlight-card,
  .about-layout,
  .footer-card {
    padding: 1rem;
  }

  .plan-card,
  .feature-card,
  .faq-item {
    padding: 1.15rem;
  }

  .whatsapp-float {
    width: 3.6rem;
    height: 3.6rem;
  }
}

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

  * {
    animation: none !important;
    transition: none !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .network-bg {
    display: none;
  }

  .feature-card:hover,
  .feature-card:focus-within,
  .spotlight-card:hover,
  .spotlight-card:focus-within,
  .audience-card:hover,
  .audience-card:focus-within,
  .plan-card:hover,
  .plan-card:focus-within,
  .faq-item:hover,
  .faq-item:focus-within,
  .about-layout:hover,
  .footer-card:hover,
  .button:hover,
  .button:focus-visible,
  .whatsapp-float:hover,
  .whatsapp-float:focus-visible {
    transform: none;
  }
}
