/* =========================
   Base
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #111827;
  background: #ffffff;
}

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

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

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

/* =========================
   Header / Navigation
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(254, 249, 243, 0.96);
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: blur(12px);
}

.site-header .container {
  width: calc(100% - 32px);
  max-width: none;
}

.header-content {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  justify-self: start;
  flex-shrink: 0;
}

.logo img {
  width: auto;
  height: 68px;
  max-width: 135px;
  object-fit: contain;
}

.main-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 0.9vw, 16px);
  flex-wrap: nowrap;
  color: #111827;
  font-size: 13.5px;
  font-weight: 900;
}

.main-nav a {
  position: relative;
  white-space: nowrap;
  padding: 8px 0;
  color: inherit;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #f59e0b;
  transition: width 0.2s ease;
}

.main-nav a:hover {
  color: #f59e0b;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-phone {
  justify-self: end;
  padding: 12px 18px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-phone:hover {
  background: #f59e0b;
  color: #111827;
  transform: translateY(-2px);
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s ease;
}

.lang-btn:hover,
.lang-btn.is-active {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #111827;
}

@media (max-width: 1240px) {
  .main-nav {
    font-size: 13px;
    gap: 10px;
  }

  .logo img {
    height: 62px;
    max-width: 120px;
  }

  .header-phone {
    padding: 11px 15px;
    font-size: 13px;
  }
}

@media (max-width: 1100px) {
  .header-content {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 5;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
  }

  .language-switch {
    justify-self: end;
  }
}

@media (max-width: 640px) {
  .site-header .container {
    width: calc(100% - 28px);
  }

  .header-content {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 0;
  }

  .logo img {
    height: 64px;
    max-width: 145px;
  }

  .header-phone {
    grid-column: 1 / -1;
    justify-self: stretch;
    text-align: center;
    padding: 12px 16px;
  }

  .language-switch {
    justify-self: end;
  }

  .main-nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    justify-content: stretch;
    padding-top: 12px;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #ffffff;
    text-align: center;
    font-size: 13px;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover {
    background: #f59e0b;
    color: #111827;
    border-color: #f59e0b;
  }
}

@media (max-width: 420px) {
  .main-nav {
    grid-template-columns: 1fr;
  }

  .logo img {
    height: 58px;
    max-width: 135px;
  }
}

/* =========================
   Hero
========================= */

.hero {
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(rgba(17, 24, 39, 0.58), rgba(17, 24, 39, 0.48)),
    url("../assets/hero-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 36%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: #f59e0b;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 25px;
}

.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero p {
  max-width: 720px;
  margin: 0 0 34px;
  font-size: 20px;
  line-height: 1.7;
  color: #e5e7eb;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background: #f59e0b;
  color: #111827;
}

.btn-primary:hover {
  background: #fbbf24;
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-secondary:hover {
  background: #ffffff;
  color: #111827;
  transform: translateY(-2px);
}

.hero-card {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.hero-card h2 {
  margin: 0 0 14px;
  font-size: 30px;
}

.hero-card p {
  margin: 0 0 22px;
  font-size: 16px;
  color: #e5e7eb;
}

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

.hero-card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-weight: 800;
}

.hero-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f59e0b;
}

/* =========================
   Sections / Stats
========================= */

.stats {
  margin-top: -48px;
  position: relative;
  z-index: 5;
}

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

.stat-box {
  padding: 28px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
  border: 1px solid #f3f4f6;
}

.stat-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 30px;
  color: #111827;
}

.stat-box span {
  color: #6b7280;
  font-weight: 700;
}

.section {
  padding: 110px 0;
}

.section-gray,
.faq-section,
.consultation-section {
  background: #f9fafb;
}

.section-dark {
  background: #111827;
  color: #ffffff;
}

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

.section-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #6b7280;
}

.section-heading.light p,
.section-dark .section-heading p {
  color: #d1d5db;
}

/* =========================
   Service cards
========================= */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  display: block;
  min-height: 230px;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid #edf1f5;
  box-shadow: 0 14px 35px rgba(17, 24, 39, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  color: inherit;
  cursor: pointer;
  background:
    linear-gradient(#f59e0b, #f59e0b) left top / 0 2px no-repeat,
    linear-gradient(#f59e0b, #f59e0b) right top / 2px 0 no-repeat,
    linear-gradient(#f59e0b, #f59e0b) right bottom / 0 2px no-repeat,
    #ffffff;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(17, 24, 39, 0.12);
  animation: serviceBorderRun 0.85s ease forwards;
}

@keyframes serviceBorderRun {
  0% {
    background-size: 0 2px, 2px 0, 0 2px, auto;
  }

  40% {
    background-size: 100% 2px, 2px 0, 0 2px, auto;
  }

  70% {
    background-size: 100% 2px, 2px 100%, 0 2px, auto;
  }

  100% {
    background-size: 100% 2px, 2px 100%, 100% 2px, auto;
  }
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.service-card p {
  margin: 0;
  color: #6b7280;
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  margin-top: 24px;
  color: #f59e0b;
  font-weight: 900;
  font-size: 15px;
}

.service-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.service-card:hover .service-link::after {
  transform: translateX(5px);
}

/* =========================
   Steps
========================= */

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

.step-card {
  padding: 30px;
  border-radius: 26px;
  background: #1f2937;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: #f59e0b;
  font-size: 34px;
  font-weight: 900;
}

.step-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.step-card p {
  margin: 0;
  color: #d1d5db;
  line-height: 1.7;
}

/* =========================
   Prices / Offers
========================= */

.offer-section .container {
  width: min(1450px, calc(100% - 80px));
}

.offer-heading {
  max-width: 900px;
  margin: 0 auto 46px;
  text-align: center;
}

.special-badge,
.tariff-badge {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 9px 18px;
  border-radius: 999px;
  background: #16a34a;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tariff-badge {
  background: #d96f2c;
}

.offer-heading h2,
.tariff-heading h2 {
  margin: 0 0 14px;
  color: #0b2454;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
}

.offer-heading p,
.tariff-heading p {
  margin: 0;
  color: #374151;
  font-size: 18px;
  line-height: 1.6;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(330px, 1fr));
  gap: 32px;
}

.offer-card {
  position: relative;
  min-height: 520px;
  padding: 38px 34px 30px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #d9dee7;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.10);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-10px);
  border-color: #16458a;
  box-shadow: 0 28px 70px rgba(22, 69, 138, 0.18);
}

.offer-card.popular {
  border: 2px solid #ea580c;
  transform: translateY(-14px);
}

.offer-card.premium {
  grid-column: 2 / 3;
  width: 100%;
  margin-top: 20px;
}

.popular-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 24px;
  border-radius: 999px;
  background: #d96f2c;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.offer-card h3 {
  margin: 0 0 18px;
  color: #666666;
  font-size: 24px;
  font-weight: 800;
}

.offer-price {
  margin-bottom: 8px;
  color: #16458a;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
}

.offer-price strong {
  font-size: clamp(48px, 5vw, 64px);
  line-height: 0.9;
  font-weight: 900;
}

.offer-price span {
  margin-bottom: 7px;
  color: #4b5563;
  font-size: 17px;
}

.offer-description {
  min-height: 52px;
  margin: 0 auto 26px;
  color: #5b6472;
  font-size: 16px;
  line-height: 1.55;
}

.offer-card hr {
  margin: 26px 0;
  border: 0;
  border-top: 1px solid #d9dee7;
}

.offer-card ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.offer-card li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 28px;
  color: #111827;
  font-size: 16px;
  line-height: 1.4;
}

.offer-card li::before,
.service-check-list li::before,
.service-info-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 900;
}

.offer-btn {
  min-height: 56px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 14px 18px;
  border-radius: 7px;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.offer-btn.outline {
  border: 2px solid #16458a;
  color: #16458a;
  background: #ffffff;
}

.offer-btn.outline:hover {
  background: #16458a;
  color: #ffffff;
}

.offer-btn.filled {
  border: 2px solid #16458a;
  background: #16458a;
  color: #ffffff;
}

.extra-price {
  padding: 14px 16px;
  border-radius: 5px;
  background: #eef2f7;
  color: #0b2454;
  font-weight: 800;
  font-size: 15px;
}

.tariff-section {
  margin-top: 100px;
}

.tariff-heading {
  max-width: 880px;
  margin: 0 auto 54px;
  text-align: center;
}

.tariff-title {
  margin: 0 0 44px;
  color: #0b2454;
  font-size: 28px;
  font-weight: 900;
  text-align: center;
}

.tariff-table {
  max-width: 1250px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d9dee7;
  box-shadow: 0 16px 45px rgba(17, 24, 39, 0.10);
}

.tariff-row {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.9fr;
  align-items: center;
  min-height: 82px;
  padding: 0 22px;
  border-bottom: 1px solid #d9dee7;
}

.tariff-header {
  min-height: 66px;
  background: #16458a;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.tariff-service {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #111827;
  font-size: 17px;
}

.tariff-price {
  color: #16458a;
  font-size: 28px;
  font-weight: 900;
  text-align: center;
}

.tariff-hour {
  color: #4b5563;
  font-size: 16px;
  text-align: center;
}

.tariff-note {
  margin: 28px auto 0;
  max-width: 900px;
  color: #111827;
  font-size: 15px;
  text-align: center;
}

/* =========================
   Forms / FAQ / Contact
========================= */

.consultation-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.consultation-wrapper,
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 34px;
  align-items: start;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.consultation-form,
.contact-form {
  padding: 36px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}

.contact-form {
  background: #f9fafb;
}

.form-section-title {
  margin: 10px 0 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.form-section-title h3 {
  margin: 0;
  color: #0b2454;
  font-size: 22px;
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.form-grid label,
.contact-form label {
  display: block;
  color: #111827;
  font-weight: 900;
  margin-bottom: 18px;
}

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

.form-grid input,
.form-grid select,
.form-grid textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  font: inherit;
}

.form-grid textarea,
.contact-form textarea {
  resize: vertical;
}

.consultation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.consultation-whatsapp,
.side-whatsapp-btn {
  background: #22c55e;
  border: 1px solid #22c55e;
  color: #ffffff;
}

.consultation-side-card,
.service-info-box {
  padding: 34px 30px;
  border-radius: 28px;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.22);
}

.consultation-side-card {
  position: sticky;
  top: 120px;
}

.side-card-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.14);
  color: #f59e0b;
  font-size: 13px;
  font-weight: 900;
}

.side-card-list {
  display: grid;
  gap: 18px;
}

.side-card-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
}

.side-card-item > span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-card-item p,
.service-info-box li,
.service-cta-box p {
  color: #d1d5db;
}

.side-whatsapp-btn {
  margin-top: 28px;
  min-height: 52px;
  width: 100%;
  border-radius: 999px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-header {
  max-width: 820px;
  margin-bottom: 48px;
}

.faq-header h2 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: #0b1736;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-card {
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 35px rgba(17, 24, 39, 0.06);
  overflow: hidden;
}

.faq-card summary {
  position: relative;
  min-height: 76px;
  padding: 24px 64px 24px 26px;
  cursor: pointer;
  list-style: none;
  color: #0b1736;
  font-size: 18px;
  font-weight: 900;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff7ed;
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  transform: translateY(-50%);
}

.faq-card[open] summary::after {
  content: "−";
  background: #f59e0b;
  color: #111827;
}

.faq-card p {
  margin: 0;
  padding: 0 26px 26px;
  color: #5b6472;
  font-size: 16px;
  line-height: 1.75;
}

/* =========================
   Service Detail Pages
========================= */

.service-page-hero {
  padding: 110px 0;
  background: #f9fafb;
  color: #111827;
}

.service-page-hero-grid,
.service-two-column {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.service-two-column {
  grid-template-columns: 1fr 0.8fr;
  align-items: start;
}

.service-page-text h1 {
  margin: 0 0 24px;
  color: #0b2454;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.service-page-text p,
.service-two-column p {
  margin: 0 0 34px;
  color: #4b5563;
  font-size: 19px;
  line-height: 1.75;
}

.service-page-hero .btn-secondary {
  background: #111827;
  color: #ffffff;
  border: 1px solid #111827;
}

.service-page-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(17, 24, 39, 0.18);
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

.service-page-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.service-detail-grid,
.service-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-detail-card {
  min-height: 260px;
  padding: 32px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.06);
}

.service-detail-card > span,
.service-info-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.12);
  font-size: 28px;
}

.service-detail-card h3,
.service-info-box h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.service-detail-card p {
  margin: 0;
  color: #6b7280;
  line-height: 1.7;
}

.service-check-list,
.service-info-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-check-list li,
.service-info-box li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 34px;
  font-size: 17px;
  font-weight: 800;
}

.service-info-box li::before {
  color: #f59e0b;
}

.service-cta-box {
  padding: 46px;
  border-radius: 34px;
  background: #111827;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.16);
}

.service-cta-box h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
}

/* Umzug special hero */

.umzug-service-page .service-page-hero {
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(rgba(17, 24, 39, 0.68), rgba(17, 24, 39, 0.52)),
    url("../assets/umzug-service.png");
  background-size: cover;
  background-position: center;
}

.umzug-service-page .service-page-hero-text h1 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.umzug-service-page .service-page-hero-text p {
  max-width: 760px;
  margin: 0 0 34px;
  color: #e5e7eb;
  font-size: 20px;
  line-height: 1.7;
}

.umzug-service-page .service-page-card {
  padding: 34px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.umzug-service-page .service-page-card h2,
.umzug-service-page .service-page-card li {
  color: #ffffff;
}

.umzug-service-page .service-info-grid {
  grid-template-columns: repeat(3, 1fr);
}

.umzug-service-page .service-info-grid .service-info-box {
  background: #ffffff;
  color: #111827;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 35px rgba(17, 24, 39, 0.06);
}

.umzug-service-page .service-info-grid .service-info-box h3 {
  color: #111827;
}

.umzug-service-page .service-info-grid .service-info-box p {
  color: #6b7280;
}

.service-page-process {
  background: #111827;
  color: #ffffff;
}

.service-page-cta {
  padding: 90px 0;
  background: #ffffff;
}

.umzug-service-page .service-page-cta-box {
  display: flex;
  justify-content: space-between;
}

.service-page-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 240px;
}

/* =========================
   Footer
========================= */

.site-footer {
  padding: 42px 0;
  background: #111827;
  color: #ffffff;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
}

.footer-content strong {
  font-size: 24px;
}

.footer-content p {
  margin: 8px 0 0;
  color: #d1d5db;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: #d1d5db;
  font-weight: 800;
}

.footer-links a:hover {
  color: #f59e0b;
}

/* =========================
   Animation
========================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(45px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* =========================
   Responsive
========================= */

@media (max-width: 1100px) {
  .service-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .hero-content,
  .contact-grid,
  .consultation-wrapper,
  .service-page-hero-grid,
  .service-two-column,
  .service-cta-box,
  .umzug-service-page .service-info-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .service-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-section .container {
    width: min(100% - 40px, 760px);
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .offer-card,
  .offer-card.premium {
    width: 100%;
    max-width: 520px;
    min-height: auto;
    margin-left: auto;
    margin-right: auto;
    grid-column: auto;
  }

  .offer-card.popular {
    transform: none;
  }

  .tariff-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
    text-align: left;
  }

  .tariff-header {
    display: none;
  }

  .tariff-price,
  .tariff-hour {
    text-align: left;
    padding-left: 38px;
  }

  .consultation-side-card {
    position: relative;
    top: auto;
  }

  .service-page-image img {
    height: 420px;
  }

  .umzug-service-page .service-page-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-page-cta-actions {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding: 70px 0;
  }

  .hero h1,
  .service-page-hero-text h1,
  .service-page-text h1,
  .umzug-service-page .service-page-hero-text h1 {
    font-size: 40px;
  }

  .hero p,
  .service-page-hero-text p,
  .service-page-text p,
  .umzug-service-page .service-page-hero-text p {
    font-size: 18px;
  }

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

  .btn {
    width: 100%;
  }

  .stats {
    margin-top: 0;
    padding-top: 24px;
  }

  .stats-grid,
  .service-grid,
  .steps-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 76px 0;
  }

  .hero-card,
  .contact-form,
  .consultation-form,
  .consultation-side-card,
  .service-detail-card,
  .service-info-box,
  .service-cta-box,
  .umzug-service-page .service-page-card {
    padding: 26px;
    border-radius: 22px;
  }

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

  .offer-section .container {
    width: min(100% - 28px, 1180px);
  }

  .offer-card,
  .offer-card.premium {
    max-width: 100%;
    padding: 30px 22px 26px;
    border-radius: 16px;
  }

  .offer-price strong {
    font-size: 48px;
  }

  .offer-btn {
    min-height: 52px;
    font-size: 14px;
    padding: 12px 14px;
  }

  .service-page-image {
    border-radius: 22px;
  }

  .service-page-image img {
    height: 300px;
  }

  .service-cta-box .btn {
    width: 100%;
  }
}
/* =========================
   Footer - New Design
========================= */

.site-footer {
  background: #05070b;
  color: #ffffff;
  padding: 70px 0 20px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo img {
  width: auto;
  height: 72px;
  object-fit: contain;
  margin-bottom: 22px;
}

.footer-brand-text {
  margin: 0;
  color: #c7cbd4;
  font-size: 17px;
  line-height: 1.7;
}

.footer-column h3 {
  margin: 0 0 26px;
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  position: relative;
}

.footer-column h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: #f59e0b;
  margin-top: 12px;
  border-radius: 999px;
}

.footer-links-list,
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links-list li,
.footer-contact-list li {
  margin-bottom: 18px;
}

.footer-links-list a {
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.6;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-links-list a::before {
  content: "›";
  color: #f59e0b;
  font-size: 22px;
  line-height: 1;
}

.footer-links-list a:hover {
  color: #f59e0b;
  transform: translateX(4px);
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
}

.footer-contact-list i {
  color: #f59e0b;
  font-size: 18px;
  margin-top: 4px;
}

.footer-contact-list span {
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.6;
}

.footer-contact-list strong {
  color: #ffffff;
  font-weight: 800;
  margin-right: 6px;
}

.footer-contact-list a {
  color: #3b82f6;
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: #60a5fa;
}

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

.footer-bottom p {
  margin: 0;
  color: #9ca3af;
  font-size: 14px;
}

/* Floating WhatsApp Button */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.35);
  z-index: 1200;
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
  background: #1ebe5b;
  transform: translateY(-3px) scale(1.04);
}

/* Responsive */

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 55px 0 20px;
  }

  .footer-logo img {
    height: 62px;
  }

  .footer-column h3 {
    font-size: 18px;
  }

  .footer-brand-text,
  .footer-links-list a,
  .footer-contact-list span {
    font-size: 15px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
}
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.35);
  z-index: 1200;
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
  display: block;
}

.whatsapp-float:hover {
  background: #1ebe5b;
  transform: translateY(-3px) scale(1.04);
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}
/* =========================
   Legal / Impressum Page
========================= */

.legal-hero {
  padding: 95px 0 70px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.legal-hero h1 {
  margin: 0 0 18px;
  color: #0b2454;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.legal-hero p {
  margin: 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.7;
}

.legal-section {
  background: #ffffff;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.legal-content {
  padding: 42px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.06);
}

.legal-content h2 {
  margin: 34px 0 14px;
  color: #0b2454;
  font-size: 26px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 18px;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.75;
}

.legal-content strong {
  color: #111827;
}

.legal-content a {
  color: #0f4fa8;
  font-weight: 800;
}

.legal-content a:hover {
  color: #f59e0b;
}

.legal-side-card {
  position: sticky;
  top: 120px;
  padding: 34px;
  border-radius: 30px;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.18);
}

.legal-side-card h3 {
  margin: 0 0 24px;
  font-size: 26px;
  line-height: 1.2;
}

.legal-side-card ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.legal-side-card li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  margin-bottom: 18px;
  align-items: start;
}

.legal-side-card li > span {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-side-card strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
}

.legal-side-card a {
  color: #f59e0b;
  font-weight: 800;
}

.legal-side-card p {
  margin: 0;
  color: #d1d5db;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-side-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .legal-hero {
    padding: 70px 0 50px;
  }

  .legal-content,
  .legal-side-card {
    padding: 26px;
    border-radius: 22px;
  }

  .legal-content h2 {
    font-size: 22px;
  }

  .legal-content p {
    font-size: 16px;
  }
}

/* =========================
   Impressum / Legal Page
========================= */

.legal-hero {
  padding: 95px 0 70px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.legal-hero h1 {
  margin: 0 0 18px;
  color: #0b2454;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.legal-hero p {
  max-width: 720px;
  margin: 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.7;
}

.legal-section {
  background: #ffffff;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: start;
}

.legal-content {
  padding: 42px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.06);
}

.legal-content h2 {
  margin: 34px 0 14px;
  color: #0b2454;
  font-size: 26px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 18px;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.75;
}

.legal-content strong {
  color: #111827;
  font-weight: 900;
}

.legal-content a {
  color: #0f4fa8;
  font-weight: 800;
  word-break: break-word;
}

.legal-content a:hover {
  color: #f59e0b;
}

.legal-side-card {
  position: sticky;
  top: 120px;
  padding: 34px;
  border-radius: 30px;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.18);
}

.legal-side-card h3 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 26px;
}

.legal-side-card ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.legal-side-card li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  margin-bottom: 18px;
  align-items: start;
}

.legal-side-card li > span {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.legal-side-card strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-weight: 900;
}

.legal-side-card a {
  color: #f59e0b;
  font-weight: 800;
}

.legal-side-card p {
  margin: 0;
  color: #d1d5db;
  line-height: 1.5;
}

.legal-side-card .btn {
  width: 100%;
}

@media (max-width: 980px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-side-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .legal-hero {
    padding: 70px 0 50px;
  }

  .legal-hero h1 {
    font-size: 40px;
  }

  .legal-content,
  .legal-side-card {
    padding: 26px;
    border-radius: 22px;
  }

  .legal-content h2 {
    font-size: 22px;
  }

  .legal-content p {
    font-size: 16px;
  }
}

/* =========================
   Service Request Form
========================= */

.service-request-section {
  background: #f9fafb;
}

.service-request-wrapper {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: start;
}

.service-request-heading h2 {
  margin: 0 0 18px;
  color: #0b2454;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.service-request-heading p {
  margin: 0;
  color: #6b7280;
  font-size: 18px;
  line-height: 1.7;
}

.service-request-side {
  margin-top: 28px;
  padding: 28px;
  border-radius: 26px;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.14);
}

.service-request-side h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.2;
}

.service-request-side ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-request-side li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 30px;
  color: #d1d5db;
  font-weight: 700;
  line-height: 1.5;
}

.service-request-side li:last-child {
  margin-bottom: 0;
}

.service-request-side li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: 900;
}

.service-request-form {
  padding: 36px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}

.service-request-form .form-grid {
  margin-bottom: 18px;
}

.service-request-note {
  margin: 0 0 22px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.service-request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.service-request-whatsapp {
  background: #22c55e;
  border-color: #22c55e;
  color: #ffffff;
}

.service-request-whatsapp:hover {
  background: #16a34a;
  border-color: #16a34a;
  color: #ffffff;
}

@media (max-width: 980px) {
  .service-request-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .service-request-form,
  .service-request-side {
    padding: 26px;
    border-radius: 22px;
  }

  .service-request-actions .btn {
    width: 100%;
  }
}



/* =========================
   Extra form + footer polish
========================= */

.service-request-form .form-section-title {
  grid-column: 1 / -1;
  margin: 22px 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.service-request-form .form-section-title:first-child {
  margin-top: 0;
}

.service-request-form .form-section-title h3 {
  margin: 0;
  color: #0b2454;
  font-size: 22px;
  font-weight: 900;
}

.service-request-form select {
  appearance: auto;
}

.footer-contact-icon {
  width: 22px;
  min-width: 22px;
  display: inline-flex;
  justify-content: center;
  margin-top: 2px;
}

.footer-links-list a[data-i18n],
.footer-bottom a[data-i18n] {
  transition: color 0.2s ease;
}

.legal-content h2 {
  scroll-margin-top: 120px;
}


/* =========================
   Mobile Header Dropdown Fix
========================= */

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  background: #ffffff;
  color: #111827;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-toggle:hover {
  background: #f59e0b;
  border-color: #f59e0b;
}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .site-header .container {
    width: calc(100% - 28px);
  }

  .header-content {
    min-height: auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
  }

  .logo {
    grid-column: 1;
    order: 1;
  }

  .logo img {
    height: 54px;
    max-width: 125px;
  }

  .language-switch {
    grid-column: 2;
    order: 2;
    justify-self: end;
    margin-left: 0;
  }

  .lang-btn {
    padding: 8px 11px;
    font-size: 13px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    grid-column: 3;
    order: 3;
    justify-self: end;
  }

  .header-phone {
    grid-column: 1 / -1;
    order: 4;
    justify-self: stretch;
    text-align: center;
    padding: 12px 16px;
    font-size: 15px;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 5;
    display: none;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    padding: 10px 0 0;
    border-top: 1px solid #e5e7eb;
  }

  .site-header.nav-open .main-nav {
    display: grid;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #ffffff;
    text-align: center;
    font-size: 14px;
    line-height: 1.25;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a:focus {
    background: #f59e0b;
    color: #111827;
    border-color: #f59e0b;
  }

  .site-header.nav-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.nav-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 420px) {
  .header-content {
    grid-template-columns: auto 1fr auto;
  }

  .logo img {
    height: 50px;
    max-width: 115px;
  }

  .lang-btn {
    padding: 7px 10px;
    font-size: 12px;
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
  }
}
