:root {
  --ink: #062f3d;
  --ink-2: #0b4654;
  --aqua: #0ea5a8;
  --aqua-2: #5dd9d0;
  --aqua-3: #dff8f5;
  --sand: #fff8e9;
  --sun: #ffd96a;
  --white: #ffffff;
  --paper: #f5fbfa;
  --muted: #5f7379;
  --line: #d8e8e7;
  --danger: #c64040;
  --success: #14745f;
  --shadow-sm: 0 12px 30px rgba(6, 47, 61, 0.08);
  --shadow-lg: 0 28px 80px rgba(6, 47, 61, 0.18);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button, a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(14, 165, 168, 0.45);
  outline-offset: 3px;
}

/* Base Layout & Utilities */
.container {
  width: min(calc(100% - 36px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 104px 0;
  position: relative;
}

.section--soft {
  background: var(--paper);
}

.section--dark {
  background: var(--ink);
  color: var(--white);
}

.section--sand {
  background: var(--sand);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--aqua);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.section-title {
  max-width: 790px;
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.section-intro {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.17rem);
}

.section--dark .section-intro {
  color: #c8dddf;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 14px;
}

/* Header & Nav */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 78px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 232, 231, 0.78);
  transition: box-shadow 0.25s ease, height 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(6, 47, 61, 0.08);
  height: 70px;
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  border-radius: 14px 14px 18px 18px;
  transform: rotate(2deg);
  box-shadow: inset 0 -6px 12px rgba(93, 217, 208, 0.23);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
  display: block;
}

.brand span em {
  color: var(--aqua);
  font-style: normal;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-weight: 700;
  font-size: 0.93rem;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 2px;
  background: var(--aqua);
  transition: right 0.2s ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 850;
  white-space: nowrap;
}

.phone-link svg {
  width: 18px;
  height: 18px;
  color: var(--aqua);
  display: block;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  position: relative;
  z-index: 1070;
}

.menu-toggle:hover {
  background: var(--aqua-3);
  border-color: rgba(14, 165, 168, 0.3);
}

.hamburger-box {
  width: 20px;
  height: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, background 0.3s ease;
  transform-origin: center;
  pointer-events: none;
}

/* Open State for Hamburger (morphing to X) */
body.menu-open .menu-toggle {
  background: var(--ink);
  border-color: var(--ink);
}

body.menu-open .menu-toggle .hamburger-line {
  background: var(--white);
}

body.menu-open .menu-toggle .line-1 {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-toggle .line-2 {
  opacity: 0;
  transform: scaleX(0);
}

body.menu-open .menu-toggle .line-3 {
  transform: translateY(-6px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

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

.btn svg {
  width: 19px;
  height: 19px;
  display: block;
  flex: 0 0 auto;
}

.btn--primary {
  color: var(--ink);
  background: var(--sun);
  box-shadow: 0 12px 26px rgba(255, 217, 106, 0.27);
}

.btn--primary:hover {
  background: #ffe188;
  box-shadow: 0 16px 34px rgba(255, 217, 106, 0.36);
}

.btn--aqua {
  color: var(--white);
  background: var(--aqua);
  box-shadow: 0 12px 26px rgba(14, 165, 168, 0.25);
}

.btn--aqua:hover {
  background: #0b9498;
}

.btn--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  border-color: var(--line);
}

.btn--ghost:hover {
  background: var(--white);
}

.btn--dark {
  color: var(--white);
  background: var(--ink);
}

.btn--dark:hover {
  background: var(--ink-2);
}

.btn--wide {
  width: 100%;
}

/* Offcanvas Backdrop Overlay */
.offcanvas-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(4, 25, 33, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.offcanvas-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* Offcanvas Menu Drawer */
.offcanvas-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1060;
  width: min(400px, 86vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(165deg, rgba(6, 47, 61, 0.98) 0%, rgba(11, 70, 84, 0.99) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(93, 217, 208, 0.2);
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.35);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease;
  color: var(--white);
  padding: 0;
  overflow-y: auto;
}

.offcanvas-menu.open {
  transform: translateX(0);
  visibility: visible;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand--offcanvas span {
  color: var(--white);
}

.brand--offcanvas .brand-mark {
  background: rgba(255, 255, 255, 0.1);
}

.offcanvas-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.offcanvas-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.offcanvas-close svg {
  width: 22px;
  height: 22px;
  display: block;
}

.offcanvas-body {
  padding: 24px;
  flex: 1 1 auto;
}

.offcanvas-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offcanvas-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  text-decoration: none;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s ease, border-color 0.2s ease;
  transition-delay: calc(var(--i) * 0.05s);
}

.offcanvas-menu.open .offcanvas-nav a {
  opacity: 1;
  transform: translateX(0);
}

.offcanvas-nav a:hover {
  background: rgba(14, 165, 168, 0.22);
  border-color: rgba(93, 217, 208, 0.4);
  transform: translateX(4px);
}

.nav-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(93, 217, 208, 0.15);
  color: var(--aqua-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.nav-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.nav-text {
  flex: 1 1 auto;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.nav-arrow {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.2s ease, color 0.2s ease;
}

.offcanvas-nav a:hover .nav-arrow {
  color: var(--aqua-2);
  transform: translateX(3px);
}

.offcanvas-footer {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.offcanvas-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition: background 0.2s ease;
}

.offcanvas-phone:hover {
  background: rgba(255, 255, 255, 0.15);
}

.phone-pulse-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--aqua);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  box-shadow: 0 0 0 0 rgba(14, 165, 168, 0.5);
  animation: phonePulse 2s infinite;
}

@keyframes phonePulse {
  0% { box-shadow: 0 0 0 0 rgba(14, 165, 168, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(14, 165, 168, 0); }
  100% { box-shadow: 0 0 0 0 rgba(14, 165, 168, 0); }
}

.phone-pulse-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.offcanvas-phone strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.2;
}

.offcanvas-phone span {
  font-size: 0.8rem;
  color: #c5dadd;
}

.offcanvas-trust-note {
  text-align: center;
  font-size: 0.78rem;
  color: #a3c4c8;
  margin-top: 4px;
}

/* Hero Section */
.hero {
  min-height: 820px;
  padding: 160px 0 74px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 10% 20%, rgba(93, 217, 208, 0.22), transparent 27%),
    radial-gradient(circle at 89% 14%, rgba(255, 217, 106, 0.26), transparent 22%),
    linear-gradient(180deg, #f9fffe 0%, #effaf8 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -250px;
  bottom: -250px;
  border: 70px solid rgba(14, 165, 168, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(38px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0 0 22px;
  max-width: 720px;
  font-size: clamp(2.8rem, 5.2vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-highlight {
  color: var(--aqua);
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.hero-highlight::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -4px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 16' preserveAspectRatio='none'%3E%3Cpath d='M3 11 C 60 3, 130 14, 237 6' stroke='%230ea5a8' stroke-width='4.5' stroke-linecap='round' fill='none' opacity='0.85'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

.hero-copy {
  max-width: 660px;
  margin: 0 0 30px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  color: var(--ink-2);
  font-size: 0.83rem;
  font-weight: 750;
  margin-top: 6px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(14, 165, 168, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(14, 165, 168, 0.16);
  white-space: nowrap;
}

.trust-item svg {
  width: 15px;
  height: 15px;
  color: var(--aqua);
  flex: 0 0 auto;
  display: block;
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.hero-photo {
  position: absolute;
  inset: 0 0 36px 32px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
  background: var(--aqua-3);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 47, 61, 0.25) 0%, transparent 40%, rgba(6, 47, 61, 0.4) 100%);
  pointer-events: none;
}

.hero-photo-badge {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  right: 24px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(6, 47, 61, 0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.hero-photo-badge strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.hero-photo-badge span {
  color: #d9eeee;
  font-size: 0.88rem;
}

.hero-card {
  position: absolute;
  left: -16px;
  bottom: 0;
  z-index: 3;
  width: min(340px, 86%);
  padding: 20px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}

.hero-card-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--aqua-3);
  color: var(--aqua);
  flex: 0 0 auto;
}

.hero-card-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.hero-card strong {
  display: block;
  font-size: 1.02rem;
}

.hero-card small {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-card .mini-steps {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.mini-steps i {
  width: 7px;
  height: 7px;
  background: var(--line);
  border-radius: 50%;
}

.mini-steps i.active {
  width: 18px;
  border-radius: 99px;
  background: var(--aqua);
}

.bubble {
  position: absolute;
  border: 1px solid rgba(14, 165, 168, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
  animation: float 7s ease-in-out infinite;
  pointer-events: none;
}

.bubble--1 {
  width: 42px;
  height: 42px;
  right: -14px;
  top: 32px;
}

.bubble--2 {
  width: 20px;
  height: 20px;
  right: 35px;
  top: -18px;
  animation-delay: -2s;
}

.bubble--3 {
  width: 66px;
  height: 66px;
  left: 4px;
  top: 92px;
  animation-delay: -4s;
}

@keyframes float {
  50% {
    transform: translateY(-14px) translateX(5px);
  }
}

/* Proof Strip */
.proof-strip {
  position: relative;
  z-index: 3;
  margin-top: -2px;
  background: var(--ink);
  color: var(--white);
}

.proof-grid {
  min-height: 110px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(93, 217, 208, 0.14);
  color: var(--aqua-2);
}

.proof-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.proof-item strong {
  display: block;
  line-height: 1.2;
}

.proof-item > div span {
  display: block;
  margin-top: 3px;
  color: #bcd2d5;
  font-size: 0.84rem;
}

/* Problems Grid */
.problem-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.problem-card {
  position: relative;
  min-height: 250px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(6, 47, 61, 0.12);
}

.problem-card::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -58px;
  width: 140px;
  height: 140px;
  background: var(--aqua-3);
  border-radius: 50%;
}

.problem-number {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 30px;
  border-radius: 15px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.problem-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 9px;
  font-size: 1.2rem;
}

.problem-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
}

/* Services Grid */
.services-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-end;
  margin-bottom: 46px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.service-card:nth-child(1), .service-card:nth-child(4) {
  grid-column: span 7;
}

.service-card:nth-child(2), .service-card:nth-child(3) {
  grid-column: span 5;
}

.service-card:nth-child(5), .service-card:nth-child(6) {
  grid-column: span 6;
}

.service-card--feature {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.service-card::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -80px;
  bottom: -100px;
  border-radius: 50%;
  background: var(--aqua-3);
  opacity: 0.72;
}

.service-card--feature::before {
  background: var(--aqua);
  opacity: 0.19;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  border-radius: 17px;
  background: var(--aqua-3);
  color: var(--aqua);
}

.service-card--feature .service-icon {
  background: rgba(93, 217, 208, 0.15);
  color: var(--aqua-2);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.service-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.025em;
}

.service-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 510px;
  color: var(--muted);
}

.service-card--feature p {
  color: #c5dadd;
}

.service-tag {
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Compare / Before-After */
.compare-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.before-after {
  position: relative;
  min-height: 540px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #1c7982;
  user-select: none;
}

.before-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-layer {
  position: absolute;
  inset: 0;
  width: 48%;
  overflow: hidden;
  border-right: 3px solid var(--white);
}

.before-layer img {
  width: calc(100vw);
  max-width: none;
  filter: saturate(0.75) hue-rotate(48deg) brightness(0.68) contrast(0.92);
}

.ba-label {
  position: absolute;
  top: 20px;
  z-index: 4;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(6, 47, 61, 0.83);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ba-label--before {
  left: 20px;
}

.ba-label--after {
  right: 20px;
}

.ba-handle {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(6, 47, 61, 0.25);
  pointer-events: none;
}

.ba-handle svg {
  width: 22px;
  height: 22px;
  display: block;
}

.ba-range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.illustration-note {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 7;
  padding: 7px 12px;
  border-radius: 9px;
  color: #e9f6f7;
  background: rgba(6, 47, 61, 0.7);
  font-size: 0.72rem;
}

.compare-list {
  display: grid;
  gap: 18px;
  margin: 30px 0 34px;
}

.compare-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.compare-item i {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--aqua-3);
  color: var(--aqua);
  font-style: normal;
  font-weight: 900;
}

.compare-item strong {
  display: block;
  margin-bottom: 2px;
}

.compare-item span {
  color: var(--muted);
  font-size: 0.94rem;
}

/* Included Scope */
.included-wrap {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 120px;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.check-card {
  min-height: 130px;
  padding: 21px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.check-card svg {
  width: 22px;
  height: 22px;
  color: var(--aqua-2);
  margin-bottom: 14px;
  display: block;
}

.check-card strong {
  display: block;
  margin-bottom: 5px;
}

.check-card span {
  color: #bfd3d6;
  font-size: 0.9rem;
}

.scope-note {
  margin-top: 17px;
  color: #abc4c8;
  font-size: 0.86rem;
}

/* Process Steps */
.process {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.process-step {
  position: relative;
  min-height: 276px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.process-step::before {
  counter-increment: process;
  content: "0" counter(process);
  display: block;
  margin-bottom: 42px;
  color: var(--aqua);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 48px;
  width: 34px;
  height: 1px;
  background: var(--aqua);
  z-index: 3;
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

.process-chip {
  display: inline-flex;
  margin-top: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--aqua-3);
  color: var(--ink-2);
  font-size: 0.75rem;
  font-weight: 850;
}

/* Diagnostic / Form */
.diagnostic {
  overflow: hidden;
}

.diagnostic::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  left: -360px;
  top: -330px;
  border-radius: 50%;
  border: 80px solid rgba(93, 217, 208, 0.09);
  pointer-events: none;
}

.form-shell {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  margin-top: 44px;
  position: relative;
  z-index: 2;
}

.form-aside {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.form-aside h3 {
  margin: 0 0 14px;
  font-size: 1.6rem;
}

.form-aside p {
  margin: 0 0 26px;
  color: #c3d8da;
}

.aside-points {
  display: grid;
  gap: 17px;
}

.aside-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.aside-point i {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(93, 217, 208, 0.15);
  color: var(--aqua-2);
  font-style: normal;
  font-weight: 900;
}

.aside-point strong {
  display: block;
  font-size: 0.95rem;
}

.aside-point span {
  display: block;
  color: #b8cfd2;
  font-size: 0.84rem;
}

.quote-form {
  padding: 34px;
  border-radius: 28px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 30px;
}

.progress-segment {
  height: 6px;
  border-radius: 99px;
  background: var(--line);
  transition: background 0.2s ease;
}

.progress-segment.active {
  background: var(--aqua);
}

.form-step {
  display: none;
  animation: stepIn 0.25s ease;
}

.form-step.active {
  display: block;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
}

.step-kicker {
  margin-bottom: 6px;
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-step h3 {
  margin: 0 0 22px;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  letter-spacing: -0.035em;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice label {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
  transition: border 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.choice label:hover {
  transform: translateY(-2px);
  border-color: #9bcfd0;
}

.choice input:checked + label {
  border-color: var(--aqua);
  background: var(--aqua-3);
  box-shadow: inset 0 0 0 1px var(--aqua);
}

.choice strong {
  display: block;
}

.choice small {
  color: var(--muted);
  margin-top: 3px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.84rem;
  font-weight: 800;
}

.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  padding: 14px 15px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.field input, .field select {
  min-height: 51px;
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(14, 165, 168, 0.1);
}

.field .error {
  color: var(--danger);
  font-size: 0.78rem;
  min-height: 1em;
}

.dropzone {
  position: relative;
  padding: 22px;
  text-align: center;
  border: 1.5px dashed #9fc8ca;
  border-radius: 16px;
  background: var(--paper);
}

.dropzone input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.dropzone strong {
  display: block;
}

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

.file-list {
  margin-top: 8px;
  color: var(--success);
  font-size: 0.82rem;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.78rem;
}

.consent input {
  margin-top: 3px;
  accent-color: var(--aqua);
}

.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.form-note {
  margin-top: 12px;
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
}

.honeypot {
  position: absolute !important;
  left: -5000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Coverage / Map */
.coverage-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.map-card {
  position: relative;
  min-height: 500px;
  border-radius: 32px;
  background: linear-gradient(145deg, #d8f4f0, #f8fffe);
  border: 1px solid var(--line);
  overflow: hidden;
}

.map-card svg {
  position: absolute;
  inset: 6% 4% 0;
  width: 92%;
  height: 90%;
}

.map-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  font-weight: 850;
}

.map-pin::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 5px rgba(14, 165, 168, 0.12);
}

.pin-brno { top: 29%; left: 47%; }
.pin-hodonin { top: 71%; left: 54%; }
.pin-breclav { top: 82%; left: 41%; }
.pin-znojmo { top: 59%; left: 13%; }
.pin-vyskov { top: 25%; left: 68%; }
.pin-kyjov { top: 58%; left: 69%; }

.city-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 27px 0 31px;
}

.city-cloud span {
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-weight: 760;
  font-size: 0.88rem;
}

/* FAQ */
.faq-wrap {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 76px;
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 850;
  font-size: 1.05rem;
  cursor: pointer;
}

.faq-question i {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: var(--aqua-3);
  color: var(--aqua);
  font-style: normal;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  margin: -4px 50px 22px 0;
  color: var(--muted);
}

/* Final CTA */
.final-cta {
  padding: 86px 0;
  background: var(--aqua-3);
}

.cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: clamp(34px, 6vw, 70px);
  border-radius: 34px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}

.cta-card::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -130px;
  bottom: -210px;
  border: 60px solid rgba(93, 217, 208, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.cta-card h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.cta-card p {
  max-width: 650px;
  margin: 0;
  color: #c5dadd;
}

.cta-actions {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  min-width: 230px;
}

.cta-phone {
  text-align: center;
  color: #d6e8ea;
  font-size: 0.86rem;
}

/* Footer */
footer {
  padding: 54px 0 90px;
  background: #041f29;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 50px;
}

.footer-copy {
  max-width: 460px;
  margin: 18px 0 0;
  color: #a9c2c5;
}

.footer-title {
  margin: 0 0 14px;
  color: var(--aqua-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links {
  display: grid;
  gap: 9px;
  color: #d5e5e7;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #87a4a8;
  font-size: 0.82rem;
}

/* Mobile CTA & Toast */
.mobile-cta {
  display: none;
  position: fixed;
  z-index: 1100;
  left: 10px;
  right: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  padding: 7px;
  border-radius: 18px;
  background: rgba(6, 47, 61, 0.94);
  box-shadow: 0 18px 50px rgba(6, 47, 61, 0.32);
  backdrop-filter: blur(12px);
}

.mobile-cta a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 13px;
  font-weight: 850;
}

.mobile-cta a:first-child {
  color: var(--white);
}

.mobile-cta a:last-child {
  background: var(--sun);
  color: var(--ink);
}

.toast {
  position: fixed;
  z-index: 2000;
  right: 20px;
  bottom: 20px;
  max-width: 410px;
  padding: 18px 20px;
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--success);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast strong {
  display: block;
}

.toast span {
  color: var(--muted);
  font-size: 0.88rem;
}

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

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

/* Responsive Media Queries */
@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }
  .header-actions .btn {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .hero-grid, .compare-grid, .coverage-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
  .proof-item:nth-child(2) {
    border-right: 0;
  }
  .proof-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }
  .problem-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process {
    grid-template-columns: 1fr 1fr;
  }
  .process-step:nth-child(2)::after {
    display: none;
  }
  .included-wrap, .form-shell, .faq-wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .sticky-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }
  .section {
    padding: 64px 0;
  }
  .site-header, .site-header.scrolled {
    height: 64px;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
  }
  .phone-link {
    display: none;
  }
  .hero {
    min-height: auto;
    padding: 104px 0 44px;
  }
  .hero-grid, .compare-grid, .coverage-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero h1 {
    font-size: clamp(2.1rem, 8.5vw, 3.6rem);
    line-height: 1.04;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .trust-row {
    gap: 6px 8px;
  }
  .trust-item {
    font-size: 0.79rem;
    padding: 5px 10px;
  }
  .hero-visual {
    min-height: auto;
    position: relative;
    margin-top: 14px;
    display: flex;
    flex-direction: column;
  }
  .hero-photo {
    position: relative;
    inset: 0;
    width: 100%;
    height: 290px;
    border-radius: 24px;
    transform: none;
  }
  .hero-photo-badge {
    top: 14px;
    left: 14px;
    right: 14px;
    padding: 10px 14px;
  }
  .hero-photo-badge strong {
    font-size: 0.95rem;
  }
  .hero-photo-badge span {
    font-size: 0.8rem;
  }
  .hero-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: -24px;
    margin-inline: auto;
    width: min(340px, 94%);
    padding: 16px;
  }
  .bubble--3 {
    left: -12px;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .proof-item, .proof-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    padding: 18px 20px;
  }
  .proof-item:last-child {
    border-bottom: 0;
  }
  .problem-grid, .process, .check-grid, .choice-grid, .field-grid {
    grid-template-columns: 1fr;
  }
  .services-head {
    display: block;
  }
  .services-head .btn {
    margin-top: 20px;
    width: 100%;
  }
  .service-card:nth-child(n) {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 24px;
  }
  .before-after {
    min-height: 320px;
  }
  .before-layer img {
    width: 100%;
    max-width: none;
  }
  .process-step:not(:last-child)::after {
    display: none;
  }
  .quote-form, .form-aside {
    padding: 20px;
    border-radius: 20px;
  }
  .form-nav {
    flex-direction: column-reverse;
    gap: 10px;
  }
  .form-nav .btn {
    width: 100%;
  }
  .map-card {
    min-height: 320px;
    border-radius: 20px;
  }
  .map-pin {
    font-size: 0.72rem;
    padding: 4px 8px;
  }
  .faq-answer p {
    margin-right: 0;
  }
  .cta-card {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }
  .cta-actions {
    min-width: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .mobile-cta {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6px;
  }
  body.menu-open .mobile-cta {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
  }
  .toast {
    left: 12px;
    right: 12px;
    bottom: 84px;
  }
  footer {
    padding-bottom: 150px;
  }
}

@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;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* VEXE staged upload adapted to the original dropzone */
.cms-dropzone { display: block; text-align: center; }
.cms-dropzone .vx-dropzone { position: absolute; inset: 0; z-index: 2; cursor: pointer; }
.cms-dropzone .vx-dropzone-text { position: absolute; inset: 0; margin: 0; opacity: 0; }
.cms-dropzone .vx-dropzone-list { position: absolute; top: 100%; left: 0; right: 0; margin: 8px 0 0; padding: 0; list-style: none; text-align: left; color: var(--ink); }
.cms-dropzone > strong, .cms-dropzone > span { pointer-events: none; }
.errorlist { margin: 0; padding: 0; list-style: none; color: var(--danger); font-size: .78rem; }
.thanks-page { min-height: 72vh; display: flex; align-items: center; }
/* Shared callout and footer */
.footer-callout { background: #071f29; padding: 0; }
.footer-callout-inner { position: relative; overflow: hidden; min-height: 220px; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 48px; background: linear-gradient(135deg, var(--aqua), #087f89); color: var(--white); border-radius: 0 0 32px 32px; }
.footer-callout-inner::after { content: ""; position: absolute; width: 300px; height: 300px; right: -90px; top: -190px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,.04), 0 0 0 88px rgba(255,255,255,.03); }
.footer-callout-kicker { margin: 0 0 10px; color: #d7fffb; font-size: .76rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.footer-callout h2 { position: relative; z-index: 1; margin: 0; max-width: 650px; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.04; letter-spacing: -.045em; }
.footer-callout-actions { position: relative; z-index: 1; display: flex; gap: 14px; align-items: center; }
.footer-callout-phone, .footer-callout-link { min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border-radius: 14px; font-weight: 850; white-space: nowrap; }
.footer-callout-phone { background: var(--white); color: var(--ink); }
.footer-callout-phone svg { width: 18px; }
.footer-callout-link { border: 1px solid rgba(255,255,255,.48); color: var(--white); }
footer.site-footer { padding: 64px 0 36px; background: #071f29; color: var(--white); }
.footer-grid--new { grid-template-columns: 1.35fr .72fr .85fr; padding-bottom: 44px; }
.brand--footer { color: var(--white); }
.footer-brand-col > p { max-width: 400px; margin: 22px 0 0; color: #9cb4b9; }
.site-footer .footer-title { color: var(--aqua-2); }
.site-footer .footer-links { color: #c4d4d6; }
.footer-contact-list { display: grid; gap: 13px; color: #c4d4d6; }
.footer-contact-list a, .footer-contact-list > span { display: flex; gap: 10px; align-items: center; }
.footer-contact-list a > span, .footer-contact-list > span > span { color: var(--aqua-2); }
.footer-legal-row { padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); color: #8ea6aa; font-size: .82rem; }
.footer-legal-row p { margin: 0; }
.footer-legal-row a { color: #d3e0e2; text-decoration: underline; text-underline-offset: 4px; }
.footer-company-row { display: flex; flex-wrap: wrap; gap: 8px 18px; padding-top: 20px; color: #6f888d; font-size: .72rem; }
.footer-company-row span:not(:last-child)::after { content: "·"; margin-left: 18px; }
/* Cookie consent */
.cookie-banner { position: fixed; z-index: 3000; left: 20px; right: 20px; bottom: 20px; max-width: 1080px; margin: auto; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); color: var(--ink); box-shadow: 0 24px 80px rgba(6,47,61,.28); }
.cookie-banner-main { display: flex; justify-content: space-between; gap: 28px; align-items: center; }
.cookie-banner-main strong { font-size: 1.08rem; }
.cookie-banner-main p { max-width: 620px; margin: 5px 0 0; color: var(--muted); font-size: .9rem; }
.cookie-banner-main a { color: var(--aqua); text-decoration: underline; }
.cookie-actions, .cookie-settings-actions { display: flex; gap: 9px; }
.cookie-btn { min-height: 43px; padding: 0 15px; border-radius: 11px; cursor: pointer; font-weight: 800; }
.cookie-btn--settings { background: var(--paper); color: var(--ink); border: 1px solid var(--line); }
.cookie-btn--reject { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.cookie-btn--accept { background: var(--ink); color: var(--white); }
.cookie-settings-panel { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.cookie-settings-panel h2 { margin: 0 0 14px; font-size: 1.15rem; }
.cookie-option { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; }
.cookie-option input { margin-top: 4px; accent-color: var(--aqua); }
.cookie-option span { display: grid; }
.cookie-option small { color: var(--muted); }
.cookie-settings-actions { justify-content: flex-end; margin-top: 8px; }
/* Legal pages */
.legal-hero { padding: 150px 0 70px; background: linear-gradient(180deg, var(--aqua-3), var(--white)); }
.legal-hero h1 { max-width: 850px; margin: 0; font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1; letter-spacing: -.055em; }
.legal-hero h1 span { color: var(--aqua); }
.legal-hero p { max-width: 720px; margin: 24px 0 0; color: var(--muted); font-size: 1.08rem; }
.legal-layout { display: grid; grid-template-columns: 260px minmax(0,1fr); gap: 44px; padding: 70px 0 100px; align-items: start; }
.legal-toc { position: sticky; top: 100px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); }
.legal-toc strong { display: block; margin-bottom: 12px; }
.legal-toc a { display: block; padding: 7px 0; color: var(--muted); font-size: .88rem; }
.legal-content { display: grid; gap: 18px; }
.policy-card { padding: clamp(24px,4vw,42px); border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow-sm); }
.policy-card h2 { margin: 0 0 16px; font-size: clamp(1.35rem,2.5vw,2rem); letter-spacing: -.03em; }
.policy-card h3 { margin: 24px 0 8px; }
.policy-card p, .policy-card li { color: var(--muted); }
.policy-card li + li { margin-top: 8px; }
.policy-company { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin-top: 20px; }
.policy-company div { padding: 14px; border-radius: 12px; background: var(--paper); }
.cookie-page-options { display: grid; gap: 14px; }
.cookie-page-option { display: flex; gap: 14px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; }
.cookie-page-option input { margin-top: 5px; accent-color: var(--aqua); }
.cookie-page-option span { display: grid; gap: 4px; }
.cookie-page-option small { color: var(--muted); }
.cookie-save-row { display: flex; align-items: center; gap: 16px; margin-top: 22px; }
.cookie-status { color: var(--success); font-weight: 800; }
@media (max-width: 850px) { .footer-callout-inner, .cookie-banner-main { flex-direction: column; align-items: flex-start; } .footer-callout-actions { width: 100%; } .footer-grid--new { grid-template-columns: 1fr 1fr; } .footer-brand-col { grid-column: 1/-1; } .legal-layout { grid-template-columns: 1fr; } .legal-toc { position: static; } }
@media (max-width: 600px) { .footer-callout-inner { padding: 34px 22px; border-radius: 0 0 24px 24px; } .footer-callout-actions { flex-direction: column; align-items: stretch; } .footer-callout-phone, .footer-callout-link { width: 100%; } .footer-grid--new { grid-template-columns: 1fr; } .footer-brand-col { grid-column: auto; } .footer-company-row { display: grid; } .footer-company-row span::after { display: none; } .cookie-banner { left: 10px; right: 10px; bottom: 84px; max-height: calc(100vh - 105px); overflow: auto; } .cookie-actions { width: 100%; flex-wrap: wrap; } .cookie-btn { flex: 1; } .policy-company { grid-template-columns: 1fr; } .legal-hero { padding-top: 115px; } }
/* Hero trust points: plain text, no badge treatment */
.trust-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: 11px 26px; margin-top: 8px; }
.trust-item { display: flex; align-items: center; gap: 8px; padding: 2px 0; border: 0; border-radius: 0; background: transparent; white-space: normal; line-height: 1.35; }
.trust-item svg { width: 17px; height: 17px; }
.proof-item > .proof-icon { display: flex; margin-top: 0; color: var(--aqua-2); font-size: inherit; }
.proof-icon svg { width: 23px; height: 23px; stroke-width: 2; }
@media (max-width: 480px) { .trust-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 16px; } .trust-item { padding: 0; font-size: .77rem; } }
/* Compact custom consent control */
.consent {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  cursor: pointer;
}
.field .consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  margin: 1px 0 0;
  padding: 0;
  border: 2px solid #8cbfc1;
  border-radius: 6px;
  background: var(--white);
  box-shadow: none;
  cursor: pointer;
}
.field .consent input[type="checkbox"]:checked {
  border-color: var(--aqua);
  background-color: var(--aqua);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='m4 10 4 4 8-9' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px;
}
.field .consent input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(16, 167, 174, .24);
  outline-offset: 3px;
}
.consent span {
  line-height: 1.55;
}

/* Staged uploads with image previews */
.cms-dropzone {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: visible;
  text-align: initial;
}
.cms-dropzone .vx-dropzone {
  position: relative;
  inset: auto;
  z-index: auto;
  display: block;
  min-height: 0;
  padding: 22px;
  cursor: pointer;
}
.cms-dropzone .vx-dropzone-text {
  display: none;
}
.vx-dropzone-prompt {
  display: grid;
  gap: 5px;
  text-align: center;
  pointer-events: none;
}
.vx-dropzone-prompt strong {
  color: var(--ink);
  font-size: 1rem;
}
.vx-dropzone-prompt span {
  color: var(--muted);
  font-size: .84rem;
}
.cms-dropzone .vx-dropzone-list {
  position: static;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  text-align: left;
}
.cms-dropzone .vx-dropzone-list:empty {
  display: none;
}
.vx-dropzone-item {
  position: relative;
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  cursor: default;
}
.vx-dropzone-item-preview {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 9px;
  background: var(--paper);
}
.vx-dropzone-item-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vx-dropzone-item-name {
  overflow: hidden;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vx-dropzone-item-size {
  color: var(--muted);
  font-size: .72rem;
}
.vx-dropzone-item progress {
  width: 100%;
  height: 6px;
  accent-color: var(--aqua);
}
.vx-dropzone-item-remove {
  width: 100%;
  min-height: 34px;
  margin-top: 2px;
  padding: 5px 9px;
  border: 1px solid #efc5c0;
  border-radius: 8px;
  background: #fff8f7;
  color: #a63e35;
  font: inherit;
  font-size: .76rem;
  font-weight: 800;
  cursor: pointer;
}
.vx-dropzone-item-remove:hover {
  border-color: #d98b83;
  background: #fff0ed;
}
.cms-dropzone .vx-dropzone.is-dragover,
.cms-dropzone .vx-dropzone.vx-dropzone--dragover,
.cms-dropzone .vx-dropzone.vx-dropzone-dragover {
  background: #eaf9f7;
}
@media (max-width: 520px) {
  .cms-dropzone .vx-dropzone {
    padding: 18px 14px;
  }
  .cms-dropzone .vx-dropzone-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Matched generated before/after photography */
.before-layer img { filter: none; }

/* Privacy notice below the lead form */
.form-note span { display: inline-block; margin-top: 6px; } .form-note a { color: var(--aqua); text-decoration: underline; text-underline-offset: 3px; }
