:root {
  --bg: #0d0d0c;
  --bg-soft: #171512;
  --surface: rgba(255, 255, 255, 0.065);
  --surface-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.13);
  --text: #fbf4e8;
  --muted: #c8bca9;
  --accent: #ffb21c;
  --accent-soft: #ffd47a;
  --accent-dark: #d78500;
  --black: #0d0d0c;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  --container: 1180px;

  --body-bg-1: #18110a;
  --body-bg-2: #0d0d0c;
  --body-bg-3: #090908;
  --body-glow-1: rgba(255, 178, 28, 0.22);
  --body-glow-2: rgba(255, 212, 122, 0.14);
  --grid-line: rgba(255, 255, 255, 0.05);
  --navbar-bg: rgba(13, 13, 12, 0.72);
  --surface-tint: var(--surface-tint);
  --surface-dot: var(--ghost-surface);
  --proof-bg: rgba(0, 0, 0, 0.34);
  --panel-bg: rgba(0, 0, 0, 0.48);
  --card-inner-bg: #12110f;
  --ghost-surface: var(--ghost-surface);
  --trust-bg: var(--trust-bg);
  --cta-bg: var(--cta-bg);
  --cta-border: var(--cta-border);
  --menu-bg: var(--menu-bg);
  --white-soft: var(--white-soft);
  --highlight-bg: var(--highlight-bg);
  --quote-card-border: var(--quote-card-border);
  --quote-head-border: var(--white-soft);
  --focus-border: var(--focus-border);
}

html[data-theme="light"] {
  --bg: #f7f1e4;
  --bg-soft: #ece4d0;
  --surface: rgba(0, 0, 0, 0.035);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --line: rgba(23, 18, 9, 0.12);
  --text: #1a1309;
  --muted: #675944;
  --accent: #d78500;
  --accent-soft: #ffb21c;
  --accent-dark: #a86000;
  --black: #fbf4e8;
  --shadow: 0 18px 48px rgba(120, 95, 45, 0.14);

  --body-bg-1: #fff8e9;
  --body-bg-2: #f5ebd3;
  --body-bg-3: #ebe0c3;
  --body-glow-1: rgba(255, 178, 28, 0.28);
  --body-glow-2: rgba(215, 133, 0, 0.14);
  --grid-line: rgba(23, 18, 9, 0.06);
  --navbar-bg: rgba(255, 248, 233, 0.88);
  --surface-tint: rgba(255, 255, 255, 0.55);
  --surface-dot: rgba(0, 0, 0, 0.03);
  --proof-bg: rgba(255, 255, 255, 0.7);
  --panel-bg: rgba(255, 255, 255, 0.78);
  --card-inner-bg: #fdf7e9;
  --ghost-surface: rgba(0, 0, 0, 0.035);
  --trust-bg: rgba(255, 255, 255, 0.7);
  --cta-bg: rgba(215, 133, 0, 0.12);
  --cta-border: rgba(215, 133, 0, 0.35);
  --menu-bg: rgba(255, 255, 255, 0.7);
  --white-soft: rgba(23, 18, 9, 0.07);
  --highlight-bg: rgba(255, 178, 28, 0.18);
  --quote-card-border: rgba(215, 133, 0, 0.25);
  --quote-head-border: rgba(23, 18, 9, 0.08);
  --focus-border: rgba(215, 133, 0, 0.7);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, var(--body-glow-1), transparent 28%),
    radial-gradient(circle at 88% 12%, var(--body-glow-2), transparent 23%),
    linear-gradient(180deg, var(--body-bg-1) 0%, var(--body-bg-2) 36%, var(--body-bg-3) 100%);
  transition: background 0.3s ease, color 0.3s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

a {
  color: inherit;
}

button {
  cursor: pointer;
}

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

.hero,
.section {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.hero {
  padding: 24px 0 54px;
}

.navbar {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--navbar-bg);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 15px;
  color: #15120e;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  box-shadow: 0 14px 40px rgba(255, 178, 28, 0.3);
}

.brand-logo {
  display: block;
  height: 42px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(255, 178, 28, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand:hover .brand-logo {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(255, 178, 28, 0.36);
}

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

.brand-tagline small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .brand-tagline {
    display: none;
  }
  .brand-logo {
    height: 36px;
  }
}

.brand span:last-child {
  display: grid;
}

.brand strong,
h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
}

.brand small,
.nav-links a,
p,
li {
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 12px 16px;
  border: 1px solid var(--cta-border);
  border-radius: 999px;
  color: var(--text) !important;
  background: var(--cta-bg);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--text);
  background: var(--menu-bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 24px;
  align-items: stretch;
  padding-top: 70px;
}

.hero-copy,
.hero-panel,
.intro-section,
.service-card,
.step,
.showcase-card,
.contact-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface-strong), var(--surface-tint));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-copy {
  border-radius: 38px;
  padding: clamp(28px, 5vw, 52px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.hero-text {
  max-width: 62ch;
  margin: 26px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 26px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  color: var(--black);
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  box-shadow: 0 18px 42px rgba(255, 178, 28, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(255, 178, 28, 0.28);
}

.button-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: var(--ghost-surface);
  box-shadow: none;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--trust-bg);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 580px;
  border-radius: 38px;
  padding: 18px;
}

.panel-card {
  position: relative;
  z-index: 1;
}

.hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 32px;
  border: 1px solid var(--white-soft);
  filter: saturate(0.92) contrast(1.04);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.panel-card {
  padding: 28px;
  border: 1px solid var(--white-soft);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 178, 28, 0.09), transparent 42%),
    rgba(0, 0, 0, 0.48);
}

.panel-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--accent-soft);
  font-weight: 800;
  background: var(--highlight-bg);
}

.panel-card h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.05;
}

.panel-card p {
  line-height: 1.75;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.proof-card {
  padding: 22px;
  border: 1px solid var(--white-soft);
  border-radius: 24px;
  background:
    linear-gradient(135deg, var(--highlight-bg), transparent 50%),
    rgba(0, 0, 0, 0.34);
}

.proof-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-soft);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 0.95;
}

.proof-card span {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: 42px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.showcase-copy h2,
.reviews-header h2,
.contact-card h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-heading p,
.showcase-copy p,
.reviews-header p,
.contact-card p {
  max-width: 66ch;
  line-height: 1.78;
}

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

.service-card,
.step {
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  object-position: center;
  margin-bottom: 18px;
  border-radius: 24px;
  border: 1px solid var(--white-soft);
  filter: saturate(0.9) contrast(1.03);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.service-card:hover,
.step:hover,
.showcase-card:hover {
  transform: translateY(-4px);
  border-color: var(--cta-border);
}

.service-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 18px;
  color: var(--black);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
}

.service-card h3,
.step h3,
.showcase-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.service-card p,
.step p {
  line-height: 1.72;
}

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

.step span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent-soft);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.showcase-card {
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: contain;
  object-position: center;
  margin-bottom: 22px;
  border-radius: 24px;
  border: 1px solid var(--white-soft);
  background: var(--card-inner-bg);
  filter: saturate(0.96) contrast(1.02);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.showcase-card ul {
  margin: 20px 0 0;
  padding-left: 18px;
}

.showcase-card li + li {
  margin-top: 12px;
}

.reviews-section {
  padding-top: 18px;
}

.reviews-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.trustpilot-card,
.review-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface-strong), var(--surface-tint));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.trustpilot-card {
  border-radius: 28px;
  padding: 24px;
}

.trustpilot-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: #00b67a;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.google-card {
  text-decoration: none;
  display: grid;
  gap: 4px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.google-card:hover {
  transform: translateY(-3px);
  border-color: var(--cta-border);
}

.google-logo {
  align-items: center;
  gap: 8px;
  color: #4285F4;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.google-logo svg {
  flex: 0 0 auto;
}

.google-cta {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--accent-soft);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

html[data-theme="light"] .google-cta {
  color: var(--accent-dark);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.stars span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 7px;
  color: white;
  background: #00b67a;
  font-size: 1rem;
}

.trustpilot-card strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
}

.trustpilot-card small {
  color: var(--muted);
}

.reviews-marquee {
  position: relative;
  display: flex;
  gap: 18px;
  width: 100%;
  overflow: hidden;
  padding: 4px 0 10px;
  mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

.reviews-track {
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
  min-width: max-content;
  animation: reviews-scroll-right 95s linear infinite;
  will-change: transform;
}

.review-card {
  width: min(520px, 82vw);
  flex: 0 0 auto;
  border-radius: var(--radius);
  padding: 26px;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.avatar {
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  border-radius: 20px;
  object-fit: cover;
  object-position: center 34%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.avatar.avatar-initials {
  display: grid;
  place-items: center;
  color: #15110b;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
}

html[data-theme="light"] .avatar.avatar-initials {
  color: #fbf4e8;
  border-color: rgba(215, 133, 0, 0.35);
  box-shadow: 0 10px 24px rgba(215, 133, 0, 0.28);
}

.review-top h3 {
  margin: 0 0 3px;
}

.review-top p,
.review-card p {
  margin: 0;
}

.review-stars {
  margin-bottom: 14px;
  color: var(--accent-soft);
  letter-spacing: 0.08em;
}

@keyframes reviews-scroll-right {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(620px, 1fr);
  gap: 34px;
  align-items: start;
  border-radius: 36px;
  padding: clamp(26px, 5vw, 42px);
}

.contact-highlights {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-highlights div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--white-soft);
  border-radius: 20px;
  background: var(--trust-bg);
}

.contact-highlights strong {
  color: var(--accent-soft);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
}

.contact-highlights span {
  color: var(--muted);
  font-weight: 800;
}

.quote-form-card {
  overflow: hidden;
  border: 1px solid var(--quote-card-border);
  border-radius: 28px;
  background:
    linear-gradient(135deg, var(--cta-bg), transparent 44%),
    var(--ghost-surface);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
}

.quote-form-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--white-soft);
}

.quote-form-head span {
  display: block;
  color: var(--accent-soft);
  font-weight: 900;
}

.quote-form-head small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.quote-form-head a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--black);
  font-weight: 900;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
}

.quote-form-card iframe {
  display: block;
  width: 100%;
  height: 760px;
  border: 0;
  background: #f7f3ea;
}

.quote-fallback {
  margin: 0;
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--text);
  background: var(--ghost-surface);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--focus-border);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.86rem;
}

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

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

@media (max-width: 1050px) {
  .hero-grid,
  .showcase,
  .reviews-header,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    min-height: 460px;
  }
}

@media (max-width: 760px) {
  .navbar {
    align-items: flex-start;
    border-radius: 26px;
    flex-wrap: wrap;
  }

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

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--ghost-surface);
  }

  .hero-grid {
    padding-top: 36px;
  }

  h1 {
    max-width: none;
    font-size: 3.05rem;
  }

  .hero-copy,
  .hero-panel,
  .contact-card,
  .quote-form-card {
    border-radius: 28px;
  }

  .quote-form-head {
    align-items: stretch;
    flex-direction: column;
  }

  .quote-form-card iframe {
    height: 700px;
  }

  .services-grid,
  .steps,
  .hero-proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero,
  .section {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero {
    padding-top: 12px;
  }

  .hero-copy,
  .service-card,
  .step,
  .showcase-card {
    padding: 22px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

/* Theme toggle button */
.theme-toggle {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: var(--ghost-surface);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.theme-toggle:hover {
  border-color: var(--cta-border);
  background: var(--cta-bg);
  color: var(--accent-soft);
  transform: rotate(18deg) scale(1.05);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  display: block;
}

.theme-toggle .icon-moon { display: none; }
.theme-toggle .icon-sun { display: block; }
html[data-theme="light"] .theme-toggle .icon-moon { display: block; }
html[data-theme="light"] .theme-toggle .icon-sun { display: none; }

/* Light theme fine-tuning */
html[data-theme="light"] body {
  background:
    radial-gradient(circle at 12% 8%, var(--body-glow-1), transparent 32%),
    radial-gradient(circle at 88% 12%, var(--body-glow-2), transparent 28%),
    linear-gradient(180deg, var(--body-bg-1) 0%, var(--body-bg-2) 48%, var(--body-bg-3) 100%);
}

html[data-theme="light"] .service-card img,
html[data-theme="light"] .hero-image {
  filter: saturate(1) contrast(1);
  border: 1px solid var(--line);
}

html[data-theme="light"] .showcase-card img {
  filter: none;
}

html[data-theme="light"] .navbar {
  box-shadow: 0 12px 40px rgba(120, 95, 45, 0.12);
}

html[data-theme="light"] .hero-copy,
html[data-theme="light"] .hero-panel,
html[data-theme="light"] .service-card,
html[data-theme="light"] .step,
html[data-theme="light"] .showcase-card,
html[data-theme="light"] .contact-card,
html[data-theme="light"] .trustpilot-card,
html[data-theme="light"] .review-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.55));
  box-shadow: 0 18px 48px rgba(120, 95, 45, 0.14);
}

html[data-theme="light"] .proof-card,
html[data-theme="light"] .panel-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
}

html[data-theme="light"] .panel-card {
  background:
    linear-gradient(135deg, rgba(255, 178, 28, 0.16), transparent 52%),
    rgba(255, 255, 255, 0.85);
}

html[data-theme="light"] .brand-mark {
  color: #fbf4e8;
  box-shadow: 0 10px 28px rgba(215, 133, 0, 0.35);
}

html[data-theme="light"] .service-icon {
  color: #fbf4e8;
}

html[data-theme="light"] .button {
  color: #fbf4e8;
  box-shadow: 0 14px 30px rgba(215, 133, 0, 0.35);
}

html[data-theme="light"] .button:hover {
  box-shadow: 0 20px 42px rgba(215, 133, 0, 0.42);
}

html[data-theme="light"] .button-ghost {
  color: var(--text);
  box-shadow: none;
}

html[data-theme="light"] .nav-cta {
  color: var(--accent-dark) !important;
}

html[data-theme="light"] .nav-links a:hover {
  color: var(--accent-dark);
}

html[data-theme="light"] .panel-kicker,
html[data-theme="light"] .proof-card strong,
html[data-theme="light"] .eyebrow,
html[data-theme="light"] .quote-form-head span,
html[data-theme="light"] .contact-highlights strong,
html[data-theme="light"] .review-stars {
  color: var(--accent-dark);
}

html[data-theme="light"] .reviews-marquee {
  mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
}

html[data-theme="light"] .quote-form-head a {
  color: #fbf4e8;
}

@media (max-width: 760px) {
  .theme-toggle {
    margin-left: auto;
  }
}

