:root {
  --bg: #ffffff;
  --bg-soft: #f4f6f8;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: rgba(255, 255, 255, 0.97);
  --text: #0b0d12;
  --text-soft: #5b6372;
  --text-muted: #8a92a3;
  --line: rgba(11, 13, 18, 0.08);
  --line-strong: rgba(11, 13, 18, 0.14);
  --yellow: #ffb13d;
  --yellow-strong: #ff9a2f;
  --orange: #ff6a1a;
  --orange-strong: #ef5a0d;
  --dark: #0b0d12;
  --success: #17976b;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 30px;
  --radius-xl: 40px;
  --shadow-xs: 0 10px 22px rgba(11, 13, 18, 0.04);
  --shadow-sm: 0 18px 42px rgba(11, 13, 18, 0.06);
  --shadow-md: 0 28px 80px rgba(11, 13, 18, 0.08);
  --shadow-glow: 0 20px 50px rgba(255, 106, 26, 0.18);
  --shadow-float: 0 34px 90px rgba(11, 13, 18, 0.1);
  --shadow-premium: 0 24px 58px rgba(11, 13, 18, 0.08);
  --shadow-header: 0 14px 38px rgba(11, 13, 18, 0.06);
  --grid-line: rgba(11, 13, 18, 0.035);
  --blur: blur(18px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --transition: 0.35s var(--ease);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 106, 26, 0.05), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(11, 13, 18, 0.03), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 28%, #f7f8fa 100%);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, transparent, transparent calc(100% - 1px), var(--grid-line) calc(100% - 1px)),
    linear-gradient(to bottom, transparent, transparent calc(100% - 1px), rgba(11, 13, 18, 0.018) calc(100% - 1px));
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.28), transparent 82%);
  opacity: 0.5;
  z-index: -1;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  background: transparent;
}

:focus-visible {
  outline: 2px solid rgba(255, 140, 43, 0.6);
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
}

.site-shell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: min(980px, 100vh + 120px);
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 106, 26, 0.045), transparent 23%),
    radial-gradient(circle at 88% 16%, rgba(11, 13, 18, 0.03), transparent 24%),
    radial-gradient(circle at 72% 62%, rgba(255, 106, 26, 0.045), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 56%, #f7f9fb 100%);
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 118px 0;
}

.section-alt {
  background: linear-gradient(180deg, #f5f7fa 0%, #eef2f6 100%);
}

.glass-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.88));
  border: 1px solid rgba(11, 13, 18, 0.05);
  box-shadow: var(--shadow-premium);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 106, 26, 0.14);
  color: #b84e13;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(255, 106, 26, 0.08);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 54px;
}

.section-heading-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.final-cta-box h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 6vw, 3.8rem);
  line-height: 1.01;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.section-heading p,
.final-cta-box p {
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

.header::before,
.header::after {
  content: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 14px 6px 10px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-brand {
  gap: 0;
}

.logo img {
  width: 42px;
  height: 42px;
  background: transparent;
  mix-blend-mode: normal;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.brand-text {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.header-brand .brand-text {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #111827;
  line-height: 1;
}

.header-brand .brand-text-primary {
  color: #111827;
}

.header-brand .brand-text-accent {
  color: #ff7a1a;
}

.nav {
  position: fixed;
  top: 10px;
  right: 10px;
  bottom: 10px;
  width: min(380px, calc(100vw - 20px));
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px 22px 22px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18), 0 10px 24px rgba(15, 23, 42, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translateX(calc(100% + 24px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.26s ease, visibility 0.26s ease;
}

.nav.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav a {
  padding: 11px 13px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--text-soft);
  transition: var(--transition);
}

.nav a:hover {
  background: rgba(255, 106, 26, 0.08);
  color: var(--text);
}

.nav-desktop-link {
  position: relative;
  display: none;
}

.nav-desktop-link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 106, 26, 0), rgba(255, 106, 26, 0.95), rgba(255, 106, 26, 0));
  transform: scaleX(0.35);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-desktop-link:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-desktop-links {
  display: none;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  overflow-y: auto;
}

.nav-mobile-group {
  display: grid;
  gap: 10px;
}

.nav-mobile-group-secondary {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.nav-mobile-label {
  display: block;
  margin-bottom: 6px;
  color: #6b7280;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 18px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  color: #111111 !important;
  font-size: 1rem;
  font-weight: 700 !important;
  letter-spacing: -0.018em;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.nav-mobile-link::after {
  content: '\203A';
  color: rgba(17, 24, 39, 0.42);
  font-size: 1.2rem;
  transition: transform var(--transition), color var(--transition);
}

.nav-mobile-link:hover {
  transform: translateX(3px);
  border-color: rgba(255, 122, 26, 0.18);
  background: #ffffff;
  color: #111111 !important;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.nav-mobile-link:hover::after {
  transform: translateX(4px);
  color: rgba(255, 106, 26, 0.82);
}

.nav-mobile-actions {
  display: grid;
  gap: 12px;
}

.nav-mobile-actions .btn {
  width: 100%;
  min-height: 56px;
  border-radius: 18px;
}

.nav-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 0 16px !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, #ff9a3d 0%, #ff6a1a 46%, #de4f00 100%);
  border: 1px solid rgba(122, 45, 0, 0.18);
  color: rgba(255, 255, 255, 0.99) !important;
  font-weight: 700 !important;
  box-shadow: 0 18px 36px rgba(255, 106, 26, 0.22);
}

.nav-mobile-cta::after {
  content: none;
}

.nav-mobile-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(122, 45, 0, 0.24);
  color: rgba(255, 255, 255, 0.99) !important;
}

.nav-mobile-action-secondary {
  border-color: rgba(11, 13, 18, 0.09);
  background: rgba(255, 255, 255, 0.86);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-utilities {
  display: none;
  align-items: center;
  gap: 4px;
}

.header-utility-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.header-utility-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
}

.header-actions .btn-link,
.header-actions .btn-secondary,
.header-actions .btn-primary {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition), filter var(--transition), opacity var(--transition);
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn:active {
  transform: translateY(0);
}

.btn-link {
  min-height: 42px;
  padding: 0 10px;
  color: var(--text-soft);
  font-weight: 600;
}

.btn-link:hover {
  color: var(--text);
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ff9a3d 0%, #ff6a1a 46%, #de4f00 100%);
  color: rgba(255, 255, 255, 0.99);
  border-color: rgba(122, 45, 0, 0.18);
  box-shadow: 0 18px 36px rgba(255, 106, 26, 0.3), 0 8px 16px rgba(11, 13, 18, 0.08);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05) 40%, transparent 68%);
  pointer-events: none;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -38%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  transition: left 0.8s var(--ease);
}

.btn-primary:hover {
  box-shadow: 0 22px 44px rgba(255, 106, 26, 0.34), 0 10px 22px rgba(11, 13, 18, 0.1);
  border-color: rgba(122, 45, 0, 0.24);
  filter: saturate(1.05) brightness(1.01);
}

.btn-primary:hover::before {
  left: 112%;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(11, 13, 18, 0.1);
  color: var(--text);
  box-shadow: 0 12px 26px rgba(17, 17, 23, 0.05);
}

.btn-secondary:hover {
  background: #fff;
  border-color: rgba(255, 106, 26, 0.16);
  box-shadow: 0 16px 30px rgba(17, 17, 23, 0.07);
}

.btn-xl {
  min-height: 60px;
  padding: 0 34px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-toggle {
  position: relative;
  z-index: 1001;
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(11, 13, 18, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 28px rgba(11, 13, 18, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.nav-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 106, 26, 0.14);
  box-shadow: 0 12px 24px rgba(11, 13, 18, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.nav-toggle span {
  width: 16px;
  height: 1.7px;
  border-radius: 999px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition), width var(--transition), background var(--transition);
  transform-origin: center;
}

.nav-toggle:hover span:nth-child(2) {
  width: 12px;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(5.7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-5.7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: 42px;
  background: transparent;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background:
    radial-gradient(circle at 18% 32%, rgba(255, 255, 255, 0.9), transparent 20%),
    radial-gradient(circle at 78% 18%, rgba(255, 106, 26, 0.05), transparent 18%),
    radial-gradient(circle at 72% 68%, rgba(11, 13, 18, 0.03), transparent 16%);
  filter: blur(8px);
  opacity: 0.82;
  z-index: -2;
}

.hero::after {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 42%),
    repeating-linear-gradient(135deg, rgba(11, 13, 18, 0.012) 0 1px, transparent 1px 18px);
  mix-blend-mode: soft-light;
  opacity: 0.24;
  z-index: -1;
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 44px;
}

.hero-copy h1 {
  margin-top: 4px;
  max-width: 12.5ch;
  font-size: clamp(2.35rem, 7.8vw, 5.1rem);
  line-height: 1.07;
  letter-spacing: -0.055em;
  text-wrap: balance;
  text-shadow: 0 10px 32px rgba(11, 13, 18, 0.05);
}

.hero-text {
  margin-top: 16px;
  max-width: 56ch;
  color: #404958;
  font-size: 1.02rem;
  line-height: 1.86;
  font-weight: 500;
  text-wrap: pretty;
}

.hero-cta-row,
.hero-proof,
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-cta-row {
  margin-top: 20px;
  justify-content: flex-start;
}

.hero-proof {
  margin-top: 24px;
}

.hero-cta-row .btn-primary {
  min-width: clamp(220px, 28vw, 280px);
  min-height: 56px;
  padding-inline: 30px;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(255, 106, 26, 0.28), 0 8px 18px rgba(11, 13, 18, 0.07);
}

.proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 13, 18, 0.06);
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

.proof-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
  box-shadow: 0 0 0 6px rgba(255, 106, 26, 0.12);
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  opacity: 0.72;
}

.hero-glow-a {
  inset: 28px auto auto -8px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 106, 26, 0.18) 0%, rgba(255, 145, 74, 0.08) 42%, transparent 72%);
}

.hero-glow-b {
  inset: auto -18px 46px auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(11, 13, 18, 0.12) 0%, rgba(82, 88, 102, 0.06) 46%, transparent 74%);
}

.hero-stack {
  position: relative;
  height: 100%;
  max-width: 560px;
  margin-left: auto;
  padding: 12px 18px 32px 0;
}

.dashboard-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  padding: 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 28px 80px rgba(17, 17, 23, 0.11);
  overflow: hidden;
}

.dashboard-panel::before,
.mobile-store-panel::before,
.pricing-card::before,
.feature-card::before,
.trust-band::before,
.final-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.dashboard-panel::before,
.mobile-store-panel::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 26%);
}

.panel-topbar {
  display: flex;
  gap: 6px;
}

.panel-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(15, 15, 20, 0.12);
}

.panel-topbar span:first-child {
  background: rgba(255, 106, 26, 0.56);
}

.panel-topbar span:nth-child(2) {
  background: rgba(255, 177, 61, 0.58);
}

.dashboard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.mini-label,
.kpi-card span,
.chart-copy span,
.pricing-tag,
.footer-grid h3 {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.dashboard-head h2 {
  margin-top: 6px;
  font-size: 1.24rem;
  letter-spacing: -0.04em;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.mini-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(20, 167, 111, 0.1);
  color: var(--success);
  font-size: 0.82rem;
  font-weight: 700;
}

.mini-pill-muted {
  background: rgba(11, 13, 18, 0.06);
  color: var(--text-soft);
}

.demo-note {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.kpi-grid,
.feature-grid,
.pricing-grid,
.footer-grid,
.trust-band-grid {
  display: grid;
  gap: 18px;
}

.kpi-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  gap: 12px;
}

.kpi-card {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 15, 20, 0.05);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.kpi-card:hover,
.feature-card:hover,
.pricing-card:hover,
.timeline-step:hover,
.trust-band-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.kpi-card.accent {
  background: linear-gradient(135deg, rgba(255, 106, 26, 0.16), rgba(255, 177, 61, 0.12));
}

.kpi-card strong,
.price-line strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.kpi-card small,
.pricing-card li,
.footer-grid a,
.trust-band-item span,
.feature-card p,
.timeline-step p {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.chart-card {
  margin-top: 14px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 250, 0.92));
  border: 1px solid rgba(11, 13, 18, 0.05);
}

.chart-copy strong {
  display: block;
  margin-top: 6px;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 8px;
  min-height: 140px;
  margin-top: 18px;
}

.chart-bars span {
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, rgba(255, 145, 74, 0.96) 0%, rgba(255, 106, 26, 0.82) 100%);
  box-shadow: inset 0 -10px 24px rgba(255, 255, 255, 0.18);
  animation: pulseBars 4s ease-in-out infinite;
}

.chart-bars span:nth-child(1) { height: 48px; }
.chart-bars span:nth-child(2) { height: 72px; animation-delay: 0.2s; }
.chart-bars span:nth-child(3) { height: 94px; animation-delay: 0.4s; }
.chart-bars span:nth-child(4) { height: 66px; animation-delay: 0.1s; }
.chart-bars span:nth-child(5) { height: 122px; animation-delay: 0.5s; }
.chart-bars span:nth-child(6) { height: 84px; animation-delay: 0.25s; }

.mobile-store-panel {
  position: absolute;
  right: -8px;
  bottom: -8px;
  z-index: 3;
  width: min(220px, 44vw);
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 58px rgba(17, 17, 23, 0.11);
  overflow: hidden;
}

.phone-notch {
  width: 90px;
  height: 20px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(15, 15, 20, 0.08);
}

.mobile-store-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.store-badge {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 106, 26, 0.12);
  color: #b84e13;
  font-size: 0.75rem;
  font-weight: 700;
}

.mobile-store-top strong,
.pricing-card h3,
.feature-card h3,
.timeline-step h3 {
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.mobile-product {
  height: 170px;
  margin-top: 16px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.38), transparent 25%),
    linear-gradient(135deg, rgba(255, 145, 74, 0.92), rgba(255, 106, 26, 0.96));
}

.mobile-lines {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.mobile-lines span {
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 15, 20, 0.08);
}

.mobile-lines span:first-child { width: 70%; }
.mobile-lines span:nth-child(2) { width: 92%; }
.mobile-lines span:nth-child(3) { width: 58%; }

.mobile-checkout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.85);
}

.mobile-checkout small {
  display: block;
  margin-bottom: 3px;
  color: var(--text-muted);
}

.mobile-checkout strong {
  font-size: 0.84rem;
  line-height: 1.4;
}

.pay-indicator {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 0 0 8px rgba(255, 106, 26, 0.1);
}

.trust-band-section {
  padding-top: 0;
}

.trust-band {
  display: grid;
  gap: 32px;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 250, 0.94));
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.trust-band::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
}

.trust-band-copy {
  max-width: 560px;
}

.trust-band-copy h2 {
  margin-top: 16px;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.trust-band-item {
  position: relative;
  padding: 18px 18px 18px 44px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 13, 18, 0.05);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.trust-band-item::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 23px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 0 0 7px rgba(255, 106, 26, 0.12);
}

.trust-band-item strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: -0.025em;
}

.feature-grid {
  grid-template-columns: 1fr;
  gap: 22px;
}

.feature-card,
.pricing-card,
.timeline-step {
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.feature-card,
.pricing-card {
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.pricing-card::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 30%);
}

.feature-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 251, 0.94));
  border-color: rgba(255, 106, 26, 0.14);
  box-shadow: 0 20px 46px rgba(17, 17, 23, 0.08);
}

.icon-box {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 106, 26, 0.14), rgba(255, 177, 61, 0.12));
  color: #b84e13;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.icon-box svg {
  width: 22px;
  height: 22px;
}

.feature-card:hover .icon-box {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 24px rgba(255, 106, 26, 0.14);
  background: linear-gradient(135deg, rgba(255, 106, 26, 0.22), rgba(255, 177, 61, 0.16));
}

.feature-card h3,
.timeline-step h3 {
  line-height: 1.15;
}

.feature-card p,
.timeline-step p {
  line-height: 1.75;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 106, 26, 0.34), rgba(11, 13, 18, 0.08));
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 28px;
  overflow: hidden;
}

.timeline-index {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 0 0 8px rgba(255, 106, 26, 0.12);
}

.pricing-grid {
  grid-template-columns: 1fr;
}

.pricing-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.pricing-note {
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.72;
}

.pricing-badge-recommended {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(11, 13, 18, 0.94);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(18, 19, 26, 0.12);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 46px rgba(17, 17, 23, 0.06);
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.pricing-card li {
  position: relative;
  padding-left: 20px;
  margin-top: 0;
}

.pricing-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
}

.price-line {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.price-line strong {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.price-line span {
  margin-bottom: 4px;
  color: var(--text-muted);
  font-weight: 600;
}

.pricing-card-featured {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 247, 241, 0.96), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(255, 106, 26, 0.18);
  box-shadow: 0 24px 58px rgba(255, 106, 26, 0.14);
}

.pricing-card-featured::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 145, 74, 0.95), rgba(255, 106, 26, 0.8));
}

.pricing-tag.premium {
  color: #b84e13;
}

.final-cta {
  padding-top: 40px;
  padding-bottom: 136px;
}

.final-cta-box {
  display: grid;
  gap: 28px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 106, 26, 0.22), transparent 26%),
    radial-gradient(circle at left bottom, rgba(255, 145, 74, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(11, 13, 18, 0.98), rgba(21, 25, 34, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 80px rgba(11, 13, 18, 0.2);
  position: relative;
  overflow: hidden;
}

.final-cta-box h2,
.final-cta-box p,
.final-cta-box .eyebrow {
  color: rgba(255, 255, 255, 0.96);
}

.final-cta-box p {
  color: rgba(255, 255, 255, 0.72);
}

.final-cta-box .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

.final-cta-box::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(255, 106, 26, 0.16), transparent 24%);
}

.footer {
  padding: 38px 0 18px;
  background: #0a0c11;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 106, 26, 0), rgba(255, 106, 26, 0.45), rgba(255, 106, 26, 0));
}

.footer-grid {
  grid-template-columns: 1fr;
  gap: 24px;
  padding-bottom: 24px;
}

.footer-brand p {
  margin-top: 12px;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.8;
}

.footer-brand {
  min-width: 0;
}

.footer-brand-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand-footer img {
  filter: drop-shadow(0 8px 18px rgba(255, 106, 26, 0.14)) drop-shadow(0 0 10px rgba(255, 122, 26, 0.08));
}

.brand-footer .brand-text {
  color: #fff;
}

.brand-footer .brand-text-primary {
  color: #ffffff;
}

.brand-footer .brand-text-accent {
  color: #ff7a1a;
  text-shadow: 0 0 10px rgba(255, 122, 26, 0.14);
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.58);
  margin-top: 10px;
  font-size: 0.93rem;
  transition: color var(--transition), transform var(--transition), text-shadow var(--transition);
}

.footer-grid a:hover {
  color: #ffb06b;
  text-shadow: 0 0 18px rgba(255, 138, 87, 0.14);
  transform: translateX(2px);
}

.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  text-align: center;
}

.footer-language {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.footer-language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  max-width: 100%;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.footer-language-option {
  min-height: 26px;
  min-width: 34px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition), filter var(--transition);
}

.footer-language-option:hover {
  color: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.footer-language-option.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #ffb36b, #ff8a57);
  color: rgba(255, 255, 255, 0.99);
  box-shadow: 0 6px 14px rgba(255, 138, 87, 0.14);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
  filter: blur(2px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

[data-reveal='delay-1'] { transition-delay: 0.08s; }
[data-reveal='delay-2'] { transition-delay: 0.16s; }
[data-reveal='delay-3'] { transition-delay: 0.24s; }

@keyframes pulseBars {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.08); }
}

.pricing-page-body {
  background:
    radial-gradient(circle at top left, rgba(255, 122, 26, 0.07), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
}

.pricing-page-shell {
  color: #101114;
}

.pricing-hero-section {
  padding-top: 132px;
  padding-bottom: 58px;
}

.pricing-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.pricing-hero-inner h1 {
  font-size: clamp(2.4rem, 8vw, 4.9rem);
  line-height: 1.03;
  letter-spacing: -0.065em;
  max-width: 11ch;
  margin: 0 auto;
}

.pricing-hero-inner p {
  margin: 20px auto 0;
  max-width: 650px;
  color: #5f6673;
  font-size: 1rem;
  line-height: 1.8;
}

.pricing-showcase-section {
  padding-top: 6px;
  padding-bottom: 92px;
}

.pricing-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.pricing-showcase-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 100%;
  padding: 30px 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 17, 20, 0.07);
  border-radius: 28px;
  box-shadow: 0 16px 34px rgba(16, 17, 20, 0.05);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.pricing-showcase-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(16, 17, 20, 0.07);
  border-color: rgba(255, 122, 26, 0.14);
}

.pricing-showcase-card-featured {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 247, 241, 0.98), rgba(255, 255, 255, 0.98));
  border-color: rgba(255, 122, 26, 0.18);
  box-shadow: 0 24px 52px rgba(255, 122, 26, 0.12);
}

.pricing-showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pricing-showcase-head h2 {
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.pricing-showcase-head-featured {
  align-items: flex-start;
  flex-direction: column;
}

.pricing-showcase-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #111214;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.pricing-showcase-price-block {
  display: grid;
  gap: 10px;
}

.pricing-showcase-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.pricing-showcase-price strong {
  font-size: clamp(2.35rem, 8vw, 3.35rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.pricing-showcase-price span {
  padding-bottom: 6px;
  color: #6b7280;
  font-weight: 600;
}

.pricing-showcase-local {
  color: #ff7a1a;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pricing-showcase-description {
  color: #5f6673;
  line-height: 1.78;
}

.pricing-showcase-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-showcase-list li {
  position: relative;
  padding-left: 30px;
  color: #20232b;
  line-height: 1.6;
}

.pricing-showcase-list li::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.18), rgba(255, 122, 26, 0.05));
  border: 1px solid rgba(255, 122, 26, 0.18);
}

.pricing-showcase-list li::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ff7a1a;
}

.pricing-showcase-button {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  border-radius: 18px;
  min-height: 54px;
}

.pricing-showcase-button-strong {
  box-shadow: 0 16px 30px rgba(255, 122, 26, 0.2);
}

.pricing-faq-section {
  padding-top: 0;
  padding-bottom: 96px;
}

.pricing-faq-shell {
  max-width: 860px;
}

.pricing-faq-heading {
  margin-bottom: 30px;
}

.pricing-faq-list {
  display: grid;
  gap: 14px;
}

.pricing-faq-item {
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 17, 20, 0.07);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(16, 17, 20, 0.04);
}

.pricing-faq-item summary {
  position: relative;
  padding: 22px 40px 22px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pricing-faq-item summary::-webkit-details-marker {
  display: none;
}

.pricing-faq-item summary::before,
.pricing-faq-item summary::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 4px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #111214;
  transform: translateY(-50%);
  transition: transform var(--transition), opacity var(--transition);
}

.pricing-faq-item summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.pricing-faq-item[open] summary::after {
  opacity: 0;
}

.pricing-faq-item p {
  padding: 0 0 22px;
  color: #5f6673;
  line-height: 1.8;
}

.pricing-page-cta {
  padding-top: 0;
  padding-bottom: 112px;
}

.pricing-page-cta-box {
  padding: 40px 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 122, 26, 0.2), transparent 22%),
    linear-gradient(135deg, #0f1012, #15181d);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 24px 56px rgba(15, 16, 18, 0.18);
}

.pricing-page-cta-box h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.pricing-page-cta-box p {
  max-width: 600px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.pricing-page-cta-button {
  margin-top: 24px;
  min-width: 230px;
  justify-content: center;
  border-radius: 999px;
}

.explorer-page-body {
  background:
    radial-gradient(circle at top left, rgba(255, 122, 26, 0.06), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fffdf9 100%);
}

.explorer-page-shell {
  color: #101114;
}

.explorer-hero-section {
  padding-top: 134px;
  padding-bottom: 78px;
}

.explorer-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.explorer-hero-inner h1 {
  max-width: 12ch;
  margin: 0 auto;
  font-size: clamp(2.35rem, 8vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.065em;
}

.explorer-hero-inner p {
  max-width: 680px;
  margin: 22px auto 0;
  color: #5f6673;
  font-size: 1rem;
  line-height: 1.82;
}

.explorer-categories-section {
  padding-top: 0;
  padding-bottom: 102px;
}

.explorer-categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.explorer-category-card {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 17, 20, 0.07);
  border-radius: 26px;
  box-shadow: 0 14px 30px rgba(16, 17, 20, 0.045);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.explorer-category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 26, 0.14);
  box-shadow: 0 18px 36px rgba(16, 17, 20, 0.06);
}

.explorer-category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: #fff7f1;
  color: #ff7a1a;
}

.explorer-category-icon svg {
  width: 24px;
  height: 24px;
}

.explorer-category-card h2 {
  font-size: 1.18rem;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.explorer-category-card p {
  margin-top: 10px;
  color: #5f6673;
  line-height: 1.75;
}

.explorer-showcase-section {
  padding-top: 0;
  padding-bottom: 104px;
}

.explorer-showcase-heading {
  margin-bottom: 28px;
}

.explorer-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.explorer-showcase-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 17, 20, 0.07);
  border-radius: 28px;
  box-shadow: 0 14px 30px rgba(16, 17, 20, 0.045);
}

.explorer-showcase-visual {
  height: 180px;
  border-radius: 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.explorer-tone-fashion {
  background: linear-gradient(135deg, #f7ede6, #ffe2ce);
}

.explorer-tone-beauty {
  background: linear-gradient(135deg, #f8eef1, #ffd9df);
}

.explorer-tone-learning {
  background: linear-gradient(135deg, #eef4ff, #d9e7ff);
}

.explorer-tone-digital {
  background: linear-gradient(135deg, #eff8f5, #d7f0e6);
}

.explorer-tone-accessories {
  background: linear-gradient(135deg, #f6f3ec, #eadfcd);
}

.explorer-tone-services {
  background: linear-gradient(135deg, #f1f0ff, #dbd9ff);
}

.explorer-showcase-card h3 {
  font-size: 1.16rem;
  letter-spacing: -0.03em;
}

.explorer-showcase-card p {
  margin-top: 10px;
  color: #5f6673;
  line-height: 1.76;
}

.explorer-advantages-section {
  padding-top: 0;
  padding-bottom: 102px;
}

.explorer-advantages-heading {
  margin-bottom: 28px;
}

.explorer-advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.explorer-advantage-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(16, 17, 20, 0.07);
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(16, 17, 20, 0.035);
}

.explorer-advantage-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #ff9a4c, #ff7a1a);
  box-shadow: 0 0 0 6px rgba(255, 122, 26, 0.08);
}

.explorer-advantage-item p {
  font-weight: 600;
  letter-spacing: -0.02em;
}

.explorer-page-cta {
  padding-top: 0;
  padding-bottom: 112px;
}

.explorer-page-cta-box {
  padding: 40px 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 122, 26, 0.22), transparent 24%),
    linear-gradient(135deg, #0f1012, #15181d);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 24px 56px rgba(15, 16, 18, 0.18);
}

.explorer-page-cta-box h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.explorer-page-cta-box p {
  max-width: 580px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.explorer-page-cta-button {
  margin-top: 24px;
  min-width: 230px;
  justify-content: center;
  border-radius: 999px;
}

.discover-page-body {
  background:
    radial-gradient(circle at top left, rgba(255, 122, 26, 0.055), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fffdf9 100%);
}

.discover-page-shell {
  color: #101114;
}

.discover-hero-section {
  padding-top: 134px;
  padding-bottom: 82px;
}

.discover-hero-inner {
  max-width: 790px;
  margin: 0 auto;
  text-align: center;
}

.discover-hero-inner h1 {
  max-width: 11.5ch;
  margin: 0 auto;
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.065em;
}

.discover-hero-inner p {
  max-width: 680px;
  margin: 22px auto 0;
  color: #5f6673;
  line-height: 1.82;
}

.discover-story-section {
  padding-top: 0;
  padding-bottom: 102px;
}

.discover-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.discover-story-copy h2 {
  margin-top: 14px;
}

.discover-story-copy p {
  margin-top: 16px;
  color: #5f6673;
  line-height: 1.82;
}

.discover-dashboard-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 17, 20, 0.07);
  border-radius: 28px;
  box-shadow: 0 18px 38px rgba(16, 17, 20, 0.05);
}

.discover-dashboard-top {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.discover-dashboard-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.12);
}

.discover-dashboard-body {
  display: grid;
  gap: 14px;
}

.discover-dashboard-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.discover-dashboard-metric {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 20px;
  background: #fbfbfb;
  border: 1px solid rgba(16, 17, 20, 0.05);
}

.discover-dashboard-metric small {
  color: #6b7280;
  font-size: 0.84rem;
  font-weight: 600;
}

.discover-dashboard-metric strong {
  font-size: 1.65rem;
  letter-spacing: -0.05em;
}

.discover-dashboard-metric span {
  color: #5f6673;
  font-size: 0.9rem;
}

.discover-dashboard-metric-accent {
  background: linear-gradient(135deg, #fff7f1, #fffdfb);
  border-color: rgba(255, 122, 26, 0.14);
}

.discover-dashboard-chart {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 10px;
  min-height: 142px;
  padding: 18px;
  border-radius: 20px;
  background: #fbfbfb;
  border: 1px solid rgba(16, 17, 20, 0.05);
}

.discover-dashboard-chart span {
  border-radius: 999px 999px 14px 14px;
  background: linear-gradient(180deg, rgba(255, 173, 107, 0.95), rgba(255, 122, 26, 0.9));
}

.discover-dashboard-chart span:nth-child(1) { height: 44%; }
.discover-dashboard-chart span:nth-child(2) { height: 62%; }
.discover-dashboard-chart span:nth-child(3) { height: 78%; }
.discover-dashboard-chart span:nth-child(4) { height: 55%; }
.discover-dashboard-chart span:nth-child(5) { height: 92%; }
.discover-dashboard-chart span:nth-child(6) { height: 68%; }

.discover-benefits-section {
  padding-top: 0;
  padding-bottom: 104px;
}

.discover-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.discover-benefit-card {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 17, 20, 0.07);
  border-radius: 26px;
  box-shadow: 0 14px 30px rgba(16, 17, 20, 0.045);
}

.discover-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: #fff7f1;
  color: #ff7a1a;
}

.discover-benefit-icon svg {
  width: 24px;
  height: 24px;
}

.discover-benefit-card h2 {
  font-size: 1.18rem;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.discover-benefit-card p {
  margin-top: 10px;
  color: #5f6673;
  line-height: 1.75;
}

.discover-mission-section {
  padding-top: 0;
  padding-bottom: 104px;
}

.discover-mission-box {
  padding: 34px 28px;
  border-radius: 28px;
  background: #f7f8fa;
  border: 1px solid rgba(16, 17, 20, 0.05);
  text-align: center;
}

.discover-mission-box p {
  max-width: 760px;
  margin: 16px auto 0;
  color: #5f6673;
  line-height: 1.82;
}

.discover-page-cta {
  padding-top: 0;
  padding-bottom: 112px;
}

.discover-page-cta-box {
  padding: 40px 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 122, 26, 0.22), transparent 24%),
    linear-gradient(135deg, #0f1012, #15181d);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 24px 56px rgba(15, 16, 18, 0.18);
}

.discover-page-cta-box h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.discover-page-cta-box p {
  max-width: 580px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.discover-page-cta-button {
  margin-top: 24px;
  min-width: 230px;
  justify-content: center;
  border-radius: 999px;
}

.privacy-page-body {
  background: #ffffff;
}

.privacy-page-shell {
  color: #101114;
}

.privacy-hero-section {
  padding-top: 136px;
  padding-bottom: 74px;
}

.privacy-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.privacy-hero-inner h1 {
  font-size: clamp(2.35rem, 7.4vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.065em;
}

.privacy-hero-inner p {
  max-width: 700px;
  margin: 20px auto 0;
  color: #5f6673;
  line-height: 1.82;
}

.privacy-content-section {
  padding-top: 0;
  padding-bottom: 112px;
}

.privacy-content-shell {
  max-width: 820px;
}

.privacy-section-block + .privacy-section-block {
  margin-top: 34px;
}

.privacy-section-block h2 {
  font-size: 1.34rem;
  letter-spacing: -0.035em;
  line-height: 1.24;
}

.privacy-section-block p {
  margin-top: 12px;
  color: #5f6673;
  line-height: 1.9;
}

.privacy-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  position: relative;
  padding-left: 28px;
  color: #242833;
  line-height: 1.72;
}

.privacy-list li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.16), rgba(255, 122, 26, 0.04));
  border: 1px solid rgba(255, 122, 26, 0.16);
}

.privacy-list li::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 5px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ff7a1a;
}

.privacy-contact-link {
  display: inline-flex;
  margin-top: 14px;
  color: #111214;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.privacy-update-card {
  margin-top: 40px;
  padding: 20px 22px;
  border-radius: 20px;
  background: #f7f8fa;
  border: 1px solid rgba(16, 17, 20, 0.05);
}

.privacy-update-card p {
  color: #5f6673;
  line-height: 1.75;
}

@media (min-width: 700px) {
  .container {
    width: min(1200px, calc(100% - 56px));
  }

  .privacy-update-card {
    padding: 22px 24px;
  }

  .discover-story-grid,
  .discover-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .discover-page-cta-box {
    padding: 48px 40px;
  }

  .explorer-categories-grid,
  .explorer-showcase-grid,
  .explorer-advantages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .explorer-page-cta-box {
    padding: 48px 40px;
  }

  .pricing-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .pricing-showcase-card-featured {
    transform: translateY(-10px);
  }

  .pricing-page-cta-box {
    padding: 48px 40px;
  }

  .feature-grid,
  .pricing-grid,
  .trust-band-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline::before {
    display: none;
  }

  .final-cta-box {
    grid-template-columns: 1.4fr auto;
    align-items: center;
    padding: 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .section {
    padding: 138px 0;
  }

  .nav {
    position: static;
    inset: auto;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    padding: 0 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-desktop-links {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(11, 13, 18, 0.06);
    box-shadow: 0 18px 40px rgba(11, 13, 18, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .nav-desktop-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    color: #445064;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .nav-mobile-panel,
  .nav-backdrop,
  .nav-toggle {
    display: none;
  }

  .header-utilities,
  .header-actions .btn-link,
  .header-actions .btn-secondary,
  .header-actions .btn-primary {
    display: inline-flex;
  }

  .header-actions .btn-secondary,
  .header-actions .btn-primary {
    min-height: 46px;
    padding-inline: 20px;
  }

  .discover-story-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 42px;
  }

  .discover-benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .explorer-categories-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .explorer-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .explorer-advantages-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .pricing-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .pricing-showcase-card-featured {
    transform: translateY(-14px);
  }

  .hero {
    padding-top: 52px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(460px, 0.96fr);
    gap: 72px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .dashboard-panel {
    padding: 24px;
  }

  .trust-band {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    padding: 42px;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 979px) {
  .header {
    padding: 4px 0 2px;
    background: transparent;

  .privacy-hero-section {
    padding-top: 112px;
    padding-bottom: 52px;
  }

  .privacy-section-block + .privacy-section-block {
    margin-top: 28px;
  }

  .privacy-update-card {
    padding: 18px 18px;
    border-radius: 18px;
  }

  .discover-hero-section {
    padding-top: 110px;
    padding-bottom: 54px;
  }

  .discover-dashboard-card,
  .discover-benefit-card,
  .discover-mission-box {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .discover-page-cta-box {
    padding: 34px 20px;
    border-radius: 26px;
  }

  .explorer-hero-section {
    padding-top: 110px;
    padding-bottom: 52px;
  }

  .explorer-category-card,
  .explorer-showcase-card {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .explorer-showcase-visual {
    height: 156px;
    border-radius: 18px;
  }

  .explorer-page-cta-box {
    padding: 34px 20px;
    border-radius: 26px;
  }
    border-bottom: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .header-inner {
    min-height: 50px;
    padding: 8px 4px 6px;
  }

  .logo img {
    width: 38px;
    height: 38px;
  }

  .brand-text {
    font-size: 0.98rem;
  }

  .header-brand .brand-text {
    font-size: 27px;
  }

  .nav {
    top: 10px;
    right: 10px;
    bottom: 10px;
    width: min(380px, calc(100vw - 20px));
  }

  .hero-stack {
    padding-right: 0;
  }

  .mobile-store-panel {
    right: 10px;
  }
}

@media (max-width: 699px) {
  .container {
    width: min(1200px, calc(100% - 24px));
  }

  .pricing-hero-section {
    padding-top: 110px;
    padding-bottom: 44px;
  }

  .pricing-showcase-card {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .pricing-faq-item {
    padding: 0 18px;
  }

  .pricing-page-cta-box {
    padding: 34px 20px;
    border-radius: 26px;
  }

  .section {
    padding: 98px 0;
  }

  .header-inner {
    gap: 10px;
    min-height: 46px;
    padding: 8px 0 4px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-text {
    font-size: 0.94rem;
  }

  .header-brand .brand-text {
    font-size: 27px;
  }

  .logo img {
    width: 34px;
    height: 34px;
  }

  .nav {
    top: 8px;
    right: 8px;
    bottom: 8px;
    width: min(100vw - 16px, 364px);
    padding: 24px 18px 18px;
    border-radius: 26px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .nav-toggle span {
    width: 15px;
  }

  .nav-toggle:hover span:nth-child(2) {
    width: 12px;
  }

  .nav-mobile-link {
    min-height: 52px;
    padding-inline: 16px !important;
    border-radius: 16px !important;
  }

  .nav-mobile-actions .btn {
    min-height: 52px;
    border-radius: 16px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 7.6vw, 3.2rem);
    line-height: 1.11;
    letter-spacing: -0.045em;
    margin-top: 2px;
  }

  .hero-text {
    color: #3f4754;
    font-size: 0.98rem;
    line-height: 1.85;
  }

  .hero-cta-row .btn,
  .final-cta-actions .btn {
    width: 100%;
  }

  .hero-cta-row {
    justify-content: center;
    margin-top: 18px;
  }

  .hero-cta-row .btn-primary {
    width: min(100%, 320px);
    min-width: 0;
    min-height: 54px;
    margin-inline: auto;
    border-radius: 16px;
  }

  .proof-chip {
    width: 100%;
    border-radius: 18px;
    white-space: normal;
    padding: 12px 14px;
  }

  .dashboard-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .pill-group {
    justify-content: flex-start;
  }

  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .hero-stack {
    display: grid;
    gap: 18px;
    max-width: 100%;
    margin-left: 0;
    padding: 0;
  }

  .hero-visual {
    min-height: auto;
  }

  .mobile-store-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .timeline-step {
    grid-template-columns: 44px 1fr;
    padding: 22px;
  }

  .trust-band {
    padding: 24px;
  }

  .final-cta-box {
    padding: 26px;
    border-radius: 28px;
  }

  .pricing-card,
  .feature-card,
  .dashboard-panel,
  .mobile-store-panel {
    border-radius: 24px;
  }

  body::before {
    background-size: 88px 88px;
    opacity: 0.36;
  }

  .site-shell::before {
    height: min(920px, 100vh + 80px);
  }

  .footer-brand-top {
    gap: 10px;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-language {
    margin-left: auto;
  }

  .footer-language-switch {
    width: fit-content;
    max-width: 100%;
    justify-content: center;
  }

  .footer-language-option {
    flex: 0 0 auto;
    min-width: 34px;
    padding: 0 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav,
  .nav-backdrop,
  .nav-mobile-link::after,
  .nav-toggle span,
  .btn,
  .header-utility-link {
    transition: none !important;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

body.features-minimal-body {
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  background: #ffffff;
  color: #121212;
}

body.features-minimal-body::before,
.features-minimal-page::before {
  content: none;
}

.features-minimal-page {
  background: #ffffff;
}

.feature-minimal-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(18, 18, 18, 0.06);
  box-shadow: 0 6px 18px rgba(18, 18, 18, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.feature-minimal-header-inner {
  min-height: 72px;
  padding: 14px 0;
}

.feature-minimal-brand .brand-text {
  font-size: 1.62rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.feature-minimal-nav {
  top: 68px;
  left: 16px;
  right: 16px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(18, 18, 18, 0.06);
  box-shadow: 0 18px 34px rgba(18, 18, 18, 0.08);
}

.feature-minimal-nav .nav-desktop-link,
.feature-minimal-nav .nav-mobile-link,
.feature-header-link {
  color: #4b5563;
}

.feature-minimal-nav .nav-desktop-link.is-current {
  color: #121212;
}

.feature-mobile-panel {
  background: transparent;
}

.feature-minimal-actions {
  gap: 10px;
}

.feature-header-link {
  display: none;
  font-size: 0.94rem;
  font-weight: 600;
}

.feature-header-cta {
  display: none;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #ff7a1a;
  box-shadow: none;
}

.feature-header-cta:hover {
  background: #f06d0a;
  transform: translateY(-1px);
}

.feature-nav-toggle {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  background: #ffffff;
  box-shadow: none;
}

.feature-nav-toggle span {
  width: 18px;
  height: 2px;
  background: #121212;
}

.feature-hero-simple {
  padding-top: 118px;
  padding-bottom: 76px;
}

.feature-hero-simple-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.feature-hero-simple h1 {
  margin-top: 0;
  font-size: clamp(2.18rem, 7.4vw, 4.9rem);
  line-height: 1.06;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.feature-hero-simple h1 span {
  display: block;
}

.feature-hero-simple p {
  max-width: 640px;
  margin: 22px auto 0;
  color: #5f6673;
  font-size: 1rem;
  line-height: 1.8;
}

.feature-list-section {
  padding-top: 12px;
  padding-bottom: 110px;
}

.how-hero-section {
  padding-top: 120px;
  padding-bottom: 68px;
}

.how-hero-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.how-hero-inner h1 {
  font-size: clamp(2.35rem, 7.2vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.065em;
}

.how-hero-inner h1 span {
  display: block;
}

.how-hero-inner p {
  max-width: 620px;
  margin: 20px auto 0;
  color: #5f6673;
  font-size: 1rem;
  line-height: 1.8;
}

.how-steps-section {
  padding-top: 4px;
  padding-bottom: 112px;
}

.how-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.how-step-card {
  padding: 28px 24px;
  background: #ffffff;
  border: 1px solid rgba(18, 18, 18, 0.07);
  border-radius: 26px;
  box-shadow: 0 10px 24px rgba(18, 18, 18, 0.04);
}

.how-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.how-step-number {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

.how-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #fff7f1;
  color: #ff7a1a;
}

.how-step-icon svg {
  width: 24px;
  height: 24px;
}

.how-step-card h2 {
  font-size: 1.18rem;
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.how-step-card p {
  margin-top: 12px;
  color: #6b7280;
  font-size: 0.98rem;
  line-height: 1.75;
}

.how-cta-section {
  padding-top: 0;
  padding-bottom: 112px;
}

.how-cta-box {
  padding: 38px 26px;
  border-radius: 30px;
  background: #0f0f10;
  color: #ffffff;
  text-align: center;
}

.how-cta-box h2 {
  font-size: clamp(1.95rem, 6vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.how-cta-box p {
  max-width: 560px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.how-cta-button {
  margin: 24px auto 0;
  min-width: 220px;
  justify-content: center;
  background: #ff7a1a;
  border-radius: 999px;
  box-shadow: none;
}

.how-cta-button:hover {
  background: #f06d0a;
  transform: translateY(-1px);
}

.feature-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.feature-simple-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 24px;
  background: #ffffff;
  border: 1px solid rgba(18, 18, 18, 0.07);
  border-radius: 24px;
  box-shadow: 0 10px 24px rgba(18, 18, 18, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-simple-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 26, 0.18);
  box-shadow: 0 14px 28px rgba(18, 18, 18, 0.06);
}

.feature-simple-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: #fff7f1;
  color: #ff7a1a;
}

.feature-simple-icon svg {
  width: 24px;
  height: 24px;
}

.feature-simple-card h2 {
  font-size: 1.16rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.feature-simple-card p {
  margin-top: 12px;
  color: #6b7280;
  font-size: 0.97rem;
  line-height: 1.75;
}

.feature-minimal-footer {
  padding: 56px 0 44px;
  background: #0f0f10;
  color: rgba(255, 255, 255, 0.92);
}

.feature-minimal-footer-inner {
  display: grid;
  gap: 28px;
}

.feature-minimal-footer-brand .brand-text {
  font-size: 1.54rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.feature-minimal-footer-brand .brand-text-primary {
  color: #ffffff;
}

.feature-minimal-footer-copy {
  max-width: 360px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.8;
}

.feature-minimal-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.feature-minimal-footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
}

.feature-minimal-footer-legal {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.94rem;
}

@media (min-width: 700px) {
  .how-hero-inner h1 span {
    display: inline;
  }

  .how-hero-inner h1 span + span::before {
    content: ' ';
  }

  .how-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-step-card {
    min-height: 250px;
  }

  .feature-hero-simple h1 span {
    display: inline;
  }

  .feature-hero-simple h1 span + span::before {
    content: ' ';
  }

  .feature-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-simple-card {
    min-height: 250px;
  }
}

@media (min-width: 980px) {
  .how-steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .feature-minimal-header-inner {
    gap: 28px;
  }

  .feature-minimal-nav {
    position: static;
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .feature-minimal-nav .nav-desktop-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    font-size: 0.95rem;
    font-weight: 600;
  }

  .feature-mobile-panel {
    display: none;
  }

  .feature-header-link,
  .feature-header-cta {
    display: inline-flex;
    align-items: center;
  }

  .feature-nav-toggle {
    display: none;
  }

  .feature-list-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .feature-minimal-footer-inner {
    grid-template-columns: 1.4fr auto auto;
    align-items: end;
  }

  .feature-minimal-footer-legal {
    text-align: right;
  }
}

@media (max-width: 979px) {
  .feature-minimal-nav .nav-desktop-link {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-simple-card,
  .feature-header-cta {
    transition: none;
  }
}
