:root {
  --bg: #f8fbfb;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-dark: rgba(19, 34, 56, 0.8);
  --stroke: rgba(19, 34, 56, 0.08);
  --stroke-strong: rgba(19, 34, 56, 0.16);
  --text: #132238;
  --text-soft: #5e6d7d;
  --teal: #00a7a0;
  --teal-deep: #007f7d;
  --orange: #ff7a1a;
  --orange-deep: #ef5d00;
  --purple: #7b4dff;
  --purple-deep: #4b1fc8;
  --blue: #2a7fff;
  --mint: #dffaf6;
  --shadow-lg: 0 30px 80px rgba(19, 34, 56, 0.12);
  --shadow-md: 0 18px 44px rgba(19, 34, 56, 0.1);
  --shadow-sm: 0 10px 24px rgba(19, 34, 56, 0.06);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --page-max: 1240px;
  --nav-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(circle at 8% 6%, rgba(0, 167, 160, 0.18), transparent 20%),
    radial-gradient(circle at 92% 12%, rgba(255, 122, 26, 0.18), transparent 22%),
    radial-gradient(circle at 80% 80%, rgba(123, 77, 255, 0.11), transparent 20%),
    linear-gradient(180deg, #fcffff 0%, var(--bg) 40%, #f1f7fb 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(19, 34, 56, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 34, 56, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 92%);
  z-index: 0;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(0, 167, 160, 0.28);
  outline-offset: 3px;
}

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

button {
  cursor: pointer;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.container {
  width: min(var(--page-max), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 72px 0;
}

.section-dark {
  position: relative;
  color: #f5fbff;
  background:
    radial-gradient(circle at top left, rgba(123, 77, 255, 0.26), transparent 26%),
    radial-gradient(circle at bottom right, rgba(0, 167, 160, 0.18), transparent 22%),
    linear-gradient(135deg, #0f1726 0%, #132238 45%, #1c2148 100%);
  overflow: hidden;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/backgrounds/astrology-pattern.png");
  background-size: 380px auto;
  background-repeat: repeat;
  opacity: 0.09;
  mix-blend-mode: screen;
  pointer-events: none;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.62);
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--orange), var(--teal));
}

.section-dark .section-tag {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #d6fbff;
}

.eyebrow-row,
.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head-compact {
  margin-bottom: 18px;
}

.headline,
.display {
  margin: 0;
  font-size: clamp(2.7rem, 5.8vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.headline-lg {
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.headline-md {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.headline-sm {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.lead {
  margin: 0;
  max-width: 720px;
  color: var(--text-soft);
  font-size: 1.06rem;
  line-height: 1.8;
}

.section-dark .lead,
.section-dark .meta-note,
.section-dark .tiny-note {
  color: rgba(245, 251, 255, 0.72);
}

.meta-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.tiny-note {
  color: var(--text-soft);
  font-size: 0.85rem;
  line-height: 1.6;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(22px);
}

.soft-card,
.feature-card,
.metric-card,
.quote-card,
.pricing-card,
.info-card,
.contact-card,
.faq-item,
.showcase-copy,
.story-card,
.member-card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow-sm);
}

.story-card,
.feature-card,
.info-card,
.contact-card,
.quote-card,
.pricing-card {
  padding: 28px;
}

.grid-2,
.grid-3,
.grid-4,
.grid-12 {
  display: grid;
  gap: 24px;
}

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

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

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

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

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal) 0%, #14c4be 100%);
  box-shadow: 0 16px 28px rgba(0, 167, 160, 0.28);
}

.btn-secondary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange) 0%, #ff9848 100%);
  box-shadow: 0 16px 28px rgba(255, 122, 26, 0.26);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid rgba(19, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
}

.btn-dark {
  color: #fff;
  background: linear-gradient(135deg, #17283d 0%, #1f3d66 100%);
  box-shadow: 0 16px 28px rgba(19, 34, 56, 0.24);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.68);
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 500;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 16px 0 0;
}

.site-header.is-scrolled .navbar {
  box-shadow: var(--shadow-md);
  border-color: rgba(19, 34, 56, 0.1);
  background: rgba(255, 255, 255, 0.86);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--nav-height);
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 54px rgba(19, 34, 56, 0.08);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  overflow: hidden;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 0 0 1px rgba(19, 34, 56, 0.05);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-size: 1.08rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
  background: rgba(19, 34, 56, 0.05);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(19, 34, 56, 0.04);
}

.lang-switch button {
  min-width: 72px;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 600;
}

.lang-switch button.is-selected {
  background: #fff;
  color: var(--text);
  box-shadow: 0 8px 18px rgba(19, 34, 56, 0.08);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: rgba(19, 34, 56, 0.05);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle::before {
  transform: translateY(-6px);
}

.nav-toggle::after {
  transform: translateY(4px);
}

.nav-toggle.is-open span {
  opacity: 0;
}

.nav-toggle.is-open::before {
  transform: translateY(2px) rotate(45deg);
}

.nav-toggle.is-open::after {
  transform: translateY(0) rotate(-45deg);
}

.nav-panel {
  display: contents;
}

.hero {
  padding: 32px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 28px;
  align-items: center;
}

.hero-copy {
  position: relative;
}

.hero-copy .lead {
  margin-top: 22px;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.metric-card {
  padding: 18px;
  text-align: left;
}

.metric-value {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.metric-label {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.floating-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.9;
}

.floating-orb.teal {
  inset: 48px auto auto 24px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(0, 167, 160, 0.48), rgba(0, 167, 160, 0));
}

.floating-orb.orange {
  inset: auto 0 120px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.4), rgba(255, 122, 26, 0));
}

.phone-stack {
  position: absolute;
  inset: 10px 0 0;
}

.phone-shell {
  position: absolute;
  width: min(280px, 86%);
  padding: 16px 12px 18px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 252, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: 0 36px 80px rgba(19, 34, 56, 0.16);
  backdrop-filter: blur(14px);
}

.phone-shell::before {
  content: "";
  position: absolute;
  inset: 10px auto auto 50%;
  width: 32%;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(19, 34, 56, 0.08);
}

.phone-shell.primary {
  top: 10px;
  right: 6%;
  z-index: 2;
}

.phone-shell.secondary {
  left: 0;
  bottom: 0;
  z-index: 1;
}

.phone-screen {
  overflow: hidden;
  border-radius: 28px;
  background: #f2f7f8;
  box-shadow: inset 0 0 0 1px rgba(19, 34, 56, 0.06);
}

.phone-screen img {
  width: 100%;
  height: auto;
}

.hero-float-card {
  position: absolute;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 22px 54px rgba(19, 34, 56, 0.12);
  backdrop-filter: blur(18px);
}

.hero-float-card strong,
.hero-float-card span {
  display: block;
}

.hero-float-card strong {
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.hero-float-card span {
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.float-top {
  top: 50px;
  left: 4%;
}

.float-bottom {
  right: 0;
  bottom: 90px;
}

.ticker {
  display: flex;
  gap: 14px;
  overflow: hidden;
  padding: 10px 0 0;
}

.ticker-track {
  display: flex;
  gap: 14px;
  flex: 0 0 auto;
  min-width: max-content;
}

.ticker-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-soft);
  font-size: 0.92rem;
  white-space: nowrap;
}

.ticker-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--teal), var(--orange));
}

.showcase-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.showcase-tabs {
  display: grid;
  gap: 14px;
}

.showcase-tab {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid var(--stroke);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-soft);
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.showcase-tab strong,
.showcase-tab span {
  display: block;
}

.showcase-tab strong {
  color: var(--text);
  font-size: 1rem;
}

.showcase-tab span {
  margin-top: 6px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.showcase-tab.is-active {
  border-color: rgba(0, 167, 160, 0.22);
  background: linear-gradient(180deg, rgba(0, 167, 160, 0.08), rgba(255, 255, 255, 0.94));
  box-shadow: 0 16px 32px rgba(0, 167, 160, 0.1);
  transform: translateY(-2px);
}

.showcase-stage {
  position: relative;
  min-height: 680px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 122, 26, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(0, 167, 160, 0.16), transparent 24%),
    rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.showcase-panel {
  position: absolute;
  inset: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 280px);
  gap: 24px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.showcase-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.showcase-copy {
  padding: 32px;
}

.showcase-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.showcase-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.showcase-list span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--teal), var(--orange));
}

.showcase-phone {
  margin-inline: auto;
  width: 100%;
  max-width: 280px;
}

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

.feature-card {
  min-height: 220px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 1.4rem;
  background: linear-gradient(145deg, rgba(0, 167, 160, 0.12), rgba(255, 122, 26, 0.12));
  color: var(--teal-deep);
}

.feature-card p,
.info-card p,
.quote-card p,
.pricing-card p,
.story-card p,
.contact-card p,
.faq-answer p {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.75;
}

.news-layout,
.business-layout,
.download-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 28px;
  align-items: center;
}

.astro-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  align-items: center;
}

.astro-score-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.astro-score {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.astro-score strong,
.astro-score span {
  display: block;
}

.astro-score strong {
  font-size: 1.15rem;
}

.astro-score span {
  margin-top: 6px;
  color: rgba(245, 251, 255, 0.72);
  font-size: 0.88rem;
}

.storyline {
  display: grid;
  gap: 18px;
}

.story-card {
  position: relative;
  overflow: hidden;
}

.story-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -40px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 167, 160, 0.1), transparent 72%);
}

.listing-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.listing-media {
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(0, 167, 160, 0.18), rgba(255, 122, 26, 0.12));
}

.listing-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.action-chip {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  background: #fff;
  color: var(--teal-deep);
  font-weight: 600;
}

.ai-panel {
  position: relative;
  overflow: hidden;
}

.network-grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 167, 160, 0.34), transparent 18%),
    radial-gradient(circle at 74% 26%, rgba(123, 77, 255, 0.24), transparent 18%),
    radial-gradient(circle at 62% 76%, rgba(255, 122, 26, 0.24), transparent 18%);
  opacity: 0.7;
}

.network-line {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.08) calc(50% - 1px), rgba(255, 255, 255, 0.08) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(transparent calc(50% - 1px), rgba(255, 255, 255, 0.08) calc(50% - 1px), rgba(255, 255, 255, 0.08) calc(50% + 1px), transparent calc(50% + 1px));
  opacity: 0.35;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.timeline-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 167, 160, 0.16), rgba(255, 122, 26, 0.12));
}

.values-grid,
.testimonial-grid,
.pricing-grid,
.faq-grid,
.city-grid {
  display: grid;
  gap: 20px;
}

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

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

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pricing-card.is-featured {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #132238 0%, #1b3561 54%, #00a7a0 140%);
  box-shadow: 0 28px 80px rgba(19, 34, 56, 0.22);
}

.pricing-card.is-featured p,
.pricing-card.is-featured .tiny-note {
  color: rgba(255, 255, 255, 0.74);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.12);
  color: var(--orange-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card.is-featured .pricing-badge {
  color: #132238;
  background: #fff2e8;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-top: 18px;
}

.price strong {
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.price span {
  font-size: 0.95rem;
  color: var(--text-soft);
  padding-bottom: 4px;
}

.pricing-card.is-featured .price span {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
}

.pricing-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 0.94rem;
}

.pricing-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

.quote-card {
  min-height: 100%;
}

.quote-card strong,
.quote-card span {
  display: block;
}

.quote-card strong {
  font-size: 1rem;
}

.quote-card span {
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  text-align: left;
}

.faq-question strong {
  font-size: 1rem;
}

.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer-inner {
  padding: 0 24px 24px;
}

.download-panel {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border-radius: var(--radius-xl);
}

.download-panel::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.24), transparent 72%);
}

.qr-box {
  width: 144px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.newsletter-form input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.form-status {
  min-height: 22px;
  color: var(--teal-deep);
  font-size: 0.9rem;
}

.contact-form textarea {
  min-height: 148px;
  padding-top: 16px;
  resize: vertical;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.footer {
  padding: 24px 0 36px;
}

.footer-shell {
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    radial-gradient(circle at top right, rgba(0, 167, 160, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 122, 26, 0.1), transparent 22%),
    rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.footer-brand p,
.footer-column a,
.footer-column span {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.8;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-column strong {
  font-size: 0.96rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(19, 34, 56, 0.08);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(19, 34, 56, 0.04);
  color: var(--text-soft);
}

.page-hero {
  padding: 42px 0 54px;
}

.page-hero-shell {
  padding: 42px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    radial-gradient(circle at top right, rgba(255, 122, 26, 0.16), transparent 26%),
    radial-gradient(circle at bottom left, rgba(0, 167, 160, 0.14), transparent 24%),
    rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: 24px;
  align-items: center;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(19, 34, 56, 0.05);
  color: var(--teal-deep);
  font-size: 0.84rem;
  font-weight: 600;
}

.info-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.legal-shell {
  display: grid;
  gap: 18px;
}

.legal-shell h2,
.legal-shell h3 {
  margin: 0 0 10px;
}

.legal-shell p,
.legal-shell li {
  color: var(--text-soft);
  line-height: 1.8;
}

.legal-shell ul {
  margin: 0;
  padding-left: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms ease, transform 420ms ease;
}
