:root {
  --ink: #102021;
  --muted: #5e6f70;
  --bg: #f7faf8;
  --panel: #ffffff;
  --line: #d9e5e3;
  --deep: #061f22;
  --deep-2: #0a3033;
  --aqua: #12c7bd;
  --aqua-bright: #23eee4;
  --aqua-dark: #089c96;
  --green: #3c8f64;
  --coral: #e66a5c;
  --gold: #d9a441;
  --shadow: 0 18px 50px rgba(8, 41, 44, 0.14);
  --aqua-shadow: 0 20px 46px rgba(18, 199, 189, 0.24);
  --radius: 8px;
  --pill: 999px;
  --control-radius: 24px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::selection {
  background: rgba(18, 199, 189, 0.22);
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(18, 199, 189, 0.5);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 64px);
  min-height: 72px;
  background: rgba(6, 31, 34, 0.9);
  color: #f9ffff;
  border-bottom: 1px solid rgba(196, 236, 232, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 170px;
  height: 40px;
  border-radius: var(--pill);
  overflow: hidden;
}

.brand img,
.site-footer img {
  width: 168px;
  height: auto;
  border-radius: var(--pill);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.nav-links,
.header-actions,
.hero-actions,
.eyebrow-row,
.meta-line {
  display: flex;
  align-items: center;
}

.nav-links {
  justify-content: center;
  gap: clamp(16px, 3vw, 42px);
  color: rgba(249, 255, 255, 0.72);
}

.nav-links a,
.phone-link {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover,
.phone-link:hover {
  color: #ffffff;
}

.phone-link,
a[href^="tel:"],
.summary-line strong,
.summary-head strong {
  direction: ltr;
  unicode-bidi: isolate;
}

.header-actions {
  justify-content: flex-end;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 36px;
  padding: 4px;
  border: 1px solid rgba(35, 238, 228, 0.28);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.language-switcher a {
  min-width: 34px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: var(--pill);
  color: rgba(249, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.language-switcher a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.language-switcher a.active {
  background: linear-gradient(135deg, var(--aqua-bright), var(--aqua));
  color: #032124;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(249, 255, 255, 0.22);
  border-radius: var(--pill);
  font-weight: 700;
  font-size: 13px;
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--pill);
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  top: -48%;
  bottom: -48%;
  left: -58%;
  width: 44%;
  transform: translateX(-120%) skewX(-20deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.78),
    rgba(255, 255, 255, 0.18),
    transparent
  );
  opacity: 0;
  pointer-events: none;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 1px 1px auto;
  height: 48%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  opacity: 0.42;
  pointer-events: none;
}

.btn.is-shining::before {
  animation: button-shine 820ms cubic-bezier(0.2, 0.7, 0.25, 1);
  opacity: 1;
}

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

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  background:
    linear-gradient(135deg, var(--aqua-bright) 0%, var(--aqua) 52%, var(--aqua-dark) 100%),
    var(--aqua);
  color: #042326;
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    var(--aqua-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -10px 24px rgba(2, 87, 84, 0.18);
}

.btn-primary:hover {
  background:
    linear-gradient(135deg, #67fff7 0%, var(--aqua-bright) 48%, #0ab6ae 100%),
    var(--aqua-bright);
  box-shadow:
    0 26px 54px rgba(18, 199, 189, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -10px 24px rgba(2, 87, 84, 0.15);
}

.btn-quiet {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(35, 238, 228, 0.06)),
    rgba(255, 255, 255, 0.08);
  color: #f7ffff;
  border-color: rgba(35, 238, 228, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 28px rgba(0, 0, 0, 0.14);
}

.btn-quiet:hover {
  border-color: rgba(35, 238, 228, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(35, 238, 228, 0.1)),
    rgba(255, 255, 255, 0.1);
}

.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: stretch;
  gap: clamp(28px, 4vw, 72px);
  padding: clamp(24px, 3vw, 44px) clamp(18px, 4vw, 64px) 0;
  background:
    linear-gradient(115deg, rgba(3, 21, 23, 0.98) 0%, rgba(5, 31, 34, 0.98) 44%, rgba(7, 70, 69, 0.92) 100%),
    var(--deep);
  color: #f9ffff;
  border-bottom: 1px solid rgba(196, 236, 232, 0.14);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(102deg, transparent 0%, transparent 46%, rgba(35, 238, 228, 0.12) 58%, transparent 76%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 34%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(35, 238, 228, 0.72), transparent);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  padding-bottom: clamp(38px, 7vw, 90px);
}

.eyebrow-row {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.eyebrow-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(35, 238, 228, 0.32);
  border-radius: var(--pill);
  background: rgba(18, 199, 189, 0.08);
  color: rgba(224, 255, 253, 0.9);
  font-size: 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.eyebrow-row span:first-child::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 16px rgba(18, 199, 189, 0.9);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(36px, 3.3vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  color: rgba(249, 255, 255, 0.78);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
}

.hero-bullets {
  display: grid;
  gap: 10px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
  color: rgba(249, 255, 255, 0.86);
}

.hero-bullets li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
}

.hero-bullets li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--aqua-bright);
  box-shadow: 0 0 16px rgba(35, 238, 228, 0.7);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 600px;
  align-self: end;
}

.team-art {
  position: absolute;
  right: min(0px, -2vw);
  bottom: 0;
  width: min(100%, 760px);
  max-height: min(82vh, 720px);
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 34px 48px rgba(0, 0, 0, 0.45));
  animation: soft-float 7s ease-in-out infinite;
}

.quick-quote {
  position: absolute;
  isolation: isolate;
  overflow: hidden;
  left: 0;
  bottom: clamp(20px, 4vw, 48px);
  width: min(340px, 80%);
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(35, 238, 228, 0.2);
  background:
    linear-gradient(158deg, rgba(3, 26, 28, 0.94), rgba(4, 42, 43, 0.86)),
    rgba(5, 30, 33, 0.86);
  box-shadow:
    0 28px 74px rgba(0, 0, 0, 0.34),
    0 0 46px rgba(18, 199, 189, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.quick-quote::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -28%;
  bottom: -28%;
  left: -44%;
  width: 42%;
  transform: rotate(14deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03), transparent);
  animation: panel-sheen 8s ease-in-out infinite;
  pointer-events: none;
}

.quick-quote::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 40%);
  pointer-events: none;
}

.quick-quote > * {
  position: relative;
  z-index: 1;
}

.quick-quote div:first-child {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.panel-kicker,
.section-kicker {
  display: block;
  color: var(--aqua);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quick-quote strong {
  color: #ffffff;
  font-size: 28px;
}

.quick-quote label,
.field {
  display: grid;
  gap: 7px;
}

.quick-quote label span,
.field span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.quick-quote label span {
  color: rgba(249, 255, 255, 0.72);
}

.quick-quote select,
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--control-radius);
  padding: 10px 12px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.quick-quote select {
  border-color: rgba(35, 238, 228, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #f9ffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.quick-quote select option {
  color: var(--ink);
}

.quick-quote select:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(35, 238, 228, 0.62);
  box-shadow:
    0 0 0 4px rgba(18, 199, 189, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.field textarea {
  resize: vertical;
  min-height: 92px;
  border-radius: var(--radius);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-strip article {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 28px clamp(18px, 4vw, 52px);
  background: #ffffff;
}

.trust-strip strong {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.45;
}

.section,
.quote-section,
.process-section,
.site-footer {
  padding: clamp(56px, 8vw, 110px) clamp(18px, 4vw, 64px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head h2,
.quote-copy h2,
.split-section h2 {
  margin: 10px 0 14px;
  font-size: clamp(32px, 4.4vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-head p,
.quote-copy p,
.split-section p,
.service-card p,
.case-card p,
.process-grid p,
.faq-list p,
.site-footer p,
.site-footer span {
  color: var(--muted);
  line-height: 1.58;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.case-card,
.quote-tool,
.review-list article,
.faq-list details,
.process-grid li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(8, 41, 44, 0.06);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.service-card:hover,
.case-card:hover,
.review-list article:hover,
.process-grid li:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 199, 189, 0.32);
  box-shadow:
    0 22px 48px rgba(8, 41, 44, 0.12),
    0 0 34px rgba(18, 199, 189, 0.08);
}

.service-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  background: #dbe8e3;
}

.service-card-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.price {
  width: max-content;
  padding: 6px 9px;
  border-radius: var(--pill);
  background: rgba(18, 199, 189, 0.1);
  color: #057a74;
  font-size: 13px;
  font-weight: 900;
}

.service-card h3,
.case-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.meta-line {
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.link-button {
  position: relative;
  overflow: hidden;
  justify-self: start;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(18, 199, 189, 0.18);
  border-radius: var(--pill);
  background: rgba(18, 199, 189, 0.06);
  color: #077a75;
  font-weight: 900;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.link-button:hover {
  color: #0c3f42;
  border-color: rgba(18, 199, 189, 0.38);
  background: rgba(18, 199, 189, 0.1);
  transform: translateY(-1px);
}

.link-button::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 42%;
  transform: translateX(-120%) skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  opacity: 0;
  pointer-events: none;
}

.link-button.is-shining::before {
  animation: button-shine 760ms cubic-bezier(0.2, 0.7, 0.25, 1);
  opacity: 1;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 0.56fr);
  gap: clamp(28px, 5vw, 78px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(247, 250, 248, 0.95)),
    #edf5f2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-copy {
  position: sticky;
  top: 104px;
  align-self: start;
}

.guarantee-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.guarantee-list div {
  display: grid;
  gap: 3px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.guarantee-list span {
  color: var(--muted);
  font-size: 14px;
}

.quote-tool {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 248, 0.98)),
    var(--panel);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.span-2 {
  grid-column: 1 / -1;
}

.service-options {
  grid-column: 1 / -1;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(18, 199, 189, 0.24);
  border-radius: 18px;
  background: rgba(18, 199, 189, 0.06);
}

.service-options.active {
  display: grid;
}

.check,
.privacy-check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--ink);
  line-height: 1.35;
}

.check input,
.privacy-check input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  accent-color: var(--aqua);
}

.urgent-row {
  justify-content: space-between;
  padding: 11px 13px;
  border: 1px solid rgba(217, 164, 65, 0.42);
  border-radius: var(--control-radius);
  background: rgba(217, 164, 65, 0.11);
}

.quote-summary {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(35, 238, 228, 0.16);
  background:
    linear-gradient(150deg, rgba(6, 31, 34, 0.98), rgba(7, 54, 55, 0.96)),
    var(--deep);
  color: #f9ffff;
  box-shadow:
    0 18px 48px rgba(6, 31, 34, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.summary-head,
.summary-foot,
.summary-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.summary-head {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(196, 236, 232, 0.16);
}

.summary-head span,
.summary-foot span,
.summary-line span,
.privacy-check {
  color: rgba(249, 255, 255, 0.72);
}

.summary-head strong {
  color: var(--aqua);
  font-size: 34px;
  white-space: nowrap;
}

.summary-lines {
  display: grid;
  gap: 10px;
}

.summary-line strong {
  white-space: nowrap;
}

.summary-foot {
  padding-top: 14px;
  border-top: 1px solid rgba(196, 236, 232, 0.16);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(249, 255, 255, 0.84);
  font-size: 14px;
}

.form-status.error {
  color: #ffb2a9;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-card {
  overflow: hidden;
}

.case-card img {
  width: 100%;
  aspect-ratio: 1.8;
  object-fit: cover;
  transition: transform 600ms ease;
}

.case-card:hover img,
.service-card:hover img {
  transform: scale(1.035);
}

.case-card div {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.case-card span {
  color: #057a74;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.process-section {
  background: var(--deep-2);
  color: #f9ffff;
}

.process-section .section-head p,
.process-section .section-kicker {
  color: var(--aqua);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid li {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(196, 236, 232, 0.16);
}

.process-grid span {
  color: var(--aqua);
  font-weight: 900;
}

.process-grid strong {
  font-size: 24px;
}

.process-grid p {
  margin: 0;
  color: rgba(249, 255, 255, 0.72);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(24px, 5vw, 70px);
}

.reviews-section {
  background:
    linear-gradient(115deg, rgba(5, 27, 30, 0.98) 0%, rgba(6, 38, 41, 0.98) 55%, rgba(7, 58, 58, 0.96) 100%),
    var(--deep);
  color: #f9ffff;
}

.reviews-section .section-head p {
  color: rgba(249, 255, 255, 0.72);
}

.review-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.review-list article {
  display: grid;
  align-content: start;
  gap: 24px;
  min-height: 300px;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  border-color: rgba(196, 236, 232, 0.14);
  color: rgba(249, 255, 255, 0.86);
}

.review-list strong {
  display: block;
  margin-bottom: 4px;
  color: #f9ffff;
}

.review-list small {
  color: rgba(249, 255, 255, 0.5);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(196, 236, 232, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
}

.review-icon {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(35, 238, 228, 0.22), rgba(18, 199, 189, 0.08)),
    rgba(18, 199, 189, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.review-icon::before {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 11px;
  width: 6px;
  height: 14px;
  border-radius: 3px;
  background: rgba(249, 255, 255, 0.62);
}

.review-icon::after {
  content: "";
  position: absolute;
  left: 22px;
  bottom: 11px;
  width: 12px;
  height: 18px;
  border-radius: 6px 6px 4px 4px;
  background: rgba(249, 255, 255, 0.62);
}

.review-list p {
  margin: 0;
  padding: 6px 28px 28px;
  color: rgba(249, 255, 255, 0.78);
  line-height: 1.6;
}

.faq-list {
  max-width: 980px;
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  background: #061f22;
  color: #f9ffff;
  padding-bottom: 120px;
}

.site-footer > div {
  display: grid;
  gap: 12px;
  align-content: start;
}

.site-footer a {
  color: rgba(249, 255, 255, 0.82);
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(196, 236, 232, 0.22);
  border-radius: 22px;
  background: rgba(6, 31, 34, 0.92);
  color: #f9ffff;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.mobile-cta a {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
}

.motion-ready .section-head,
.motion-ready .service-card,
.motion-ready .case-card,
.motion-ready .review-list article,
.motion-ready .process-grid li,
.motion-ready .faq-list details,
.motion-ready .quote-tool,
.motion-ready .guarantee-list div {
  opacity: 0;
  transform: translateY(18px);
}

.motion-ready .section-head.is-visible,
.motion-ready .service-card.is-visible,
.motion-ready .case-card.is-visible,
.motion-ready .review-list article.is-visible,
.motion-ready .process-grid li.is-visible,
.motion-ready .faq-list details.is-visible,
.motion-ready .quote-tool.is-visible,
.motion-ready .guarantee-list div.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 560ms ease var(--reveal-delay, 0ms),
    transform 560ms ease var(--reveal-delay, 0ms),
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.motion-ready .service-card.is-visible:hover,
.motion-ready .case-card.is-visible:hover,
.motion-ready .review-list article.is-visible:hover,
.motion-ready .process-grid li.is-visible:hover {
  transform: translateY(-3px);
}

@keyframes button-shine {
  0% {
    transform: translateX(-130%) skewX(-20deg);
  }
  100% {
    transform: translateX(420%) skewX(-20deg);
  }
}

@keyframes panel-sheen {
  0%,
  46% {
    transform: translateX(0) rotate(14deg);
    opacity: 0;
  }
  56% {
    opacity: 1;
  }
  72%,
  100% {
    transform: translateX(360%) rotate(14deg);
    opacity: 0;
  }
}

@keyframes soft-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .motion-ready .section-head,
  .motion-ready .service-card,
  .motion-ready .case-card,
  .motion-ready .review-list article,
  .motion-ready .process-grid li,
  .motion-ready .faq-list details,
  .motion-ready .quote-tool,
  .motion-ready .guarantee-list div {
    opacity: 1;
    transform: none;
  }
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .site-header,
html[dir="rtl"] .header-actions,
html[dir="rtl"] .nav-links,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .eyebrow-row,
html[dir="rtl"] .meta-line {
  direction: rtl;
}

html[dir="rtl"] .brand img,
html[dir="rtl"] .site-footer img {
  margin-left: auto;
}

html[dir="rtl"] .hero-bullets li {
  grid-template-columns: minmax(0, 1fr) 18px;
}

html[dir="rtl"] .hero-bullets li::before {
  grid-column: 2;
}

html[dir="rtl"] .eyebrow-row span:first-child::before {
  margin-right: 0;
  margin-left: 8px;
}

html[dir="rtl"] .link-button {
  justify-self: end;
}

html[dir="rtl"] .quick-quote div:first-child,
html[dir="rtl"] .review-head,
html[dir="rtl"] .summary-head,
html[dir="rtl"] .summary-foot,
html[dir="rtl"] .summary-line {
  direction: rtl;
}

html[dir="rtl"] input,
html[dir="rtl"] select,
html[dir="rtl"] textarea {
  text-align: right;
}

html[dir="rtl"] input[type="tel"],
html[dir="rtl"] input[name="phone"],
html[dir="rtl"] input[type="date"],
html[dir="rtl"] input[type="number"] {
  direction: ltr;
  text-align: left;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

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

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-visual {
    min-height: 560px;
  }

  .team-art {
    width: min(760px, 92%);
  }

  .quick-quote {
    left: auto;
    right: 0;
  }

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

  .quote-section,
  .split-section {
    grid-template-columns: 1fr;
  }

  .quote-copy,
  .quote-summary {
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 64px;
  }

  .brand {
    width: 142px;
  }

  .brand img {
    width: 140px;
  }

  .phone-link,
  .header-actions .btn {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(33px, 8.5vw, 42px);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .team-art,
  .quick-quote {
    position: static;
    width: 100%;
  }

  .team-art {
    max-height: 520px;
    object-position: center bottom;
  }

  .quick-quote {
    order: -1;
  }

  .trust-strip,
  .service-grid,
  .case-grid,
  .review-list,
  .process-grid,
  .quote-tool,
  .form-grid,
  .service-options,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .span-2 {
    grid-column: auto;
  }

  .section,
  .quote-section,
  .process-section,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 460px) {
  .header-actions {
    gap: 8px;
  }

  .language-switcher {
    min-height: 34px;
  }

  .language-switcher a {
    min-width: 30px;
    padding: 0 6px;
  }

  .lang-pill {
    font-size: 12px;
    min-height: 30px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .summary-head {
    display: grid;
  }

  .summary-head strong {
    font-size: 30px;
  }

  .service-card h3,
  .case-card h3 {
    font-size: 20px;
  }
}
