/* BRANDICA landing — responsive */
:root {
  --brand-red: #e63946;
  --brand-orange: #ff6b35;
  --brand-black: #1a1a1a;
  --brand-slate: #161a23;
  --brand-gray-50: #fafafa;
  --brand-gray-100: #f0f0f2;
  --brand-gray-600: #5c5c66;
  --white: #ffffff;
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow-soft: 0 12px 40px rgba(26, 26, 26, 0.08);
  --header-h: 72px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

/* Theme (default: light). Dark mode overrides variables + a few hard-coded colors. */
html[data-theme="dark"] {
  --brand-black: #f2f4f8;
  --brand-slate: #e7ebf2;
  --brand-gray-50: #0b0e13;
  --brand-gray-100: #141a24;
  --brand-gray-600: rgba(242, 244, 248, 0.72);
  --white: #0c1016;
  --shadow-soft: 0 14px 60px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--brand-black);
  background:
    radial-gradient(circle at 1px 1px, rgba(22, 26, 35, 0.035) 1px, transparent 1px)
      0 0 / 26px 26px,
    repeating-linear-gradient(
      135deg,
      rgba(22, 26, 35, 0.02) 0px,
      rgba(22, 26, 35, 0.02) 1px,
      transparent 1px,
      transparent 18px
    ),
    var(--white);
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 1px 1px, rgba(242, 244, 248, 0.035) 1px, transparent 1px)
      0 0 / 26px 26px,
    repeating-linear-gradient(
      135deg,
      rgba(242, 244, 248, 0.02) 0px,
      rgba(242, 244, 248, 0.02) 1px,
      transparent 1px,
      transparent 18px
    ),
    var(--white);
}

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

/* Subtle scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

a {
  color: var(--brand-red);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--brand-gray-100);
}

.site-header .inner {
  position: relative;
}

html[data-theme="dark"] .site-header {
  background: rgba(12, 16, 22, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-link:hover {
  text-decoration: none;
  opacity: 0.9;
}

.logo-link img {
  height: clamp(28px, 5vw, 36px);
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  color: var(--brand-black);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
}

.nav-desktop a:hover {
  color: var(--brand-red);
}

.nav-desktop a.btn-primary {
  position: relative;
  top: -1px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brand-black);
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.25rem 1.25rem;
  border-bottom: 1px solid var(--brand-gray-100);
  background: var(--white);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  color: var(--brand-black);
  font-weight: 600;
  padding: 0.35rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(230, 57, 70, 0.45);
}

/* Theme toggle */
.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid var(--brand-gray-100);
  background: rgba(255, 255, 255, 0.7);
  color: var(--brand-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease,
    box-shadow 0.15s ease, background 0.15s ease;
}

.theme-toggle:hover {
  border-color: rgba(255, 107, 53, 0.55);
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.12);
}

.theme-toggle:active {
  transform: scale(0.98);
}

.theme-toggle:focus-visible {
  outline: 3px solid rgba(255, 107, 53, 0.5);
  outline-offset: 3px;
}

.theme-toggle-icon {
  width: 20px;
  height: 20px;
  display: none;
}

.theme-toggle-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

html[data-theme="light"] .theme-toggle [data-icon="sun"] {
  display: block;
}

html[data-theme="dark"] .theme-toggle [data-icon="moon"] {
  display: block;
}

html[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

html[data-theme="dark"] .theme-toggle:hover {
  border-color: rgba(255, 107, 53, 0.6);
}

.btn-ghost {
  background: var(--white);
  color: var(--brand-black);
  border: 2px solid var(--brand-gray-100);
}

.btn-ghost:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

html[data-theme="dark"] .btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.14);
}

html[data-theme="dark"] .btn-ghost:hover {
  border-color: rgba(255, 107, 53, 0.65);
  color: var(--brand-orange);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Hero */
.hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
  background: radial-gradient(
      ellipse 90% 70% at 90% -10%,
      rgba(255, 107, 53, 0.12),
      transparent 55%
    ),
    radial-gradient(
      ellipse 70% 50% at 10% 20%,
      rgba(230, 57, 70, 0.08),
      transparent 50%
    ),
    var(--brand-gray-50);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(26, 26, 26, 0.1);
  color: rgba(22, 26, 35, 0.72);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(26, 26, 26, 0.08);
}

html[data-theme="dark"] .hero-badge {
  background: rgba(20, 26, 36, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(242, 244, 248, 0.82);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.38);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--brand-gray-600);
  max-width: 34rem;
}

.hero-journey {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  color: var(--brand-gray-600);
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--brand-orange);
  box-shadow: var(--shadow-soft);
}

.hero-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* Section titles */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--brand-gray-600);
}

.section-padding {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

/* How it works */
.how {
  background: var(--white);
}

.how .section-head {
  max-width: min(920px, 100%);
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.how .section-head p {
  text-align: left;
  font-size: 0.975rem;
  line-height: 1.6;
}


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

.step-card {
  grid-column: span 4;
  padding: 1.25rem 1.25rem 1.1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--brand-gray-100);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: -45% -35% auto auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 107, 53, 0.18),
    transparent 60%
  );
  transform: rotate(18deg);
}

.step-kicker {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 0.5rem;
}

.step-title {
  font-weight: 750;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.step-body {
  color: var(--brand-gray-600);
  font-size: 0.9375rem;
}

.how-callout-figure {
  margin: 1.15rem 0 0;
  max-width: 100%;
  border-radius: calc(var(--radius-lg) + 2px);
  padding: clamp(0.5rem, 1.5vw, 0.75rem);
  background: linear-gradient(165deg, #141922 0%, #1c2330 55%, #232b3a 100%);
  border: 1px solid rgba(230, 57, 70, 0.35);
  box-shadow:
    0 4px 0 rgba(230, 57, 70, 0.12),
    0 28px 70px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .how-callout-figure {
  background: linear-gradient(165deg, #0d1016 0%, #161b24 100%);
  border-color: rgba(255, 107, 53, 0.28);
  box-shadow:
    0 4px 0 rgba(255, 107, 53, 0.1),
    0 28px 70px rgba(0, 0, 0, 0.45);
}

.how-callout-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: none;
}

html[data-theme="dark"] .how-callout-figure img {
  box-shadow: none;
}

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

.cdp-workflow {
  margin: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(2rem, 5vw, 3rem);
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.1rem, 2.5vw, 1.5rem) clamp(1.25rem, 3vw, 1.65rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--brand-gray-100);
  background: linear-gradient(180deg, rgba(22, 26, 35, 0.02), transparent 55%),
    var(--white);
  box-shadow: var(--shadow-soft);
}

html[data-theme="dark"] .cdp-workflow {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 50%),
    rgba(14, 18, 24, 0.65);
}

.cdp-workflow-title {
  margin: 0 0 1.15rem;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--brand-black);
}

html[data-theme="dark"] .cdp-workflow-title {
  color: rgba(242, 244, 248, 0.96);
}

.cdp-workflow-diagram {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
}

.cdp-layer {
  position: relative;
  padding: 1.25rem 1.35rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--brand-gray-100);
}

html[data-theme="dark"] .cdp-layer {
  border-color: rgba(255, 255, 255, 0.1);
}

.cdp-layer-plane {
  background:
    linear-gradient(135deg, rgba(230, 57, 70, 0.08), rgba(255, 107, 53, 0.06));
  border-color: rgba(230, 57, 70, 0.28);
}

html[data-theme="dark"] .cdp-layer-plane {
  background:
    linear-gradient(135deg, rgba(230, 57, 70, 0.18), rgba(255, 107, 53, 0.1));
  border-color: rgba(255, 107, 53, 0.35);
}

.cdp-layer-dwh {
  background: linear-gradient(180deg, rgba(22, 26, 35, 0.04), rgba(22, 26, 35, 0.07));
}

html[data-theme="dark"] .cdp-layer-dwh {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.35));
}

.cdp-layer-kicker {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-gray-600);
  margin-bottom: 0.35rem;
}

html[data-theme="dark"] .cdp-layer-kicker {
  color: rgba(242, 244, 248, 0.55);
}

.cdp-layer-plane .cdp-layer-kicker {
  color: var(--brand-red);
}

.cdp-layer-name {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
  color: var(--brand-black);
}

html[data-theme="dark"] .cdp-layer-name {
  color: rgba(242, 244, 248, 0.95);
}

.cdp-layer-desc {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--brand-gray-600);
}

html[data-theme="dark"] .cdp-layer-desc {
  color: rgba(242, 244, 248, 0.72);
}

.cdp-layer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cdp-layer-tags li {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(22, 26, 35, 0.1);
  color: var(--brand-slate);
}

html[data-theme="dark"] .cdp-layer-tags li {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(242, 244, 248, 0.88);
}

.cdp-layer-plane .cdp-layer-tags li {
  border-color: rgba(230, 57, 70, 0.22);
}

.cdp-workflow-bridge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  justify-content: center;
  background: var(--brand-gray-50);
  border-left: 1px solid var(--brand-gray-100);
  border-right: 1px solid var(--brand-gray-100);
}

html[data-theme="dark"] .cdp-workflow-bridge {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.08);
}

.cdp-workflow-bridge-line {
  flex: 1;
  height: 2px;
  max-width: 120px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.55), transparent);
}

.cdp-workflow-bridge-label {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--brand-gray-600);
}

html[data-theme="dark"] .cdp-workflow-bridge-label {
  color: rgba(242, 244, 248, 0.55);
}

.cdp-workflow-footnote {
  margin: 1.15rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  text-align: center;
  color: var(--brand-gray-600);
  max-width: 720px;
  margin-inline: auto;
}

html[data-theme="dark"] .cdp-workflow-footnote {
  color: rgba(242, 244, 248, 0.65);
}

@media (max-width: 560px) {
  .cdp-workflow-bridge-line {
    max-width: 48px;
  }

  .cdp-workflow-bridge-label {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }
}

/* Bento grid */
.use-cases {
  background: linear-gradient(180deg, var(--brand-gray-50), var(--white));
}

html[data-theme="dark"] .use-cases {
  background: linear-gradient(180deg, var(--brand-gray-50), rgba(12, 16, 22, 0.92));
}

/* Story journey */
.story {
  display: grid;
  gap: clamp(1.2rem, 3.2vw, 2rem);
}

.story-item {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

html[data-theme="dark"] .story-item {
  background: rgba(20, 26, 36, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.story-item.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.story-item.reverse .story-copy {
  order: 2;
}

.story-item.reverse .story-media {
  order: 1;
}

.story-copy {
  padding: clamp(1.1rem, 2.8vw, 1.6rem);
}

.story-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a1f16;
  background: linear-gradient(
    135deg,
    rgba(230, 57, 70, 0.16),
    rgba(255, 107, 53, 0.12)
  );
  border: 1px solid rgba(255, 107, 53, 0.22);
  margin-bottom: 0.7rem;
}

html[data-theme="dark"] .story-kicker {
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(
    135deg,
    rgba(230, 57, 70, 0.22),
    rgba(255, 107, 53, 0.16)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.story-copy h3 {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.story-copy p {
  margin: 0 0 0.9rem;
  color: var(--brand-gray-600);
  font-size: 0.975rem;
  max-width: 70ch;
}

.story-copy ul {
  margin: 0;
  padding-left: 1.05rem;
  color: var(--brand-gray-600);
  font-size: 0.95rem;
  line-height: 1.55;
}

html[data-theme="dark"] .story-copy p,
html[data-theme="dark"] .story-copy ul {
  color: rgba(242, 244, 248, 0.78);
}

.story-copy li {
  margin: 0.35rem 0;
}

.story-media {
  position: relative;
  min-height: 260px;
  background: var(--brand-gray-100);
}

html[data-theme="dark"] .story-media {
  background: rgba(10, 14, 20, 0.9);
}

.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 75% 60% at 30% 20%,
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.25) 55%,
      rgba(255, 255, 255, 0.08) 100%
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  pointer-events: none;
}

html[data-theme="dark"] .story-media::after {
  background: none;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
  transform: none;
}

html[data-theme="dark"] .story-media img {
  opacity: 1;
  filter: none;
}

/* Why */
.why {
  background: linear-gradient(
    180deg,
    var(--brand-gray-50) 0%,
    var(--white) 100%
  );
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.why-card {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--brand-gray-100);
  box-shadow: var(--shadow-soft);
}

.why-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.why-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--brand-gray-600);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(230, 57, 70, 0.15),
    rgba(255, 107, 53, 0.12)
  );
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.06);
}

.why-icon img,
.why-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Pricing */
.pricing {
  background: linear-gradient(180deg, var(--white) 0%, var(--brand-gray-50) 50%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
      ellipse 55% 40% at 50% 0%,
      rgba(255, 107, 53, 0.1),
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 35% at 0% 100%,
      rgba(230, 57, 70, 0.06),
      transparent 65%
    );
  pointer-events: none;
}

/* Flowing contour lines — same family as .contact::before but horizontal bias, no dots, +tilt */
.pricing::after {
  content: "";
  position: absolute;
  inset: -50% -35%;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%27720%27%20height%3D%27420%27%20viewBox%3D%270%200%20720%20420%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%23161a23%27%20stroke-opacity%3D%270.085%27%20stroke-width%3D%271.15%27%20stroke-linecap%3D%27round%27%3E%3Cpath%20d%3D%27M-80%20320%20C60%20255%20180%20355%20320%20285%20S560%20165%20790%20235%27/%3E%3Cpath%20d%3D%27M-40%20155%20C120%2095%20240%20195%20400%20125%20S620%2055%20760%20105%27/%3E%3Cpath%20d%3D%27M0%20238%20C160%20198%20280%20278%20440%20218%20S640%20158%20820%20198%27/%3E%3Cpath%20d%3D%27M-100%20405%20C80%20335%20220%20405%20380%20345%20S620%20255%20840%20315%27/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 720px 420px;
  background-position: 55% 45%;
  opacity: 0.9;
  transform: rotate(5deg);
  pointer-events: none;
}

html[data-theme="dark"] .pricing::after {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%27720%27%20height%3D%27420%27%20viewBox%3D%270%200%20720%20420%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%23ffffff%27%20stroke-opacity%3D%270.06%27%20stroke-width%3D%271.15%27%20stroke-linecap%3D%27round%27%3E%3Cpath%20d%3D%27M-80%20320%20C60%20255%20180%20355%20320%20285%20S560%20165%20790%20235%27/%3E%3Cpath%20d%3D%27M-40%20155%20C120%2095%20240%20195%20400%20125%20S620%2055%20760%20105%27/%3E%3Cpath%20d%3D%27M0%20238%20C160%20198%20280%20278%20440%20218%20S640%20158%20820%20198%27/%3E%3Cpath%20d%3D%27M-100%20405%20C80%20335%20220%20405%20380%20345%20S620%20255%20840%20315%27/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.65;
}

.pricing > .container {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 2.5rem));
}

.pricing-rows {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

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

.pricing-scale-block {
  position: relative;
  z-index: 1;
  margin-top: 0.25rem;
  padding: 1.75rem 1.5rem 2rem;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid var(--brand-gray-100);
  background:
    linear-gradient(180deg, rgba(230, 57, 70, 0.04) 0%, transparent 42%),
    linear-gradient(135deg, rgba(255, 107, 53, 0.06), transparent 55%),
    var(--white);
  box-shadow: 0 20px 56px rgba(26, 26, 26, 0.07);
}

html[data-theme="dark"] .pricing-scale-block {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(230, 57, 70, 0.12) 0%, transparent 45%),
    linear-gradient(135deg, rgba(255, 107, 53, 0.08), transparent 50%),
    rgba(14, 18, 26, 0.92);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.pricing-scale-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1.5rem;
}

.pricing-scale-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand-black);
}

html[data-theme="dark"] .pricing-scale-title {
  color: rgba(242, 244, 248, 0.96);
}

.pricing-scale-lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--brand-gray-600);
}

html[data-theme="dark"] .pricing-scale-lead {
  color: rgba(242, 244, 248, 0.68);
}

.pricing-grid-scale {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  max-width: 1040px;
  margin-inline: auto;
}

.pricing-card-scale .pricing-card-inner {
  padding: 2rem 2rem 1.85rem;
  min-height: 100%;
}

.pricing-card-scale .pricing-tier {
  font-size: 0.875rem;
  margin-bottom: 0.6rem;
}

.pricing-card-scale .pricing-amount {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 0.4rem;
}

.pricing-card-scale .pricing-amount-text {
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
}

.pricing-card-scale .pricing-period {
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

.pricing-card-scale .pricing-note {
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}

.pricing-card-scale .pricing-features {
  font-size: 0.9375rem;
}

.pricing-card-scale .pricing-features li {
  margin-bottom: 1rem;
}

.pricing-card-scale .pricing-cta {
  margin-top: 1.5rem;
  padding-block: 0.85rem;
  font-size: 1rem;
}

.pricing-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--brand-gray-100);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(26, 26, 26, 0.1);
  border-color: rgba(255, 107, 53, 0.28);
}

html[data-theme="dark"] .pricing-card {
  background: rgba(20, 26, 36, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .pricing-card:hover {
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.45);
}

.pricing-card-featured {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--brand-red), var(--brand-orange)) border-box;
  box-shadow: 0 16px 44px rgba(230, 57, 70, 0.18), var(--shadow-soft);
}

html[data-theme="dark"] .pricing-card-featured {
  background:
    linear-gradient(rgba(20, 26, 36, 0.95), rgba(20, 26, 36, 0.95)) padding-box,
    linear-gradient(135deg, var(--brand-red), var(--brand-orange)) border-box;
}

.pricing-card-featured:hover {
  box-shadow: 0 22px 56px rgba(230, 57, 70, 0.28), 0 12px 40px rgba(26, 26, 26, 0.08);
}

.pricing-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.35rem 0.85rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.45);
  white-space: nowrap;
}

.pricing-card-inner {
  padding: 1.5rem 1.5rem 1.45rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}

.pricing-card-featured .pricing-card-inner {
  padding-top: 1.85rem;
}

.pricing-tier {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-gray-600);
  margin-bottom: 0.5rem;
}

.pricing-card-featured .pricing-tier {
  color: var(--brand-red);
}

.pricing-amount {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.pricing-currency {
  font-size: 0.55em;
  font-weight: 700;
  vertical-align: super;
  margin-right: 0.08em;
  opacity: 0.92;
}

.pricing-amount-text {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-period {
  display: block;
  margin: -0.15rem 0 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-gray-600);
  letter-spacing: 0.02em;
}

html[data-theme="dark"] .pricing-period {
  color: rgba(242, 244, 248, 0.66);
}

.pricing-note {
  margin: 0 0 1.1rem;
  font-size: 0.875rem;
  color: var(--brand-gray-600);
  line-height: 1.45;
}

html[data-theme="dark"] .pricing-note {
  color: rgba(242, 244, 248, 0.72);
}

.pricing-features {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--brand-black);
  flex: 1 1 auto;
}

html[data-theme="dark"] .pricing-features {
  color: rgba(242, 244, 248, 0.9);
}

.pricing-features li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
}

.pricing-features li:last-child {
  margin-bottom: 0;
}

.pricing-feature-body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.pricing-feature-line {
  display: block;
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: -0.015em;
}

.pricing-feature-detail {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--brand-gray-600);
}

html[data-theme="dark"] .pricing-feature-detail {
  color: rgba(242, 244, 248, 0.66);
}

.pricing-check {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  position: relative;
  box-shadow: 0 2px 8px rgba(230, 57, 70, 0.35);
}

.pricing-check::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 4px;
  height: 7px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

.pricing-cta {
  margin-top: 1.25rem;
  width: 100%;
  text-decoration: none;
}

.pricing-cta:hover {
  text-decoration: none;
}

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

@media (max-width: 720px) {
  .pricing-grid-scale {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .pricing-scale-block {
    padding: 1.5rem 1.15rem 1.65rem;
  }
}

@media (max-width: 560px) {
  .pricing-rows {
    gap: 1.75rem;
  }

  .pricing-card:hover {
    transform: none;
  }

  .pricing-card-scale .pricing-card-inner {
    padding: 1.5rem 1.35rem 1.45rem;
  }
}

/* FAQ */
.faq {
  background: var(--white);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--brand-gray-100);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 0;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--brand-orange);
  flex-shrink: 0;
}

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

.faq-item p {
  margin: 0 0 1.15rem;
  padding-right: 2rem;
  color: var(--brand-gray-600);
  font-size: 0.9375rem;
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      ellipse 80% 70% at 0% 0%,
      rgba(230, 57, 70, 0.16),
      transparent 55%
    ),
    radial-gradient(
      ellipse 80% 70% at 100% 30%,
      rgba(255, 107, 53, 0.14),
      transparent 55%
    ),
    linear-gradient(180deg, #1a1a1a, #121212);
  color: #ffffff;
}

.contact::before {
  content: "";
  position: absolute;
  inset: -80px -120px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%27640%27%20height%3D%27360%27%20viewBox%3D%270%200%20640%20360%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27rgba(255%2C255%2C255%2C0.10)%27%20stroke-width%3D%271%27%3E%3Cpath%20d%3D%27M20%2C300%20C140%2C190%20230%2C250%20320%2C160%20S520%2C120%20620%2C40%27/%3E%3Cpath%20d%3D%27M-20%2C220%20C120%2C120%20240%2C180%20360%2C90%20S520%2C40%20680%2C120%27/%3E%3Cpath%20d%3D%27M80%2C380%20C220%2C260%20300%2C320%20440%2C220%20S580%2C170%20720%2C260%27/%3E%3C/g%3E%3Cg%20fill%3D%27rgba(255%2C255%2C255%2C0.16)%27%3E%3Ccircle%20cx%3D%27320%27%20cy%3D%27160%27%20r%3D%272%27/%3E%3Ccircle%20cx%3D%27360%27%20cy%3D%2790%27%20r%3D%272%27/%3E%3Ccircle%20cx%3D%27440%27%20cy%3D%27220%27%20r%3D%272%27/%3E%3Ccircle%20cx%3D%27140%27%20cy%3D%27190%27%20r%3D%272%27/%3E%3Ccircle%20cx%3D%27520%27%20cy%3D%27120%27%20r%3D%272%27/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 640px 360px;
  opacity: 0.55;
  transform: rotate(-8deg);
  pointer-events: none;
}

.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04) 0px,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 14px
  );
  opacity: 0.35;
  pointer-events: none;
}

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

.contact .section-head h2 {
  color: #ffffff;
}

.contact .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-family: var(--font);
  font-size: 0.9375rem;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%3E%3Cpath%20d%3D%27M7%2010l5%205%205-5%27%20stroke%3D%27rgba(255%2C255%2C255%2C0.72)%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px 18px;
  padding-right: 2.65rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn-primary {
  width: 100%;
  margin-top: 0.25rem;
}

.contact-aside {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.contact-aside a {
  color: var(--brand-orange);
}

/* Footer */
.site-footer {
  padding: 1.5rem 0;
  background: #111;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  text-align: center;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.site-footer-line {
  margin: 0;
}

.site-footer-legal {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer-legal strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header .btn-primary {
    display: none;
  }

  .site-header .inner .logo-link {
    margin-inline-end: auto;
  }
}

@media (min-width: 901px) {
  .nav-mobile {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .steps .step-card {
    grid-column: span 6;
  }
  .story-item,
  .story-item.reverse {
    grid-template-columns: 1fr;
  }
  .story-item.reverse .story-copy,
  .story-item.reverse .story-media {
    order: unset;
  }
}
