:root {
  --bg: #070a0f;
  --bg-soft: #0b0f17;
  --panel: #0e141f;
  --panel-light: #111827;
  --text: #ffffff;
  --muted: #cbd5e1;
  --muted-dark: #94a3b8;
  --red: #e50914;
  --red-dark: #bd0710;
  --line: rgba(255, 255, 255, 0.09);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body,
input,
select,
textarea,
button {
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(90%, 1200px);
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.section-heading h2 {
  margin-top: 14px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.06;
  letter-spacing: -1.5px;
}

.section-heading p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.section-kicker,
.eyebrow {
  display: inline-block;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 15, 0.88);
  backdrop-filter: blur(15px);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo span {
  color: var(--red);
  font-size: 29px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.logo small {
  margin-top: 5px;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.1px;
}

nav {
  display: flex;
  align-items: center;
  gap: 25px;
  color: #e5e7eb;
  font-size: 14px;
  font-weight: 700;
}

nav a,
.footer a {
  transition: color 0.2s ease;
}

nav a:hover,
.footer a:hover {
  color: var(--red);
}

.nav-btn {
  padding: 13px 20px;
  border-radius: 8px;
  background: var(--red);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(229, 9, 20, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 80px;
  background:
    linear-gradient(
      90deg,
      rgba(4, 7, 12, 0.98) 0%,
      rgba(4, 7, 12, 0.9) 43%,
      rgba(4, 7, 12, 0.38) 100%
    ),
    url("van.jpg") center / cover no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 45%, rgba(229, 9, 20, 0.1), transparent 34%),
    linear-gradient(0deg, rgba(7, 10, 15, 0.45), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 700px;
}

.hero h1 {
  margin: 18px 0 24px;
  font-size: clamp(58px, 7vw, 90px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -3px;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.subtitle {
  max-width: 670px;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.3;
}

.description {
  max-width: 650px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.check-list {
  margin: 28px 0 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 27px;
  color: #f8fafc;
  font-size: 15px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 900;
}

.hero-buttons,
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border: 0;
  border-radius: 9px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.red {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 32px rgba(229, 9, 20, 0.3);
}

.btn.red:hover {
  background: var(--red-dark);
  box-shadow: 0 16px 38px rgba(229, 9, 20, 0.4);
}

.btn.dark {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(17, 24, 39, 0.88);
}

.hero-note {
  margin-top: 16px;
  color: var(--muted-dark);
  font-size: 13px;
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -44px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(14, 20, 31, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.trust-grid article {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 25px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-grid strong {
  color: var(--red);
  font-size: 24px;
  font-weight: 900;
}

.trust-grid span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.services {
  padding-top: 130px;
  background: var(--bg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 390px;
  padding: 34px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    var(--panel);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(229, 9, 20, 0.65);
  box-shadow: var(--shadow);
}

.service-card.featured {
  border-color: rgba(229, 9, 20, 0.5);
  background:
    linear-gradient(180deg, rgba(229, 9, 20, 0.1), transparent 34%),
    var(--panel);
}

.service-label {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.icon {
  margin: 20px 0 22px;
  font-size: 38px;
}

.service-card h3 {
  font-size: 23px;
  line-height: 1.2;
}

.service-card > p {
  min-height: 84px;
  margin-top: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.service-card ul {
  margin-top: 20px;
  display: grid;
  gap: 9px;
  color: #e5e7eb;
  font-size: 14px;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

.additional-service {
  margin-top: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(229, 9, 20, 0.08), transparent 45%),
    var(--panel);
}

.additional-service-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 16px;
  background: rgba(229, 9, 20, 0.12);
  font-size: 31px;
}

.additional-service-content h3 {
  margin-top: 8px;
  font-size: 25px;
}

.additional-service-content p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.additional-service-content ul {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: #e5e7eb;
  font-size: 14px;
  list-style: none;
}

.additional-service-content li {
  position: relative;
  padding-left: 16px;
}

.additional-service-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

.additional-service-button {
  white-space: nowrap;
}

.advantages {
  background:
    radial-gradient(circle at 10% 30%, rgba(229, 9, 20, 0.1), transparent 30%),
    var(--bg-soft);
}

.advantages-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  color: #fff;
  font-weight: 900;
}

.text-link:hover {
  color: var(--red);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.advantage-grid article {
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(14, 20, 31, 0.78);
}

.advantage-grid span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.advantage-grid h3 {
  margin-top: 35px;
  font-size: 21px;
}

.advantage-grid p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.process {
  background: var(--bg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-grid article {
  position: relative;
  padding: 30px 25px;
  border-top: 2px solid rgba(229, 9, 20, 0.75);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
}

.step-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(229, 9, 20, 0.25);
}

.process-grid h3 {
  margin-top: 24px;
  font-size: 20px;
}

.process-grid p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.about {
  background: var(--bg-soft);
}

.about-box {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(130deg, rgba(229, 9, 20, 0.09), transparent 34%),
    var(--panel);
  box-shadow: var(--shadow);
}

.about-box h2 {
  margin-top: 14px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
}

.about-box p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.about-box p + p {
  margin-top: 18px;
}


.owner {
  background: var(--bg);
}

.owner-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.09), transparent 34%),
    var(--panel);
  box-shadow: var(--shadow);
}

.owner-photo {
  min-height: 470px;
}

.photo-placeholder,
.placeholder-image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
  height: 100%;
  min-height: 280px;
  padding: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 17px;
  color: #dbe3ee;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.045), transparent),
    var(--panel-light);
}

.photo-placeholder span,
.placeholder-image span {
  font-weight: 900;
}

.photo-placeholder small {
  max-width: 320px;
  color: var(--muted-dark);
  line-height: 1.5;
}

.owner-content h2 {
  margin-top: 14px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.06;
}

.owner-content p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.owner-points {
  margin: 28px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.owner-points span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: #e8edf5;
  font-size: 13px;
  font-weight: 800;
}

.projects {
  background: var(--bg-soft);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 18px 45px rgba(0,0,0,0.2);
}

.project-image {
  min-height: 250px;
  border: 0;
  border-radius: 0;
}

.project-body {
  padding: 25px;
}

.project-type {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project-body h3 {
  margin-top: 10px;
  font-size: 23px;
}

.project-body p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.project-body ul {
  margin-top: 18px;
  display: grid;
  gap: 8px;
  color: #e5e7eb;
  font-size: 14px;
  list-style: none;
}

.project-body li {
  position: relative;
  padding-left: 18px;
}

.project-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

.gallery {
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  min-height: 240px;
}

.gallery-item.wide {
  grid-column: span 2;
}

.reviews {
  background:
    radial-gradient(circle at 85% 20%, rgba(229,9,20,0.11), transparent 30%),
    var(--bg-soft);
}

.reviews-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  margin-bottom: 42px;
}

.rating-box {
  min-width: 250px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  text-align: center;
}

.rating-box strong {
  display: block;
  font-size: 23px;
}

.stars,
.review-stars {
  color: #f7b500;
  letter-spacing: 2px;
}

.rating-box .stars {
  display: block;
  margin-top: 7px;
  font-size: 25px;
}

.rating-box small {
  display: block;
  margin-top: 8px;
  color: var(--muted-dark);
  line-height: 1.45;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(14,20,31,0.88);
}

.review-card > p {
  margin-top: 18px;
  color: #eef2f7;
  font-size: 17px;
  line-height: 1.7;
}

.review-card footer {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.review-card footer span {
  color: var(--muted-dark);
  font-size: 13px;
}

.service-area {
  background: var(--bg);
}

.service-area-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
  padding: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(229,9,20,0.08), transparent 35%),
    var(--panel);
}

.service-area-box h2 {
  margin-top: 12px;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.08;
}

.service-area-box p {
  margin-top: 17px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-tags span {
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  font-weight: 800;
}

.faq {
  background: var(--bg);
}


.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 13px;
}

.faq details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--panel);
}

.faq summary {
  position: relative;
  padding: 22px 58px 22px 22px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 25px;
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.7;
}



.final-cta {
  padding: 40px 0 100px;
  background: var(--bg);
}

.final-cta-box {
  padding: 62px 45px;
  border: 1px solid rgba(229, 9, 20, 0.38);
  border-radius: 26px;
  text-align: center;
  background:
    radial-gradient(circle at center top, rgba(229, 9, 20, 0.16), transparent 48%),
    var(--panel);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 850px;
  margin: 14px auto 0;
  font-size: clamp(36px, 5vw, 55px);
  line-height: 1.08;
}

.final-cta p {
  max-width: 680px;
  margin: 18px auto 30px;
  color: var(--muted);
  font-size: 18px;
}

.cta-buttons {
  justify-content: center;
}

.request-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--bg-soft);
}

.request-section::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  top: -260px;
  right: -280px;
  border-radius: 50%;
  background: rgba(229, 9, 20, 0.1);
  filter: blur(100px);
  pointer-events: none;
}

.request-box {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 65px;
  align-items: start;
}

.request-text h2 {
  margin-top: 14px;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.06;
}

.request-text > p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.contact-direct {
  margin-top: 35px;
  display: grid;
  gap: 13px;
}

.contact-direct a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(14, 20, 31, 0.6);
}

.contact-direct span {
  color: var(--muted-dark);
}

.contact-direct strong {
  color: #fff;
}

.request-form {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.request-form label:not(.privacy-check) {
  display: grid;
  gap: 8px;
}

.request-form label > span {
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 800;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  outline: none;
  color: #fff;
  background: var(--panel-light);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: #788396;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.12);
}

.request-form textarea {
  min-height: 145px;
  resize: vertical;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.privacy-check input {
  width: auto;
  margin-top: 3px;
}

.privacy-check a {
  text-decoration: underline;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 110;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  font-size: 28px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

.footer {
  padding: 42px 0 22px;
  border-top: 1px solid var(--line);
  background: #04070b;
}

.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 35px;
}

.footer-content strong {
  font-size: 18px;
}

.footer-content p {
  margin-top: 8px;
  color: var(--muted-dark);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #6f7b8e;
  font-size: 13px;
}

@media (max-width: 1050px) {
  nav {
    display: none;
  }

  .service-grid,
  .project-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .additional-service {
    grid-template-columns: auto 1fr;
  }

  .additional-service-button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .owner-card,
  .service-area-box,
  .reviews-top,
  .advantages-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .section-heading.left {
    max-width: 760px;
  }
}

@media (max-width: 850px) {
  .section {
    padding: 80px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 140px;
    background:
      linear-gradient(180deg, rgba(4, 7, 12, 0.98), rgba(4, 7, 12, 0.78)),
      url("van.jpg") center / cover no-repeat;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid article:nth-child(2) {
    border-right: 0;
  }

  .trust-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .advantages-layout,
  .about-box,
  .faq-layout,
  .request-box {
    grid-template-columns: 1fr;
  }

  .owner-card {
    gap: 34px;
  }

  .owner-photo {
    min-height: 360px;
  }

  .about-box {
    gap: 30px;
    padding: 42px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(92%, 1200px);
  }

  .header {
    position: absolute;
  }

  .nav {
    min-height: 76px;
  }

  .nav-btn {
    padding: 11px 13px;
    font-size: 12px;
  }

  .logo small {
    max-width: 145px;
    line-height: 1.2;
  }

  .hero {
    padding: 125px 0 70px;
  }

  .hero h1 {
    font-size: 50px;
    letter-spacing: -2px;
  }

  .subtitle {
    font-size: 21px;
  }

  .description {
    font-size: 16px;
  }

  .hero-buttons,
  .cta-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .trust-strip {
    margin-top: 0;
    padding-top: 12px;
    background: var(--bg);
  }

  .additional-service {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .additional-service-icon {
    width: 58px;
    height: 58px;
  }

  .additional-service-content ul {
    display: grid;
  }

  .trust-grid,
  .service-grid,
  .project-grid,
  .review-grid,
  .advantage-grid,
  .process-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .services {
    padding-top: 80px;
  }

  .service-card {
    min-height: auto;
  }

  .service-card > p {
    min-height: auto;
  }

  .advantage-grid article {
    min-height: auto;
  }

  .owner-card,
  .service-area-box,
  .about-box,
  .request-form,
  .final-cta-box {
    padding: 30px 22px;
  }

  .contact-direct a {
    flex-direction: column;
    gap: 5px;
  }


  .reviews-top {
    grid-template-columns: 1fr;
  }

  .rating-box {
    min-width: 0;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-links {
    gap: 14px 18px;
  }

  .whatsapp-float {
    right: 17px;
    bottom: 17px;
    width: 56px;
    height: 56px;
  }
}


/* ===== Korrekturen für Navigation und große Galerie ===== */

.nav {
  gap: 18px;
}

nav {
  gap: clamp(14px, 1.4vw, 24px);
}

.gallery {
  padding: 90px 0 110px;
  overflow: hidden;
}

.gallery-shell {
  width: min(94%, 1500px);
  margin-inline: auto;
}

.gallery .section-heading {
  margin-bottom: 38px;
}

.gallery-showcase {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: #0e141f;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.gallery-showcase img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
}

.review-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1050px) {
  .gallery-shell {
    width: min(94%, 1100px);
  }
}

@media (max-width: 620px) {
  .gallery {
    padding: 72px 0;
  }

  .gallery-shell {
    width: 94%;
  }

  .gallery-showcase {
    border-radius: 15px;
  }

  .gallery-showcase img {
    width: 100%;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== Subtile Animationen ===== */

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .eyebrow,
.hero h1,
.hero .subtitle,
.hero .description,
.hero .check-list,
.hero .hero-buttons,
.hero .hero-note {
  opacity: 0;
  animation: heroFadeUp 0.75s ease forwards;
}

.hero h1 {
  animation-delay: 0.08s;
}

.hero .subtitle {
  animation-delay: 0.16s;
}

.hero .description {
  animation-delay: 0.24s;
}

.hero .check-list {
  animation-delay: 0.32s;
}

.hero .hero-buttons {
  animation-delay: 0.40s;
}

.hero .hero-note {
  animation-delay: 0.48s;
}

.js .reveal,
.js .reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible,
.js .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card,
.advantage-grid article,
.process-grid article,
.review-card,
.area-tags span,
.contact-direct a {
  will-change: transform;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.advantage-grid article:hover,
.process-grid article:hover,
.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 9, 20, 0.42);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.area-tags span:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 9, 20, 0.5);
  background: rgba(229, 9, 20, 0.08);
}

.contact-direct a:hover {
  transform: translateX(4px);
  border-color: rgba(229, 9, 20, 0.42);
}
.faq details {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--panel);
    transition: all .35s ease;
}

.faq details .content{
    display:grid;
    grid-template-rows:0fr;
    transition:grid-template-rows .45s ease;
}

.faq details[open] .content{
    grid-template-rows:1fr;
}

.faq details .content > div{
    overflow:hidden;
}

.faq details p{
    padding:0 22px 22px;
    color:var(--muted);
    line-height:1.7;
    opacity:0;
    transform:translateY(-8px);
    transition:opacity .35s ease .1s,
               transform .35s ease .1s;
}

.faq details[open] p{
    opacity:1;
    transform:translateY(0);
}

.faq summary{
    transition:background .25s;
}

.faq summary:hover{
    background:rgba(255,255,255,.02);
}

.faq summary::after{
    transition:transform .35s ease;
}

.faq details[open] summary::after{
    transform:translateY(-50%) rotate(180deg);
}}

.whatsapp-float {
  animation: whatsappPulse 3.4s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%,
  70%,
  100% {
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38);
  }
  82% {
    box-shadow:
      0 16px 38px rgba(0, 0, 0, 0.38),
      0 0 0 10px rgba(37, 211, 102, 0.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .js .reveal,
  .js .reveal-item {
    opacity: 1;
    transform: none;
  }
}