:root {
  --bg: #070b10;
  --surface: #0d141d;
  --surface2: #111b26;
  --text: #f5f8fb;
  --muted: #9ca9b7;
  --blue: #0d2d52;
  --blue2: #638ec5;
  --blue-glow: rgba(13, 45, 82, 0.25);
  --line: rgba(255, 255, 255, 0.09);
  --line-light: #dbe1e6;
  --card-bg: #0e1722;
  --card-border: #1c2c3d;
  --card-border-hover: #0d2d52;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #151b22;
  background: #fff;
  line-height: 1.55;
}

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

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

/* TOPLINE */
.topline {
  background: #05080c;
  color: #82909e;
  font-size: 12px;
  border-bottom: 1px solid var(--line);
}

.top-inner {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-inner a {
  color: #fff;
  font-weight: 700;
  transition: color 0.2s;
}

.top-inner a:hover {
  color: var(--blue2);
}

/* HEADER & BRAND LOGO */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 10, 15, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 4px 0;
}

.brand img {
  height: 58px;
  width: auto;
  max-width: 270px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 16px rgba(13, 45, 82, 0.25));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.brand:hover img {
  transform: scale(1.03);
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 22px rgba(13, 45, 82, 0.4));
}

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

.nav a {
  color: #d6dee7;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 28px 0;
  position: relative;
  transition: color 0.2s;
}

.nav a.active,
.nav a:hover {
  color: var(--blue2);
}

.nav a.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue2);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.header-phone small {
  display: block;
  color: #638ec5;
  font-size: 10px;
  font-weight: 700;
}

.phone-icon {
  width: 35px;
  height: 35px;
  border: 1px solid #0d2d52;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #638ec5;
}

.menu-toggle {
  display: none;
  background: none;
  color: white;
  border: 0;
  font-size: 26px;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  min-height: 640px;
  position: relative;
  overflow: hidden;
  background: #09111a;
  color: #fff;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-scrap-yard.jpg");
  background-size: cover;
  background-position: center right;
  filter: saturate(1.1) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 11, 17, 0.96) 0%, rgba(6, 11, 17, 0.85) 38%, rgba(6, 11, 17, 0.25) 75%, rgba(6, 11, 17, 0.45) 100%),
    linear-gradient(0deg, rgba(5, 9, 14, 0.6) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 85px;
  max-width: 1180px;
}

.eyebrow {
  display: inline-block;
  color: #638ec5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.hero h1 {
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  margin: 17px 0 25px;
  max-width: 760px;
}

.hero h1 span,
.hero h1 span,
.dark-section h2 span,
.cta h2 span {
  color: #638ec5;
}

.section-heading h2 span,
.about h2 span,
.center-heading h2 span,
.contact h2 span {
  color: #0d2d52;
}

.hero p {
  max-width: 610px;
  color: #c6d0da;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 32px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background: #0d2d52;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px rgba(13, 45, 82, 0.25);
}

.btn-primary:hover {
  background: #081d36;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 45, 82, 0.4);
}

.btn-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #ffffff;
  border: 1px solid rgba(37, 211, 102, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn-whatsapp svg {
  color: #25d366;
  transition: color 0.2s ease;
}

.btn-whatsapp:hover {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover svg {
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #0d2d52;
  border: 1px solid rgba(13, 45, 82, 0.4);
}

.btn-outline:hover {
  background: #0d2d52;
  color: #ffffff;
  border-color: #0d2d52;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(13, 45, 82, 0.25);
}

.hero-points {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: #b9c5d1;
  font-size: 12px;
  font-weight: 700;
}

.hero-points span:first-child {
  color: #fff}

/* TRUSTBAR */
.trustbar {
  background: #0a1c32;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  transition: background 0.25s ease;
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(99, 142, 197, 0.12);
  border: 1px solid rgba(99, 142, 197, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #749cd1;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.trust-item:hover .trust-icon {
  background: #0d2d52;
  color: #ffffff;
  border-color: #638ec5;
  transform: scale(1.06);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-text small {
  font-size: 10px;
  font-weight: 800;
  color: #638ec5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-text strong {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}

/* SECTIONS COMMON */
.section {
  padding: 100px 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 48px;
}

.section-heading h2,
.about h2,
.area-section h2,
.center-heading h2,
.contact h2 {
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 12px 0 0;
  max-width: 680px;
}

.section-heading p {
  max-width: 430px;
  color: #687684;
  margin: 0;
}

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

.service-card {
  min-height: 280px;
  padding: 34px 30px;
  border: 1px solid #e1e8f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(11, 25, 40, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 16px 36px rgba(13, 45, 82, 0.14);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13, 45, 82, 0.22);
  background: rgba(13, 45, 82, 0.06);
  border-radius: 8px;
  color: var(--blue);
  margin-bottom: 24px;
  transition: all 0.25s ease;
}

.service-card:hover .service-icon {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(13, 45, 82, 0.3);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0c1520;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.service-card p {
  color: #5c6c7c;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 20px;
  flex-grow: 1;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: gap 0.2s ease, color 0.2s ease;
}

.service-card:hover a {
  color: var(--blue2);
  gap: 10px;
}

/* ==========================================================================
   CONTAINER & SAMMELBEHÄLTER SECTION (REVAMPED & PHOTO-RICH)
   ========================================================================== */
.dark-section {
  background: #080d14;
  color: white;
  position: relative;
  overflow: hidden;
}

.dark-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 300px;
  background: radial-gradient(circle at 50% 0%, rgba(13, 45, 82, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.section-heading.light h2 {
  color: #fff;
}

.section-heading.light p {
  color: #9cb0c3;
}

/* Container Filters */
.container-filter-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.filter-btn {
  background: #0e1722;
  border: 1px solid #1b2d40;
  color: #9eb0c3;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background: #142233;
  color: #fff;
  border-color: #2a4664;
}

.filter-btn.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 15px rgba(13, 45, 82, 0.35);
}

/* Container Cards Grid */
.container-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.container-card-revamp {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.container-card-revamp:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 24px rgba(13, 45, 82, 0.16);
}

/* Card Image & Badges */
.card-media-wrap {
  position: relative;
  height: 220px;
  width: 100%;
  background: #06090e;
  overflow: hidden;
}

.card-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.container-card-revamp:hover .card-media-wrap img {
  transform: scale(1.05);
}

.card-badge-vol {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13, 45, 82, 0.92);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.card-badge-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(13, 20, 29, 0.85);
  backdrop-filter: blur(8px);
  color: #7b9ec9;
  border: 1px solid rgba(91, 149, 214, 0.3);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}

/* Card Content */
.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-body h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.card-desc {
  color: #8c9eb2;
  font-size: 13px;
  line-height: 1.45;
  margin: 0 0 18px;
}

/* Specs list */
.card-specs {
  background: #070d14;
  border: 1px solid #14202e;
  border-radius: 4px;
  padding: 12px 14px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
}

.card-specs div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #a2b4c7;
}

.card-specs b {
  color: #638ec5;
  font-weight: 700;
}

.card-specs span {
  color: #e2ecf5;
  font-weight: 600;
  text-align: right;
}

/* Card Button */
.card-action {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.card-action .btn {
  width: 100%;
  padding: 12px 16px;
  font-size: 12px;
  border-radius: 4px;
}

/* Container Benefits Bar */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
  background: #0d151f;
  border: 1px solid #1c2c3d;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.benefits > div {
  display: flex;
  gap: 14px;
  padding: 22px 20px;
  border-right: 1px solid #1c2c3d;
  align-items: center;
  color: #9ba8b4;
  font-size: 12px;
  transition: background 0.25s ease;
}

.benefits > div:hover {
  background: rgba(13, 45, 82, 0.22);
}

.benefits > div:last-child {
  border-right: 0;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(99, 142, 197, 0.1);
  border: 1px solid rgba(99, 142, 197, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #638ec5;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.benefits > div:hover .benefit-icon {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.45);
  color: #25d366;
  transform: scale(1.05);
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.3);
}

.benefits b {
  display: block;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 3px;
  line-height: 1.25;
}

.benefits span {
  display: block;
  color: #8fa0b2;
  font-size: 12px;
  line-height: 1.4;
}

/* Container Info Callout */
.container-info-banner {
  margin-top: 26px;
  background: linear-gradient(135deg, rgba(13, 45, 82, 0.28) 0%, rgba(13, 22, 32, 0.7) 100%);
  border: 1px solid rgba(99, 142, 197, 0.22);
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.banner-info-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 280px;
}

.container-info-banner p {
  margin: 0;
  color: #c9dbed;
  font-size: 13.5px;
  line-height: 1.5;
}

.container-info-banner p strong {
  color: #ffffff;
}

/* ABOUT SECTION */
.about {
  background: #f2f4f5;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.about-copy p {
  color: #62707d;
  max-width: 550px;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 35px;
  color: #1e2a34;
  font-size: 13px;
  font-weight: 800;
}

.check-list div::first-letter {
  color: #0d2d52;
}

/* ABOUT VISUAL CARD */
.about-visual-card {
  background: linear-gradient(145deg, #0b141f 0%, #060a0f 100%);
  border: 1px solid #1a2a3b;
  border-radius: 8px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 30px rgba(13, 45, 82, 0.08);
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
  overflow: hidden;
}

.about-visual-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(13, 45, 82, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.about-card-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 22px;
}

.about-brand-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
}

.about-main-logo {
  height: 54px;
  width: auto;
  max-width: 270px;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.7));
  transition: transform 0.25s ease;
}

.about-visual-card:hover .about-main-logo {
  transform: scale(1.02);
}

.verified-pill-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.45);
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.3), inset 0 0 10px rgba(37, 211, 102, 0.1);
  padding: 6px 14px;
  border-radius: 9999px;
  color: #f0fdf4;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.glow-check-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #25d366;
  color: #04140a;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 12px #25d366, 0 0 4px #25d366;
  flex-shrink: 0;
}

.about-card-header p {
  margin: 4px 0 0;
  color: #8c9eb2;
  font-size: 13px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-stat-item {
  background: rgba(13, 22, 34, 0.7);
  border: 1px solid #172738;
  border-radius: 6px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.2s, border-color 0.2s;
}

.about-stat-item:hover {
  transform: translateY(-2px);
  border-color: #0d2d52;
}

.stat-num {
  font-size: 28px;
  font-weight: 900;
  color: #638ec5;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stat-label {
  font-size: 12px;
  color: #c0d1e2;
  font-weight: 600;
}

.about-card-pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 6px;
}

.about-card-pills span {
  font-size: 12px;
  color: #9eb1c4;
  font-weight: 700;
}

.about-card-pills span::first-letter {
  color: #638ec5;
}

/* AREA SECTION - MODERN, CLEAN & PSYCHOLOGICALLY CONVERTING */
.area-section {
  background: #060b11;
  color: #fff;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.area-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 50px;
}

.area-intro h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin: 10px 0 14px;
  color: #fff;
  letter-spacing: -0.02em;
}

.area-intro h2 span {
  color: #638ec5;
}

.area-lead {
  color: #9cb0c3;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.sales-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sales-benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(14, 23, 34, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 16px;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.sales-benefit-item:hover {
  border-color: rgba(37, 211, 102, 0.4);
  background: rgba(14, 23, 34, 0.9);
  transform: translateX(4px);
}

.glow-check-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid #25d366;
  color: #25d366;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.45);
  flex-shrink: 0;
}

.sales-benefit-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sales-benefit-item strong {
  font-size: 14px;
  color: #f5f8fb;
  font-weight: 700;
}

.sales-benefit-item span {
  font-size: 12px;
  color: #8c9eb2;
}

/* RIGHT: CLEAN REGION QUICK-CARD */
.area-quick-card {
  background: linear-gradient(145deg, #0d1723 0%, #081018 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(13, 45, 82, 0.25);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.area-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.radar-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.radar-ping {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 10px #25d366;
  animation: wa-dot-blink 1.8s infinite ease-in-out;
}

.radius-pill {
  font-size: 11px;
  font-weight: 700;
  color: #638ec5;
  background: rgba(99, 142, 197, 0.12);
  border: 1px solid rgba(99, 142, 197, 0.3);
  padding: 2px 8px;
  border-radius: 20px;
}

.route-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.route-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #7b91a7;
}

.route-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.route-pills span {
  font-size: 12px;
  color: #d1dce7;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.route-pills span.main-city {
  background: rgba(13, 45, 82, 0.5);
  border-color: rgba(99, 142, 197, 0.5);
  color: #fff;
  font-weight: 700;
}

.route-pills span:hover {
  color: #fff;
  border-color: rgba(37, 211, 102, 0.5);
  background: rgba(37, 211, 102, 0.1);
}

.route-box.secondary {
  padding-top: 6px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.route-pills.small span {
  font-size: 11px;
  color: #8c9eb2;
  padding: 3px 8px;
}

.area-cta-box {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.area-cta-box p {
  margin: 0;
  font-size: 12.5px;
  color: #8c9eb2;
}

.btn-area-inquiry {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.45);
  color: #25d366;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-area-inquiry:hover {
  background: #25d366;
  color: #04140a;
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.4);
}

@media (max-width: 900px) {
  .area-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* PROCESS SECTION */
.process {
  background: white;
}

.center-heading {
  text-align: center;
  margin-bottom: 50px;
}

.center-heading h2 {
  margin-left: auto;
  margin-right: auto;
}

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

.step {
  background: #ffffff;
  border: 1px solid #e2e8ee;
  border-radius: 14px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(13, 45, 82, 0.09);
  border-color: #638ec5;
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(13, 45, 82, 0.06);
  border: 1px solid rgba(13, 45, 82, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d2d52;
  transition: all 0.25s ease;
}

.step:hover .step-icon {
  background: #0d2d52;
  color: #ffffff;
  border-color: #0d2d52;
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(13, 45, 82, 0.22);
}

.step-num {
  font-size: 11px;
  font-weight: 800;
  color: #638ec5;
  background: #f0f4f8;
  border: 1px solid #d9e3ec;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.step h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0d1e31;
  margin: 0 0 10px;
  line-height: 1.25;
}

.step p {
  color: #5d6e7f;
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 960px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 580px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* CTA BANNER */
.cta {
  background: #0a1c32;
  color: white;
  padding: 55px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.cta .eyebrow {
  color: #7b9ec9;
}

.cta h2 {
  font-size: 38px;
  line-height: 1;
  margin: 10px 0;
}

.cta p {
  margin: 0;
  color: #b3cbdf;
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-light {
  background: #ffffff;
  color: #0b141f;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
  background: #f1f5f9;
  color: #0d2d52;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.cta .btn-whatsapp {
  background: rgba(6, 11, 17, 0.85);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cta .btn-whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
  transform: translateY(-2px);
}

/* CONTACT SECTION */
.contact {
  background: #f2f4f5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 50px;
  align-items: start;
}

.contact h2 {
  margin-bottom: 20px;
}

.contact > div > p {
  color: #687684;
  max-width: 560px;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 35px;
}

.contact-detail-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 10px rgba(11, 25, 40, 0.03);
}

.contact-detail-item:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 45, 82, 0.1);
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(13, 45, 82, 0.08);
  border: 1px solid rgba(13, 45, 82, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.contact-detail-item b {
  font-size: 11px;
  text-transform: uppercase;
  color: #0d2d52;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
  display: block;
}

.contact-detail-item span {
  font-weight: 800;
  font-size: 14px;
  color: #0e1722;
  display: block;
  line-height: 1.4;
}

/* CONTACT FORM REVAMP - CLEAN, MODERN & HIGH-CONVERTING */
.contact-form {
  background: #ffffff;
  padding: 34px 30px;
  box-shadow: 0 20px 50px rgba(13, 28, 40, 0.08), 0 4px 14px rgba(0, 0, 0, 0.03);
  border-radius: 16px;
  border: 1px solid #e2e8ee;
}

.form-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.28);
  color: #0b5e28;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.badge-dot-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.9);
}

.form-title {
  font-size: 20px;
  font-weight: 800;
  color: #0e1722;
  margin: 0 0 6px;
  line-height: 1.3;
}

.form-subtitle {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 22px;
  line-height: 1.5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 13px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.mb-14 {
  margin-bottom: 13px;
}

.form-label {
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: #334155;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.req-mark {
  color: #e11d48;
  font-weight: 900;
  margin-left: 2px;
}

.opt-mark {
  font-size: 10.5px;
  font-weight: 500;
  text-transform: none;
  color: #94a3b8;
  margin-left: 4px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  padding: 11px 13px;
  font: inherit;
  font-size: 13.5px;
  color: #0f172a;
  outline: none;
  border-radius: 8px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  margin-top: 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
  font-size: 13px;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
  cursor: pointer;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #ffffff;
  border-color: #0d2d52;
  box-shadow: 0 0 0 3px rgba(13, 45, 82, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 76px;
}

.form-submit-btn {
  width: 100%;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 9px;
  background: #0d2d52;
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(13, 45, 82, 0.18);
  transition: all 0.25s ease;
}

.form-submit-btn:hover {
  background: #143e6d;
  box-shadow: 0 10px 24px rgba(13, 45, 82, 0.26);
  transform: translateY(-2px);
}

.form-trust-badges {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #edf2f7;
}

.form-trust-badges span {
  font-size: 11px;
  font-weight: 700;
  color: #475569;
}

.form-hint {
  text-align: center;
  font-size: 11px;
  color: #8fa0b2;
  margin: 10px 0 0;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .contact-form {
    padding: 22px 18px;
  }
}

/* GOOGLE MAPS CARD */
.map-card-wrap {
  margin-top: 45px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(13, 28, 40, 0.08);
  border: 1px solid #d9e0e6;
}

.map-card-header {
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fbfcfd;
  border-bottom: 1px solid #e5eaef;
  flex-wrap: wrap;
}

.map-card-header h3 {
  margin: 6px 0 2px;
  font-size: 20px;
  color: #10161d;
  font-weight: 800;
}

.map-card-header p {
  margin: 0;
  color: #687684;
  font-size: 13px;
}

.map-frame-container {
  width: 100%;
  height: 380px;
  background: #e5eaef;
}

.map-frame-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* FOOTER */
.footer {
  background: #070b10;
  color: #9aa7b4;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.7fr;
  gap: 45px;
  padding-bottom: 45px;
}

.footer-logo {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.footer h4 {
  color: white;
  margin: 5px 0 15px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer p {
  font-size: 12px;
  line-height: 1.8;
}

.footer a:hover {
  color: #638ec5;
}

.footer-bottom {
  border-top: 1px solid #17212b;
  padding: 18px 0;
  font-size: 11.5px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  color: #7b8b9b;
}

.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  opacity: 0.5;
  transition: opacity 0.25s ease, transform 0.25s ease;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
}

.powered-by:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.powered-by-text {
  font-size: 10.5px;
  font-weight: 500;
  color: #8fa0b2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.powered-by-logo {
  height: 20px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}

@media (max-width: 680px) {
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}

/* FLOATING WHATSAPP BUTTON - MODERN DARK GLASS */
.floating-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 8px;
  background: rgba(10, 16, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45), 0 0 20px rgba(37, 211, 102, 0.15);
  z-index: 999;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(37, 211, 102, 0.6);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.55), 0 0 32px rgba(37, 211, 102, 0.35);
  background: rgba(13, 22, 33, 0.95);
}

.floating-whatsapp-icon-wrap {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-whatsapp-icon {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp:hover .floating-whatsapp-icon {
  transform: scale(1.08) rotate(-5deg);
}

.floating-whatsapp-icon svg {
  width: 24px;
  height: 24px;
}

.floating-whatsapp-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.6;
  z-index: 1;
  animation: wa-pulse 2.4s infinite ease-out;
}

@keyframes wa-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.55);
    opacity: 0;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

.floating-whatsapp-content {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-align: left;
}

.floating-whatsapp-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-whatsapp-name {
  color: #f5f8fb;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.floating-whatsapp-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: #25D366;
  background: rgba(37, 211, 102, 0.12);
  padding: 1px 6px;
  border-radius: 20px;
  border: 1px solid rgba(37, 211, 102, 0.25);
}

.wa-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 6px #25D366;
  animation: wa-dot-blink 1.8s infinite ease-in-out;
}

@keyframes wa-dot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.floating-whatsapp-desc {
  font-size: 11.5px;
  color: #9ca9b7;
  margin-top: 3px;
  font-weight: 400;
}

.floating-whatsapp:hover .floating-whatsapp-desc {
  color: #d1dce7;
}

/* MOBILE BOTTOM QUICK-ACTION TASKBAR */
.mobile-taskbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(6, 11, 17, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 1000;
  grid-template-columns: repeat(4, 1fr);
  padding: 6px 4px env(safe-area-inset-bottom, 6px);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
}

.taskbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 6px;
  padding: 4px 2px;
}

.taskbar-item:active,
.taskbar-item:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.taskbar-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.taskbar-whatsapp {
  color: #25d366;
}

.taskbar-whatsapp .taskbar-icon {
  color: #25d366;
}

/* RESPONSIVE MEDIA QUERIES (MOBILE FIRST ENHANCED) */
@media (max-width: 1080px) {
  .container-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1000px) {
  .nav {
    gap: 14px;
  }
  .nav a {
    font-size: 10px;
  }
  .header-phone {
    display: none;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .benefits {
    grid-template-columns: 1fr 1fr;
  }
  .benefits div:nth-child(2) {
    border-right: 0;
  }
  .benefits div:nth-child(1),
  .benefits div:nth-child(2) {
    border-bottom: 1px solid #182837;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 68px;
  }

  .mobile-taskbar {
    display: grid;
  }

  .floating-whatsapp {
    bottom: 78px;
    right: 16px;
    padding: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .floating-whatsapp-content {
    display: none;
  }

  .floating-whatsapp-icon-wrap {
    width: 48px;
    height: 48px;
  }

  .floating-whatsapp-icon {
    width: 48px;
    height: 48px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 16px rgba(37, 211, 102, 0.4);
  }

  .container {
    width: min(var(--max), calc(100% - 28px));
  }
  .top-inner {
    height: 30px;
  }
  .top-inner span {
    display: none;
  }
  .top-inner {
    justify-content: flex-end;
  }
  .nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: #080d13;
    padding: 16px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 2px solid var(--blue);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    padding: 14px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav a:last-child {
    border-bottom: 0;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 20px;
    cursor: pointer;
    margin-left: auto;
  }
  .brand img {
    height: 46px;
    max-width: 200px;
  }
  .hero {
    min-height: 580px;
  }
  .hero-content {
    padding: 85px 0 60px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero p {
    font-size: 15px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-points {
    flex-direction: column;
    gap: 8px;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-item {
    min-height: 76px;
    padding: 14px 12px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .trust-item:nth-child(2) {
    border-right: 0;
  }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-bottom: 0;
  }
  .section {
    padding: 65px 0;
  }
  .section-heading,
  .cta-inner {
    display: block;
  }
  .section-heading p {
    margin-top: 18px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .container-grid {
    grid-template-columns: 1fr;
  }
  .benefits {
    grid-template-columns: 1fr;
  }
  .benefits div {
    border-right: 0;
    border-bottom: 1px solid #182837;
  }
  .about-grid,
  .area-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-visual-card {
    padding: 24px;
  }
  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .areas {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cta h2 {
    font-size: 30px;
  }
  .cta-actions {
    margin-top: 25px;
  }
  .contact-details {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 20px;
  }
}

/* ==========================================================================
   LEGAL PAGES (IMPRESSUM, DATENSCHUTZ, AGB)
   ========================================================================== */
.legal-page {
  background: #f8fafc;
  color: #1e293b;
}

.legal-main {
  padding: 80px 0 100px;
}

.legal-container {
  max-width: 860px;
  margin: 0 auto;
}

.legal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.legal-back-link:hover {
  transform: translateX(-4px);
  color: #081d36;
}

.legal-main h1 {
  font-size: clamp(32px, 4vw, 48px);
  color: #0d2d52;
  margin: 8px 0 35px;
  letter-spacing: -0.03em;
}

.legal-block {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 30px 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(13, 45, 82, 0.04);
}

.legal-block h2 {
  font-size: 20px;
  color: #0d2d52;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 10px;
}

.legal-block h3 {
  font-size: 15px;
  color: #1e293b;
  margin: 18px 0 8px;
}

.legal-block p {
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 12px;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block a {
  color: var(--blue);
  text-decoration: underline;
}

.legal-block a:hover {
  color: #081d36;
}
