/* MS Express - Site vitrine - Design system Black + Gold */

:root {
  --bg: #ffffff;
  --bg-soft: #faf7ef;
  --bg-tag: #fbf3dc;
  --bg-tag-soft: #fdf9ec;
  --text: #0a0a0a;
  --text-strong: #000000;
  --text-soft: #4a4a4a;
  --text-muted: #8a8a8a;
  --accent: #d4af37;
  --accent-dark: #a8841c;
  --accent-light: #e6c66a;
  --accent-bg: rgba(212, 175, 55, 0.12);
  --accent-bg-strong: rgba(212, 175, 55, 0.2);
  --accent-border: #e8d48a;
  --border: #ece8dc;
  --border-strong: #cfc7b0;
  --hero-bg: #0a0a0a;
  --hero-bg-2: #1c1a14;
  --star: #d4af37;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-pill: 100px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.3);
  --max-w: 1200px;
  --gutter: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.18s ease;
}

a:hover {
  color: var(--accent-dark);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Generic icon */
.icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

/* Logo with mark */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.logo:hover {
  color: var(--text);
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--text);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.18s ease;
}

.logo:hover .logo-mark {
  transform: rotate(-3deg);
}

.logo-mark svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.logo-text {
  font-weight: 900;
  letter-spacing: 0.5px;
}

.logo-text em,
.logo-accent {
  color: var(--accent);
  font-style: normal;
}

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

.nav-menu a {
  color: var(--text-soft);
  font-size: 14.5px;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
  text-decoration: none;
}

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

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

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: background 0.18s ease, transform 0.18s ease;
}

.nav-cta:hover {
  background: var(--accent-dark);
  color: #fff !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.nav-toggle-bar {
  position: relative;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: background 0.2s ease;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.nav-toggle-bar::before {
  top: -7px;
}

.nav-toggle-bar::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Sections ===== */
.section {
  padding: 96px 0;
}

.section--narrow {
  padding: 64px 0;
}

.section--soft {
  background: var(--bg-soft);
}

.section--dark {
  background: var(--hero-bg);
  color: #fff;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-tag);
  color: var(--accent-dark);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid var(--accent-border);
}

.section--dark .section-eyebrow {
  background: var(--accent-bg-strong);
  color: var(--accent-light);
  border-color: rgba(212, 175, 55, 0.45);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -1.4px;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--text);
}

.section--dark .section-title {
  color: #fff;
}

.section-title em {
  color: var(--accent);
  font-style: normal;
}

.section-sub {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.6;
}

.section--dark .section-sub {
  color: rgba(255, 255, 255, 0.75);
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, var(--hero-bg) 0%, var(--hero-bg-2) 100%);
  color: #fff;
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(
    ellipse at center,
    rgba(212, 175, 55, 0.22),
    transparent 60%
  );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.1),
    transparent 60%
  );
  pointer-events: none;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-bg-strong);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--accent-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-tag svg {
  width: 14px;
  height: 14px;
}

.hero-title {
  font-size: clamp(36px, 5.4vw, 56px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: #fff;
}

.hero-title em {
  color: var(--accent);
  font-style: normal;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 60%,
    rgba(212, 175, 55, 0.28),
    transparent 60%
  );
}

.hero-visual svg {
  width: 60%;
  height: 60%;
  color: var(--accent);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 12px 30px rgba(212, 175, 55, 0.45));
  stroke-width: 1.4;
}

.hero-visual--logo {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 460px;
  justify-self: end;
  margin-left: 0;
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(212, 175, 55, 0.22);
}

.hero-visual--logo img {
  position: relative;
  z-index: 2;
  width: 86%;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(212, 175, 55, 0.35));
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease,
    border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--text);
  color: var(--text);
}

.btn-on-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-on-dark:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* ===== Stats band ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ===== Cards (services / features) ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent-light);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg-tag);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-dark);
}

.card-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

.card-title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
  color: var(--text);
}

.card-text {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}

.card-link {
  margin-top: auto;
  padding-top: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-link:hover {
  color: var(--accent-dark);
}

/* ===== Service detail blocks ===== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 88px;
}

.service-block:nth-child(even) .service-block-visual {
  order: -1;
}

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

.service-block-visual {
  background: linear-gradient(135deg, var(--hero-bg) 0%, var(--hero-bg-2) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-block-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(212, 175, 55, 0.28),
    transparent 60%
  );
}

.service-block-visual svg {
  width: 50%;
  height: 50%;
  color: var(--accent);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.4));
  stroke-width: 1.4;
}

.service-block-tag {
  display: inline-block;
  background: var(--bg-tag);
  color: var(--accent-dark);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid var(--accent-border);
}

.service-block-title {
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 14px;
  line-height: 1.15;
  color: var(--text);
}

.service-block-text {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.service-list {
  list-style: none;
  margin-bottom: 26px;
}

.service-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-tag);
  border: 1px solid var(--accent-border);
}

.service-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--accent-dark);
  border-bottom: 2px solid var(--accent-dark);
  transform: rotate(-45deg);
}

/* ===== Pillars ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.pillar {
  text-align: center;
}

.pillar-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: var(--bg-tag);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
}

.section--dark .pillar-icon {
  background: var(--accent-bg-strong);
  border-color: rgba(212, 175, 55, 0.45);
  color: var(--accent);
}

.pillar-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
}

.pillar-title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}

.pillar-text {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
  max-width: 320px;
  margin: 0 auto;
}

.section--dark .pillar-text {
  color: rgba(255, 255, 255, 0.72);
}

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(135deg, var(--hero-bg) 0%, var(--hero-bg-2) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -5%;
  width: 50%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.25),
    transparent 60%
  );
  pointer-events: none;
}

.cta-band-content {
  position: relative;
  max-width: 600px;
  z-index: 2;
}

.cta-band-title {
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 8px;
  line-height: 1.15;
  color: #fff;
}

.cta-band-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.6;
}

.cta-band .hero-ctas {
  position: relative;
  z-index: 2;
}

/* ===== Page hero ===== */
.page-hero {
  background: linear-gradient(135deg, var(--hero-bg) 0%, var(--hero-bg-2) 100%);
  color: #fff;
  padding: 72px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(
    ellipse,
    rgba(212, 175, 55, 0.18),
    transparent 60%
  );
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.page-hero .hero-tag {
  margin-bottom: 18px;
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 16px;
  color: #fff;
}

.page-hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}

/* ===== Fleet (flotte page) ===== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.fleet-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent-light);
}

.fleet-card-visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--hero-bg) 0%, var(--hero-bg-2) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.fleet-card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 60%,
    rgba(212, 175, 55, 0.22),
    transparent 60%
  );
}

.fleet-card-visual svg {
  width: 50%;
  height: 50%;
  color: var(--accent);
  position: relative;
  z-index: 2;
  stroke-width: 1.5;
}

.fleet-card-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}

.fleet-specs {
  list-style: none;
  margin: 14px 0 0;
}

.fleet-specs li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--text-soft);
}

.fleet-specs li strong {
  color: var(--text);
  font-weight: 700;
}

/* ===== About page ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 88px;
}

.about-grid:last-child {
  margin-bottom: 0;
}

.about-grid:nth-child(even) .about-grid-visual {
  order: -1;
}

.about-grid-visual {
  background: linear-gradient(135deg, var(--hero-bg) 0%, var(--hero-bg-2) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-grid-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(212, 175, 55, 0.28),
    transparent 60%
  );
}

.about-grid-visual svg {
  width: 50%;
  height: 50%;
  color: var(--accent);
  position: relative;
  z-index: 2;
  stroke-width: 1.4;
}

.about-grid h2 {
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 14px;
  line-height: 1.15;
}

.about-grid p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.value {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: left;
}

.value-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.value-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}

.value-text {
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact-form h2 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.6px;
  margin-bottom: 6px;
}

.contact-form-sub {
  color: var(--text-soft);
  font-size: 14.5px;
  margin-bottom: 24px;
}

.field {
  margin-bottom: 16px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-tag);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-dark);
}

.info-card-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.info-card-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.info-card-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
}

.info-card-value a {
  color: var(--text);
}

.info-card-value a:hover {
  color: var(--accent);
}

/* ===== Testimonials / Avis ===== */
.rating-banner {
  background: linear-gradient(135deg, var(--bg-tag) 0%, #f3e2a8 100%);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.rating-score {
  display: flex;
  align-items: center;
  gap: 20px;
}

.rating-number {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--text);
  line-height: 1;
}

.rating-stars {
  display: flex;
  gap: 4px;
  color: var(--star);
  margin-bottom: 6px;
}

.rating-stars svg {
  width: 22px;
  height: 22px;
}

.rating-meta {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 600;
}

.rating-cta-text {
  flex: 1;
  min-width: 240px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.5;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--star);
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 22px;
  flex: 1;
}

.testimonial-quote::before {
  content: "\201C";
  display: block;
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 4px;
  font-weight: 700;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hero-bg), var(--hero-bg-2));
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--text-strong);
  color: rgba(255, 255, 255, 0.72);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 18px;
  display: inline-flex;
}

.footer-brand .logo-mark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand-text {
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 320px;
}

.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Utilities ===== */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 48px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-grid,
  .service-block,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-block:nth-child(even) .service-block-visual,
  .about-grid:nth-child(even) .about-grid-visual {
    order: 0;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 56px 0 72px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    top: 71px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 20px var(--gutter) 28px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.25s ease;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  }

  .nav-menu.is-open {
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .nav-menu a.active::after {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 40px 28px;
    text-align: center;
    flex-direction: column;
    align-items: stretch;
  }

  .cta-band-content {
    text-align: center;
  }

  .rating-banner {
    padding: 28px;
  }

  .rating-score {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .rating-number {
    font-size: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
