/* ── DYNAMIC THEME VARIABLES ── */
:root {
  --accent: #C9A84C;
  --accent-light: #E8C96A;
  --accent-pale: rgba(201,168,76,0.1);
  --accent-border: rgba(201,168,76,0.3);
  --bg: #070C1A;
  --bg-mid: #0E1829;
  --bg-card: #141F35;
  --bg-border: rgba(255,255,255,0.08);
  --fg: #F5F5F0;
  --fg-muted: rgba(245,245,240,0.6);
  --fg-faint: rgba(245,245,240,0.25);
  --ease: cubic-bezier(0.4,0,0.2,1);
}

/* AEROSPACE: electric military blue */
body[data-theme="aerospace"] {
  --accent: #4A9EE8;
  --accent-light: #6BB5F0;
  --accent-pale: rgba(74,158,232,0.1);
  --accent-border: rgba(74,158,232,0.3);
  --bg: #040D1A;
  --bg-mid: #081628;
  --bg-card: #0C1E35;
}

/* MOTORSPORT: racing red */
body[data-theme="motorsport"] {
  --accent: #E8141A;
  --accent-light: #FF2A30;
  --accent-pale: rgba(232,20,26,0.1);
  --accent-border: rgba(232,20,26,0.3);
  --bg: #0A0505;
  --bg-mid: #150808;
  --bg-card: #1C0C0C;
}

/* RAIL & MARITIME: ocean blue */
body[data-theme="rail"] {
  --accent: #1A8FCC;
  --accent-light: #2AAAE0;
  --accent-pale: rgba(26,143,204,0.1);
  --accent-border: rgba(26,143,204,0.3);
  --bg: #040F1C;
  --bg-mid: #07182E;
  --bg-card: #0B2040;
}

/* FASHION & LUXURY: champagne gold */
body[data-theme="fashion"] {
  --accent: #C8A882;
  --accent-light: #DEC49E;
  --accent-pale: rgba(200,168,130,0.1);
  --accent-border: rgba(200,168,130,0.3);
  --bg: #0D0A07;
  --bg-mid: #181210;
  --bg-card: #211A14;
}

/* INDUSTRIAL: orange */
body[data-theme="industrial"] {
  --accent: #D94F00;
  --accent-light: #F06010;
  --accent-pale: rgba(217,79,0,0.1);
  --accent-border: rgba(217,79,0,0.3);
  --bg: #0A0704;
  --bg-mid: #140E08;
  --bg-card: #1C130A;
}

*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  transition: background 0.5s var(--ease);
}


/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(7,12,26,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bg-border);
  transition: border-color 0.5s var(--ease), box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.4); }
.nav-logo { display:flex; align-items:center; cursor:pointer; text-decoration:none; }
.nav-links { display:flex; align-items:center; list-style:none; }
.nav-links > li { position:relative; }
.nav-links > li > a {
  color: var(--fg-muted);
  font-family: 'Oswald', sans-serif; font-size: 0.72rem;
  font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.5rem 0.85rem; text-decoration: none; cursor: pointer;
  display: flex; align-items: center; gap: 0.3rem;
  position: relative; white-space: nowrap;
  transition: color 0.2s;
}
.nav-links > li > a::after {
  content: ''; position: absolute; bottom: -1px; left: 0.85rem; right: 0.85rem;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease), background 0.5s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--fg); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { transform: scaleX(1); }
.nav-arrow { font-size: 0.55rem; opacity: 0.45; transition: transform 0.2s; }
.nav-links > li:hover .nav-arrow { transform: rotate(180deg); }

/* DROPDOWN */
.dropdown {
  position: absolute; top: calc(100% + 1px); left: 0;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-top: 2px solid var(--accent);
  min-width: 230px; padding: 0.5rem 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s, border-color 0.5s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  color: var(--fg-muted); cursor: pointer; text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.dropdown a:hover { color: var(--accent); background: var(--accent-pale); }
.dropdown-icon { font-size: 0.9rem; width: 20px; text-align: center; }
.dropdown-divider { height: 1px; background: var(--bg-border); margin: 0.4rem 0; }

.nav-cta {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 2px; font-weight: 700 !important;
  transition: background 0.5s var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.88; }

/* ── PAGES ── */
main { padding-top: 68px; }

/* ── HERO ── */
.hero { min-height: calc(100vh - 68px); display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.hero-left {
  background: var(--bg-mid);
  padding: 5rem 4rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 93% 100%, 0 100%);
  margin-right: -55px; z-index: 2;
  transition: background 0.5s var(--ease);
}
.hero-left::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  border: 64px solid var(--accent-pale);
  transition: border-color 0.5s;
}
.hero-left::after {
  content: ''; position: absolute; bottom: -40px; left: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  border: 36px solid rgba(255,255,255,0.02);
}
.hero-tag-line { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.hero-tag-bar { width: 32px; height: 2px; background: var(--accent); transition: background 0.5s; }
.hero-tag-text { font-family: 'Oswald', sans-serif; font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--fg-faint); }
.hero-title { font-family: 'Oswald', sans-serif; font-size: clamp(3rem,5.5vw,5.8rem); font-weight: 700; line-height: 0.92; color: var(--fg); margin-bottom: 2rem; position: relative; z-index: 1; }
.hero-title em { color: var(--accent); font-style: normal; transition: color 0.5s; }
.hero-desc { font-size: 1rem; color: var(--fg-muted); font-weight: 300; line-height: 1.75; max-width: 420px; margin-bottom: 2.5rem; position: relative; z-index: 1; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }
.hero-right { background: var(--bg); position: relative; overflow: hidden; transition: background 0.5s; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.7; }
.hero-right-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg-mid) 0%, transparent 45%); transition: background 0.5s; }
.hero-stats { position: absolute; bottom: 2.5rem; right: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.hero-stat { background: rgba(7,12,26,0.88); backdrop-filter: blur(12px); padding: 1rem 1.5rem; border-radius: 2px; border-left: 3px solid var(--accent); transition: border-color 0.5s; }
.hero-stat-num { font-family: 'Oswald', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--accent); line-height: 1; transition: color 0.5s; }
.hero-stat-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--fg-faint); font-weight: 500; }

/* ── MARQUEE ── */
.marquee-wrap { background: var(--accent); overflow: hidden; padding: 0.85rem 0; white-space: nowrap; transition: background 0.5s; }
.marquee-track { display: inline-flex; animation: marquee 32s linear infinite; }
.marquee-item { font-family: 'Oswald', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--bg); padding: 0 2.5rem; display: inline-flex; align-items: center; gap: 2rem; }
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(7,12,26,0.3); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
.section { padding: 6rem 3rem; max-width: 1280px; margin: 0 auto; }
.section-dark { padding: 6rem 3rem; background: var(--bg-mid); transition: background 0.5s; }
.section-dark-inner { max-width: 1280px; margin: 0 auto; }
.section-card { padding: 6rem 3rem; background: var(--bg-card); transition: background 0.5s; }
.section-card-inner { max-width: 1280px; margin: 0 auto; }

.label { font-family: 'Oswald', sans-serif; font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); font-weight: 500; display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.25rem; transition: color 0.5s; }
.label::before { content: ''; width: 24px; height: 2px; background: var(--accent); display: block; flex-shrink: 0; transition: background 0.5s; }
.label-dim { color: var(--fg-faint); }
.label-dim::before { background: var(--accent); }
.label a, .label-dim a { color: var(--accent); text-decoration: none; transition: opacity 0.2s; }
.label a:hover, .label-dim a:hover { opacity: 0.75; }

.h1 { font-family: 'Oswald', sans-serif; font-size: clamp(3rem,7vw,6rem); font-weight: 700; line-height: 0.92; color: var(--fg); }
.h1 em { color: var(--accent); font-style: normal; transition: color 0.5s; }
.h2 { font-family: 'Oswald', sans-serif; font-size: clamp(2.2rem,4.5vw,4rem); font-weight: 700; line-height: 0.94; color: var(--fg); margin-bottom: 1.5rem; }
.h2 em { color: var(--accent); font-style: normal; transition: color 0.5s; }
.body-p { font-size: 1rem; color: var(--fg-muted); font-weight: 300; line-height: 1.8; max-width: 580px; }

.o-rule { width: 48px; height: 3px; background: var(--accent); margin: 1.5rem 0; transition: background 0.5s; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent); color: var(--bg);
  font-family: 'Oswald', sans-serif; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.9rem 2.2rem; border: none; border-radius: 2px;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.5s, opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--fg-muted);
  border: 1px solid var(--bg-border);
  font-family: 'Oswald', sans-serif; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.9rem 2rem; border-radius: 2px;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ── CARDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px; background: var(--bg-border); border: 1px solid var(--bg-border); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.card {
  background: var(--bg-card); padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: background 0.25s 0.5s;
}
.card::after { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--accent); transition: height 0.3s var(--ease), background 0.5s; }
.card:hover { background: var(--bg-mid); }
.card:hover::after { height: 100%; }
.card-tag { font-family: 'Oswald', sans-serif; font-size: 0.65rem; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 1.25rem; transition: color 0.5s; }
.card-title { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--fg); margin-bottom: 0.6rem; }
.card-body { font-size: 0.9rem; color: var(--fg-muted); font-weight: 300; line-height: 1.75; }

/* ── SECTOR CARDS ── */
.sector-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; background: var(--bg-border); }
.sector-item { position: relative; overflow: hidden; min-height: 300px; display: flex; flex-direction: column; justify-content: flex-end; cursor: pointer; }
.sector-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s var(--ease); }
.sector-item:hover .sector-bg { transform: scale(1.04); }
.sector-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,12,26,0.95) 0%, rgba(7,12,26,0.25) 75%); transition: background 0.3s; }
.sector-item:hover .sector-overlay { background: linear-gradient(0deg, rgba(7,12,26,1) 0%, rgba(7,12,26,0.5) 75%); }
.sector-content { position: relative; z-index: 2; padding: 2rem; }
.sector-label { font-family: 'Oswald', sans-serif; font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem; transition: color 0.5s; }
.sector-title { font-family: 'Oswald', sans-serif; font-size: 1.55rem; font-weight: 700; color: var(--fg); margin-bottom: 0.75rem; }
.sector-arrow { font-family: 'Oswald', sans-serif; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 0.5rem; transition: gap 0.2s, color 0.5s; }
.sector-item:hover .sector-arrow { gap: 0.9rem; }
a.sector-item { text-decoration: none; color: inherit; }

/* ── STATS ── */
.stats-strip { display: grid; grid-template-columns: repeat(4,1fr); background: var(--bg-card); transition: background 0.5s; }
.stat-block { padding: 3rem 2rem; text-align: center; border-right: 1px solid var(--bg-border); transition: background 0.25s; }
.stat-block:last-child { border-right: none; }
.stat-block:hover { background: var(--bg-mid); }
.stat-num { font-family: 'Oswald', sans-serif; font-size: 3.5rem; font-weight: 700; color: var(--accent); line-height: 1; transition: color 0.5s; }
.stat-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-faint); margin-top: 0.4rem; }

/* ── FEATURE STRIP ── */
.feature-strip { display: flex; flex-direction: column; }
.feature-row { display: grid; grid-template-columns: 60px 1fr; gap: 2rem; align-items: start; padding: 2rem 0; border-bottom: 1px solid var(--bg-border); }
.feature-row:first-child { border-top: 1px solid var(--bg-border); }
.feature-num { font-family: 'Oswald', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--accent); opacity: 0.2; line-height: 1; transition: color 0.5s; }
.feature-title { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--fg); margin-bottom: 0.35rem; }
.feature-desc { font-size: 0.9rem; color: var(--fg-muted); font-weight: 300; line-height: 1.75; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { min-height: 60vh; position: relative; display: flex; align-items: flex-end; padding-bottom: 4rem; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(12deg, var(--bg) 0%, rgba(7,12,26,0.65) 55%, rgba(7,12,26,0.15) 100%); transition: background 0.5s; }
.page-hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 0 3rem; width: 100%; padding-top: 80px; }

/* ── FLEET BOX ── */
.fleet-box { background: var(--bg-mid); border-left: 4px solid var(--accent); padding: 2rem 2.5rem; margin-top: 2rem; transition: background 0.5s, border-color 0.5s; }
.fleet-box-title { font-family: 'Oswald', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--accent); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1.25rem; transition: color 0.5s; }
.fleet-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fleet-spec { display: flex; gap: 0.75rem; }
.fleet-spec-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; transition: color 0.5s; }
.fleet-spec-text { font-size: 0.88rem; color: var(--fg-muted); font-weight: 300; line-height: 1.5; }
.fleet-spec-text strong { color: var(--fg); font-weight: 500; display: block; }

/* ── COMPARISON TABLE ── */
.comp-table { width: 100%; border-collapse: collapse; }
.comp-table th { font-family: 'Oswald', sans-serif; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 1.25rem 1.5rem; text-align: center; border-bottom: 2px solid var(--bg-border); }
.comp-table th:first-child { text-align: left; color: var(--fg-muted); }
.comp-table th.hl { color: var(--accent); border-bottom-color: var(--accent); transition: color 0.5s, border-color 0.5s; }
.comp-table td { padding: 1rem 1.5rem; text-align: center; border-bottom: 1px solid var(--bg-border); font-size: 0.92rem; color: var(--fg-muted); }
.comp-table td:first-child { text-align: left; color: var(--fg); font-weight: 500; }
.comp-table td.hl { background: var(--accent-pale); transition: background 0.5s; }
.comp-table .yes { color: #4ade80; font-weight: 700; font-size: 1.1rem; }
.comp-table .no { color: #f87171; font-size: 1.1rem; }
.comp-table .partial { font-size: 0.82rem; }

/* ── TIMELINE ── */
.timeline { display: flex; flex-direction: column; }
.tl-item { display: grid; grid-template-columns: 16px 1fr; gap: 2rem; padding: 0 0 2.5rem; }
.tl-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); margin-top: 5px; flex-shrink: 0; transition: background 0.5s; }
.tl-track { width: 1px; flex: 1; background: var(--bg-border); margin: 12px 0 0 4px; }
.tl-col { display: flex; flex-direction: column; }
.tl-title { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--fg); margin-bottom: 0.4rem; }
.tl-body { font-size: 0.9rem; color: var(--fg-muted); font-weight: 300; line-height: 1.75; }

/* ── QUOTE ── */
.quote-block { border-left: 4px solid var(--accent); padding: 2rem 2.5rem; background: var(--bg-card); border-radius: 0 2px 2px 0; transition: border-color 0.5s, background 0.5s; }
.quote-text { font-size: 1.15rem; font-weight: 300; color: var(--fg); line-height: 1.8; font-style: italic; margin-bottom: 1rem; }
.quote-attr { font-family: 'Oswald', sans-serif; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 600; transition: color 0.5s; }

/* ── BADGE ── */
.badge { display: inline-block; background: var(--accent-pale); border: 1px solid var(--accent-border); color: var(--accent); font-family: 'Oswald', sans-serif; font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; padding: 0.3rem 0.75rem; border-radius: 2px; margin-right: 0.4rem; margin-bottom: 0.4rem; transition: background 0.5s, border-color 0.5s, color 0.5s; }

/* ── CTA BAND ── */
.cta-band { background: var(--accent); padding: 5rem 3rem; text-align: center; transition: background 0.5s; }
.cta-band-title { font-family: 'Oswald', sans-serif; font-size: clamp(2rem,5vw,4rem); font-weight: 700; color: var(--bg); margin-bottom: 0.75rem; transition: color 0.5s; }
.cta-band-sub { font-size: 1rem; color: rgba(7,12,26,0.65); max-width: 480px; margin: 0 auto 2rem; font-weight: 300; }
.btn-dark { background: var(--bg); color: var(--accent); font-family: 'Oswald', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.9rem 2.5rem; border: none; border-radius: 2px; cursor: pointer; transition: opacity 0.2s, background 0.5s, color 0.5s; text-decoration: none; display: inline-block; }
.btn-dark:hover { opacity: 0.85; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-item { display: flex; gap: 1.25rem; align-items: flex-start; margin-bottom: 2rem; }
.c-icon { width: 40px; height: 40px; border-radius: 2px; background: var(--accent-pale); border: 1px solid var(--accent-border); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; transition: background 0.5s, border-color 0.5s; }
.c-label { font-family: 'Oswald', sans-serif; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.2rem; transition: color 0.5s; }
.c-val { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.6; }
.c-val a { color: var(--fg-muted); text-decoration: none; }
.c-val a:hover { color: var(--accent); }
.form-card { background: var(--bg-card); padding: 3rem; border-radius: 2px; border: 1px solid var(--bg-border); transition: background 0.5s; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1.25rem; }
.fg label { display: block; font-family: 'Oswald', sans-serif; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 0.5rem; }
.fg input, .fg select, .fg textarea { width: 100%; background: var(--bg-mid); border: 1px solid var(--bg-border); color: var(--fg); font-family: 'DM Sans', sans-serif; font-size: 0.95rem; padding: 0.75rem 1rem; border-radius: 2px; outline: none; transition: border-color 0.2s, background 0.5s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--accent); }
.fg select option { background: var(--bg-card); }
.fg textarea { min-height: 110px; resize: vertical; }

/* ── FOOTER ── */
footer { background: #030508; border-top: 1px solid var(--bg-border); }
.footer-top { max-width: 1280px; margin: 0 auto; padding: 4rem 3rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-col-title { font-family: 'Oswald', sans-serif; font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.88rem; color: var(--fg-faint); cursor: pointer; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.fc-row { display: flex; gap: 0.75rem; margin-bottom: 0.9rem; }
.fc-icon { color: var(--accent); flex-shrink: 0; transition: color 0.5s; }
.fc-text { font-size: 0.85rem; color: var(--fg-faint); line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.04); padding: 1.5rem 3rem; max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; }
.footer-copy, .footer-vat { font-size: 0.78rem; color: rgba(255,255,255,0.18); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--fg); }
.mobile-menu { display: none; position: fixed; inset: 0; top: 68px; background: var(--bg); z-index: 999; flex-direction: column; align-items: center; justify-content: flex-start; gap: 1.25rem; overflow-y: auto; padding: 2.5rem 2rem 3rem; transition: background 0.5s; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 600; letter-spacing: 0.08em; color: var(--fg); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--accent); }
.m-sep { font-family: 'Oswald', sans-serif; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-top: 1rem; transition: color 0.5s; }

@media(max-width:1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { clip-path: none; margin-right: 0; min-height: 60vh; }
  .hero-right { min-height: 50vh; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .sector-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .fleet-specs { grid-template-columns: 1fr; }

  /* Perché Noi: "Scegli Kairos se" sopra, citazione sotto */
  .grid-2 > .quote-block { order: 2; }

  /* Dropdown menù: icona sempre allineata */
  .dropdown-icon { min-width: 20px; }
}
@media(max-width:600px) {
  html { overflow-x: hidden; }
  nav { padding: 0 1.25rem; }
  .section, .section-dark, .section-card { padding: 4rem 1.25rem; }
  .hero-left { padding: 3rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
}

/* ── CONTACT FORM 7 ── */
.wpcf7-form-control-wrap { display: block; margin-top: 0.5rem; }
.wpcf7-form-control.wpcf7-submit {
  background: var(--accent); color: var(--bg);
  font-family: 'Oswald', sans-serif; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 1rem 2.2rem; width: 100%; border: none; border-radius: 2px;
  cursor: pointer; margin-top: 0.75rem;
  transition: background 0.5s var(--ease), opacity 0.2s;
}
.wpcf7-form-control.wpcf7-submit:hover { opacity: 0.85; }
.wpcf7-response-output {
  border: 1px solid var(--accent-border) !important;
  border-radius: 2px; padding: 0.75rem 1rem !important;
  margin: 1rem 0 0 !important; font-size: 0.85rem; color: var(--fg-muted);
}
.wpcf7-not-valid-tip {
  font-size: 0.75rem; color: #f87171; margin-top: 0.25rem; display: block;
}
.wpcf7 .ajax-loader { display: none; }

/* ── BLOG ── */
.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.post-card { background: var(--bg-card); border-radius: 2px; overflow: hidden; display: flex; flex-direction: column; transition: background 0.25s; }
.post-card:hover { background: var(--bg-mid); }
.post-card-img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.4s var(--ease); }
.post-card:hover .post-card-img { transform: scale(1.03); }
.post-card-img-placeholder { width: 100%; height: 200px; background: var(--bg-mid); }
.post-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.post-card-meta { font-family: 'Oswald', sans-serif; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); transition: color 0.5s; }
.post-card-title { font-family: 'Oswald', sans-serif; font-size: 1.15rem; font-weight: 600; color: var(--fg); line-height: 1.25; }
.post-card-title a { text-decoration: none; color: inherit; transition: color 0.2s; }
.post-card-title a:hover { color: var(--accent); }
.post-card-excerpt { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.7; flex: 1; }
.post-card-link { font-family: 'Oswald', sans-serif; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); text-decoration: none; margin-top: auto; transition: color 0.5s; }
.post-card-link:hover { opacity: 0.75; }

/* Contenuto singolo post */
.post-meta { font-size: 0.82rem; color: var(--fg-faint); letter-spacing: 0.1em; }
.entry-content { color: var(--fg-muted); line-height: 1.85; }
.entry-content p { margin-bottom: 1.5rem; }
.entry-content h2 { font-family: 'Oswald', sans-serif; font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 700; color: var(--fg); margin: 2.5rem 0 1rem; }
.entry-content h3 { font-family: 'Oswald', sans-serif; font-size: clamp(1.2rem,2.5vw,1.6rem); font-weight: 600; color: var(--fg); margin: 2rem 0 0.75rem; }
.entry-content h4 { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--fg); margin: 1.5rem 0 0.5rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.entry-content li { margin-bottom: 0.5rem; line-height: 1.75; }
.entry-content img { max-width: 100%; height: auto; border-radius: 2px; margin: 1.5rem 0; display: block; }
.entry-content a { color: var(--accent); transition: opacity 0.2s; }
.entry-content a:hover { opacity: 0.8; }
.entry-content blockquote { border-left: 4px solid var(--accent); padding: 1.25rem 1.75rem; background: var(--bg-card); margin: 2rem 0; font-style: italic; transition: border-color 0.5s, background 0.5s; }
.entry-content strong { color: var(--fg); font-weight: 600; }
.entry-content em { font-style: italic; }
.entry-content code { background: var(--bg-card); border: 1px solid var(--bg-border); padding: 0.15rem 0.45rem; border-radius: 2px; font-size: 0.88em; }
.entry-content pre { background: var(--bg-card); border: 1px solid var(--bg-border); padding: 1.25rem 1.5rem; border-radius: 2px; overflow-x: auto; margin-bottom: 1.5rem; }
.entry-content figure { margin: 1.5rem 0; }
.entry-content figcaption { font-size: 0.8rem; color: var(--fg-faint); text-align: center; margin-top: 0.5rem; }
.entry-content hr { border: none; border-top: 1px solid var(--bg-border); margin: 2.5rem 0; }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.entry-content th, .entry-content td { padding: 0.75rem 1rem; border: 1px solid var(--bg-border); font-size: 0.9rem; }
.entry-content th { background: var(--bg-card); color: var(--fg); font-family: 'Oswald', sans-serif; font-weight: 500; }

/* Paginazione blog */
.posts-pagination { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-top: 3.5rem; }
.posts-pagination .page-numbers { font-family: 'Oswald', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.6rem 1.1rem; border: 1px solid var(--bg-border); color: var(--fg-muted); text-decoration: none; border-radius: 2px; transition: border-color 0.2s, color 0.2s; }
.posts-pagination .page-numbers:hover, .posts-pagination .page-numbers.current { border-color: var(--accent); color: var(--accent); }
.posts-pagination .page-numbers.dots { border-color: transparent; }

/* Tag post */
.post-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }

/* Responsive blog */
@media(max-width:1100px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) { .post-grid { grid-template-columns: 1fr; } .post-card-img, .post-card-img-placeholder { height: 180px; } }

  /* Logo bianco su sfondo trasparente */
  .nav-logo img {
    height: 46px;
    width: auto;
    display: block;
  }
  .footer-logo img {
    height: 52px;
    width: auto;
    display: block;
    margin-bottom: 1rem;
  }
