:root {
  --bg: #f5efe2;
  --bg-soft: #fbf7ee;
  --surface: rgba(255, 251, 243, 0.82);
  --surface-strong: #fffaf1;
  --ink: #12261d;
  --ink-soft: #32483d;
  --muted: #6b756d;
  --line: rgba(18, 38, 29, 0.12);
  --line-strong: rgba(18, 38, 29, 0.2);
  --green: #0f6a4f;
  --green-deep: #0a3e30;
  --green-soft: rgba(15, 106, 79, 0.1);
  --gold: #d4a955;
  --gold-deep: #a97e2d;
  --gold-soft: rgba(212, 169, 85, 0.15);
  --positive: #14865f;
  --negative: #b24d47;
  --positive-soft: rgba(20, 134, 95, 0.12);
  --negative-soft: rgba(178, 77, 71, 0.12);
  --shadow: 0 28px 64px rgba(14, 27, 21, 0.12);
  --shadow-soft: 0 16px 36px rgba(14, 27, 21, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top right, rgba(212, 169, 85, 0.18), transparent 28%),
    linear-gradient(180deg, #f8f2e7 0%, #efe5d4 100%);
  color: var(--ink);
  font-family: "Alexandria", sans-serif;
  min-height: 100vh;
  line-height: 1.8;
  overflow-x: hidden;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.58;
  background-image:
    linear-gradient(rgba(18, 38, 29, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 38, 29, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 15% 20%, rgba(15, 106, 79, 0.08), transparent 24%),
    radial-gradient(circle at 85% 78%, rgba(212, 169, 85, 0.09), transparent 20%);
  background-size: 30px 30px, 30px 30px, 100% 100%, 100% 100%;
  z-index: 0;
}

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

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

button {
  cursor: pointer;
  border: 0;
  background: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mono {
  direction: ltr;
  display: inline-block;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.02em;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 242, 231, 0.8);
  border-bottom: 1px solid rgba(18, 38, 29, 0.08);
}

.topbar-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.mobile-nav-btn {
  display: none;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 14px;
  border: 1px solid rgba(18, 38, 29, 0.12);
  background: rgba(255, 251, 243, 0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-soft);
  direction: ltr;
}

.mobile-nav-btn span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-deep);
}

.mobile-floating-nav {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(212, 169, 85, 0.32);
  background: rgba(255, 248, 235, 0.94);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 16px 34px rgba(10, 62, 48, 0.16);
  direction: ltr;
}

.mobile-floating-nav span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-deep);
}

.mobile-quick-menu[hidden] {
  display: none !important;
}

body.mobile-menu-open {
  overflow: hidden;
}

.mobile-quick-menu {
  position: fixed;
  inset: 0;
  z-index: 10040;
}

.mobile-quick-menu-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 34, 26, 0.42);
}

.mobile-quick-menu-sheet {
  position: absolute;
  top: 20px;
  left: 12px;
  width: min(300px, calc(100vw - 24px));
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(212, 169, 85, 0.28);
  background:
    linear-gradient(180deg, rgba(12, 61, 46, 0.98), rgba(8, 44, 34, 0.98));
  box-shadow: 0 26px 60px rgba(6, 30, 23, 0.35);
}

.mobile-quick-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--cream);
}

.mobile-quick-menu-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 248, 235, 0.12);
  color: var(--cream);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.mobile-quick-menu-links {
  display: grid;
  gap: 10px;
}

.mobile-quick-link {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 248, 235, 0.06);
  color: var(--cream);
  font: inherit;
  font-weight: 700;
  text-align: right;
  cursor: pointer;
}

.mobile-quick-link-cta {
  border-color: rgba(212, 169, 85, 0.32);
  background: linear-gradient(135deg, rgba(212, 169, 85, 0.22), rgba(212, 169, 85, 0.14));
  color: #fff7e5;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(212, 169, 85, 0.3), rgba(15, 106, 79, 0.18)),
    var(--surface-strong);
  border: 1px solid rgba(212, 169, 85, 0.34);
  color: var(--green-deep);
  font-size: 22px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.brand-word {
  font-size: 22px;
  font-weight: 800;
  color: var(--green-deep);
}

.brand-word span {
  color: var(--gold-deep);
}

.topbar-side {
  display: flex;
  align-items: center;
  gap: 14px;
}

.license-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.85);
  border: 1px solid rgba(212, 169, 85, 0.28);
  color: var(--ink-soft);
  font-size: 13px;
}

.mini-cta {
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: #f7f2e9;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.mini-cta:hover,
.btn:hover,
.row-cta:hover {
  transform: translateY(-2px);
}

.hero {
  padding: 38px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-panel {
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.hero-copy {
  padding: 52px 50px;
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 169, 85, 0.22), transparent 28%),
    linear-gradient(145deg, #143526 0%, #0d2119 62%, #0b1b15 100%);
  color: #f9f4ea;
  box-shadow: var(--shadow);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.32;
  pointer-events: none;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: #f3d99a;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(243, 217, 154, 0.22);
  font-size: 13px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(212, 169, 85, 0.12);
}

h1 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

h1 span {
  color: #f0cf86;
}

.hero-sub {
  max-width: 620px;
  color: rgba(249, 244, 234, 0.78);
  font-size: 16px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-note {
  color: rgba(249, 244, 234, 0.68);
  font-size: 12px;
  max-width: 560px;
  margin-bottom: 28px;
}

.btn {
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #e0b96c 0%, #c6943f 100%);
  color: #1a241d;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(201, 148, 63, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #e8decf;
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
  border-color: rgba(243, 217, 154, 0.45);
  color: #fff8ed;
}

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

.trust-chip {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.trust-chip strong {
  display: block;
  margin-bottom: 4px;
  color: #f7ead0;
  font-size: 15px;
}

.trust-chip span {
  display: block;
  color: rgba(249, 244, 234, 0.7);
  font-size: 13px;
}

.hero-panel {
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(212, 169, 85, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 251, 243, 0.92), rgba(255, 247, 236, 0.84));
  border: 1px solid rgba(18, 38, 29, 0.08);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(18, 38, 29, 0.035) 25%, transparent 25%),
    linear-gradient(225deg, rgba(18, 38, 29, 0.035) 25%, transparent 25%);
  background-size: 24px 24px;
  opacity: 0.18;
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.panel-top,
.panel-price,
.sector-grid,
.insight-grid {
  position: relative;
}

.panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.panel-kicker,
.section-kicker,
.tiny-label {
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.panel-top h2 {
  margin-top: 6px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 750;
  color: var(--green-deep);
}

.panel-date {
  min-width: 126px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(18, 38, 29, 0.09);
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

.panel-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(12, 39, 30, 0.95);
  color: #f8f2e9;
  margin-bottom: 18px;
}

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

.code-badge {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d8c18f;
  font-size: 12px;
}

.price-value {
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1;
  font-weight: 800;
}

.price-change {
  min-width: 102px;
  text-align: center;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.price-change.positive {
  color: #91e0bf;
  background: rgba(20, 134, 95, 0.16);
}

.price-change.negative {
  color: #ffc8c0;
  background: rgba(178, 77, 71, 0.18);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.sector-card,
.insight-card,
.belt-stat,
.fit-card,
.feature-card,
.quote-card,
.lead-card {
  backdrop-filter: blur(8px);
}

.sector-card {
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(18, 38, 29, 0.08);
}

.sector-card span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 12px;
}

.sector-card strong {
  color: var(--green-deep);
  font-size: 16px;
}

.chart-card {
  padding: 18px 18px 12px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(18, 38, 29, 0.08);
  margin-bottom: 18px;
}

.range-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.range-tab {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.18s ease;
}

.range-tab.active {
  background: rgba(15, 106, 79, 0.1);
  border-color: rgba(15, 106, 79, 0.2);
  color: var(--green-deep);
}

.hero-chart {
  width: 100%;
  height: 220px;
  display: block;
}

.chart-area {
  fill: url(#chartFill);
}

.chart-line {
  fill: none;
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.insight-card {
  padding: 14px 14px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(18, 38, 29, 0.08);
}

.insight-card strong {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}

.ticker-strip {
  margin: 24px 0 0;
  border-top: 1px solid rgba(18, 38, 29, 0.08);
  border-bottom: 1px solid rgba(18, 38, 29, 0.08);
  background: rgba(255, 251, 243, 0.72);
  overflow: hidden;
}

.notice-band {
  padding-top: 28px;
}

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

.notice-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 251, 243, 0.76);
  border: 1px solid rgba(18, 38, 29, 0.08);
  box-shadow: var(--shadow-soft);
}

.notice-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-deep);
  font-size: 15px;
}

.notice-item span {
  display: block;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0;
  animation: tickerMove 36s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 22px;
  border-left: 1px solid rgba(18, 38, 29, 0.08);
  white-space: nowrap;
}

.ticker-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.ticker-symbol,
.ticker-price,
.ticker-change {
  font-size: 12px;
}

.ticker-symbol {
  color: var(--gold-deep);
}

.ticker-price {
  color: var(--muted);
}

.ticker-change.up {
  color: var(--positive);
}

.ticker-change.down {
  color: var(--negative);
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.belt-section,
.fit-section,
.features-section,
.market-watch,
.testimonial-section,
.cta-section {
  padding: 84px 0 0;
}

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

.belt-story,
.belt-stat,
.fit-card,
.feature-card,
.quote-card,
.lead-card,
.table-wrap {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 38, 29, 0.08);
  box-shadow: var(--shadow-soft);
}

.belt-story {
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.94), rgba(250, 243, 229, 0.8));
}

.belt-story h2,
.section-head h2,
.cta-copy h2 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
  color: var(--green-deep);
}

.belt-story p:last-child,
.section-head p:last-child,
.cta-copy > p {
  color: var(--muted);
  font-size: 15px;
}

.belt-stat {
  padding: 24px 20px;
  background: rgba(255, 251, 243, 0.78);
}

.belt-stat span {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--gold-deep);
  font-weight: 800;
}

.belt-stat p {
  color: var(--ink-soft);
  font-size: 14px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.fit-grid,
.feature-grid,
.testimonial-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

.fit-card {
  padding: 26px;
  background: rgba(255, 251, 243, 0.84);
}

.fit-no {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(212, 169, 85, 0.2), rgba(15, 106, 79, 0.12));
  color: var(--gold-deep);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.fit-card h3,
.feature-card h3,
.form-head h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.35;
  color: var(--green-deep);
}

.fit-card p,
.feature-card p,
.quote-card p {
  color: var(--ink-soft);
  font-size: 14px;
}

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

.feature-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 251, 243, 0.92), rgba(249, 241, 224, 0.86));
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 106, 79, 0.08);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.table-wrap {
  background: rgba(255, 251, 243, 0.84);
  padding: 10px;
  overflow-x: auto;
}

.market-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.market-table th,
.market-table td {
  padding: 18px 16px;
  text-align: right;
  border-bottom: 1px solid rgba(18, 38, 29, 0.08);
}

.market-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.market-table td {
  color: var(--ink);
  font-size: 14px;
  vertical-align: middle;
}

.market-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.44);
}

.market-table strong {
  display: block;
  font-size: 15px;
}

.stock-code {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.tag.up {
  background: var(--positive-soft);
  color: var(--positive);
}

.tag.down {
  background: var(--negative-soft);
  color: var(--negative);
}

.sparkline {
  width: 108px;
  height: 32px;
  display: block;
}

.sparkline polyline {
  fill: none;
  stroke: var(--positive);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sparkline.negative polyline {
  stroke: var(--negative);
}

.row-cta {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(18, 38, 29, 0.12);
  background: rgba(255, 255, 255, 0.5);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.row-cta:hover {
  border-color: rgba(212, 169, 85, 0.34);
  background: rgba(255, 248, 235, 0.8);
}

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

.quote-card {
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 251, 243, 0.88), rgba(250, 242, 227, 0.78));
}

.quote-card p {
  margin-bottom: 18px;
  font-size: 15px;
}

.quote-card span {
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 700;
}

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

.faq-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 38, 29, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 251, 243, 0.92), rgba(250, 242, 227, 0.82));
  box-shadow: var(--shadow-soft);
}

.faq-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.4;
  color: var(--green-deep);
}

.faq-card p {
  color: var(--ink-soft);
  font-size: 14px;
}

.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 22px;
  align-items: stretch;
  padding-bottom: 84px;
}

.cta-copy {
  padding: 24px 8px 0 0;
}

.step-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 251, 243, 0.62);
  border: 1px solid rgba(18, 38, 29, 0.08);
}

.step-item span {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(212, 169, 85, 0.16);
  color: var(--gold-deep);
  font-size: 16px;
  font-weight: 800;
}

.step-item p {
  color: var(--ink-soft);
  font-size: 14px;
}

.lead-card {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(212, 169, 85, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 251, 243, 0.94), rgba(249, 242, 228, 0.9));
}

.community-card {
  display: flex;
  flex-direction: column;
}

.community-points {
  display: grid;
  gap: 12px;
  margin: 6px 0 22px;
}

.community-point {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(18, 38, 29, 0.08);
}

.community-point strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  color: var(--green-deep);
}

.community-point span {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.community-actions {
  display: grid;
  gap: 12px;
}

.community-secondary {
  min-height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(18, 38, 29, 0.12);
  background: rgba(255, 255, 255, 0.55);
  color: var(--green-deep);
  font-weight: 700;
}

.community-secondary:hover {
  background: rgba(255, 255, 255, 0.76);
}

.form-head {
  margin-bottom: 18px;
}

.form-head p,
.form-note {
  color: var(--muted);
  font-size: 13px;
}

.lead-card label {
  display: block;
  margin-bottom: 14px;
}

.lead-card label span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.lead-card input,
.lead-card select {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(18, 38, 29, 0.12);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  padding: 0 16px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.lead-card input:focus,
.lead-card select:focus {
  border-color: rgba(15, 106, 79, 0.34);
  box-shadow: 0 0 0 4px rgba(15, 106, 79, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.btn-full {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  margin-top: 12px;
}

.mobile-sticky-cta {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 30;
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: #f7f2e9;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(10, 62, 48, 0.22);
  display: none;
  visibility: hidden;
  opacity: 0;
}

.mobile-sticky-cta-label,
.mobile-sticky-cta-sub {
  display: block;
}

.mobile-sticky-cta-sub {
  display: none;
}

.site-footer {
  padding: 26px 0 48px;
  border-top: 1px solid rgba(18, 38, 29, 0.08);
  background: rgba(255, 250, 241, 0.68);
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-copy {
  max-width: 700px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .cta-shell,
  .belt-grid,
  .notice-grid,
  .feature-grid,
  .fit-grid,
  .testimonial-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 20px;
  }

  .belt-grid {
    gap: 14px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(104px + env(safe-area-inset-bottom, 0px));
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .topbar {
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
  }

  .topbar-inner {
    min-height: 0;
    padding: 0;
  }

  .topbar-side {
    display: none;
  }

  .mobile-nav-btn {
    display: none !important;
  }

  .mobile-floating-nav {
    display: inline-flex;
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
  }

  .hero {
    padding-top: 78px;
  }

  .hero-copy,
  .hero-panel,
  .belt-story,
  .fit-card,
  .feature-card,
  .quote-card,
  .lead-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-copy {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  h1 {
    font-size: 36px;
  }

  .hero-trust,
  .sector-grid,
  .insight-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .panel-top {
    flex-direction: column;
  }

  .panel-date {
    min-width: 0;
  }

  .panel-price {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-change {
    min-width: 0;
  }

  .section-head h2,
  .belt-story h2,
  .cta-copy h2 {
    font-size: 30px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-sticky-cta {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 12px) !important;
    min-height: 62px;
    padding: 10px 18px;
    border-radius: 22px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-align: center;
    z-index: 9999;
    visibility: visible !important;
    opacity: 1 !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(10, 62, 48, 0.32);
    backdrop-filter: blur(12px);
  }

  .mobile-sticky-cta-label {
    font-size: 16px;
    line-height: 1.2;
  }

  .mobile-sticky-cta-sub {
    display: block;
    font-size: 11px;
    color: rgba(247, 242, 233, 0.78);
    font-weight: 600;
  }

  .belt-section,
  .fit-section,
  .features-section,
  .market-watch,
  .testimonial-section,
  .cta-section {
    padding-top: 68px;
  }

  .cta-shell {
    padding-bottom: 68px;
  }

  .site-footer {
    padding-bottom: calc(120px + env(safe-area-inset-bottom, 0px));
  }
}
