/* Fahrzeugaufbereitung Bad Kissingen – Styles */

:root {
  --bg-deep: #0a0c10;
  --bg-card: #12151c;
  --bg-elevated: #181c26;
  --text: #e8eaef;
  --text-muted: #9aa3b2;
  --accent: #8ecae8;
  --accent-hover: #bfe1ee;
  --accent-strong: #49b8e7;
  --accent-deep: #009fe3;
  --accent-soft: rgba(142, 202, 232, 0.15);
  --accent-glow: rgba(73, 184, 231, 0.35);
  --accent-border: rgba(142, 202, 232, 0.35);
  --accent-on: #061018;
  --accent-gradient: linear-gradient(135deg, #bfe1ee 0%, #49b8e7 100%);
  --accent-gradient-hover: linear-gradient(135deg, #d4eef7 0%, #7ccddd 100%);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: var(--font-sans);
  --header-h: 80px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-hover);
}

.container {
  width: min(1120px, 100% - clamp(1.25rem, 4vw, 2.5rem));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo:hover {
  opacity: 0.92;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.header-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.header-contact-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.header-contact-icon {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
  color: var(--accent);
}

.logo-img {
  display: block;
  height: clamp(60px, 7.5vw, 73px);
  width: auto;
  max-width: min(325px, 47.5vw);
  object-fit: contain;
  object-position: left center;
}

.nav-contact {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-left: 0;
  min-width: 0;
  flex-shrink: 0;
}

.nav-list {
  display: flex;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  white-space: nowrap;
}

.nav-list a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 120;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent-gradient);
  color: var(--accent-on);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-gradient-hover);
  color: var(--accent-on);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent-border);
  background: var(--accent-soft);
  color: var(--accent-hover);
}

.btn-nav {
  padding-inline: 1.25rem;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-block {
  width: 100%;
}

/* Hero */

.hero {
  position: relative;
  min-height: min(78vh, 760px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 5vw, 1.5rem) clamp(3.5rem, 8vw, 6rem);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--bg-deep);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-color: var(--bg-deep);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: opacity;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 12, 16, 0.92) 0%,
    rgba(10, 12, 16, 0.78) 42%,
    rgba(10, 12, 16, 0.95) 100%
  );
}

.hero-bg::after {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 52rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.hero-title {
  margin: 0 0 1.25rem;
  width: 100%;
  max-width: 100%;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.85rem, 5.5vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.hero-title-line {
  display: block;
  width: 100%;
  text-align: center;
}

.hero-lead {
  margin: 0 0 2rem;
  width: 100%;
  max-width: 36rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  box-sizing: border-box;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Showcase strip */

.showcase-strip {
  padding-block: 0 2.5rem;
  margin-top: -0.5rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.showcase-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  background: var(--bg-card);
}

.showcase-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Trust */

.trust {
  padding-block: 3rem 2rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.trust-icon {
  display: block;
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.trust-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.trust-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Sections */

.section {
  padding-block: 5rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(24, 28, 38, 0.5) 0%, rgba(10, 12, 16, 0) 100%);
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section-head-left {
  text-align: left;
  margin-inline: 0;
  margin-bottom: 1.5rem;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-intro {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.services-grid-packages {
  grid-template-columns: repeat(3, 1fr);
}

.services-footnote {
  margin: 2rem 0 0;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.services-footnote strong {
  color: var(--text);
}

.service-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-2px);
}

.service-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.service-card > p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.service-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text);
  font-size: 0.92rem;
}

.service-list li {
  margin-bottom: 0.35rem;
}

.service-points {
  margin-top: 1.25rem;
  border-top: 1px solid var(--border);
  padding-top: 0.25rem;
}

.service-points summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.service-points summary::-webkit-details-marker {
  display: none;
}

.service-points summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s;
}

.service-points[open] summary::after {
  content: "−";
}

.points-compare {
  margin: 0 0 0.5rem;
  padding: 0;
  list-style: none;
}

.points-compare li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.45rem 0;
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}

.points-compare li::before {
  flex-shrink: 0;
  width: 1.1rem;
  font-weight: 700;
  text-align: center;
}

.point-included::before {
  content: "✓";
  color: #6ecf8a;
}

.point-excluded::before {
  content: "✕";
  color: #c97a7a;
}

.point-excluded {
  color: var(--text-muted);
}

/* Leistungen – Vergleichskarten */

.compare-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.compare-card-collapsible {
  overflow: hidden;
}

.compare-card-collapsible > summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem 1rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  background: linear-gradient(180deg, rgba(24, 28, 38, 0.55) 0%, rgba(18, 21, 28, 0) 100%);
  transition: background 0.2s;
}

.compare-card-collapsible > summary::-webkit-details-marker {
  display: none;
}

.compare-card-collapsible > summary:hover {
  background: rgba(255, 255, 255, 0.03);
}

.compare-card-collapsible[open] > summary {
  border-bottom: 1px solid var(--border);
}

.compare-card-summary-text h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.compare-card-summary-text .compare-card-intro {
  margin: 0;
  max-width: none;
}

.compare-card-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

  .compare-card-collapsible[open] .compare-card-chevron::before {
    content: "−";
  }

  .compare-card-collapsible:not([open]) .compare-card-chevron::before {
    content: "+";
  }

  .compare-card-body {
    animation: compare-open 0.2s ease;
  }

  @media (prefers-reduced-motion: reduce) {
    .compare-card-body {
      animation: none;
    }
  }

.compare-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  padding: 1.25rem 1.5rem 0;
}

.compare-gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  min-height: 130px;
}

.compare-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 130px;
}

.compare-gallery-item-featured {
  grid-column: 1 / -1;
  min-height: 220px;
}

.compare-gallery-item-featured img {
  min-height: 220px;
}

@keyframes compare-open {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.compare-card-head {
  padding: 2rem 2rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(24, 28, 38, 0.55) 0%, rgba(18, 21, 28, 0) 100%);
}

.compare-card-head h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 800;
}

.compare-card-intro {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 52rem;
}

.compare-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.compare-col {
  padding: 1.75rem 2rem 2rem;
}

.compare-col-standard {
  border-right: 1px solid var(--border);
}

.compare-col-label {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.compare-col-label-premium {
  color: var(--accent-on);
  background: var(--accent-gradient);
  border-color: transparent;
}

.compare-subtitle {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.compare-subtitle + .compare-features {
  margin-bottom: 1.35rem;
}

.compare-premium-note {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.compare-features {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-features li {
  position: relative;
  padding: 0.42rem 0 0.42rem 1.35rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.compare-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.42rem;
  color: #6ecf8a;
  font-weight: 700;
}

.compare-col-premium {
  background: rgba(142, 202, 232, 0.04);
}

.compare-pricing {
  padding: 0 1.5rem 1.5rem;
}

.compare-pricing-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.price-table-scroll-hint {
  display: none;
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.compare-pricing .price-table-wrap {
  border-radius: var(--radius-sm);
}

/* Preistabellen */

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.price-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.price-table th,
.price-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.price-table th {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-elevated);
}

.price-table th:not(:first-child),
.price-table td:not(:first-child) {
  text-align: center;
  white-space: nowrap;
  width: 7rem;
}

.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.price-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.price-table td:first-child {
  color: var(--text-muted);
  line-height: 1.45;
}

.price-table td:not(:first-child) {
  font-weight: 600;
  color: var(--accent);
}

/* Steps */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  max-width: 720px;
  margin-inline: auto;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
}

.steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.steps p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* About */

.about-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 3vw, 2.75rem);
}

.about-gallery-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
}

.about-gallery-showcase .about-gallery-item {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  background: var(--bg-elevated);
  isolation: isolate;
}

.about-gallery-showcase .about-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

.about-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.about-gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}

.about-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-gallery-item:last-child:nth-child(3) {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.about-text p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.about-text strong {
  color: var(--text);
}

.about-quote {
  margin: 1.75rem 0 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
}

.about-panel {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.about-panel-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.about-panel-address {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

.about-panel-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Contact */

.section-cta {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(73, 184, 231, 0.12), transparent 55%),
    var(--bg-deep);
  border-top: 1px solid var(--border);
}

.section-head-light .section-intro {
  color: rgba(232, 234, 239, 0.75);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.contact-social .header-contact-link {
  font-size: 0.92rem;
  padding: 0.55rem 0.9rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.contact-social .header-contact-link:hover {
  color: var(--text);
  background: rgba(142, 202, 232, 0.12);
  border-color: var(--accent-border);
}

.contact-social .header-contact-icon {
  width: 1.1rem;
  height: 1.1rem;
}

.contact-dl {
  margin: 0;
  display: grid;
  gap: 0.35rem 1rem;
}

.contact-dl dt {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1rem;
}

.contact-dl dt:first-child {
  margin-top: 0;
}

.contact-dl dd {
  margin: 0;
  font-size: 1.05rem;
}

.contact-dl a {
  color: var(--text);
  text-decoration: none;
}

.contact-dl a:hover {
  color: var(--accent);
}

.contact-hint {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea {
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  resize: vertical;
  min-height: 2.75rem;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(142, 202, 232, 0.5);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-optional {
  font-weight: 400;
  opacity: 0.75;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  line-height: 1.45;
}

.form-status--success {
  color: #b8f0c8;
  background: rgba(80, 180, 110, 0.12);
  border: 1px solid rgba(110, 207, 138, 0.35);
}

.form-status--error {
  color: #f0c4c4;
  background: rgba(200, 90, 90, 0.12);
  border: 1px solid rgba(201, 122, 122, 0.35);
}

.form-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-note code {
  font-size: 0.85em;
  color: var(--text);
}

/* Footer */

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  opacity: 0.85;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1rem;
}

.footer-legal a {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-legal a:hover,
.footer-legal a[aria-current="page"] {
  color: var(--accent);
}

/* Legal pages */

.legal-page {
  padding-block: clamp(3rem, 8vw, 4.5rem);
}

.legal-content {
  max-width: 42rem;
}

.legal-content .section-head {
  margin-bottom: 2rem;
}

.legal-content h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
}

.legal-block {
  margin-bottom: 1.75rem;
}

.legal-block h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.legal-block p {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block a {
  color: var(--accent);
}

.legal-back {
  margin: 2.5rem 0 0;
}

/* Responsive */

@media (max-width: 1100px) {
  .header-contact-link span {
    display: none;
  }

  .compare-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .compare-gallery-item-featured {
    grid-column: 1 / -1;
    min-height: 180px;
  }
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .services-grid-packages {
    grid-template-columns: 1fr;
  }

  .compare-columns {
    grid-template-columns: 1fr;
  }

  .compare-col-standard {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .price-table-scroll-hint {
    display: none;
  }

  .price-table-wrap {
    overflow-x: visible;
  }

  .price-table {
    min-width: 0;
    width: 100%;
  }

  .price-table thead {
    display: none;
  }

  .price-table tbody tr {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .price-table tbody tr:last-child {
    border-bottom: 0;
  }

  .price-table tbody tr:hover td {
    background: transparent;
  }

  .price-table td {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.35rem 0.85rem;
    border-bottom: 0;
    text-align: right;
  }

  .price-table td:first-child {
    display: block;
    padding: 0 0.85rem 0.6rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .price-table td:not(:first-child) {
    white-space: nowrap;
    width: auto;
  }

  .price-table td:nth-child(2)::before,
  .price-table td:nth-child(3)::before {
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: left;
    flex-shrink: 0;
  }

  .price-table td:nth-child(2)::before {
    content: "Standard";
  }

  .price-table td:nth-child(3)::before {
    content: "Premium";
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  :root {
    --header-h: 68px;
  }

  .header-inner {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.75rem;
  }

  .header-contact {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .logo-img {
    height: 53px;
    max-width: min(275px, 72.5vw);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: calc(var(--header-h) + 1.25rem) 1.25rem 2rem;
    background: var(--bg-deep);
    border: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    opacity: 1;
    visibility: hidden;
    transition: transform 0.28s ease, visibility 0.28s;
    pointer-events: none;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .site-header {
    z-index: 120;
  }

  body.nav-open main,
  body.nav-open .site-footer {
    pointer-events: none;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    margin-bottom: 1.25rem;
  }

  .nav-list li {
    border-bottom: 1px solid var(--border);
  }

  .nav-list a {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
    color: var(--text);
  }

  .btn-nav {
    width: 100%;
    margin-top: 0;
    margin-bottom: 1.5rem;
  }

  .nav-contact {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
  }

  .nav-contact a {
    display: block;
    padding: 0.75rem 0;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
  }

  .nav-contact a:hover {
    color: var(--accent);
  }

  .hero {
    min-height: auto;
    padding-block: 2.75rem 3.25rem;
    padding-inline: clamp(1rem, 5vw, 1.25rem);
  }

  .hero-inner {
    width: 100%;
    max-width: 100%;
  }

  .hero-bg {
    background-image: none;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 12, 16, 0.96) 0%,
      rgba(10, 12, 16, 0.9) 45%,
      rgba(10, 12, 16, 0.98) 100%
    );
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(1.45rem, 6.2vw, 2.1rem);
    letter-spacing: -0.01em;
  }

  .hero-lead {
    font-size: 0.98rem;
    margin-bottom: 1.35rem;
    padding-inline: 0;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 18rem;
    box-sizing: border-box;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .compare-card-collapsible > summary {
    padding: 1rem;
    gap: 0.65rem;
  }

  .compare-gallery {
    grid-template-columns: 1fr;
    padding: 0.85rem 1rem 0;
    gap: 0.55rem;
  }

  .compare-gallery-item,
  .compare-gallery-item-featured {
    min-height: 0;
  }

  .compare-gallery-item img,
  .compare-gallery-item-featured img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .compare-col {
    padding: 1.15rem 1rem;
  }

  .compare-pricing {
    padding: 0 1rem 1.15rem;
  }

  .about-gallery-showcase {
    grid-template-columns: 1fr;
  }

  .about-gallery-showcase .about-gallery-item {
    aspect-ratio: 16 / 10;
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }

  .about-gallery-item {
    aspect-ratio: 16 / 10;
  }

  .section {
    padding-block: 2.75rem;
  }

  .section-head {
    margin-bottom: 1.75rem;
  }

  .trust {
    padding-block: 2rem 1.5rem;
  }

  .showcase-strip {
    padding-block: 0 2rem;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .contact-form {
    padding: 1.15rem;
  }

  .steps li {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.15rem;
  }

  .step-num {
    width: 2.25rem;
    height: 2.25rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(1.35rem, 7vw, 1.85rem);
  }
}

@media (max-width: 480px) {
  .header-contact-link {
    padding: 0.4rem;
  }

  .trust-card {
    padding: 1.25rem;
  }

  .compare-card-summary-text h3 {
    font-size: 1.15rem;
  }

  .compare-card-intro {
    font-size: 0.88rem;
  }

  .btn {
    padding-inline: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-slide {
    transition: none;
  }

  .btn,
  .service-card {
    transition: none;
  }
}
