:root {
  --bg: #f4eee4;
  --bg-soft: #f8f4ec;
  --surface: #fffaf4;
  --surface-2: #efe6d9;
  --ink: #171412;
  --ink-soft: #5d564d;
  --muted: #7d7467;
  --line: rgba(23, 20, 18, 0.1);
  --dark: #111111;
  --dark-2: #1b1816;
  --accent: #c4772e;
  --accent-2: #d99b58;
  --accent-3: #8c5f2d;
  --success: #1bb66b;
  --white: #ffffff;
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-pill: 6px;
  --container: 1180px;
  --ease: 240ms ease;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(196, 119, 46, 0.1), transparent 35%),
    radial-gradient(circle at top right, rgba(24, 23, 19, 0.06), transparent 30%),
    linear-gradient(180deg, var(--bg) 0%, #f8f3ea 100%);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

img {
  height: auto;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
}

p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-pill);
  transition: top var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  position: relative;
  z-index: 20;
}

.topbar-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar a {
  color: var(--accent-2);
  font-weight: 700;
  white-space: nowrap;
}

.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #f3ecdf;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(23, 20, 18, 0.08);
  transition: box-shadow var(--ease), transform var(--ease), background var(--ease);
}

.header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

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

.brand-logo {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: none;
  display: block;
  opacity: 1;
  visibility: visible;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand small {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: auto;
}

.nav a {
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.86rem;
  transition: color var(--ease);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 800;
  transition: color var(--ease), transform var(--ease);
}

.text-link:hover {
  color: var(--accent-3);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff7ed;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform var(--ease), opacity var(--ease);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  border-radius: 6px;
  padding: 0.8rem 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--white);
  box-shadow: none;
}

.btn-primary:hover {
  box-shadow: none;
}

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

.btn-outline,
.btn-outline-dark,
.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(23, 20, 18, 0.16);
  color: var(--ink);
}

.btn-outline:hover,
.btn-outline-dark:hover,
.btn-outline-light:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

.hero {
  position: relative;
  min-height: calc(100svh - 84px);
  padding: 4rem 0 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05) brightness(0.72);
}

.hero-overlay {
  background:
    linear-gradient(115deg, rgba(8, 8, 8, 0.92) 0%, rgba(11, 11, 11, 0.68) 42%, rgba(11, 11, 11, 0.28) 100%),
    radial-gradient(circle at top right, rgba(196, 119, 46, 0.24), transparent 35%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 5.2vw, 5.3rem);
  max-width: 11ch;
  color: var(--white);
}

.hero-lead {
  max-width: 62ch;
  margin-top: 1.4rem;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.82);
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.hero-badges span,
.tag-cloud span,
.filter-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero-badges span {
  padding: 0.55rem 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-points i {
  color: var(--accent-2);
  margin-top: 0.2rem;
}

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

.stat-card {
  padding: 1rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: none;
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
}

.stat-card span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.hero-panel {
  background: rgba(255, 250, 244, 0.98);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 1.25rem;
  box-shadow: none;
}

.form-heading h2,
.form-heading h3 {
  font-size: clamp(1.65rem, 2.5vw, 2.05rem);
}

.form-heading p:last-child {
  margin-top: 0.45rem;
}

.lead-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-grid label {
  display: grid;
  gap: 0.45rem;
}

.form-grid .full-span {
  grid-column: 1 / -1;
}

.form-grid span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--ink-soft);
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.calculator-card input,
.calculator-card select {
  width: 100%;
  border: 1px solid rgba(23, 20, 18, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.lead-form textarea,
.calculator-card textarea {
  resize: vertical;
  min-height: 120px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.calculator-card input:focus,
.calculator-card select:focus {
  border-color: rgba(196, 119, 46, 0.55);
  box-shadow: 0 0 0 4px rgba(196, 119, 46, 0.12);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.form-note {
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.trust-strip {
  padding: 1.2rem 0 0;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(23, 20, 18, 0.08);
  border-radius: 6px;
  box-shadow: none;
  backdrop-filter: none;
}

.trust-strip-inner strong {
  display: block;
  font-size: 0.93rem;
  margin-bottom: 0.2rem;
}

.trust-strip-inner p {
  font-size: 0.9rem;
}

.section {
  padding: 6rem 0;
}

.section-surface {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.92) 0%, rgba(240, 231, 218, 0.78) 100%);
}

.section-dark {
  background: linear-gradient(135deg, #111111 0%, #1a1816 100%);
  color: var(--white);
}

.section-dark p,
.section-dark li,
.section-dark .faq-question,
.section-dark .contact-card span,
.section-dark .contact-card a {
  color: rgba(255, 255, 255, 0.82);
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark .section-heading p,
.section-dark .section-heading h2 {
  color: var(--white);
}

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

.section-heading h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

.section-heading p {
  margin-top: 1rem;
}

.section-heading-light .eyebrow,
.section-heading-light p {
  color: rgba(255, 255, 255, 0.74);
}

.video-grid,
.service-grid,
.authority-grid,
.pricing-grid,
.insight-grid {
  display: grid;
  gap: 1rem;
}

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

.video-card,
.service-card,
.authority-card,
.pricing-card,
.insight-card,
.calculator-card,
.contact-card,
.testimonial-card,
.authority-panel,
.map-card,
.support-box {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 20, 18, 0.08);
  box-shadow: none;
}

.video-card {
  padding: 0;
  overflow: hidden;
  position: relative;
  text-align: left;
  background: #140f0b;
  border: 0;
  min-height: 360px;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  filter: saturate(0.95) contrast(1.04);
  transition: transform var(--ease), opacity var(--ease);
}

.video-card:hover img {
  transform: scale(1.03);
}

.play-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent);
  box-shadow: none;
}

.video-meta {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.15rem;
  padding: 1rem;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.06), rgba(15, 15, 15, 0.82));
  color: var(--white);
}

.video-meta small {
  color: rgba(255, 255, 255, 0.75);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.filter-chip {
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(23, 20, 18, 0.1);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink-soft);
  transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: rgba(196, 119, 46, 0.3);
  background: rgba(196, 119, 46, 0.12);
  color: var(--accent-3);
}

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

.compare-card {
  overflow: hidden;
}

.compare-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  --split: 50%;
  background: #17120f;
}

.compare-layer {
  position: absolute;
  inset: 0;
}

.compare-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-after {
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18);
  transform: translateX(-1px);
}

.compare-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: rgba(17, 17, 17, 0.75);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.compare-frame input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: ew-resize;
  opacity: 0;
}

.compare-label {
  position: absolute;
  top: 1rem;
  z-index: 1;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(17, 17, 17, 0.45);
  backdrop-filter: blur(10px);
}

.compare-label-left {
  left: 1rem;
}

.compare-label-right {
  right: 1rem;
}

.compare-content {
  padding: 1rem;
  display: grid;
  gap: 1rem;
}

.card-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 900;
  color: var(--accent);
}

.compare-content h3 {
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
  margin-top: 0.35rem;
  line-height: 1.05;
}

.compare-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.service-card {
  padding: 1.5rem;
}

.service-card i {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(196, 119, 46, 0.12);
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.service-card h3 {
  font-size: 1.18rem;
  line-height: 1.1;
  margin-bottom: 0.7rem;
}

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

.authority-card {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.authority-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1.05;
  margin-bottom: 0.65rem;
}

.authority-card p {
  color: rgba(255, 255, 255, 0.78);
}

.authority-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.authority-panel {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.feature-list {
  display: grid;
  gap: 0.85rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-list i {
  color: var(--accent-2);
  margin-top: 0.2rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.tag-cloud span {
  padding: 0.68rem 0.95rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.4rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 20, 18, 0.08);
}

.timeline-step {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.timeline-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

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

.pricing-card {
  padding: 1.4rem;
}

.pricing-card h3 {
  font-size: 1.2rem;
  line-height: 1.05;
  margin: 0.4rem 0 0.8rem;
}

.pricing-card strong {
  display: block;
  font-size: 1rem;
  color: var(--accent-3);
  margin-bottom: 0.75rem;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.calculator-card {
  padding: 1.5rem;
}

.estimate-box {
  border-radius: 22px;
  padding: 1.1rem;
  background: linear-gradient(135deg, rgba(196, 119, 46, 0.12), rgba(196, 119, 46, 0.04));
  border: 1px solid rgba(196, 119, 46, 0.18);
  display: grid;
  gap: 0.4rem;
}

.estimate-box strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ink);
}

.pricing-side {
  padding: 1.5rem;
}

.testimonial-shell {
  position: relative;
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(82%, 82%);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.25rem 0.15rem;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

@media (min-width: 701px) {
  .testimonial-track {
    grid-auto-columns: calc(50% - 0.5rem);
  }
}

@media (min-width: 1180px) {
  .testimonial-track {
    grid-auto-columns: calc(33.333% - 0.67rem);
  }
}

.testimonial-card {
  scroll-snap-align: start;
  padding: 1.5rem;
  min-height: 270px;
}

.testimonial-card p {
  font-size: 1.05rem;
  margin: 1rem 0;
  color: var(--ink);
}

.testimonial-card strong {
  display: block;
  color: var(--ink-soft);
}

.stars {
  color: #d89225;
  display: flex;
  gap: 0.2rem;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(23, 20, 18, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.carousel-prev {
  left: -0.2rem;
}

.carousel-next {
  right: -0.2rem;
}

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

.insight-card {
  overflow: hidden;
}

.insight-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.insight-card div {
  padding: 1.2rem;
}

.insight-card h3 {
  font-size: 1.2rem;
  line-height: 1.08;
  margin: 0.35rem 0 0.7rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(23, 20, 18, 0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-weight: 800;
  text-align: left;
}

.faq-question i {
  transition: transform var(--ease);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--ease);
}

.faq-answer p {
  padding: 0 1.25rem 1.2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: start;
}

.contact-panel {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0.85rem;
}

.contact-card {
  padding: 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.contact-card i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(196, 119, 46, 0.15);
  color: var(--accent-2);
  flex: 0 0 auto;
}

.contact-card strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--white);
}

.contact-card a {
  word-break: break-word;
}

.contact-form {
  padding: 1.4rem;
}

.contact-bottom {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  margin-top: 1rem;
}

.map-card {
  overflow: hidden;
  min-height: 320px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.service-areas {
  padding: 1.5rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.support-box {
  margin-top: 1rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.support-box strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.footer {
  padding: 3rem 0 1.5rem;
  background: #0f0f0f;
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.footer-grid h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid a:hover {
  color: var(--accent-2);
}

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

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  position: relative;
  width: min(100%, 760px);
  max-height: min(88vh, 920px);
  overflow: auto;
  border-radius: 6px;
  background: var(--surface);
  padding: 1.25rem;
  box-shadow: none;
  transform: translateY(18px) scale(0.98);
  transition: transform var(--ease);
}

.modal-backdrop.is-open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-quote {
  width: min(100%, 760px);
}

.modal-video {
  width: min(100%, 920px);
}

.modal-video video {
  width: 100%;
  margin-top: 1rem;
  border-radius: 22px;
  background: #000;
}

.modal-lightbox {
  width: min(100%, 1040px);
  text-align: center;
}

.modal-lightbox img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 4px;
  margin-top: 0.75rem;
  background: #000;
}

.lightbox-caption {
  margin-top: 1rem;
}

.modal-close {
  position: sticky;
  top: 0.5rem;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 4px;
  background: rgba(23, 20, 18, 0.06);
  color: var(--ink);
  display: grid;
  place-items: center;
}

.exit-popup {
  position: fixed;
  right: 1rem;
  bottom: 7rem;
  width: min(100% - 2rem, 360px);
  padding: 1.2rem;
  border-radius: 6px;
  background: rgba(17, 17, 17, 0.96);
  color: var(--white);
  box-shadow: none;
  transform: translateY(28px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--ease), opacity var(--ease);
  z-index: 420;
}

.exit-popup.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.exit-popup p,
.exit-popup h2 {
  color: var(--white);
}

.exit-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.sticky-quote {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 380;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  border: 0;
  border-radius: 6px;
  background: var(--dark);
  color: var(--white);
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity var(--ease), transform var(--ease);
}

.sticky-quote.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--success);
  color: var(--white);
  box-shadow: none;
  z-index: 360;
  font-size: 2rem;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 5.3rem;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: none;
  z-index: 350;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--ease), transform var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%) translateY(20px);
  padding: 0.95rem 1.1rem;
  border-radius: 6px;
  background: rgba(17, 17, 17, 0.96);
  color: var(--white);
  box-shadow: none;
  z-index: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1180px) {
  .hero-grid,
  .contact-grid,
  .contact-bottom,
  .calculator-grid,
  .authority-split {
    grid-template-columns: 1fr;
  }

  .video-grid,
  .service-grid,
  .authority-grid,
  .pricing-grid,
  .insight-grid,
  .compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .header-inner {
    min-height: 76px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 9.5rem;
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    background: rgba(255, 250, 244, 0.98);
    border: 1px solid rgba(23, 20, 18, 0.08);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }

  .nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-stats,
  .trust-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 0;
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero {
    min-height: auto;
    padding: 2.75rem 0 4rem;
  }

  .hero-grid {
    gap: 1.2rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .hero-actions,
  .form-actions,
  .popup-actions,
  .support-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats,
  .trust-strip-inner,
  .video-grid,
  .service-grid,
  .authority-grid,
  .pricing-grid,
  .insight-grid,
  .compare-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .testimonial-track {
    grid-auto-columns: 90%;
  }

  .carousel-control {
    display: none;
  }

  .sticky-quote {
    left: 0.85rem;
    right: auto;
  }

  .floating-whatsapp {
    width: 58px;
    height: 58px;
  }

  .back-to-top {
    bottom: 4.9rem;
  }

  .exit-popup {
    right: 0.85rem;
    bottom: 6.6rem;
  }
}

/* Flat, compact presentation overrides */
.topbar-inner p,
.footer p,
.footer-bottom p,
.lead-form p,
.section-heading p,
.hero-lead,
.hero-points li,
.faq-answer p,
.contact-card span,
.contact-card a {
  font-size: 0.88rem;
}

.topbar-inner p {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
}

.eyebrow {
  font-size: 0.68rem;
}

.hero-badges span,
.tag-cloud span,
.filter-chip,
.btn {
  text-transform: none;
}

.brand small,
.footer-brand small {
  color: var(--ink);
  opacity: 0.9;
  font-size: 0.8rem;
  font-weight: 800;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.92);
}

.footer p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 30ch;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.86);
}

.lead-form .eyebrow,
.form-heading p,
.support-box p,
.authority-card p,
.pricing-card p,
.service-card p,
.insight-card p {
  font-size: 0.9rem;
}

.hero-panel,
.trust-strip-inner,
.video-card,
.service-card,
.authority-card,
.pricing-card,
.insight-card,
.calculator-card,
.contact-card,
.testimonial-card,
.authority-panel,
.map-card,
.support-box,
.timeline-item,
.faq-item {
  box-shadow: none;
}

.hero-panel,
.trust-strip-inner,
.card-kicker,
.compare-content,
.section-surface,
.section-dark,
.contact-panel,
.contact-form,
.service-areas,
.lead-form {
  background-clip: padding-box;
}

.header,
.nav,
.nav-toggle,
.btn-outline,
.btn-outline-dark,
.btn-outline-light,
.filter-chip,
.lead-form input,
.lead-form select,
.lead-form textarea,
.calculator-card input,
.calculator-card select,
.video-card,
.service-card,
.authority-card,
.pricing-card,
.insight-card,
.calculator-card,
.contact-card,
.testimonial-card,
.authority-panel,
.map-card,
.support-box,
.timeline-item,
.faq-item,
.modal-card,
.exit-popup,
.sticky-quote,
.floating-whatsapp,
.back-to-top,
.toast {
  border-radius: 4px;
}

.header,
.hero-panel,
.trust-strip-inner,
.video-card,
.service-card,
.authority-card,
.pricing-card,
.insight-card,
.calculator-card,
.contact-card,
.testimonial-card,
.authority-panel,
.map-card,
.support-box,
.timeline-item,
.faq-item,
.modal-card,
.exit-popup {
  border-color: rgba(23, 20, 18, 0.12);
}

.header,
.hero-panel,
.trust-strip-inner,
.video-card,
.service-card,
.authority-card,
.pricing-card,
.insight-card,
.calculator-card,
.contact-card,
.testimonial-card,
.authority-panel,
.map-card,
.support-box,
.timeline-item,
.faq-item,
.modal-card,
.exit-popup,
.sticky-quote,
.back-to-top,
.toast {
  backdrop-filter: none !important;
}

.btn-primary,
.btn-secondary,
.floating-whatsapp {
  box-shadow: none !important;
}

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

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