:root {
  --bg: #0d0d0d;
  --bg-alt: #131313;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --surface-soft: rgba(255, 255, 255, 0.03);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f6f4ef;
  --muted: #aea9a2;
  --accent: #ff4d18;
  --accent-soft: #ff7a18;
  --accent-red: #ff203e;
  --success: #c5ff6a;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.28);
  --radius-lg: 36px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100vw - 2rem));
  --section-space: clamp(5rem, 8vw, 8rem);
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --font-display: "Oswald", "Arial Narrow", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 32, 62, 0.18), transparent 24rem),
    radial-gradient(circle at 85% 12%, rgba(255, 122, 24, 0.15), transparent 28rem),
    linear-gradient(180deg, #080808 0%, var(--bg) 35%, #090909 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
}

body::after {
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 122, 24, 0.24), transparent 28rem),
    radial-gradient(circle at 24% 30%, rgba(255, 32, 62, 0.18), transparent 24rem);
}

body::-webkit-scrollbar {
  width: 0.8rem;
}

body::-webkit-scrollbar-track {
  background: #0a0a0a;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(255, 32, 62, 0.7), rgba(255, 122, 24, 0.7));
  border-radius: 999px;
  border: 2px solid #0a0a0a;
}

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

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

main>.section:not(.hero)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--container);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.page-glow {
  position: fixed;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.35;
  pointer-events: none;
}

.page-glow--left {
  top: 14rem;
  left: -10rem;
  background: rgba(255, 32, 62, 0.28);
}

.page-glow--right {
  top: 38rem;
  right: -8rem;
  background: rgba(255, 122, 24, 0.24);
}

.eyebrow,
.hero-panel__label,
.plan-card__label,
.plan-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.eyebrow::before,
.hero-panel__label::before,
.plan-card__label::before,
.plan-card__badge::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-soft));
  box-shadow: 0 0 12px rgba(255, 122, 24, 0.42);
}

.eyebrow {
  color: var(--success);
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.hero-chip {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.92;
  text-wrap: balance;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 7vw, 6rem);
}

h2 {
  font-size: clamp(1.8rem, 5vw, 4.2rem);
  max-width: 14ch;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
  font-size: 0.98rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.5rem;
  padding: 0.9rem 1.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-soft));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 18px 35px rgba(255, 77, 24, 0.24);
  color: #fff9f2;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 28px rgba(255, 77, 24, 0.4), 0 24px 48px rgba(255, 32, 62, 0.3);
}

.button:focus-visible,
.menu-toggle:focus-visible,
.thumb-card:focus-visible {
  outline: 2px solid var(--success);
  outline-offset: 4px;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line);
  box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(255, 122, 24, 0.45);
  background: rgba(255, 255, 255, 0.05);
}

.button--small {
  min-height: 2.85rem;
  padding: 0.7rem 1.05rem;
  font-size: 0.82rem;
}

.button--block {
  width: 100%;
}

.button--pulse {
  animation: pulse-glow 2.6s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.4));
  backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease, padding 0.3s ease;
}

.site-header.is-scrolled {
  padding: 0.8rem 0;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 8, 0.88);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.5);
  box-shadow: var(--shadow-soft);
}

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

.brand__logo {
  width: 3.45rem;
  height: 3.45rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.brand__text {
  display: grid;
  gap: 0.12rem;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.site-nav a:not(.button) {
  color: var(--muted);
  padding: 0.65rem 0.3rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible {
  color: var(--text);
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.22rem auto;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: clip;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  background:
    radial-gradient(circle at 78% 26%, rgba(255, 122, 24, 0.16), transparent 18rem),
    linear-gradient(100deg, rgba(6, 6, 6, 0.92) 0%, rgba(8, 8, 8, 0.58) 48%, rgba(8, 8, 8, 0.84) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.12) 0%, rgba(8, 8, 8, 0.64) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
  gap: 2rem;
  align-items: end;
}

.hero__copy {
  max-width: 46rem;
}

.hero__lead {
  max-width: 36rem;
  margin-top: 1rem;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #d2cdc6;
}

.hero__title-accent {
  display: block;
  margin-top: 0.12em;
  color: transparent;
  background: linear-gradient(135deg, #ffffff 8%, #ffb27b 40%, #ff5e2a 70%, #ff203e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255, 94, 42, 0.45);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}

.hero__signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.hero__signal {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #ddd8d1;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero__microproof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.microproof-card,
.hero-panel,
.stat-card,
.mini-review,
.about-card,
.feature-card,
.gallery__spotlight,
.thumb-card,
.plan-card,
.testimonial-card,
.contact-card,
.map-card,
.final-cta__inner {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.015);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
}

.microproof-card::after,
.hero-panel::after,
.stat-card::after,
.mini-review::after,
.about-card::after,
.feature-card::after,
.gallery__spotlight::after,
.plan-card::after,
.testimonial-card::after,
.contact-card::after,
.map-card::after,
.final-cta__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  pointer-events: none;
}

.microproof-card {
  padding: 1.1rem 1.2rem;
  background:
    linear-gradient(160deg, rgba(255, 32, 62, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
}

.microproof-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-panel {
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
}

.hero-panel__label {
  color: var(--accent-soft);
}

.hero-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.hero-panel__grid article {
  padding: 1rem 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel__grid span {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  font-size: 2.2rem;
}

.hero-panel__grid p {
  margin-top: 0.35rem;
  font-size: 0.86rem;
  line-height: 1.5;
}

.hero-panel__review {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.quote {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-panel__review span {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-panel__meta {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-panel__meta strong,
.contact-card strong,
.contact-meta strong,
.footer-inner strong {
  display: block;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}

.hero-panel__meta p {
  margin-top: 0.35rem;
}

.trust {
  margin-top: calc(-1 * clamp(3rem, 4vw, 4rem));
  z-index: 2;
}

.trust-strip,
.trust-testimonials,
.feature-grid,
.plan-grid,
.testimonial-grid,
.contact-cards {
  display: grid;
  gap: 1rem;
}

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

.stat-card {
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.015);
}

.stat-card__value {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.trust-testimonials {
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-review {
  padding: 1.4rem;
}

.mini-review p {
  color: var(--text);
}

.mini-review span,
.testimonial-card span,
.plan-card__badge {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.section-grid,
.preview-layout,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2,
.final-cta h2 {
  margin-top: 0.75rem;
}

.section-copy p,
.section-heading p,
.contact-copy p,
.final-cta p {
  max-width: 38rem;
  margin-top: 1rem;
}

.check-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.check-list div {
  padding: 1rem 1.15rem;
  border-left: 2px solid rgba(255, 122, 24, 0.55);
  background: rgba(255, 255, 255, 0.02);
}

.check-list strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.about-card {
  overflow: hidden;
}

.about-card img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

.about-card__body {
  padding: 1.5rem;
}

.about-card__body p {
  margin-top: 0.8rem;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2rem;
  position: relative;
  padding-top: 1rem;
}

.section-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-soft));
  box-shadow: 0 0 16px rgba(255, 122, 24, 0.28);
}

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

.feature-card,
.plan-card,
.testimonial-card,
.contact-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.feature-card::before,
.plan-card::before,
.testimonial-card::before,
.contact-card::before,
.thumb-card::before {
  content: "";
  position: absolute;
  inset: auto auto -5rem -4rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.22), transparent 68%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card:hover,
.feature-card:focus-within,
.plan-card:hover,
.testimonial-card:hover,
.contact-card:hover,
.thumb-card:hover,
.thumb-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 24, 0.35);
}

.feature-card:hover::before,
.plan-card:hover::before,
.testimonial-card:hover::before,
.contact-card:hover::before,
.thumb-card:hover::before,
.thumb-card:focus-visible::before {
  opacity: 1;
}

.feature-card {
  padding: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.015);
}

.feature-card__icon {
  display: inline-grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 32, 62, 0.18), rgba(255, 122, 24, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--text);
}

.feature-card h3 {
  margin-top: 1.15rem;
}

.feature-card p {
  margin-top: 0.7rem;
}

.gallery {
  display: grid;
  gap: 1rem;
}

.gallery__spotlight {
  overflow: hidden;
}

.gallery__spotlight img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery__spotlight figcaption {
  padding: 1.2rem 1.3rem 1.35rem;
  color: #d3cec7;
}

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

.thumb-card {
  position: relative;
  padding: 0;
  border: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
}

.thumb-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.thumb-card span {
  display: block;
  padding: 0.85rem;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.thumb-card.is-active {
  border-color: rgba(197, 255, 106, 0.45);
  transform: translateY(-4px);
}

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

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.015);
}

.plan-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.plan-card__label {
  color: var(--accent-soft);
}

.plan-popular-badge {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-soft));
  color: #fff;
  text-align: center;
  margin: -1.6rem -1.6rem 0.5rem -1.6rem;
  padding: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  z-index: 2;
  position: relative;
  box-shadow: 0 4px 12px rgba(255, 77, 24, 0.2);
}

.plan-card__for {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #d7d2ca;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-card__price {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.plan-card__copy {
  min-height: 4.6rem;
  color: #d1ccc5;
}

.plan-card__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.plan-card__highlights span {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #ece8e1;
  font-size: 0.8rem;
  font-weight: 600;
}

.plan-card--featured {
  border-color: rgba(255, 122, 24, 0.35);
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  transform: translateY(-0.5rem);
}

.plan-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
  color: #d8d2cb;
  flex: 1 1 auto;
}

.plan-list li {
  position: relative;
  padding-left: 1.4rem;
}

.plan-list li::before {
  content: "";
  position: absolute;
  top: 0.68rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-soft));
  box-shadow: 0 0 10px rgba(255, 77, 24, 0.4);
}

.plan-list--emoji li {
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.plan-list--emoji li::before {
  display: none !important;
}

.plan-card__footer {
  display: grid;
  gap: 0.9rem;
  margin-top: auto;
}

.plan-card__note {
  color: var(--muted);
  font-size: 0.86rem;
}

.plans-note {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

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

.testimonial-card {
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.015);
}

.stars {
  color: #ffc44d;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
}

.testimonial-card p {
  margin-top: 0.9rem;
  color: var(--text);
}

.testimonial-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--text);
}

.contact-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.contact-card {
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.015);
}

.contact-card p {
  margin-top: 0.45rem;
}

.contact-actions,
.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-actions {
  margin-top: 1.6rem;
}

.contact-meta {
  margin-top: 1.7rem;
}

.contact-meta>div {
  flex: 1 1 14rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.map-card {
  padding: 0.7rem;
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 32rem;
  border: 0;
  border-radius: calc(var(--radius-md) - 0.4rem);
  filter: grayscale(0.78) contrast(1.08) brightness(0.88);
}

.final-cta__inner {
  padding: clamp(2rem, 4vw, 3.2rem);
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(255, 122, 24, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.final-cta__inner h2,
.final-cta__inner p {
  max-width: 100%;
}

.final-cta__inner .hero__actions {
  justify-content: center;
}

.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem 2rem;
  margin-bottom: 3rem;
}

.footer-brand .brand {
  margin-bottom: 1.2rem;
}

.footer-brand .brand__logo {
  width: 3rem;
  height: 3rem;
}

.footer-brand .brand__name {
  font-size: 1.2rem;
}

.footer-desc {
  max-width: 20rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.footer-socials a svg {
  width: 1.2rem;
  height: 1.2rem;
}

.footer-socials a:hover {
  transform: translateY(-4px);
  background: var(--accent-red);
  border-color: var(--accent-soft);
  color: #fff;
}

.footer-widget strong {
  display: inline-block;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  color: var(--text);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.footer-widget a,
.footer-widget .day-time {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.25s ease;
  line-height: 1.6;
}

.footer-widget a:hover {
  color: var(--text);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.contact-list svg {
  margin-top: 0.2rem;
  color: var(--accent-red);
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: #888;
  font-size: 0.85rem;
}

.footer-credit a {
  color: #ece8e1;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
  font-weight: 500;
}

.footer-credit a:hover {
  color: var(--accent-red);
  text-decoration-color: var(--accent-red);
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal="fade-left"] {
  transform: translate3d(32px, 0, 0);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 18px 35px rgba(255, 77, 24, 0.24);
  }

  50% {
    box-shadow: 0 0 18px rgba(255, 122, 24, 0.4), 0 24px 44px rgba(255, 32, 62, 0.28);
  }
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.wa-btn {
  position: fixed;
  bottom: 4.5rem;
  right: 1.3rem;
  z-index: 150;
  background-color: #25d366;
  color: white;
  padding: 1rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease;
  animation: wa-pulse 2s infinite;
}

.wa-btn:hover {
  transform: scale(1.1);
}

.wa-btn svg {
  width: 2rem;
  height: 2rem;
}

.wa-btn .tooltip {
  position: absolute;
  right: 100%;
  margin-right: 1rem;
  background: #fff;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  pointer-events: none;
}

.wa-btn:hover .tooltip {
  opacity: 1;
}



@media (max-width: 1080px) {

  .hero__content,
  .section-grid,
  .preview-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    gap: 1.5rem;
  }

  .hero__copy,
  .hero__lead {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

  .plan-card--featured {
    transform: none;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 0.85rem 0;
  }

  .header-inner {
    padding: 0.5rem;
    border-radius: 1.6rem;
  }

  .brand__name {
    font-size: 1.24rem;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.85rem);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(10, 10, 10, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a:not(.button) {
    padding: 0.45rem 0;
  }

  .site-nav .button {
    width: 100%;
  }

  .trust-strip,
  .trust-testimonials,
  .testimonial-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .button {
    flex: 1 1 auto;
    width: auto;
  }

  .hero-panel {
    padding: 1.2rem;
  }

  .plan-card__copy {
    min-height: auto;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.2rem 0;
  }

  main>.section:not(.hero)::before {
    width: calc(100% - 1.5rem);
  }

  .hero__copy {
    text-align: center;
  }

  .eyebrow-row {
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
  }

  .hero {
    padding-top: 6.5rem;
  }

  h1 {
    max-width: none;
    font-size: clamp(1.9rem, 12vw, 3.4rem);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(1.4rem, 9vw, 2.4rem);
    line-height: 1.15;
  }

  .hero__actions,
  .contact-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .button,
  .contact-actions .button {
    width: 100%;
    max-width: 320px;
  }

  .hero__signal-row {
    flex-direction: column;
    align-items: center;
  }

  .hero__signal {
    width: 100%;
    justify-content: center;
  }

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

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

  .gallery__thumbs {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }

  .thumb-card {
    min-width: 0;
  }

  .thumb-card span {
    padding: 0.45rem 0.5rem;
    font-size: 0.7rem;
    line-height: 1.2;
  }

  .gallery__spotlight figcaption,
  .thumb-card span,
  .plan-card,
  .testimonial-card,
  .contact-card,
  .mini-review,
  .stat-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .plan-card {
    gap: 0.85rem;
  }

  .plan-card__top {
    align-items: flex-start;
  }

  .plan-card__highlights span,
  .plan-card__for {
    width: 100%;
    justify-content: center;
  }

  .map-card iframe {
    min-height: 22rem;
  }

  .wa-btn {
    right: 1rem;
    bottom: 4.5rem;
    padding: 0.8rem;
  }

  .wa-btn svg {
    width: 2rem;
    height: 2rem;
  }

  .wa-btn .tooltip {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100vw - 1rem, 1180px);
  }

  .header-inner {
    gap: 0.6rem;
  }

  .brand {
    gap: 0.65rem;
  }

  .brand__logo {
    width: 3rem;
    height: 3rem;
  }

  .brand__sub {
    font-size: 0.78rem;
  }

  .hero-chip,
  .hero__signal,
  .plan-card__for {
    font-size: 0.74rem;
  }

  .section-heading {
    margin-bottom: 1.4rem;
  }
}

@media (max-width: 380px) {
  .brand__sub {
    display: none;
  }

  .brand__name {
    font-size: 1.15rem;
  }

  .hero__actions {
    gap: 0.75rem;
  }

  .hero__actions .button {
    min-height: 3.1rem;
    padding: 0.75rem 1.15rem;
    font-size: 0.92rem;
  }

  .stat-card__value {
    font-size: 2.4rem;
  }
}

@media (max-width: 330px) {
  h1 {
    font-size: 2.1rem;
  }

  .brand__name {
    font-size: 1rem;
  }

  .header-inner {
    padding: 0.4rem;
  }

  .brand__logo {
    width: 2.6rem;
    height: 2.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}