@font-face {
  font-family: "SystemFallback";
  src: local("system-ui"), local("-apple-system"), local("BlinkMacSystemFont"), local("Segoe UI"), local("Roboto"), local("Helvetica Neue"), local("Arial"), local("Noto Sans");
}

:root {
  --color-primary: #1A1A1A;
  --color-secondary: #64748B;
  --color-accent: #FACC15;
  --font-main: "SystemFallback", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 2px;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.22);
  --spacing: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-main);
  overflow-x: hidden;
  background-color: #ffffff;
  color: var(--color-primary);
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

button {
  font-family: inherit;
}

.page-shell {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.site-footer {
  flex-shrink: 0;
  background: var(--color-primary);
  color: #ffffff;
}

.container {
  width: 100%;
  padding: 15px;
  max-width: 1120px;
  margin: 0 auto;
}

.grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr);
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .grid-two {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
  }
}

.section {
  padding: 3.5rem 0 3.75rem;
  position: relative;
}

@media (min-width: 900px) {
  .section {
    padding: 4.5rem 0 4.75rem;
  }
}

.section-heading-group {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--color-secondary);
  margin-bottom: 0.9rem;
}

.section-title {
  font-size: 1.9rem;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 0.9rem;
}

@media (min-width: 900px) {
  .section-title {
    font-size: 2.45rem;
  }
}

.section-subtitle {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--color-secondary);
  margin: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.14);
  color: var(--color-primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 0 6px rgba(250, 204, 21, 0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: radial-gradient(120% 220% at 0% 0%, #111827 0%, #020617 55%, #030712 100%);
  color: #ffffff;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, background 220ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.btn-indicator {
  width: 8px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--color-accent) 0%, #f97316 100%);
  box-shadow: 0 0 16px rgba(250, 204, 21, 0.8);
}

.btn:hover {
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.35);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(148, 163, 184, 0.65);
}

.btn-secondary::after {
  border-color: transparent;
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.03);
  box-shadow: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.28);
  font-size: 0.78rem;
  color: var(--color-secondary);
}

.pill-indicator {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #fef3c7 0%, #facc15 40%, #eab308 100%);
  box-shadow: 0 0 14px rgba(250, 204, 21, 0.7);
}

.rating {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 0.86rem;
  color: var(--color-secondary);
}

.rating-score {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
}

.rating-stars {
  letter-spacing: 0.12em;
  color: #facc15;
}

.monolith-card {
  position: relative;
  border-radius: 24px;
  padding: 1px;
  background: radial-gradient(circle at 0% 0%, rgba(250, 204, 21, 0.5), transparent 40%), radial-gradient(circle at 100% 100%, rgba(148, 163, 184, 0.8), transparent 50%), linear-gradient(135deg, #0b1120, #020617);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.monolith-inner {
  background: radial-gradient(140% 220% at 0% 0%, rgba(148, 163, 184, 0.16) 0%, rgba(15, 23, 42, 0.98) 46%, #020617 100%);
  border-radius: 23px;
  color: #e5e7eb;
  position: relative;
}

.monolith-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(250, 250, 250, 0.05), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.9;
  pointer-events: none;
}



.monolith-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .monolith-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
  }
}

.hero-kpi-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.hero-title {
  font-size: 2rem;
  letter-spacing: -0.06em;
  line-height: 1.02;
  margin: 0 0 0.9rem;
}

@media (min-width: 900px) {
  .hero-title {
    font-size: 2.7rem;
  }
}

.hero-subtitle {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #cbd5f5;
  margin: 0 0 1.4rem;
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: center;
  margin-bottom: 1.6rem;
}

.hero-price {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-price-current {
  font-size: 1.4rem;
  font-weight: 600;
}

.hero-price-old {
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.9);
  text-decoration: line-through;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-note {
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.9);
  margin-top: 1rem;
}

.hero-product-shell {
  position: relative;
  isolation: isolate;
}

.hero-product-backdrop {
  position: absolute;
  inset: 6%;
  border-radius: 24px;
  background: radial-gradient(circle at 30% 0%, rgba(250, 250, 250, 0.04), transparent 60%), radial-gradient(circle at 80% 120%, rgba(250, 204, 21, 0.18), transparent 60%), linear-gradient(145deg, rgba(15, 23, 42, 0.98), #020617);
  filter: blur(2px);
}

.hero-product-plate {
  position: relative;
  border-radius: 20px;
  padding: 1.4rem 1.2rem 1.8rem;
  background: radial-gradient(140% 220% at 50% 0%, rgba(148, 163, 184, 0.26) 0%, rgba(15, 23, 42, 0.98) 46%, #020617 100%);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.3);
}

.hero-product-plate::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(250, 250, 250, 0.05), transparent 58%);
  opacity: 0.8;
}

.hero-product-inner {
  position: relative;
  display: grid;
  gap: 1.2rem;
}

.hero-energy-scale {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hero-energy-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.9);
}

.hero-energy-bar {
  position: relative;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle at 0% 0%, rgba(15, 23, 42, 0.9), #020617);
  overflow: hidden;
}

.hero-energy-fill {
  position: absolute;
  inset: 0;
  transform-origin: left center;
  transform: scaleX(0.18);
  background: linear-gradient(90deg, #facc15, #22c55e, #38bdf8);
  box-shadow: 0 0 16px rgba(250, 204, 21, 0.7);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-energy-glow {
  position: absolute;
  inset: -34px 20% auto 0;
  pointer-events: none;
  background: radial-gradient(circle at 0% 0%, rgba(250, 204, 21, 0.18), transparent 60%);
  opacity: 0.8;
}

.hero-product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.92);
}

.hero-product-meta strong {
  color: #e5e7eb;
}

.hero-product-image-frame {
  position: relative;
  border-radius: 16px;
  padding: 0.85rem;
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.6), rgba(15, 23, 42, 0.8));
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.4);
}

.hero-product-image-shell {
  border-radius: 12px;
  padding: 0.7rem 0.7rem 0.9rem;
  background: radial-gradient(130% 210% at 50% 0%, #0b1120 0%, #020617 46%, #020617 100%);
  display: flex;
  justify-content: center;
}

.hero-product-tag {
  position: absolute;
  left: 0.9rem;
  bottom: 0.8rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 0.7rem;
  color: rgba(226, 232, 240, 0.96);
}

.hero-product-orbit {
  position: absolute;
  inset: 6px;
  border-radius: 15px;
  border: 1px dashed rgba(148, 163, 184, 0.4);
  pointer-events: none;
}

@media (max-width: 600px) {

  .monolith-grid {
    gap: 2.35rem;
  }

  .hero-kpi-row {
    margin-bottom: 1.25rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1.02rem;
  }

  .hero-price-current {
    font-size: 1.55rem;
  }

  .rating {
    font-size: 0.92rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-product-plate {
    padding: 1.6rem 1.35rem 2rem;
  }

  .hero-product-image-frame {
    padding: 1rem;
  }

  .hero-product-image-shell {
    padding: 0.45rem 0.45rem 0.65rem;
  }

  .hero-product-image-shell img {
    width: min(360px, 100%);
    margin-inline: auto;
  }

  .hero-product-tag {
    left: 1rem;
    bottom: 1rem;
    font-size: 0.75rem;
  }

  .hero-product-meta {
    font-size: 0.84rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .field-label,
  .field-input,
  .field-textarea,
  .checkbox-row {
    font-size: 0.95rem;
  }

  .form-note {
    font-size: 0.82rem;
  }
}

.header {
  position: sticky;
  inset-block-start: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background-color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #fef3c7 0%, #facc15 40%, #eab308 100%);
  box-shadow: 0 0 16px rgba(250, 204, 21, 0.7);
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 26%;
  border-radius: inherit;
  border: 1px solid rgba(15, 23, 42, 0.28);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 0.92rem;
  text-transform: uppercase;
  font-weight: 600;
}

.brand-tagline {
  font-size: 0.76rem;
  color: var(--color-secondary);
}

.nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-secondary);
  position: relative;
  padding-block: 0.2rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -0.2rem;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  transform: scaleX(0.32);
  transform-origin: center;
  transition: opacity 150ms ease, transform 150ms ease;
}

.nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  display: none;
}

.burger {
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
}

.burger:focus-visible {
  outline-offset: 4px;
}

.burger-box {
  width: 26px;
  height: 18px;
  position: relative;
}

.burger-line {
  position: absolute;
  inset-inline: 0;
  height: 2px;
  border-radius: 999px;
  background-color: var(--color-primary);
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease, bottom 180ms ease;
}

.burger-line:nth-child(1) {
  top: 0;
}

.burger-line:nth-child(2) {
  top: 8px;
}

.burger-line:nth-child(3) {
  bottom: 0;
}

.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  top: 8px;
  transform: rotate(42deg);
}

.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  bottom: 8px;
  transform: rotate(-42deg);
}

.burger-label {
  position: absolute;
  inset-inline-end: -2.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

@media (min-width: 1024px) {
  .burger {
    display: none;
  }

  .nav {
    display: block;
  }

  .header-cta {
    display: inline-flex;
  }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.96));
  display: none;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.2rem;
  z-index: 39;
}

.nav-overlay.is-visible {
  display: flex;
}

.nav-drawer {
  width: min(320px, 90vw);
  max-height: calc(100vh - 2.4rem);
  background: radial-gradient(130% 220% at 0% 0%, rgba(148, 163, 184, 0.28) 0%, rgba(15, 23, 42, 0.98) 46%, #020617 100%);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: 1.4rem 1.4rem 1.6rem;
  color: #e5e7eb;
  position: relative;
  overflow: auto;
}

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.nav-drawer-title {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-drawer-sub {
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.9);
}

.nav-drawer-close {
  border: none;
  background: transparent;
  color: rgba(148, 163, 184, 0.9);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 999px;
}

.nav-drawer-close:hover {
  background: rgba(15, 23, 42, 0.45);
}

.nav-drawer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.nav-drawer-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0.7rem;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-drawer-link span:last-child {
  font-size: 0.7rem;
  color: rgba(148, 163, 184, 0.9);
}

.nav-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.76rem;
  color: rgba(148, 163, 184, 0.9);
}

.nav-drawer-footer strong {
  color: #e5e7eb;
}

.monolith-grid-basic {
  display: grid;
  gap: 1.8rem;
}

@media (min-width: 900px) {
  .monolith-grid-basic {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: start;
  }
}

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

.list-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: flex-start;
}

.list-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
}

.list-title {
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}

.list-text {
  font-size: 0.9rem;
  color: var(--color-secondary);
  line-height: 1.7;
}

.card-grid {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.metric-card {
  position: relative;
  border-radius: 16px;
  padding: 1.1rem 1.15rem;
  background: radial-gradient(140% 220% at 0% 0%, rgba(148, 163, 184, 0.14) 0%, rgba(15, 23, 42, 0.9) 46%, #020617 100%);
  color: #e5e7eb;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.32);
  overflow: hidden;
}

.metric-value {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.metric-label {
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.92);
}

.metric-footnote {
  font-size: 0.72rem;
  color: rgba(148, 163, 184, 0.9);
  margin-top: 0.6rem;
}

.flow-diagram {
  display: grid;
  gap: 0.9rem;
}

.flow-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.flow-node {
  flex: 1;
  border-radius: 999px;
  padding: 0.65rem 0.85rem;
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.83rem;
  color: var(--color-secondary);
}

.flow-node strong {
  display: block;
  font-size: 0.88rem;
  color: var(--color-primary);
  margin-bottom: 0.1rem;
}

.flow-arrow {
  font-size: 1rem;
  color: var(--color-secondary);
}

.timeline {
  border-left: 1px solid rgba(148, 163, 184, 0.4);
  padding-left: 1.1rem;
  display: grid;
  gap: 1.1rem;
}

.timeline-item {
  position: relative;
}

.timeline-bullet {
  position: absolute;
  inset-inline-start: -1.1rem;
  top: 0.3rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #0f172a;
  box-shadow: 0 0 0 4px rgba(148, 163, 184, 0.4);
}

.timeline-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.timeline-text {
  font-size: 0.9rem;
  color: var(--color-secondary);
}

.faq {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.01);
  overflow: hidden;
}

.faq-header {
  width: 100%;
  padding: 0.8rem 0.9rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.faq-header span {
  text-align: left;
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--color-secondary);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-primary);
  color: #facc15;
}

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

.faq-content {
  padding: 0 0.9rem 0.9rem;
  font-size: 0.9rem;
  color: var(--color-secondary);
  line-height: 1.6;
}

.testimonial-grid {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.testimonial-card {
  border-radius: 16px;
  padding: 1rem 1rem 1.1rem;
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(203, 213, 225, 0.9);
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.testimonial-meta {
  font-size: 0.78rem;
  color: var(--color-secondary);
  margin-bottom: 0.6rem;
}

.testimonial-text {
  font-size: 0.88rem;
  color: var(--color-primary);
  line-height: 1.7;
}

.order-form {
  display: grid;
  gap: 0.75rem;
}

.field {
  display: grid;
  gap: 0.25rem;
}

.field-label {
  font-size: 0.83rem;
  color: rgba(226, 232, 240, 0.9);
}

.field-optional {
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.9);
}

.field-input,
.field-textarea {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.6);
  color: #e5e7eb;
  padding: 0.6rem 0.9rem;
  font-size: 0.87rem;
}

.field-textarea {
  border-radius: 14px;
  min-height: 80px;
  resize: vertical;
}

.field-input::placeholder,
.field-textarea::placeholder {
  color: rgba(148, 163, 184, 0.9);
}

.field-error {
  font-size: 0.75rem;
  color: #f97316;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.95);
}

.checkbox-row input[type="checkbox"] {
  margin-top: 0.1rem;
}

.form-note {
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.9);
}

.form-actions {
  margin-top: 0.4rem;
}

.contact-layout {
  display: grid;
  gap: 1.8rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
    align-items: stretch;
  }
}

.contact-card {
  border-radius: 16px;
  padding: 1.4rem 1.5rem 1.5rem;
  background: rgba(248, 250, 252, 0.98);
  border: 1px solid rgba(203, 213, 225, 0.9);
}

.contact-item {
  font-size: 0.9rem;
  color: var(--color-secondary);
  margin-bottom: 0.9rem;
}

.contact-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-primary);
  margin-bottom: 0.1rem;
}

.contact-email-link {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.map-shell {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.22);
  min-height: 260px;
}

.map-shell iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.legal-block {
  margin-top: 2.2rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: rgba(249, 250, 251, 0.96);
  font-size: 0.82rem;
  color: var(--color-secondary);
  line-height: 1.7;
}

.legal-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--color-primary);
}

.energy-scroll-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.02);
  font-size: 0.78rem;
  color: var(--color-secondary);
}

.energy-scroll-pill {
  width: 40px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 0% 0%, rgba(250, 204, 21, 0.4), transparent 60%);
  position: relative;
  overflow: hidden;
}

.energy-scroll-fill {
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(90deg, #facc15, #22c55e, #38bdf8);
  transform-origin: left center;
  transform: scaleX(0);
}

.scroll-iris {
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transform-origin: center;
  filter: blur(6px);
  transition: opacity 420ms cubic-bezier(0.16, 1, 0.3, 1), transform 420ms cubic-bezier(0.16, 1, 0.3, 1), filter 420ms ease;
}

.scroll-iris.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.scroll-iris-delay-1 {
  transition-delay: 80ms;
}

.scroll-iris-delay-2 {
  transition-delay: 160ms;
}

.scroll-iris-delay-3 {
  transition-delay: 230ms;
}

.cookie-banner {
  position: fixed;
  inset-inline: 0.75rem;
  bottom: 0.75rem;
  z-index: 50;
  max-width: 520px;
  margin-inline: auto;
  border-radius: 18px;
  padding: 1.1rem 1.2rem 1.2rem;
  background: radial-gradient(140% 220% at 0% 0%, rgba(148, 163, 184, 0.24) 0%, rgba(15, 23, 42, 0.98) 46%, #020617 100%);
  color: #e5e7eb;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.42);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.cookie-text {
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.92);
  margin-bottom: 0.6rem;
}

.cookie-categories {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.cookie-category span:first-child {
  color: rgba(226, 232, 240, 0.98);
}

.cookie-category span:last-child {
  font-size: 0.76rem;
  color: rgba(148, 163, 184, 0.98);
}

.cookie-toggle {
  position: relative;
  width: 38px;
  height: 20px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.7);
  transition: background 160ms ease;
}

.cookie-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #facc15;
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.38);
  transition: transform 160ms ease;
}

.cookie-toggle input:checked + .cookie-toggle-track {
  background: linear-gradient(90deg, #facc15, #22c55e);
}

.cookie-toggle input:checked + .cookie-toggle-track .cookie-toggle-thumb {
  transform: translateX(18px);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.cookie-link {
  font-size: 0.78rem;
  color: rgba(226, 232, 240, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-settings {
  display: none;
}

.cookie-banner.is-settings-visible .cookie-settings {
  display: block;
}

.cookie-banner.is-settings-visible .cookie-text {
  margin-bottom: 0.2rem;
}

.site-footer-inner {
  padding: 1.6rem 0 1.4rem;
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

@media (min-width: 768px) {
  .footer-main {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-brand-name {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-brand-meta {
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.95);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
  font-size: 0.78rem;
}

.footer-nav a {
  color: rgba(209, 213, 219, 0.98);
}

.footer-meta {
  margin-top: 1.1rem;
  border-top: 1px solid rgba(55, 65, 81, 0.85);
  padding-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  font-size: 0.75rem;
  color: rgba(156, 163, 175, 0.95);
  justify-content: space-between;
}

.footer-meta span {
  white-space: nowrap;
}

.legal-page {
  padding: 3.4rem 0 3.7rem;
}

.legal-header {
  max-width: 720px;
  margin: 0 auto 2rem;
}

.legal-title {
  font-size: 1.8rem;
  letter-spacing: -0.04em;
  margin: 0 0 0.6rem;
}

.legal-intro {
  font-size: 0.95rem;
  color: var(--color-secondary);
  line-height: 1.7;
}

.legal-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  font-size: 0.8rem;
  color: var(--color-secondary);
  margin-top: 0.8rem;
}

.legal-date {
  font-weight: 500;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1.4rem;
  font-size: 0.9rem;
  color: var(--color-primary);
  line-height: 1.7;
}

.legal-section-title {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.legal-list {
  padding-left: 1rem;
  margin: 0.3rem 0 0;
}

.legal-list li {
  margin-bottom: 0.25rem;
}

.thankyou-page {
  padding: 3.5rem 0 4rem;
}

.thankyou-card {
  max-width: 620px;
  margin: 0 auto;
  border-radius: 24px;
  background: radial-gradient(140% 220% at 0% 0%, rgba(148, 163, 184, 0.28) 0%, rgba(15, 23, 42, 0.98) 46%, #020617 100%);
  color: #e5e7eb;
  padding: 2.1rem 2rem 2.2rem;
  box-shadow: var(--shadow);
}

.thankyou-title {
  font-size: 1.9rem;
  letter-spacing: -0.04em;
  margin: 0 0 0.6rem;
}

.thankyou-text {
  font-size: 0.95rem;
  color: rgba(226, 232, 240, 0.9);
  margin: 0 0 1.4rem;
}

.thankyou-meta {
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.96);
  margin-top: 0.9rem;
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

