:root {

  --bg: #d6d8df;
  --panel: #ffffff;
  --panel-alt: #cfd3db;
  --accent: #d32f2f;
  --text: #1c2433;
  --muted: #5f6b85;
  --border: #d7ddea;
  --pill: #eef2fb;
  --radius: 16px;
  --shadow: 0 20px 50px rgba(12, 23, 52, 0.12);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;

  background: radial-gradient(circle at 20% 20%, rgba(211, 47, 47, 0.12), transparent 32%),
    radial-gradient(circle at 78% 8%, rgba(74, 144, 226, 0.16), transparent 30%),
    linear-gradient(135deg, #c2c6d0 0%, #cfd3dd 60%, #c2c6d0 100%);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', 'Inter', serif;
  letter-spacing: 0.3px;
  color: #0f1b2d;
  font-weight: 800;
  text-shadow: 0 14px 40px rgba(12, 23, 52, 0.26), 0 2px 0 rgba(255, 255, 255, 0.9), 0 0 16px rgba(211, 47, 47, 0.18);
  font-style: normal;
}

.panel-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  background: none;
  -webkit-background-clip: border-box;
  color: #000000;
}

.panel-header h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 82px;
  height: 4px;
  background: linear-gradient(90deg, rgba(211, 47, 47, 0.9), rgba(74, 144, 226, 0.7));
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(12, 23, 52, 0.15);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6vw;
  background: rgba(248, 249, 252, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 18px rgba(12, 23, 52, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 6px 14px rgba(12, 23, 52, 0.12);
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: var(--text);
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-tag {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 18px;
  font-weight: 600;
  font-size: 14px;
}

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nav a:hover {
  background: var(--pill);
  color: var(--text);
  box-shadow: 0 10px 20px rgba(12, 23, 52, 0.12);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: 0 10px 20px rgba(12, 23, 52, 0.1);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 90px 6vw 60px;
  align-items: center;
}

.hero-content h1 {
  font-family: 'Playfair Display', 'Inter', serif;
  font-size: clamp(34px, 5vw, 52px);
  margin: 10px 0 16px;
  line-height: 1.05;
  font-weight: 800;
  text-shadow: 0 16px 34px rgba(12, 23, 52, 0.22), 0 1px 0 #ffffff, 0 0 22px rgba(211, 47, 47, 0.2);
}

.kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
}

.lede {
  color: var(--muted);
  max-width: 680px;
  margin: 10px 0 24px;
}

.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.pill {
  background: var(--pill);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  background: linear-gradient(120deg, var(--accent), #ff5252);
  border-radius: 14px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(211, 47, 47, 0.35);
}

.cta.secondary {
  background: transparent;
  border: 1px solid rgba(211, 47, 47, 0.35);
  box-shadow: none;
  color: var(--accent);
}

.hero-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
  padding: 10px;
  border: 1px solid var(--border);
}

.card-text h3 {
  margin: 0 0 8px;
}

.panel {
  padding: 70px 6vw;
  background: var(--bg);
}

.panel.alt {
  background: var(--panel-alt);
}

.panel-header {
  max-width: 800px;
  margin-bottom: 30px;
}

.panel-header h2 {
  margin: 8px 0;
  font-size: 30px;
  font-family: 'Playfair Display', 'Inter', serif;
  font-weight: 800;
  text-shadow: 0 10px 24px rgba(12, 23, 52, 0.18), 0 1px 0 #ffffff;
  background: none;
  -webkit-background-clip: border-box;
  color: #000000;
  display: inline-block;
  position: relative;
}

.panel-header h2::after {
  content: "";
  display: block;
  width: 88px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.8), rgba(211, 47, 47, 0.9));
  margin-top: 10px;
  box-shadow: 0 8px 18px rgba(211, 47, 47, 0.25);
}

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

.grid.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card, .list-card, .placeholder, .callout {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--panel);
  box-shadow: -8px 0 28px rgba(12, 23, 52, 0.18);
  border-left: 1px solid var(--border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: right 0.25s ease;
  z-index: 20;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.close-menu {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(12, 23, 52, 0.1);
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-links a {
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--pill);
  border: 1px solid var(--border);
  box-shadow: 0 10px 20px rgba(12, 23, 52, 0.08);
}

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 23, 52, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 15;
}

.backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.fleet-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fleet-image {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #f8f9ff;
  box-shadow: 0 14px 28px rgba(12, 23, 52, 0.1);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.highlight {
  border-color: rgba(211, 47, 47, 0.35);
  background: linear-gradient(140deg, rgba(211, 47, 47, 0.1), rgba(238, 242, 249, 0.9));
}

.card h3 {
  margin-top: 8px;
  margin-bottom: 10px;
}

.card ul, .list-card ul {
  padding-left: 18px;
  color: var(--muted);
}

.icon {
  font-size: 26px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.callout {
  border: 1px solid rgba(211, 47, 47, 0.25);
  background: linear-gradient(145deg, rgba(211, 47, 47, 0.08), rgba(238, 242, 249, 0.8));
}

.list-card h3 {
  margin: 0 0 10px;
}

.placeholder {
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  color: var(--text);
  font-size: 14px;
  box-shadow: inset 0 1px 3px rgba(12, 23, 52, 0.08);
}

.contact-form button {
  align-self: flex-start;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(211, 47, 47, 0.35);
}

.contact-form .form-status {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  color: var(--muted);
}

.contact-points li {
  margin: 6px 0;
}

.contact-person {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 6px 18px rgba(12, 23, 52, 0.08);
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.profile-image {
  display: flex;
  justify-content: center;
}

.profile-image img {
  width: 100%;
  max-width: 240px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(12, 23, 52, 0.12);
  object-fit: cover;
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-header h3 {
  margin: 0;
  font-size: 22px;
}

.role {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--pill);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.contact-details li {
  display: flex;
  gap: 8px;
  color: var(--text);
}

.contact-details .label {
  font-weight: 700;
  color: var(--muted);
  min-width: 80px;
}

.contact-note {
  margin: 4px 0 0;
  color: var(--muted);
}

.footer {
  padding: 26px 6vw;
  background: #ffffff;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

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

@media (max-width: 720px) {
  .hero {
    padding-top: 60px;
  }

  .hero-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-card img {
    margin: 0 auto;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
