:root {
  --bg: #0b0f1a;
  --bg-soft: #111827;
  --card: #141b2b;
  --primary: #ff7a18;
  --primary-2: #ffb347;
  --accent: #2dd4bf;
  --text: #eef2ff;
  --muted: #94a3b8;
  --line: rgba(148, 163, 184, 0.25);
  --radius: 18px;
  --shadow: 0 25px 60px rgba(3, 7, 18, 0.45);
}

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

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", serif;
  letter-spacing: -0.5px;
}

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

.bg-gradient {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 122, 24, 0.35), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(45, 212, 191, 0.25), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 179, 71, 0.2), transparent 45%),
    linear-gradient(160deg, #0b0f1a 0%, #0d1626 55%, #0b0f1a 100%);
  z-index: -2;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at top, rgba(0, 0, 0, 0.7), transparent 70%);
  z-index: -1;
  opacity: 0.4;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.topbar {
  padding: 24px 0;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 20px rgba(255, 122, 24, 0.6);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.link {
  color: var(--muted);
  transition: color 0.2s ease;
}

.link:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  background: transparent;
  cursor: pointer;
  font: inherit;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
}

.btn--primary {
  background: linear-gradient(120deg, var(--primary), var(--primary-2));
  color: #111827;
}

.btn--ghost {
  border-color: rgba(148, 163, 184, 0.4);
  color: var(--text);
}

.btn--light {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

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

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 42px;
  align-items: center;
}

.pill {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.trust__item {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 16px;
  padding: 14px 16px;
}

.trust__title {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
}

.trust__text {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero__card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.15);
  padding: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card__glow {
  position: absolute;
  inset: -50% 20% auto auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.45), transparent 70%);
  filter: blur(10px);
}

.card__header {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.badge {
  border: 1px solid rgba(45, 212, 191, 0.5);
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--accent);
}

.card__body h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card__body p {
  color: var(--muted);
  margin-bottom: 16px;
}

.card__list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--text);
  font-size: 0.95rem;
}

.card__list li::before {
  content: "•";
  color: var(--primary);
  margin-right: 8px;
}

.card__footer {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--primary-2);
}

.products {
  padding: 80px 0;
}

.section__head {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

.section__head p {
  color: var(--muted);
}

.product__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product {
  background: rgba(15, 23, 42, 0.6);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.product--card {
  padding: 0;
  overflow: hidden;
}

.product:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 24, 0.5);
}

.product__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 122, 24, 0.15);
  color: var(--primary-2);
  font-weight: 700;
  margin-bottom: 16px;
}

.product__media {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.2), rgba(45, 212, 191, 0.18));
  padding: 24px;
  min-height: 160px;
  display: grid;
  place-items: center;
}

.product__media img {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(2, 6, 23, 0.4));
}

.product__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.6);
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
}

.product__body {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.product__body p {
  color: var(--muted);
}

.product__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.85rem;
}

.product__meta span {
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 4px 10px;
  border-radius: 999px;
}

.product__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product__price {
  font-size: 1.2rem;
  color: var(--primary-2);
}

.product__cta {
  margin-top: 28px;
}

.price-calculator {
  width: 100%;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  padding: 22px;
  display: grid;
  gap: 16px;
}

.calculator__rows {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.calc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(11, 15, 26, 0.55);
}

.calc-item span {
  font-size: 0.92rem;
}

.calc-item input {
  width: 74px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  font: inherit;
  text-align: center;
}

.calculator__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}

#calc-total {
  color: var(--primary-2);
  font-size: 1.35rem;
}

.calculator__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.note {
  color: var(--muted);
  font-size: 0.9rem;
}

.trust {
  padding: 80px 0;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: start;
}

.trust__bullets {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

.bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.bullet__dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 6px;
}

.bullet h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.bullet p {
  color: var(--muted);
  font-size: 0.95rem;
}

.trust__panel {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.18);
  overflow: hidden;
}

.panel__header {
  padding: 16px 20px;
  background: rgba(15, 23, 42, 0.6);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.75rem;
}

.panel__body {
  padding: 22px 20px;
  display: grid;
  gap: 18px;
}

.panel__item span {
  color: var(--muted);
  font-size: 0.85rem;
}

.panel__item strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
}

.panel__footer {
  padding: 18px 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cta {
  padding: 80px 0 100px;
}

.cta__box {
  background: linear-gradient(120deg, rgba(255, 122, 24, 0.18), rgba(45, 212, 191, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: center;
}

.cta__actions {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  color: var(--muted);
}

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

.footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.25);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.footer__social a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 24, 0.6);
}

.footer__social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  color: var(--text);
}

@media (max-width: 720px) {
  .topbar__actions {
    display: none;
  }

  .hero__card {
    order: -1;
  }

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

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

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

  .calculator__actions {
    width: 100%;
  }

  .calculator__actions .btn {
    width: 100%;
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__content,
.hero__card,
.product,
.trust__panel,
.cta__box {
  animation: floatIn 0.6s ease both;
}

.product:nth-child(2) { animation-delay: 0.1s; }
.product:nth-child(3) { animation-delay: 0.2s; }
.trust__panel { animation-delay: 0.15s; }
.cta__box { animation-delay: 0.2s; }

.quote {
  background: rgba(15, 23, 42, 0.66);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  overflow: hidden;
}

.quote__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 120px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 20px;
}

.quote__header {
  background: rgba(11, 15, 26, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.76rem;
  color: var(--muted);
}

.quote__row {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.quote__row input {
  width: 100%;
  max-width: 100px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  font: inherit;
  text-align: center;
}

.quote__footer {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  display: grid;
  gap: 16px;
  padding: 20px;
}

.quote__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quote__total strong {
  color: var(--primary-2);
  font-size: 1.35rem;
}

.quote__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cart {
  background: rgba(15, 23, 42, 0.66);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  padding: 20px;
  display: grid;
  gap: 20px;
}

.cart__items {
  display: grid;
  gap: 10px;
}

.cart__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(11, 15, 26, 0.55);
}

@media (max-width: 720px) {
  .quote__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quote__header {
    display: none;
  }

  .quote__actions {
    width: 100%;
  }

  .quote__actions .btn {
    width: 100%;
  }
}

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

.quote__product img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(11, 15, 26, 0.55);
  flex-shrink: 0;
}

.spa {
  display: grid;
  gap: 22px;
}

.spa__layout {
  display: grid;
  grid-template-columns: minmax(250px, 320px) 1fr;
  gap: 20px;
  align-items: start;
}

.spa__list {
  max-height: 620px;
  overflow-y: auto;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  padding: 10px;
  display: grid;
  gap: 8px;
}

.spa__item {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(11, 15, 26, 0.5);
  color: var(--text);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  cursor: pointer;
}

.spa__item img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(148, 163, 184, 0.2);
  flex-shrink: 0;
}

.spa__item strong {
  display: block;
  font-size: 0.9rem;
}

.spa__item span {
  font-size: 0.8rem;
  color: var(--muted);
}

.spa__item.is-active {
  border-color: rgba(255, 122, 24, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 122, 24, 0.25) inset;
}

.spa__detail {
  background: rgba(15, 23, 42, 0.66);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  overflow: hidden;
}

.spa__media-wrap {
  position: relative;
  min-height: 260px;
  padding: 26px;
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.2), rgba(45, 212, 191, 0.16));
  display: grid;
  place-items: center;
}

.spa__media-wrap img {
  width: 100%;
  max-width: 360px;
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(2, 6, 23, 0.4));
}

.spa__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.7);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.78rem;
}

.spa__content {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.spa__bullets {
  list-style: none;
  display: grid;
  gap: 8px;
}

.spa__bullets li::before {
  content: "•";
  color: var(--primary);
  margin-right: 8px;
}

.spa__footer {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.spa__prices {
  display: grid;
  gap: 2px;
}

#spa-price {
  color: var(--primary-2);
  font-size: 1.32rem;
}

#spa-promo {
  color: var(--accent);
  font-size: 0.9rem;
}

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

@media (max-width: 900px) {
  .spa__layout {
    grid-template-columns: 1fr;
  }

  .spa__list {
    max-height: 320px;
  }

  .spa__actions {
    width: 100%;
  }

  .spa__actions .btn {
    width: 100%;
  }
}

.blog-page {
  padding-top: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.blog-card {
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  padding: 22px;
  display: grid;
  gap: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 24, 0.52);
}

.blog-card__meta {
  display: inline-flex;
  width: fit-content;
  font-size: 0.78rem;
  color: var(--accent);
  border: 1px solid rgba(45, 212, 191, 0.35);
  padding: 4px 10px;
  border-radius: 999px;
}

.blog-card h2 {
  font-size: 1.35rem;
  line-height: 1.2;
}

.blog-card p {
  color: var(--muted);
}

.blog-card .btn {
  justify-self: start;
}
