﻿:root {
  --bg-900: #060b14;
  --bg-800: #0d1626;
  --bg-700: #17243a;
  --surface: rgba(13, 24, 42, 0.78);
  --surface-strong: rgba(12, 22, 38, 0.92);
  --text-main: #f8fbff;
  --text-soft: rgba(248, 251, 255, 0.78);
  --text-faint: rgba(248, 251, 255, 0.58);
  --line: rgba(117, 154, 204, 0.36);
  --accent-a: #ff9a3c;
  --accent-b: #3fd4ba;
  --accent-c: #ff617e;
  --accent-d: #5fa8ff;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --shadow-lg: 0 30px 65px rgba(0, 0, 0, 0.42);
  --shadow-md: 0 18px 42px rgba(0, 0, 0, 0.35);
  --content-max: 1240px;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text-main);
  background: linear-gradient(180deg, var(--bg-900) 0%, #050910 50%, #04070d 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
strong {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: 0.01em;
}

p,
li {
  margin: 0;
  color: var(--text-soft);
}

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

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

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.glass {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: -5;
  overflow: hidden;
}

.bg-layer {
  position: absolute;
  inset: -7%;
  width: 114%;
  height: 114%;
  object-fit: cover;
  pointer-events: none;
}

.depth-a {
  opacity: 0.4;
  filter: saturate(1.15) brightness(0.56);
}

.depth-b {
  opacity: 0.28;
  mix-blend-mode: screen;
  filter: saturate(1.2) brightness(0.72);
}

.depth-c {
  opacity: 0.24;
  animation: spinSlow 48s linear infinite;
}

.depth-d {
  opacity: 0.2;
  animation: floatSlow 22s ease-in-out infinite alternate;
}

.backdrop-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(255, 154, 60, 0.2), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(95, 168, 255, 0.2), transparent 44%),
    radial-gradient(circle at 55% 86%, rgba(63, 212, 186, 0.18), transparent 45%),
    linear-gradient(180deg, rgba(6, 10, 18, 0.72), rgba(3, 7, 14, 0.94));
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  z-index: 120;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b), var(--accent-d));
  box-shadow: 0 0 16px rgba(95, 168, 255, 0.6);
}

.site-header {
  width: min(var(--content-max), calc(100% - 1.3rem));
  margin: 0.8rem auto 0;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  position: sticky;
  top: 0.65rem;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(9, 17, 30, 0.94);
  border-color: rgba(95, 168, 255, 0.38);
  transform: translateY(-2px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex: 0 0 44px;
}

.brand span {
  display: grid;
  line-height: 1.2;
}

.brand strong {
  font-size: 0.9rem;
}

.brand small {
  font-size: 0.72rem;
  color: var(--text-faint);
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.main-nav a {
  font-size: 0.85rem;
  color: var(--text-soft);
  position: relative;
  transition: color 0.22s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.32rem;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  transition: width 0.22s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border-radius: 999px;
  padding: 0.44rem 0.72rem;
  font-size: 0.76rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.3);
}

.chip-call {
  background: rgba(95, 168, 255, 0.18);
  border-color: rgba(95, 168, 255, 0.48);
}

.chip-wa {
  background: rgba(63, 212, 186, 0.18);
  border-color: rgba(63, 212, 186, 0.52);
}

.wa-icon {
  width: 16px;
  height: 16px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(13, 24, 42, 0.75);
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: #fff;
}

.section {
  width: min(var(--content-max), calc(100% - 1.3rem));
  margin: 0 auto;
  padding: clamp(3.6rem, 4vw, 5rem) 0;
  position: relative;
  z-index: 2;
}

.hero {
  padding-top: clamp(3.2rem, 5vw, 4.6rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.4rem);
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-a);
}

.hero-copy {
  display: grid;
  gap: 1rem;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  line-height: 1.08;
  max-width: 16ch;
}

.hero-copy p {
  max-width: 62ch;
  color: var(--text-soft);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  appearance: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 12px;
  padding: 0.78rem 1.18rem;
  font-weight: 700;
  font-size: 0.88rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

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

.btn-primary {
  color: #0b1424;
  background: linear-gradient(135deg, var(--accent-a), #ffc46f);
  box-shadow: 0 16px 24px rgba(255, 154, 60, 0.3);
}

.btn-ghost {
  color: var(--text-main);
  border: 1px solid rgba(95, 168, 255, 0.48);
  background: rgba(95, 168, 255, 0.08);
}

.booking-strip {
  width: fit-content;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.78rem;
  border-radius: 12px;
  color: var(--text-soft);
}

.booking-strip strong {
  color: var(--accent-b);
  font-size: 0.95rem;
}

.hero-stage {
  position: relative;
  perspective: 1300px;
  transform-style: preserve-3d;
  min-height: clamp(340px, 42vw, 540px);
}

.hero-stage-orb {
  position: absolute;
  inset: 4% -8% auto auto;
  width: min(62%, 360px);
  opacity: 0.8;
  filter: saturate(1.2);
  animation: floatSlow 12s ease-in-out infinite alternate;
}

.stage-stack {
  position: relative;
  width: min(100%, 530px);
  aspect-ratio: 4 / 4.9;
  margin: 0 auto;
}

.stage-card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 13, 25, 0.9);
  box-shadow: var(--shadow-lg);
  transform-origin: center;
  transform: translate3d(0, 0, -60px) rotateX(10deg) rotateY(-10deg) scale(0.92);
  opacity: 0;
  transition: transform 0.75s ease, opacity 0.65s ease;
}

.stage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage-card figcaption {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  border-radius: 10px;
  padding: 0.5rem 0.72rem;
  font-size: 0.84rem;
  font-weight: 700;
  background: rgba(8, 14, 24, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stage-card.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) scale(1);
}

.realm-rail {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.rail-pill {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(12, 22, 38, 0.64);
  color: var(--text-main);
  border-radius: 999px;
  padding: 0.56rem 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.rail-pill:hover,
.rail-pill.is-active {
  transform: translateY(-2px);
  background: rgba(255, 154, 60, 0.2);
  border-color: rgba(255, 154, 60, 0.55);
}

.section-head {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
  position: relative;
}

.section-head::after {
  content: attr(data-title);
  position: absolute;
  top: -0.65rem;
  right: 0;
  font-size: clamp(1.4rem, 9vw, 5.8rem);
  font-family: "Sora", sans-serif;
  line-height: 1;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.045);
  pointer-events: none;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.55rem);
  max-width: 22ch;
  line-height: 1.2;
}

.journey {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.journey-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr 1fr;
}

.goal-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.goal-chip {
  text-align: left;
  border-radius: 14px;
  border: 1px solid rgba(95, 168, 255, 0.42);
  background: rgba(95, 168, 255, 0.07);
  color: var(--text-main);
  font-weight: 600;
  padding: 0.78rem;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.goal-chip:hover,
.goal-chip.is-active {
  transform: translateY(-2px);
  border-color: rgba(63, 212, 186, 0.58);
  background: rgba(63, 212, 186, 0.14);
}

.goal-card {
  border-radius: var(--radius-xl);
  padding: 1.15rem;
  display: grid;
  align-content: start;
  gap: 0.82rem;
}

.goal-card h3 {
  font-size: 1.2rem;
}

.goal-card p {
  font-size: 0.95rem;
}

.business {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.business-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.business-top p {
  max-width: 74ch;
}

.beauty-tools {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.95rem;
}

.beauty-tools .tool {
  width: clamp(44px, 6vw, 64px);
  aspect-ratio: 1;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(11, 20, 34, 0.72);
  padding: 0.52rem;
  box-shadow: var(--shadow-md);
}

.beauty-tools .tool-a {
  animation: toolFloat 8s ease-in-out infinite;
}

.beauty-tools .tool-b {
  animation: toolFloat 8s ease-in-out infinite 0.8s;
}

.beauty-tools .tool-c {
  animation: toolFloat 8s ease-in-out infinite 1.6s;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.service-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, rgba(14, 24, 40, 0.88), rgba(10, 18, 31, 0.78));
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-rows: 180px auto;
  transition: transform 0.26s ease, border-color 0.26s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 154, 60, 0.5);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-info {
  padding: 0.9rem;
  display: grid;
  gap: 0.5rem;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.badge {
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.58rem;
  letter-spacing: 0.02em;
}

.badge.time {
  background: rgba(95, 168, 255, 0.2);
  border: 1px solid rgba(95, 168, 255, 0.45);
}

.price {
  color: var(--accent-a);
  font-size: 1rem;
  font-weight: 800;
}

.service-info p {
  font-size: 0.86rem;
  color: var(--text-faint);
}

.image-grid {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.72rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.image-grid img {
  width: 100%;
  aspect-ratio: 3 / 3.3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.process-strip {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.process-strip article {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(10, 18, 32, 0.72);
  padding: 0.9rem;
  display: grid;
  gap: 0.28rem;
}

.process-strip strong {
  color: var(--accent-b);
}

.image-strip {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.image-strip img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.crystals {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.filter-btn {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(12, 22, 38, 0.58);
  color: var(--text-main);
  font-size: 0.79rem;
  font-weight: 700;
  padding: 0.48rem 0.78rem;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.filter-btn.is-active,
.filter-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 154, 60, 0.55);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.82rem;
}

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(170deg, rgba(15, 27, 45, 0.85), rgba(10, 18, 31, 0.88));
  display: grid;
  grid-template-rows: 190px auto;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(63, 212, 186, 0.58);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 0.8rem;
  display: grid;
  gap: 0.42rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
}

.product-tag {
  border-radius: 999px;
  font-size: 0.68rem;
  padding: 0.2rem 0.48rem;
  background: rgba(63, 212, 186, 0.16);
  border: 1px solid rgba(63, 212, 186, 0.36);
  color: #c4fff2;
}

.product-info p {
  font-size: 0.82rem;
  color: var(--text-faint);
}

.social {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.social-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.9rem;
}

.testimonial-box,
.cta-box {
  border-radius: var(--radius-xl);
  padding: 1rem;
}

.testimonial-box {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  gap: 0.65rem;
}

.testimonial-content {
  display: grid;
  gap: 0.6rem;
}

.testimonial-box blockquote {
  margin: 0;
  font-size: clamp(1.02rem, 2vw, 1.35rem);
  line-height: 1.5;
  color: #f4f7ff;
}

.testimonial-box .author {
  font-size: 0.88rem;
  color: var(--accent-b);
  font-weight: 700;
}

.testimonial-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.testimonial-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.testimonial-dot.is-active {
  transform: scale(1.1);
  background: var(--accent-a);
  border-color: rgba(255, 154, 60, 0.65);
}

.cta-box {
  display: grid;
  align-content: center;
  gap: 0.75rem;
}

.blogs {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(170deg, rgba(15, 27, 45, 0.88), rgba(10, 18, 31, 0.84));
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-rows: 180px auto;
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(95, 168, 255, 0.55);
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-info {
  padding: 0.85rem;
  display: grid;
  gap: 0.55rem;
}

.blog-chip {
  width: fit-content;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: #c4fff2;
  background: rgba(63, 212, 186, 0.16);
  border: 1px solid rgba(63, 212, 186, 0.42);
}

.blog-info h3 {
  font-size: 1rem;
  line-height: 1.35;
}

.blog-info p {
  font-size: 0.84rem;
  color: var(--text-faint);
}

.blog-reader-overlay {
  position: fixed;
  inset: 0;
  z-index: 125;
  background: rgba(2, 6, 12, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.blog-reader-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.blog-reader {
  width: min(920px, 100%);
  max-height: min(86vh, 900px);
  overflow: auto;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.28);
  position: relative;
}

.blog-close-btn {
  position: sticky;
  top: 0.7rem;
  margin: 0.7rem 0.7rem 0 auto;
  z-index: 2;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(12, 22, 38, 0.8);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.38rem 0.7rem;
  cursor: pointer;
}

.blog-reader-image {
  width: calc(100% - 1.4rem);
  margin: 0.3rem auto 0;
  border-radius: 16px;
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.blog-reader-copy {
  padding: 0.95rem;
  display: grid;
  gap: 0.7rem;
}

.blog-reader-tag {
  width: fit-content;
  border-radius: 999px;
  padding: 0.2rem 0.58rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: #c9edff;
  background: rgba(95, 168, 255, 0.16);
  border: 1px solid rgba(95, 168, 255, 0.46);
}

.blog-reader-excerpt {
  font-size: 0.95rem;
  color: var(--text-soft);
}

.blog-reader-body {
  display: grid;
  gap: 0.66rem;
}

.blog-reader-body p {
  font-size: 0.93rem;
  color: var(--text-soft);
}

.faq {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.faq-list {
  display: grid;
  gap: 0.62rem;
}

.faq-list details {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(11, 20, 33, 0.72);
  padding: 0.84rem 0.88rem;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  position: relative;
  padding-right: 1.2rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -0.05rem;
  color: var(--accent-a);
  font-size: 1.05rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin-top: 0.48rem;
  font-size: 0.9rem;
}

.contact {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.contact-card {
  border-radius: var(--radius-xl);
  padding: 0.95rem;
  display: grid;
  align-content: start;
  gap: 0.66rem;
}

.contact-card h3 {
  font-size: 1.04rem;
}

.contact-card p {
  font-size: 0.9rem;
}

.contact-card strong {
  color: #fff;
}

.contact-card a {
  color: #a9d4ff;
}

.contact-card form {
  display: grid;
  gap: 0.64rem;
}

.contact-card label {
  display: grid;
  gap: 0.28rem;
  font-size: 0.84rem;
  color: var(--text-soft);
}

.contact-card input,
.contact-card select {
  width: 100%;
  border: 1px solid rgba(117, 154, 204, 0.45);
  background: rgba(12, 22, 38, 0.84);
  color: var(--text-main);
  border-radius: 10px;
  padding: 0.66rem 0.72rem;
}

.contact-card input:focus,
.contact-card select:focus {
  outline: 2px solid rgba(95, 168, 255, 0.5);
  outline-offset: 1px;
}

.form-note {
  min-height: 1.2em;
  font-size: 0.82rem;
  color: var(--accent-b);
}

.map-card iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 12px;
}

.mobile-cta {
  position: fixed;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.78rem;
  z-index: 96;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.mobile-cta .btn {
  min-height: 46px;
}

.site-footer {
  width: min(var(--content-max), calc(100% - 1.3rem));
  margin: 0 auto;
  padding: 1.2rem 0 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 0.28rem;
  text-align: center;
}

.site-footer p {
  font-size: 0.82rem;
  color: var(--text-faint);
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    border-radius: 18px;
    top: 0.45rem;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    top: calc(var(--header-h) + 0.8rem);
    left: 0.8rem;
    right: 0.8rem;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--surface-strong);
    box-shadow: var(--shadow-md);
    padding: 0.8rem;
    display: grid;
    gap: 0.1rem;
    transform: scale(0.98) translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 88;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
  }

  .main-nav a {
    font-size: 0.9rem;
    padding: 0.56rem 0.32rem;
  }

  .header-actions {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .journey-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 840px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand strong {
    font-size: 0.84rem;
  }

  .brand small {
    font-size: 0.69rem;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .goal-chips {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .blog-grid,
  .product-grid,
  .image-grid,
  .image-strip,
  .process-strip,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .image-strip img {
    height: 220px;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 86px;
  }

  .section {
    width: calc(100% - 1rem);
    padding: 3rem 0;
  }

  .site-header {
    width: calc(100% - 1rem);
    margin-top: 0.5rem;
    padding: 0.5rem 0.65rem;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .hero-stage {
    min-height: 320px;
  }

  .stage-stack {
    width: 100%;
  }

  .section-head::after {
    display: none;
  }

  .btn {
    width: 100%;
  }

  .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .business-top {
    display: grid;
    gap: 0.75rem;
  }

  .faq-list details {
    padding: 0.8rem;
  }
}

@keyframes floatSlow {
  from {
    transform: translate3d(0, -6px, 0) rotate(-2deg);
  }
  to {
    transform: translate3d(0, 10px, 0) rotate(2deg);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg) scale(1.02);
  }
  to {
    transform: rotate(360deg) scale(1.02);
  }
}

@keyframes toolFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}
