/* ===========================
   Base & Reset
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Marineblau aus Logo – dominant */
  --navy-900:  #0d1f3c;
  --navy-800:  #122d57;
  --navy-700:  #1a3a6b;   /* exakter Logo-Farbwert */
  --navy-500:  #2a5499;

  /* Signalrot aus Logo – alle CTAs */
  --cta:       #c0392b;
  --cta-hover: #a93226;

  /* Sonnengelb – nur als Akzent */
  --yellow:    #f0c040;

  /* Neutrals */
  --white:     #ffffff;
  --off:       #f6f7f9;
  --gray-100:  #edf0f4;
  --gray-200:  #d8dde7;
  --gray-400:  #8a96a6;
  --gray-600:  #4d5a6e;
  --gray-900:  #111827;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --r:    10px;
  --r-lg: 18px;
  --sh:   0 2px 20px rgba(0,0,0,.08);
  --sh-lg:0 8px 48px rgba(0,0,0,.15);
  --t:    .22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a   { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===========================
   Typography
=========================== */
h1 {
  font-size: clamp(2.8rem, 6.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
}
h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.025em;
}
h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}
h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 12px;
}
.eyebrow--light { color: rgba(255,255,255,.5); }

/* ===========================
   Layout
=========================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}
.section        { padding: 96px 0; }
.section--dark  { background: var(--navy-700); }
.section--light { background: var(--off); }

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section__header h2 { margin-bottom: 14px; }
.section__header p  { color: var(--gray-600); font-size: 1.05rem; }
.section__header--light h2 { color: var(--white); }
.section__header--light p  { color: rgba(255,255,255,.55); }

/* ===========================
   Buttons
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--r);
  font-family: var(--font);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: background var(--t), transform var(--t), box-shadow var(--t), border-color var(--t);
  border: 2px solid transparent;
  white-space: nowrap;
  padding: 13px 26px;
}
.btn--cta {
  background: var(--cta);
  color: var(--white);
}
.btn--cta:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,92,0,.35);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.75);
}
.btn--lg  { padding: 16px 34px; font-size: 1rem; border-radius: var(--r); }
.btn--sm  { padding: 9px 18px; font-size: .84rem; }
.btn--full { width: 100%; border-radius: var(--r); }

/* ===========================
   Header
=========================== */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  padding: 18px 0;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
}
.header.scrolled {
  background: var(--navy-700);
  box-shadow: 0 2px 16px rgba(0,0,0,.2);
  padding: 12px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo__img {
  height: 100px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  padding: 6px 14px;
  box-shadow: 0 1px 6px rgba(0,0,0,.2);
}
.logo__img--footer {
  height: 56px;
  padding: 6px 12px;
  box-shadow: none;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav__link {
  padding: 8px 13px;
  border-radius: 8px;
  font-size: .87rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: color var(--t), background var(--t);
}
.nav__link:hover {
  color: var(--white);
  background: rgba(255,255,255,.09);
}

.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header__phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .84rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  transition: color var(--t);
}
.header__phone:hover { color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

/* ===========================
   Hero
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.45) 45%,
    rgba(0,0,0,.15) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: .82rem;
  color: var(--white);
  font-weight: 500;
}
.hero__stars { color: var(--yellow); font-size: 1rem; letter-spacing: 2px; }
.hero__title,
.hero__content h1 {
  color: var(--white) !important;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,.45);
}
.hero__title em,
.hero__content h1 em {
  font-style: normal;
  color: var(--white) !important;
}
.hero__sub {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  max-width: 540px;
  margin-bottom: 44px;
  line-height: 1.75;
  text-shadow: 0 1px 10px rgba(0,0,0,.4);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-hint span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  margin: 0 auto;
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===========================
   Trust Bar
=========================== */
.trust-bar {
  background: var(--navy-800);
  border-bottom: 2px solid var(--yellow);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 20px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,.08);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { color: var(--cta); flex-shrink: 0; }

/* ===========================
   Services
=========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: box-shadow var(--t), transform var(--t);
  cursor: pointer;
}
.svc-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-6px);
}
.svc-card__img-wrap {
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.svc-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.svc-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border: 2px dashed var(--gray-300);
  color: var(--gray-400);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .03em;
}
.svc-card:hover .svc-card__img-wrap img {
  transform: scale(1.07);
}
.svc-card__body {
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.svc-card__body h3 {
  font-size: 1.05rem;
  color: var(--navy-800);
}
.svc-card__body p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
}
.svc-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}
.svc-card__cta {
  font-size: .82rem;
  font-weight: 700;
  color: var(--cta);
  letter-spacing: .02em;
}
.svc-card__cta:hover { text-decoration: underline; }

.btn--outline {
  background: transparent;
  color: var(--navy-700);
  border: 2px solid var(--navy-700);
  padding: 7px 16px;
  font-size: .8rem;
  border-radius: var(--r);
}
.btn--outline:hover {
  background: var(--navy-700);
  color: var(--white);
}

/* ===========================
   Process Steps
=========================== */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: start;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step__img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.step__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.step__num {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  background: var(--cta);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .04em;
}
.step__body h3 { color: var(--white); margin-bottom: 8px; }
.step__body p  { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.65; }

.step__arrow {
  color: rgba(255,255,255,.25);
  margin-top: 70px;
  flex-shrink: 0;
}

/* ===========================
   Gallery (Referenzen)
=========================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery__item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery__item:hover img {
  transform: scale(1.05);
}
.gallery__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 20px 16px;
  background: linear-gradient(to top, rgba(7,21,37,.8), transparent);
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  transform: translateY(4px);
  opacity: 0;
  transition: opacity var(--t), transform var(--t);
}
.gallery__item:hover .gallery__label {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   About
=========================== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__media { position: relative; }
.about__img {
  width: 100%;
  border-radius: var(--r-lg);
  aspect-ratio: 5/4;
  object-fit: cover;
}
.about__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border: 2px dashed var(--gray-300);
  color: var(--gray-400);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .03em;
}
.about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--r);
  padding: 18px 22px;
  box-shadow: var(--sh-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  border: 1px solid var(--gray-200);
}
.about__badge strong {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cta);
  line-height: 1;
}
.about__badge span {
  font-size: .7rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.about__body .eyebrow { margin-bottom: 10px; }
.about__body h2 { margin-bottom: 20px; }
.about__body p  { color: var(--gray-600); margin-bottom: 18px; line-height: 1.75; }

.qual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 36px;
}
.qual-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.qual-item__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: rgba(240,192,64,.15);
  color: var(--navy-700);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.qual-item strong { display: block; font-size: .88rem; line-height: 1.3; color: var(--gray-900); }
.qual-item span   { font-size: .78rem; color: var(--gray-400); }

/* ===========================
   Reviews
=========================== */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  font-size: .9rem;
  color: var(--gray-600);
}
.rating-summary__stars { color: var(--yellow); font-size: 1.2rem; letter-spacing: 2px; }
.rating-summary strong { font-size: 1.1rem; color: var(--gray-900); }

.reviews {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--t);
}
.review-card:hover { box-shadow: var(--sh-lg); }
.review-card__stars {
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 2px;
}
.review-card p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}
.review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.review-card__author strong { display: block; font-size: .88rem; line-height: 1.3; }
.review-card__author span   { font-size: .75rem; color: var(--gray-400); }

/* ===========================
   FAQ
=========================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: .97rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: background var(--t);
}
.faq-question:hover { background: var(--off); }
.faq-question[aria-expanded="true"] { background: var(--off); }
.faq-icon {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform var(--t);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--cta);
}
.faq-answer {
  display: none;
  padding: 0 24px 22px;
}
.faq-answer.open { display: block; }
.faq-answer p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.75;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}

/* ===========================
   CTA Banner
=========================== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
}
.cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,21,37,.82);
}
.cta-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-banner__content h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner__content p {
  color: rgba(255,255,255,.6);
  font-size: 1.05rem;
  margin-bottom: 40px;
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ===========================
   Contact
=========================== */
.contact {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 52px;
  align-items: start;
}

.contact__form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 44px;
  box-shadow: var(--sh);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
}
.form-group label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--gray-600);
  letter-spacing: .07em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r);
  font-size: .95rem;
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  appearance: none;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-500);
  box-shadow: 0 0 0 3px rgba(26,61,98,.1);
}
.form-group textarea { resize: vertical; line-height: 1.6; }
.form__note {
  margin-top: 12px;
  font-size: .74rem;
  color: var(--gray-400);
  text-align: center;
}
.form__success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 16px 20px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--r);
  color: #065f46;
  font-weight: 600;
  font-size: .9rem;
}
.form__success.visible { display: flex; }

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 28px;
}
.contact__info-card h3 { font-size: 1rem; margin-bottom: 20px; }

.contact__method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 10px;
  border-radius: var(--r);
  transition: background var(--t);
  margin-bottom: 4px;
}
.contact__method:hover { background: var(--off); }
.contact__method-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--off);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t), color var(--t);
}
.contact__method-icon--green { color: #15803d; }
.contact__method:hover .contact__method-icon { background: var(--navy-800); color: var(--white); }
.contact__method:hover .contact__method-icon--green { background: #15803d; color: var(--white); }
.contact__method strong { display: block; font-size: .72rem; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 2px; }
.contact__method span   { font-size: .9rem; font-weight: 500; color: var(--gray-900); }

.hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .88rem;
}
.hours__row span { color: var(--gray-600); }
.hours__row strong { font-size: .88rem; }
.hours__emergency {
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
}
.hours__emergency strong {
  display: block;
  font-size: .88rem;
  margin-bottom: 4px;
  color: var(--cta);
}

/* ===========================
   Footer
=========================== */
.footer { background: var(--navy-800); border-top: 3px solid var(--yellow); }

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding: 72px 0 56px;
}
.footer__brand .logo { margin-bottom: 16px; }
.footer__brand p {
  font-size: .86rem;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer__tel {
  font-size: .9rem;
  font-weight: 700;
  color: var(--cta);
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col h4 { color: rgba(255,255,255,.25); margin-bottom: 4px; }
.footer__col a  { font-size: .86rem; color: rgba(255,255,255,.5); transition: color var(--t); }
.footer__col a:hover { color: var(--white); }
.footer__col p  { font-size: .86rem; color: rgba(255,255,255,.4); line-height: 1.7; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer__bottom-inner p { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  transition: color var(--t);
}
.footer__legal a:hover { color: var(--white); }

/* ===========================
   Reveal Animations
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 1060px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .svc-card:last-child { grid-column: 1 / -1; max-width: 380px; margin: 0 auto; }
  .reviews       { grid-template-columns: repeat(2, 1fr); }
  .footer__top   { grid-template-columns: 1fr 1fr; }
  .steps {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .step__arrow { transform: rotate(90deg); justify-self: center; }
}

@media (max-width: 860px) {
  .about   { grid-template-columns: 1fr; gap: 52px; }
  .about__badge { right: 0; }
  .contact { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__inner { justify-content: flex-start; }
  .trust-item { border-right: none; padding: 8px 20px; }
}

@media (max-width: 700px) {
  .section        { padding: 64px 0; }
  .hero           { padding: 130px 0 80px; }
  .services-grid  { grid-template-columns: 1fr; }
  .reviews        { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .contact__form  { padding: 24px; }
  .qual-grid      { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer__top    { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 0 36px; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-900);
    flex-direction: column;
    padding: 24px 28px;
    gap: 4px;
    overflow-y: auto;
    max-height: calc(100vh - 130px);
  }
  .nav.open { display: flex; }
  .nav__link {
    color: rgba(255,255,255,.7) !important;
    padding: 14px 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: .97rem;
  }
  .nav-toggle     { display: flex; }
  .header__right  { display: none; }
}

@media (max-width: 480px) {
  .footer__top         { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 32px 48px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .cta-banner          { padding: 72px 0; }
  .logo__img           { max-width: 100%; }
  .footer__brand       { overflow: visible; }
  .cta-box             { padding: 28px 20px; }
  .cta-box .btn        { white-space: normal; width: 100%; }
}
