:root {
  --bg: #eef8f7;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-soft: #c8ecea;
  --text: #0c2556;
  --text-soft: #5a6270;
  --navy: #0c2556;
  --blue: #22466c;
  --mint: #90d1cd;
  --mint-soft: #c8ecea;
  --line: rgba(34, 70, 108, 0.14);
  --hero-grad: linear-gradient(135deg, #90d1cd 0%, #22466c 78%);
  --shadow: 0 24px 60px rgba(12, 37, 86, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-top: var(--site-header-space, 0px);
  font-family: "Jost", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(144, 209, 205, 0.42), transparent 26%),
    radial-gradient(circle at bottom right, rgba(34, 70, 108, 0.16), transparent 28%),
    linear-gradient(180deg, #f9fefe 0%, #eef8f7 100%);
  overflow-x: hidden;
}

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

.bg-orb {
  position: fixed;
  z-index: -1;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.bg-orb-left {
  top: -8rem;
  left: -8rem;
  background: rgba(144, 209, 205, 0.55);
}

.bg-orb-right {
  right: -10rem;
  bottom: -8rem;
  background: rgba(34, 70, 108, 0.18);
}

.site-header,
.global-header {
  width: min(1280px, calc(100% - 1.2rem));
  margin: 0 auto;
}

main {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-footer,
.global-footer {
  width: 100%;
  margin: 0;
}

.site-header,
.global-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 25;
  padding: 0.65rem 0 0;
  transform: translateY(0);
  transition: transform 0.28s ease, opacity 0.2s ease;
  will-change: transform;
}

.site-header.is-hidden,
.global-header.is-hidden {
  transform: translateY(calc(-1 * var(--site-header-offset, 0px)));
  opacity: 0;
  pointer-events: none;
}

.header-topbar {
  margin-bottom: 0.45rem;
}

.header-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 2.6rem;
  padding: 0 0.9rem;
  border-bottom: 1px solid rgba(34, 70, 108, 0.08);
}

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 1.25rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(34, 70, 108, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 250, 0.94)),
    linear-gradient(135deg, rgba(144, 209, 205, 0.1), rgba(34, 70, 108, 0.04));
  box-shadow: 0 18px 48px rgba(12, 37, 86, 0.12);
  backdrop-filter: blur(20px);
}

.header-social {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.header-topbar .header-social {
  gap: 0.45rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(34, 70, 108, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(12, 37, 86, 0.07);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(34, 70, 108, 0.24);
  background: rgba(144, 209, 205, 0.24);
}

.social-link svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.header-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 1.4rem;
  min-width: 0;
  width: 100%;
}

.brand,
.hero h1,
.section-head h2,
.feature-card h2,
.contact h2,
.project-card h3 {
  font-family: "Poppins", sans-serif;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
}

.brand-logo {
  display: block;
  width: 10.2rem;
  max-width: 100%;
  height: auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 1vw, 1.35rem);
  min-width: 0;
}

.nav a {
  position: relative;
  padding: 0.45rem 0;
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint) 0%, var(--blue) 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--navy);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  color: #ffffff;
  font-family: "Jost", sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  white-space: nowrap;
  background-image: linear-gradient(135deg, #90d1cd 0%, #22466c 75%);
  border-bottom: 3px solid var(--mint);
  box-shadow: 0 16px 30px rgba(34, 70, 108, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 38px rgba(34, 70, 108, 0.22);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(34, 70, 108, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(12, 37, 86, 0.08);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-inner {
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
}

.site-header.is-open .nav-toggle-bar:nth-child(1),
.global-header.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-open .nav-toggle-bar:nth-child(2),
.global-header.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle-bar:nth-child(3),
.global-header.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  padding: 4.5rem 0 2.6rem;
}

.home-page .hero {
  padding: 4.2rem 0 3rem;
}

.page-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 15rem;
  padding: 4.2rem 0 2.4rem;
}

.page-hero h1 {
  max-width: 24ch;
  margin: 0.4rem 0 1rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.95rem, 3.9vw, 3.2rem);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: none;
  text-wrap: balance;
}

.page-title-inline {
  max-width: none !important;
  font-size: clamp(1.95rem, 3.9vw, 3.2rem) !important;
  line-height: 1.12 !important;
  white-space: nowrap;
}

.page-lead {
  max-width: 48rem;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.15rem;
  line-height: 1.75;
}

.page-hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-hero-centered .page-lead {
  margin: 0 auto;
}

.page-hero-centered .hero-actions {
  justify-content: center;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.4rem;
  align-items: stretch;
}

.home-page .hero-layout {
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 1.9rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy-shell {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto 1.9rem;
}

.home-page .hero-copy-shell {
  text-align: center;
}

.home-page .hero-content {
  align-items: center;
}

.eyebrow,
.section-label,
.project-tag {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
}

.eyebrow,
.section-label {
  color: var(--blue);
}

.script-note {
  margin: 0.35rem 0 0;
  font-family: "Cookie", cursive;
  font-size: 2rem;
  color: var(--mint);
}

.hero h1 {
  max-width: 12ch;
  margin: 0.4rem 0 1rem;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 1.02;
  font-weight: 600;
  text-transform: uppercase;
}

.home-page .hero h1 {
  max-width: none;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.1vw, 3.3rem);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.035em;
  text-transform: none;
  text-wrap: balance;
}

.home-title-line {
  display: block;
  white-space: nowrap;
}

.hero-copy {
  max-width: 43rem;
  font-size: 1.18rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.home-page .hero-copy {
  max-width: 50rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background-image: var(--hero-grad);
  border-bottom: 3px solid var(--mint);
  box-shadow: 0 18px 36px rgba(34, 70, 108, 0.2);
}

.button-secondary {
  color: var(--navy);
  border: 1px solid rgba(144, 209, 205, 0.6);
  background: rgba(255, 255, 255, 0.72);
}

.campaign-slider {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.campaign-slider-shell {
  display: grid;
  gap: 1rem;
}

.campaign-slider-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.campaign-slider-head h2 {
  margin: 0.45rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  line-height: 1.15;
  font-weight: 600;
}

.campaign-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: #fff;
  background: var(--hero-grad);
  font-size: 0.9rem;
  font-weight: 600;
}

.campaign-slides {
  position: relative;
  aspect-ratio: 1600 / 720;
}

.campaign-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.campaign-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
}

.campaign-media {
  position: absolute;
  inset: 0;
  display: block;
}

.campaign-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-slide-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  height: 100%;
  margin: 0 auto;
  padding: clamp(1.8rem, 4vw, 3rem) 0 clamp(2rem, 5vw, 3.4rem);
}

.campaign-overlay-top {
  justify-content: flex-start;
}

.campaign-overlay-middle {
  justify-content: center;
}

.campaign-overlay-bottom {
  justify-content: flex-end;
}

.campaign-overlay-left {
  align-items: flex-start;
  text-align: left;
}

.campaign-overlay-center {
  align-items: center;
  text-align: center;
}

.campaign-overlay-right {
  align-items: flex-end;
  text-align: right;
}

.campaign-overlay-nudge-up {
  transform: translateY(-1.4rem);
}

.campaign-overlay-nudge-down {
  transform: translateY(1.4rem);
}

.campaign-overlay-nudge-left {
  transform: translateX(-2rem);
}

.campaign-overlay-nudge-right {
  transform: translateX(2rem);
}

.campaign-overlay-center .campaign-badge,
.campaign-overlay-center .campaign-link {
  align-self: center;
}

.campaign-overlay-right .campaign-badge,
.campaign-overlay-right .campaign-link {
  align-self: flex-end;
}

.campaign-overlay-center p {
  margin-right: auto;
  margin-left: auto;
}

.campaign-overlay-right p {
  margin-right: 0;
  margin-left: auto;
}

.campaign-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.campaign-badge {
  display: inline-flex;
  align-self: start;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.campaign-slide h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.05;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.campaign-slide p {
  margin: 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  line-height: 1.7;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.campaign-link {
  display: inline-flex;
  align-self: start;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 600;
}

.campaign-button-left {
  align-self: flex-start;
}

.campaign-button-center {
  align-self: center;
}

.campaign-button-right {
  align-self: flex-end;
}

.campaign-button-nudge-up {
  transform: translateY(-1rem);
}

.campaign-button-nudge-down {
  transform: translateY(1rem);
}

.campaign-button-nudge-left {
  transform: translateX(-1.2rem);
}

.campaign-button-nudge-right {
  transform: translateX(1.2rem);
}

.campaign-slider-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.campaign-dots {
  display: flex;
  gap: 0.5rem;
}

.campaign-dots-overlay {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: max-content;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(12, 37, 86, 0.28);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.campaign-dot {
  width: 0.85rem;
  height: 0.85rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(34, 70, 108, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.campaign-dot.is-active {
  background: var(--mint);
  transform: scale(1.15);
}

.campaign-pause {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.campaign-pause:hover,
.campaign-pause:focus-visible {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.24);
}

.campaign-pause svg {
  width: 0.82rem;
  height: 0.82rem;
  fill: currentColor;
}

.campaign-icon-play {
  display: none;
}

.campaign-pause.is-paused .campaign-icon-pause {
  display: none;
}

.campaign-pause.is-paused .campaign-icon-play {
  display: block;
}

.campaign-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  text-align: center;
}

.stats,
.content-grid,
.project-list {
  display: grid;
  gap: 1rem;
}

.stats {
  grid-template-columns: repeat(3, 1fr);
  margin: 1rem 0 4rem;
}

.stats article,
.card,
.project-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.stats article {
  padding: 1.5rem;
}

.stats strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
}

.stats span {
  color: var(--text-soft);
}

.content-grid {
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: 4rem;
}

.card {
  padding: 2rem;
}

.inline-link {
  display: inline-flex;
  align-self: start;
  margin-top: 1rem;
  color: var(--blue);
  font-weight: 600;
}

.light-link {
  color: #ffffff;
}

.feature-card p,
.project-card p,
.contact p {
  color: var(--text-soft);
  line-height: 1.75;
}

.feature-card h2,
.contact h2 {
  margin: 0.5rem 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 600;
}

.quote-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(200, 236, 234, 0.85));
}

.accent-card {
  border-color: rgba(144, 209, 205, 0.55);
}

.quote {
  margin: 0.75rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.55rem;
  line-height: 1.5;
  color: var(--blue);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-head h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 600;
}

.section-head-centered {
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.section-head-centered h2 {
  max-width: none;
}

.project-list {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 4rem;
}

.project-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

.section-stack {
  margin-bottom: 4rem;
}

.stacked-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 4rem;
}

.stacked-grid .project-grid-two {
  margin-bottom: 0;
}

.spotlight-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 250, 250, 0.96)),
    linear-gradient(135deg, rgba(144, 209, 205, 0.1), rgba(34, 70, 108, 0.03));
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.info-pill-row,
.offer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.info-pill,
.offer-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(34, 70, 108, 0.14);
  border-radius: 999px;
  background: rgba(144, 209, 205, 0.16);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
}

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

.offer-card p {
  margin: 0;
}

.offer-meta {
  margin-top: auto;
  padding-top: 1rem;
}

.step-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: var(--hero-grad);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(34, 70, 108, 0.18);
}

.step-card p {
  margin: 0;
}

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

.table-card-head {
  padding: 1.7rem 1.8rem 1.2rem;
}

.table-card-head h3 {
  margin: 0.45rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.2;
  font-weight: 600;
}

.table-card-head p {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.smart-table-wrap {
  overflow-x: auto;
  padding: 0 1.15rem 1.15rem;
}

.smart-table {
  width: 100%;
  min-width: 38rem;
  border-collapse: collapse;
}

.smart-table th,
.smart-table td {
  padding: 1rem 1.05rem;
  text-align: left;
  border-bottom: 1px solid rgba(34, 70, 108, 0.1);
}

.smart-table th {
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

.smart-table td {
  color: var(--text-soft);
  line-height: 1.55;
}

.smart-table tbody tr:last-child td {
  border-bottom: 0;
}

.faq-simple {
  display: grid;
  gap: 0.9rem;
}

.faq-simple details {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(12, 37, 86, 0.08);
  overflow: hidden;
}

.faq-simple summary {
  position: relative;
  padding: 1.15rem 3.2rem 1.15rem 1.35rem;
  list-style: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

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

.faq-simple summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 600;
}

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

.faq-simple-content {
  padding: 0 1.35rem 1.2rem;
  color: var(--text-soft);
  line-height: 1.75;
}

.laser-hero {
  max-width: none;
  text-align: center;
}

.laser-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

.laser-showcase-copy,
.laser-showcase-visual {
  height: 100%;
  padding: 2.2rem;
}

.laser-showcase-copy {
  border-color: rgba(34, 70, 108, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 250, 250, 0.96)),
    linear-gradient(135deg, rgba(144, 209, 205, 0.1), rgba(34, 70, 108, 0.03));
}

.laser-showcase-copy h2,
.laser-showcase-visual h3,
.laser-signature h2,
.care-card h3 {
  margin: 0.5rem 0 0.9rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  line-height: 1.18;
  font-weight: 600;
}

.laser-showcase-copy p,
.care-card p {
  color: var(--text-soft);
  line-height: 1.8;
}

.laser-showcase-copy p + p {
  margin-top: 0.95rem;
}

.laser-showcase-visual {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  border-color: rgba(144, 209, 205, 0.16);
  background:
    linear-gradient(180deg, rgba(12, 37, 86, 0.98), rgba(25, 50, 92, 0.95)),
    radial-gradient(circle at top right, rgba(144, 209, 205, 0.16), transparent 46%);
  box-shadow: 0 26px 56px rgba(12, 37, 86, 0.18);
}

.laser-showcase-visual::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  pointer-events: none;
}

.laser-showcase-visual .section-label {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
}

.laser-showcase-visual p {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

.laser-aspect-grid {
  position: relative;
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.laser-aspect-card {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.laser-aspect-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.85rem;
  height: 3.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: #bdeceb;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 20px rgba(12, 37, 86, 0.12);
}

.laser-aspect-icon svg {
  width: 2.8rem;
  height: 2.8rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.laser-icon-stroke {
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.laser-icon-accent-sun {
  stroke: #f3bc59;
  stroke-width: 1.6;
  stroke-linecap: round;
}

.laser-icon-text {
  fill: rgba(255, 255, 255, 0.92);
  stroke: none;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.laser-aspect-icon-cooling svg {
  width: 3.2rem;
  height: 3.2rem;
}

.laser-aspect-icon-calendar svg {
  width: 3.1rem;
  height: 3.1rem;
}

.laser-aspect-icon-results svg {
  width: 3.25rem;
  height: 3.25rem;
}

.laser-aspect-icon-tones svg {
  width: 3.05rem;
  height: 3.05rem;
  fill: initial;
  stroke: none;
}

.laser-skin-wheel {
  filter: drop-shadow(0 4px 8px rgba(12, 37, 86, 0.12));
}

.laser-aspect-copy {
  display: grid;
  gap: 0.22rem;
  align-content: center;
  min-width: 0;
}

.laser-aspect-card strong {
  display: block;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.laser-aspect-copy span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.laser-section {
  margin-bottom: 4rem;
}

.laser-section .section-head > p:last-child {
  max-width: 32rem;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.laser-care-grid {
  display: grid;
  gap: 1rem;
}

.laser-care-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.laser-signature {
  margin-bottom: 4rem;
  padding: 2rem 2.2rem;
  border-color: rgba(144, 209, 205, 0.4);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(238, 248, 247, 0.97)),
    linear-gradient(135deg, rgba(144, 209, 205, 0.08), rgba(34, 70, 108, 0.03));
}

.laser-signature p {
  max-width: 46rem;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.laser-benefits-list,
.laser-checklist,
.care-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.laser-benefits-list li,
.laser-checklist li,
.care-list li {
  position: relative;
  padding-left: 1.55rem;
  line-height: 1.75;
}

.dark-card .laser-benefits-list li,
.dark-card .laser-checklist li,
.dark-card .care-list li {
  color: rgba(255, 255, 255, 0.88);
}

.laser-benefits-list li + li,
.laser-checklist li + li,
.care-list li + li {
  margin-top: 0.7rem;
}

.laser-benefits-list li::before,
.laser-checklist li::before,
.care-list li::before {
  content: "";
  position: absolute;
  top: 0.68rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint) 0%, var(--blue) 100%);
}

.care-card {
  height: 100%;
}

.care-card-highlight {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(200, 236, 234, 0.8));
}

.laser-note-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 250, 250, 0.98));
}

.laser-note-text {
  max-width: 50rem;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.laser-faq-section {
  margin-bottom: 4.4rem;
}

.faq-search,
.faq-empty,
.faq-list {
  display: grid;
  max-width: 60rem;
  margin: 0 auto;
}

.faq-search {
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.faq-search-label {
  display: block;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.faq-search-shell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem 0.65rem 1rem;
  border: 1px solid rgba(34, 70, 108, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(12, 37, 86, 0.08);
}

.faq-search-input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0;
  color: var(--navy);
  font: inherit;
  background: transparent;
}

.faq-search-input::placeholder {
  color: rgba(90, 98, 112, 0.88);
}

.faq-search-clear {
  flex: 0 0 auto;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(34, 70, 108, 0.12);
  border-radius: 999px;
  color: var(--navy);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  background: rgba(144, 209, 205, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-search-clear:hover,
.faq-search-clear:focus-visible {
  transform: translateY(-1px);
  background: rgba(144, 209, 205, 0.3);
}

.faq-empty {
  display: block;
  margin-bottom: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(34, 70, 108, 0.1);
  border-radius: 22px;
  color: var(--text-soft);
  line-height: 1.75;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 30px rgba(12, 37, 86, 0.06);
}

.faq-empty a {
  color: var(--blue);
  font-weight: 600;
}

.faq-list {
  gap: 0.9rem;
}

.faq-item {
  border: 1px solid rgba(34, 70, 108, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(12, 37, 86, 0.08);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 1.4rem 4rem 1.4rem 1.4rem;
  cursor: pointer;
  list-style: none;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.35rem;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--blue);
}

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

.faq-answer {
  padding: 0 1.4rem 1.4rem;
}

.faq-answer p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.faq-answer p + p,
.faq-answer p + .faq-answer-list,
.faq-answer-list + p {
  margin-top: 0.95rem;
}

.faq-answer-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-soft);
}

.faq-answer-list li {
  line-height: 1.8;
}

.faq-answer-list li + li {
  margin-top: 0.45rem;
}

.faq-highlight {
  padding: 0 0.18rem;
  border-radius: 0.3rem;
  color: inherit;
  background: rgba(144, 209, 205, 0.48);
}

.pricing-section {
  margin-bottom: 4rem;
}

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

.pricing-grid-compact {
  grid-template-columns: repeat(4, 1fr);
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.price-card h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  line-height: 1.15;
  font-weight: 600;
  color: var(--navy);
}

.price-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.price-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.price-stack {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.45rem;
}

.price-original {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: line-through;
}

.price-value {
  display: inline-flex;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(144, 209, 205, 0.24);
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(12, 37, 86, 0.08);
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.dark-price-card {
  background: linear-gradient(180deg, #22466c 0%, #0c2556 100%);
  border-color: rgba(144, 209, 205, 0.28);
}

.dark-price-card h3,
.dark-price-card p,
.dark-price-card .project-tag {
  color: #ffffff;
}

.dark-price-card .price-value {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.dark-price-card .price-original {
  color: rgba(255, 255, 255, 0.74);
}

.dark-price-card .discount-badge {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.soft-price-card {
  background: linear-gradient(180deg, rgba(200, 236, 234, 0.92), rgba(255, 255, 255, 0.9));
}

.interaction-hint {
  max-width: 42rem;
  margin: -0.2rem auto 1.4rem;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}

.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.zone-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(34, 70, 108, 0.15);
  border-radius: 999px;
  background: rgba(144, 209, 205, 0.14);
  color: var(--navy);
  font: inherit;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.zone-chip:hover,
.zone-chip:focus-visible,
.zone-chip.is-active {
  transform: translateY(-1px);
  border-color: rgba(34, 70, 108, 0.28);
  background: rgba(34, 70, 108, 0.1);
  box-shadow: 0 12px 24px rgba(12, 37, 86, 0.08);
}

.zone-chip:focus-visible {
  outline: 2px solid rgba(34, 70, 108, 0.35);
  outline-offset: 2px;
}

.zone-list-dark .zone-chip {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.zone-list-dark .zone-chip:hover,
.zone-list-dark .zone-chip:focus-visible,
.zone-list-dark .zone-chip.is-active {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 24px rgba(5, 20, 48, 0.22);
}

.pricing-section .price-card {
  gap: 0.85rem;
  padding: 1.45rem;
}

.pricing-section .zone-list {
  gap: 0.45rem;
}

.pricing-section .zone-chip {
  padding: 0.42rem 0.68rem;
  font-size: 0.88rem;
  line-height: 1.1;
}

.zone-popover {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.1rem;
  pointer-events: none;
}

.zone-popover[hidden] {
  display: none;
}

.zone-popover.is-pinned {
  pointer-events: auto;
}

.zone-popover-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 37, 86, 0.12);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.zone-popover.is-pinned .zone-popover-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.zone-popover-panel {
  position: relative;
  width: min(25rem, calc(100vw - 2.2rem));
  padding: 1.4rem;
  border: 1px solid rgba(34, 70, 108, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 247, 0.96)),
    linear-gradient(135deg, rgba(144, 209, 205, 0.16), rgba(34, 70, 108, 0.08));
  box-shadow: 0 28px 72px rgba(12, 37, 86, 0.18);
  backdrop-filter: blur(24px);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.24s ease, transform 0.24s ease;
  pointer-events: auto;
}

.zone-popover.is-open .zone-popover-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.zone-popover-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(34, 70, 108, 0.08);
  color: var(--navy);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.zone-popover.is-pinned .zone-popover-close {
  opacity: 1;
  pointer-events: auto;
}

.zone-popover-close:hover,
.zone-popover-close:focus-visible {
  background: rgba(34, 70, 108, 0.14);
}

.zone-popover-panel h3 {
  margin: 0.45rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.7rem;
  line-height: 1.1;
  font-weight: 600;
}

.zone-popover-copy {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.zone-photo-frame {
  margin-top: 1rem;
}

.zone-photo-frame[hidden] {
  display: none;
}

.zone-photo {
  display: block;
  width: 100%;
  max-height: 15rem;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 16px 38px rgba(12, 37, 86, 0.12);
}

.zone-photo-label {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.zone-popover-view {
  margin: 0.9rem 0 0;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.zone-figures {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
  margin-top: 1rem;
}

.zone-figures[data-active-count="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.zone-figures[data-active-count="3"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.zone-figure {
  display: none;
  width: 100%;
  height: auto;
  padding: 0.8rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(238, 248, 247, 0.95), rgba(200, 236, 234, 0.68));
}

.zone-figure.is-active {
  display: block;
}

.zone-figures[data-active-count="1"] .zone-figure.is-active {
  max-width: 16rem;
  margin: 0 auto;
}

.zone-figure-base {
  fill: rgba(34, 70, 108, 0.12);
  stroke: rgba(34, 70, 108, 0.2);
  stroke-width: 3;
}

.zone-figure-art {
  pointer-events: none;
}

.zone-highlight {
  fill: rgba(34, 70, 108, 0.16);
  stroke: rgba(34, 70, 108, 0.16);
  stroke-width: 2;
  opacity: 0;
  transition: opacity 0.2s ease, fill 0.2s ease, stroke 0.2s ease;
}

.zone-highlight.is-active {
  fill: rgba(34, 70, 108, 0.82);
  stroke: rgba(144, 209, 205, 0.88);
  opacity: 1;
}

body.zone-popover-open {
  overflow: hidden;
}

.project-card {
  padding: 1.7rem;
}

.project-card h3 {
  margin: 0.65rem 0 0.8rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.project-tag {
  color: var(--blue);
}

.dark-card {
  background: linear-gradient(180deg, #22466c 0%, #0c2556 100%);
  border-color: rgba(144, 209, 205, 0.3);
}

.dark-card .project-tag,
.dark-card h3,
.dark-card p {
  color: #ffffff;
}

.soft-card {
  background: linear-gradient(180deg, rgba(200, 236, 234, 0.92), rgba(144, 209, 205, 0.7));
}

.dark-card .info-pill,
.dark-card .offer-meta span {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.contact {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 247, 0.98));
}

.cta-band {
  margin-bottom: 4rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.contact-links a {
  padding: 0.9rem 1.05rem;
  border: 1px solid rgba(144, 209, 205, 0.55);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--navy);
  font-weight: 500;
}

.site-footer,
.global-footer {
  margin-top: 3rem;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(180deg, rgba(56, 156, 177, 0.98), rgba(43, 128, 151, 0.98)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 30%);
}

.footer-shell {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 0;
  padding: 1.8rem 0 1.1rem;
}

.footer-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem 1.25rem;
  align-items: center;
  padding: 0 0 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-band .section-label {
  color: rgba(255, 255, 255, 0.78);
}

.footer-band h2 {
  max-width: 34ch;
  margin: 0.35rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.22;
  font-weight: 600;
  color: #ffffff;
}

.footer-address {
  display: inline-flex;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  line-height: 1.55;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 0.22em;
}

.footer-band-cta {
  min-width: 10.4rem;
}

.footer-main {
  display: block;
  padding-top: 1.15rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 0.95fr));
  gap: 1.1rem 2rem;
  padding: 0;
}

.footer-columns.card {
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}

.footer-column {
  min-width: 0;
}

.footer-column .section-label {
  color: rgba(255, 255, 255, 0.78);
}

.footer-column h3 {
  margin: 0.4rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.18rem;
  line-height: 1.24;
  font-weight: 600;
  color: #ffffff;
}

.footer-contact-list,
.footer-link-list,
.footer-hours-list {
  display: grid;
  gap: 0.52rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.footer-contact-list a,
.footer-link-list a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  line-height: 1.45;
}

.footer-hours-list li {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.footer-note {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.45;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.22);
}

.footer-social-link svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.15rem;
  padding: 0.95rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 500;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 700px) {
  .campaign-slides {
    aspect-ratio: 900 / 1200;
  }
}

@media (max-width: 900px) {
  .hero-layout,
  .home-page .hero-layout,
  .laser-showcase,
  .footer-main,
  .stats,
  .content-grid,
  .project-list,
  .project-grid-two,
  .laser-care-grid,
  .pricing-grid,
  .pricing-grid-compact {
    grid-template-columns: 1fr;
  }

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

  .site-header,
  .global-header {
    width: min(100%, calc(100% - 1rem));
    padding-top: 0.75rem;
  }

  .header-topbar-inner {
    padding: 0 0.65rem 0.35rem;
  }

  .header-shell {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.8rem;
    padding: 0.8rem 0.95rem;
    border-radius: 28px;
  }

  .header-panel {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    left: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(34, 70, 108, 0.12);
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 250, 250, 0.97)),
      linear-gradient(135deg, rgba(144, 209, 205, 0.1), rgba(34, 70, 108, 0.04));
    box-shadow: 0 18px 44px rgba(12, 37, 86, 0.14);
  }

  .site-header.is-open .header-panel,
  .global-header.is-open .header-panel {
    display: grid;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
  }

  .nav a {
    padding: 0.85rem 0.2rem;
    border-bottom: 1px solid rgba(34, 70, 108, 0.08);
  }

  .nav a::after {
    right: auto;
    width: 2.6rem;
  }

  .header-cta {
    width: 100%;
  }

  .footer-band {
    grid-template-columns: 1fr;
    padding: 0 0 1rem;
  }

  .footer-band-cta {
    justify-self: start;
  }

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

  .laser-section .section-head > p:last-child {
    max-width: none;
  }

  .zone-popover {
    justify-content: center;
  }

  .zone-popover-panel {
    width: min(32rem, calc(100vw - 2rem));
  }
}

@media (max-width: 640px) {
  .site-header,
  .global-header {
    gap: 1rem;
  }

  .header-topbar {
    margin-bottom: 0.35rem;
  }

  .header-topbar-inner {
    justify-content: center;
    padding-bottom: 0.25rem;
  }

  .brand-logo {
    width: 8.8rem;
  }

  .header-shell {
    padding: 0.75rem 0.85rem;
  }

  .header-panel {
    padding: 0.9rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .page-hero {
    padding-top: 3rem;
    padding-bottom: 2.2rem;
  }

  .hero h1 {
    max-width: none;
  }

  .home-page .hero h1 {
    max-width: none;
  }

  .home-title-line {
    white-space: normal;
  }

  .page-hero h1 {
    max-width: none;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    padding: 0;
  }

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

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

  .laser-showcase-copy,
  .laser-showcase-visual {
    padding: 1.55rem;
  }

  .faq-item summary {
    padding-right: 3.5rem;
  }

  .campaign-slider-head,
  .campaign-slider-footer {
    flex-direction: column;
    align-items: start;
  }

  .campaign-slide::after {
    background: transparent;
  }

  .campaign-slide-overlay {
    justify-content: flex-end;
    padding: 1.4rem 0 1.6rem;
  }

  .campaign-slide p {
    max-width: 28rem;
  }

  .faq-search-shell {
    flex-wrap: wrap;
    border-radius: 26px;
  }

  .faq-search-clear {
    width: 100%;
  }

  .campaign-note {
    text-align: left;
  }

  .interaction-hint {
    margin-bottom: 1.2rem;
    font-size: 0.96rem;
  }

  .pricing-section .price-card {
    padding: 1.35rem;
  }

  .pricing-section .zone-chip {
    font-size: 0.86rem;
  }

  .zone-chip {
    max-width: 100%;
  }

  .zone-popover {
    align-items: flex-end;
    padding: 0.75rem;
  }

  .zone-popover-panel {
    width: 100%;
    max-height: 82vh;
    padding: 1.2rem 1rem 1rem;
    border-radius: 24px;
    overflow-y: auto;
  }

  .zone-photo {
    max-height: 12.5rem;
  }

  .zone-figures,
  .zone-figures[data-active-count="2"],
  .zone-figures[data-active-count="3"] {
    grid-template-columns: minmax(0, 1fr);
  }

  .zone-figures[data-active-count="1"] .zone-figure.is-active,
  .zone-figure.is-active {
    max-width: 15rem;
    margin: 0 auto;
  }
}
