/* ============================================================
   HERMAN TRANSPORT & RAUMUNG — Premium Design
   Palette: Deep Navy + Gold | Montserrat + Open Sans
   ============================================================ */

:root {
  --navy-950: #071223;
  --navy-900: #0b1b33;
  --navy-850: #0e2240;
  --navy-800: #12294d;
  --navy-700: #1a3560;
  --navy-600: #23477d;
  --gold: #c9a227;
  --gold-2: #e0b93f;
  --gold-soft: rgba(201, 162, 39, 0.14);
  --gold-line: rgba(201, 162, 39, 0.35);
  --cream: #faf8f2;
  --cream-2: #f2eee3;
  --white: #ffffff;
  --ink: #0e1f38;
  --muted: #5c6a7d;
  --line: #e5dfd1;
  --radius: 14px;
  --shadow: 0 18px 45px rgba(11, 27, 51, 0.10);
  --shadow-lg: 0 30px 70px rgba(11, 27, 51, 0.18);
  --font-head: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink);
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

section { padding: 96px 0; }

/* ---------- Section header ---------- */
.section-head { max-width: 780px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.section-head.center .eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.section-head h2 {
  margin-top: 18px;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}
.section-head p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy-950);
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.35);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(201, 162, 39, 0.45);
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-2);
  transform: translateY(-3px);
}
.btn-navy {
  background: var(--navy-900);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--gold);
  color: var(--navy-950);
  transform: translateY(-3px);
}
.btn-outline-navy {
  border: 1px solid var(--navy-700);
  color: var(--navy-900);
}
.btn-outline-navy:hover {
  background: var(--navy-900);
  color: var(--white);
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
}
.topbar a { transition: color 0.25s; }
.topbar a:hover { color: var(--gold-2); }
.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 22px; align-items: center; }
.topbar i { color: var(--gold); margin-right: 7px; }
.topbar-rating i { color: var(--gold-2); margin-right: 3px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(11, 27, 51, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  flex-wrap: nowrap;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img { height: 38px; width: auto; }
.logo-text { display: none; }

.main-nav { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.main-nav a {
  position: relative;
  padding: 7px 9px;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.25s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
}
.header-phone i {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  transition: all 0.3s;
}
.header-phone:hover i { background: var(--gold); color: var(--navy-950); }
.header-phone small { display: block; font-size: 0.62rem; font-weight: 500; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; }
.header-cta .btn { padding: 12px 22px; font-size: 0.85rem; white-space: nowrap; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile nav ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--navy-950);
  display: flex;
  flex-direction: column;
  padding: 100px 28px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  padding: 16px 0;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav a i { color: var(--gold); margin-right: 14px; font-size: 0.95rem; }
.mobile-nav .btn { margin-top: 26px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(201, 162, 39, 0.16), transparent 60%),
    linear-gradient(140deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-850) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  padding: 90px 0 110px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--gold-line);
  border-radius: 100px;
  background: rgba(201, 162, 39, 0.1);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.6);
  animation: pulse-dot 2.2s ease-out infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(201, 162, 39, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0); }
}

.hero h1 {
  margin-top: 26px;
  font-size: clamp(2.7rem, 6vw, 4.4rem);
  color: var(--white);
  font-weight: 900;
}
.hero h1 .gold { color: var(--gold-2); }
.hero p {
  margin-top: 24px;
  max-width: 560px;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.72);
}
.hero-actions {
  margin-top: 38px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 18px;
  justify-content: start;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 26px;
}
.hero-stat { display: flex; align-items: center; gap: 10px; }
.hero-stat i { color: var(--gold); }
.hero-stat span { font-size: 0.86rem; color: rgba(255, 255, 255, 0.75); }

.hero-visual { position: relative; }
.hero-visual .frame {
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  z-index: 0;
}
.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/4.6;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero-flag {
  position: absolute;
  z-index: 2;
  left: -22px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  color: var(--ink);
}
.hero-flag i { color: var(--gold); font-size: 1.2rem; }
.hero-flag b { font-family: var(--font-head); font-size: 0.9rem; display: block; }
.hero-flag span { font-size: 0.76rem; color: var(--muted); }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--gold);
  overflow: hidden;
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee span {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-950);
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.marquee span::after { content: "\f111"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 8px; color: var(--navy-950); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- About / stats ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%;
  aspect-ratio: 4/3.4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-media::after {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  z-index: -1;
}
.about-badge {
  position: absolute;
  right: -18px;
  top: -18px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--navy-950);
  box-shadow: var(--shadow);
}
.about-badge b { font-family: var(--font-head); font-size: 1.35rem; line-height: 1; display: block; }
.about-badge small { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

.about-text p { color: var(--muted); margin-top: 18px; }
.about-list { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.95rem; }
.about-list li i { color: var(--gold); }

.stats-band {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(11, 27, 51, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stat-card .num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy-900);
  line-height: 1;
}
.stat-card .num small { color: var(--gold); font-size: 2rem; }
.stat-card b { display: block; margin-top: 12px; font-family: var(--font-head); font-size: 0.95rem; }
.stat-card span { font-size: 0.85rem; color: var(--muted); }

/* ---------- Services ---------- */
.services {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card.featured { grid-column: span 2; grid-row: span 2; }
.service-card .thumb { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.service-card:hover .thumb img { transform: scale(1.07); }
.service-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 18, 35, 0.55), transparent 55%);
}
.service-card .icon {
  position: relative;
  z-index: 2;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  margin: -26px 0 0 26px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 10px;
  color: var(--navy-950);
  font-size: 1.25rem;
  box-shadow: 0 10px 22px rgba(201, 162, 39, 0.4);
}
.service-body { padding: 42px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { font-size: 1.3rem; }
.service-body p { margin-top: 12px; color: var(--muted); font-size: 0.95rem; flex: 1; }
.service-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-900);
  transition: color 0.25s;
}
.service-link i { transition: transform 0.25s; }
.service-link:hover { color: var(--gold); }
.service-link:hover i { transform: translate(3px, -3px); }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.service-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-700);
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ---------- Specialties (dark) ---------- */
.specialties {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-850));
  color: var(--white);
}
.specialties .section-head h2 { color: var(--white); }
.specialties .section-head p { color: rgba(255, 255, 255, 0.6); }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.spec-card {
  background: var(--navy-850);
  padding: 34px 28px;
  transition: background 0.3s ease;
}
.spec-card:hover { background: var(--navy-700); }
.spec-card i { font-size: 1.7rem; color: var(--gold-2); }
.spec-card h3 { margin-top: 18px; font-size: 1.05rem; color: var(--white); }
.spec-card p { margin-top: 10px; font-size: 0.88rem; color: rgba(255, 255, 255, 0.6); }
.spec-card .line {
  display: block;
  margin-top: 22px;
  height: 2px;
  width: 34px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.spec-card:hover .line { width: 64px; }

/* ---------- Process (Transport) ---------- */
.process-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: start;
}
.process-list { margin-top: 34px; }
.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.process-step:first-child { border-top: 1px solid var(--line); }
.process-step .num {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.process-step h3 { font-size: 1.15rem; }
.process-step p { margin-top: 6px; color: var(--muted); font-size: 0.94rem; }

.transport-side .panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(11, 27, 51, 0.08);
  overflow: hidden;
}
.transport-side .panel img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.transport-side .panel-body { padding: 30px; }
.transport-side h3 { font-size: 1.2rem; }
.check-list { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; font-weight: 600; }
.check-list li i { color: var(--gold); margin-top: 3px; }
.transport-side .btn { margin-top: 26px; }

/* ---------- Before / After ---------- */
.compare {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.compare-wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  box-shadow: var(--shadow-lg);
}
.compare-wrap img.base { position: absolute; top: 0; left: 0; width: 100%; height: 175%; object-fit: cover; object-position: top; }
.compare-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 50% 0 0);
}
.compare-before img { position: absolute; top: 0; left: 0; width: 100%; height: 175%; object-fit: cover; object-position: top; }
.compare-label {
  position: absolute;
  top: 16px;
  padding: 7px 16px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 100px;
}
.compare-label.before { left: 16px; background: rgba(7, 18, 35, 0.8); color: var(--white); }
.compare-label.after { right: 16px; background: var(--gold); color: var(--navy-950); }
.compare-handle {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
}
.compare-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230b1b33' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m18 8 4 4-4 4'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='m6 8-4 4 4 4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  cursor: ew-resize;
}
.compare-list { display: grid; gap: 22px; }
.compare-item {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}
.compare-item h3 { font-size: 1.12rem; }
.compare-item p { margin-top: 6px; color: var(--muted); font-size: 0.92rem; }
.compare-list .btn { margin-top: 14px; }

/* ---------- Warehouse ---------- */
.lager-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.lager-features { margin-top: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.lager-feature { border-top: 1px solid var(--line); padding-top: 20px; }
.lager-feature i { font-size: 1.4rem; color: var(--gold); }
.lager-feature h3 { margin-top: 14px; font-size: 1.05rem; }
.lager-feature p { margin-top: 8px; color: var(--muted); font-size: 0.9rem; }
.lager-media { position: relative; }
.lager-media img { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lager-flag {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  background: rgba(7, 18, 35, 0.88);
  backdrop-filter: blur(6px);
  border: 1px solid var(--gold-line);
  border-radius: 10px;
  padding: 18px 22px;
  color: var(--white);
}
.lager-flag b { font-family: var(--font-head); color: var(--gold-2); font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; }
.lager-flag p { margin-top: 6px; font-size: 0.98rem; font-weight: 600; }

/* ---------- Fleet ---------- */
.fleet {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-850));
  color: var(--white);
  overflow: hidden;
}
.fleet .section-head h2 { color: var(--white); }
.fleet-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
.fleet-arrows { display: flex; gap: 12px; margin-bottom: 6px; }
.fleet-arrows button {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: var(--white);
  transition: all 0.3s;
}
.fleet-arrows button:hover { border-color: var(--gold); color: var(--gold-2); }
.fleet-track {
  margin-top: 46px;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: none;
}
.fleet-track::-webkit-scrollbar { display: none; }
.fleet-card {
  scroll-snap-align: start;
  flex: 0 0 calc(33.333% - 15px);
  min-width: 260px;
}
.fleet-card .thumb {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy-700);
}
.fleet-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.fleet-card:hover .thumb img { transform: scale(1.06); }
.fleet-card figcaption { margin-top: 16px; }
.fleet-card b { font-family: var(--font-head); color: var(--white); }
.fleet-card span { display: block; margin-top: 4px; font-size: 0.86rem; color: rgba(255, 255, 255, 0.55); }

/* ---------- Quote ---------- */
.quote-band {
  background: var(--cream-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.quote-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
.quote-card { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.quote-card i.fa-quote-left { font-size: 1.4rem; color: var(--gold); }
.quote-card p { margin-top: 16px; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; line-height: 1.5; }
.quote-card .meta { margin-top: 18px; display: flex; justify-content: space-between; align-items: center; }
.quote-card .stars { color: var(--gold-2); font-size: 0.85rem; }
.quote-card small { color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.72rem; font-weight: 700; }

/* ---------- Reviews ---------- */
.reviews { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.review-summary { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; margin-bottom: 54px; }
.rating-box {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 34px;
  background: var(--navy-900);
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: var(--shadow);
}
.rating-box .big { font-family: var(--font-head); font-size: 3rem; font-weight: 900; color: var(--gold-2); line-height: 1; }
.rating-box .stars { color: var(--gold-2); margin-top: 6px; font-size: 1rem; }
.rating-box small { color: rgba(255, 255, 255, 0.6); font-size: 0.8rem; }
.review-note { color: var(--muted); font-size: 0.92rem; max-width: 420px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(11, 27, 51, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.review-card .stars { color: var(--gold-2); }
.review-card p { margin-top: 14px; font-size: 0.96rem; color: var(--ink); line-height: 1.65; flex: 1; }
.review-card footer { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.review-card .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  color: var(--gold-2);
  font-family: var(--font-head);
  font-weight: 800;
}
.review-card footer b { display: block; font-size: 0.9rem; }
.review-card footer span { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- Area ---------- */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.chips { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s;
}
.chips li i { color: var(--gold); font-size: 0.75rem; }
.chips li:hover { border-color: var(--gold); background: var(--gold-soft); }
.chips-note { margin-top: 24px; color: var(--muted); font-size: 0.88rem; border-top: 1px solid var(--line); padding-top: 18px; }
.area-card {
  background: var(--navy-900);
  border-radius: var(--radius);
  padding: 40px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.area-card > * { position: relative; }
.area-card i.fa-map-location-dot { font-size: 1.6rem; color: var(--gold-2); }
.area-card h3 { margin-top: 16px; color: var(--white); font-size: 1.3rem; }
.area-card p { margin-top: 12px; color: rgba(255, 255, 255, 0.65); font-size: 0.95rem; }
.area-card .btn { margin-top: 26px; }
.area-langs { margin-top: 26px; border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 20px; display: flex; gap: 34px; }
.area-langs div small { display: block; color: rgba(255, 255, 255, 0.45); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; }
.area-langs div b { font-family: var(--font-head); color: var(--white); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: start; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
}
.faq-q h3 { font-size: 1.08rem; color: var(--ink); transition: color 0.25s; }
.faq-q:hover h3 { color: var(--gold); }
.faq-q i {
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  transition: all 0.35s ease;
}
.faq-item.open .faq-q i { background: var(--gold); color: var(--navy-950); transform: rotate(45deg); border-color: var(--gold); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 44px 22px 4px; color: var(--muted); font-size: 0.95rem; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }

/* ---------- Wizard ---------- */
.wizard {
  background: linear-gradient(150deg, var(--navy-950), var(--navy-850));
  color: var(--white);
}
.wizard .section-head h2 { color: var(--white); }
.wizard .section-head p { color: rgba(255, 255, 255, 0.6); }
.wizard-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  overflow: hidden;
}
.wizard-steps {
  display: flex;
  gap: 34px;
  padding: 22px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}
.wiz-step-label { display: flex; align-items: center; gap: 10px; }
.wiz-step-label .dot {
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}
.wiz-step-label span { font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); }
.wiz-step-label.active .dot { background: var(--gold); color: var(--navy-950); }
.wiz-step-label.active span { color: var(--white); }
.wiz-step-label.done .dot { background: var(--gold-soft); border: 1px solid var(--gold-line); color: var(--gold-2); }
.wiz-step-label.done span { color: var(--gold-2); }

.wizard-body { padding: 34px 30px; }
.wizard-step { display: none; }
.wizard-step.active { display: block; animation: wiz-in 0.4s ease both; }
@keyframes wiz-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.wiz-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.wiz-service {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: var(--white);
  text-align: left;
  transition: all 0.3s;
}
.wiz-service:hover { border-color: var(--gold-line); background: rgba(201, 162, 39, 0.07); }
.wiz-service.selected { border-color: var(--gold); background: rgba(201, 162, 39, 0.12); }
.wiz-service i { font-size: 1.2rem; color: var(--gold-2); margin-top: 2px; }
.wiz-service b { font-family: var(--font-head); display: block; }
.wiz-service span { font-size: 0.84rem; color: rgba(255, 255, 255, 0.55); }

.wiz-field { margin-top: 18px; }
.wiz-field label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); margin-bottom: 9px; }
.wiz-field input, .wiz-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color 0.25s;
}
.wiz-field input:focus, .wiz-field textarea:focus { outline: none; border-color: var(--gold); }
.wiz-field input::placeholder, .wiz-field textarea::placeholder { color: rgba(11, 27, 51, 0.4); }
.wiz-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}
.wizard-nav .btn-back {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s;
}
.wizard-nav .btn-back:hover { color: var(--white); }
.wizard-nav .btn-back[disabled] { opacity: 0.3; pointer-events: none; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 14px 40px rgba(11, 27, 51, 0.06);
}
.contact-card h3 { font-size: 1.35rem; }
.contact-card > p { color: var(--muted); font-size: 0.92rem; margin-top: 6px; }
.contact-rows { margin-top: 28px; display: grid; gap: 20px; }
.contact-row { display: flex; gap: 16px; }
.contact-row .ic {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  color: var(--gold);
}
.contact-row small { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.contact-row a, .contact-row span { font-weight: 600; color: var(--ink); }
.contact-row a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 14px 40px rgba(11, 27, 51, 0.06);
}
.contact-form h3 { font-size: 1.35rem; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.contact-form .wiz-field { margin-top: 16px; }
.contact-form .wiz-field label { color: var(--ink); }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.94rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.form-ok {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border: 1px solid var(--gold-line);
  background: var(--gold-soft);
  border-radius: 8px;
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 600;
}
.form-ok.show { display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.65);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 46px;
  padding: 74px 0 50px;
}
.footer-top img { height: 46px; width: auto; }
.footer-top p { margin-top: 18px; font-size: 0.9rem; max-width: 300px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-col h4::after { content: ""; display: block; width: 30px; height: 2px; background: var(--gold); margin-top: 12px; }
.footer-col ul { margin-top: 20px; display: grid; gap: 11px; }
.footer-col ul a { font-size: 0.92rem; transition: color 0.25s; }
.footer-col ul a:hover { color: var(--gold-2); }
.footer-col li { font-size: 0.92rem; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-950); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.footer-bottom a:hover { color: var(--gold-2); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Back to top ---------- */
#toTop {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 80;
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  background: var(--gold);
  border: none;
  border-radius: 10px;
  color: var(--navy-950);
  font-size: 1.05rem;
  box-shadow: 0 12px 28px rgba(201, 162, 39, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
}
#toTop.show { opacity: 1; visibility: visible; transform: none; }
#toTop:hover { transform: translateY(-4px); }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .header-phone { display: none; }
}

@media (max-width: 1100px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner, .about-grid, .process-grid, .compare-grid, .lager-grid, .area-grid { grid-template-columns: 1fr; }
  .hero-inner { gap: 50px; }
  .hero-stats { grid-template-columns: repeat(2, auto); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .quote-inner { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .wiz-services { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .topbar-right { display: none; }
  .topbar-inner { justify-content: center; }
  .header-phone { display: none; }
  .hero-inner { padding: 60px 0 80px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-stats { grid-template-columns: repeat(2, auto); gap: 14px; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: span 1; grid-row: span 1; }
  .spec-grid { grid-template-columns: 1fr; }
  .about-list, .check-list, .lager-features { grid-template-columns: 1fr; }
  .review-summary { flex-direction: column; align-items: flex-start; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .wiz-services { grid-template-columns: 1fr; }
  .wiz-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hero-flag { left: 12px; }
  .area-card { padding: 28px; }
}

@media (max-width: 640px) {
  .topbar-left { font-size: 0.74rem; gap: 14px; }
  .topbar-left span { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats span { font-size: 0.78rem; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-visual .frame { inset: -10px 10px 10px -10px; }
  .contact-card, .contact-form { padding: 26px 22px; }
  .wizard-body { padding: 26px 20px; }
  .wizard-steps { padding: 18px 20px; gap: 22px; }
  .wizard-nav { padding: 16px 20px; }
  .quote-card { padding: 24px 22px; }
  .stat-card { padding: 26px 18px; }
  .stat-card .num { font-size: 2.4rem; }
  .spec-card { padding: 26px 22px; }
  .service-body { padding: 38px 22px 24px; }
  .fleet-card { min-width: 240px; }
  .review-card, .area-card { padding: 24px 20px; }
  .footer-top { padding: 56px 0 40px; }
  .mobile-nav a { font-size: 1.2rem; }
}

@media (max-width: 380px) {
  .logo img { height: 32px; }
  .header-cta .btn { padding: 10px 14px; font-size: 0.78rem; }
  .header-inner { gap: 10px; }
  .hero h1 { font-size: 2.1rem; }
  .hero-badge { font-size: 0.7rem; letter-spacing: 0.1em; padding: 7px 14px; }
  .chips li { font-size: 0.8rem; padding: 8px 12px; }
  .wiz-service { padding: 16px; }
}
