/* ═══════════════════════════════════════════════════════════
   AKSOY GMBH – CORPORATE STYLESHEET
   Version 1.0 | Mobile-First | Corporate Light
   ═══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  /* Brand Colors */
  --red:         #CC0A22;
  --red-dark:    #A3081A;
  --red-hover:   #E00A26;
  --red-10:      #FEF0F2;
  --red-20:      #FCCDD2;

  /* Neutral Scale */
  --dark:        #161616;
  --dark-2:      #2A2A2A;
  --mid:         #4A4A4A;
  --muted:       #767676;
  --muted-light: #9A9A9A;
  --border:      #E2E2E2;
  --border-2:    #ECECEC;

  /* Backgrounds */
  --white:       #FFFFFF;
  --bg-1:        #F8F9FA;
  --bg-2:        #F2F3F5;
  --bg-3:        #EAEBEC;

  /* Status */
  --green:       #0C7B3E;
  --green-10:    #E8F5EE;
  --blue:        #1756A9;
  --blue-10:     #EBF0F9;

  /* Typography */
  --font-head:   'Sora', 'Segoe UI', sans-serif;
  --font-body:   'Inter', 'Segoe UI', sans-serif;

  /* Spacing */
  --gap-xs:      0.5rem;
  --gap-sm:      1rem;
  --gap-md:      1.5rem;
  --gap-lg:      2.5rem;
  --gap-xl:      4rem;
  --gap-2xl:     6rem;

  /* Layout */
  --max-width:   1320px;
  --pad-x:       5%;

  /* Radius */
  --r-sm:        4px;
  --r-md:        8px;
  --r-lg:        12px;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.10);
  --shadow-red:  0 4px 20px rgba(204,10,34,.15);

  /* Transitions */
  --t-fast:      150ms ease;
  --t-mid:       250ms ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: var(--font-body); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(36px, 5vw, 64px); }
h2 { font-size: clamp(28px, 3.5vw, 46px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: 18px; font-weight: 700; }
h5 { font-size: 15px; font-weight: 700; }

p { color: var(--mid); line-height: 1.8; }

.text-red    { color: var(--red); }
.text-muted  { color: var(--muted); }
.text-white  { color: var(--white); }
.text-dark   { color: var(--dark); }

/* ── LAYOUT ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding: var(--gap-xl) var(--pad-x); max-width: var(--max-width); margin: 0 auto; }
.section-full { padding: var(--gap-xl) var(--pad-x); }
.bg-1 { background: var(--bg-1); }
.bg-2 { background: var(--bg-2); }
.bg-dark { background: var(--dark); }
.bg-red  { background: var(--red); }
.border-top { border-top: 1px solid var(--border); }
.border-bot { border-bottom: 1px solid var(--border); }

/* ── GRID ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--gap-md); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: var(--gap-md); }

/* ── SECTION HEADER ── */
.sec-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
  display: block;
}
.sec-title { margin-bottom: 0.75rem; }
.sec-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: var(--gap-lg);
}
.sec-header { margin-bottom: var(--gap-lg); }
.sec-header.centered { text-align: center; }
.sec-header.centered .sec-sub { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
  letter-spacing: 0.1px;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: var(--shadow-red);
}
.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}
.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: #f0f0f0;
}
.btn-lg { padding: 15px 32px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-row { display: flex; gap: var(--gap-sm); flex-wrap: wrap; align-items: center; }

/* ── BADGE / TAG ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.badge-red   { background: var(--red-10); color: var(--red); }
.badge-green { background: var(--green-10); color: var(--green); }
.badge-blue  { background: var(--blue-10); color: var(--blue); }
.badge-dark  { background: var(--bg-2); color: var(--mid); }

.tag {
  background: var(--bg-2);
  color: var(--mid);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--r-sm);
  display: inline-block;
}
.tag-red { background: var(--red-10); color: var(--red); }

/* ── TOP BAR ── */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  padding: 7px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--t-fast);
}
.topbar a:hover { color: var(--white); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1.5rem; }

/* ── NAVIGATION ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  height: 68px;
  gap: var(--gap-md);
}
/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.logo-tagline { font-size: 10px; color: var(--muted); letter-spacing: 0.5px; }

/* Nav Links */
.nav-menu { display: flex; list-style: none; margin-left: auto; gap: 0; }
.nav-menu li { position: relative; }
.nav-menu a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 14px;
  height: 68px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}
/* Dropdown */
.has-drop { position: relative; }
.has-drop:hover .nav-dropdown { display: block; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  min-width: 230px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
}
.nav-dropdown a {
  height: auto;
  padding: 10px 18px;
  font-size: 13px;
  border-bottom: none;
  border-left: 3px solid transparent;
  display: block;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.nav-dropdown a:hover {
  background: var(--red-10);
  color: var(--red);
  border-left-color: var(--red);
  border-bottom-color: transparent;
}
.nav-dropdown a span.dd-sub {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 1px;
}
.nav-actions { display: flex; align-items: center; gap: var(--gap-sm); margin-left: var(--gap-sm); flex-shrink: 0; }
.nav-phone { font-size: 13px; font-weight: 600; color: var(--dark); text-decoration: none; }
.nav-phone:hover { color: var(--red); }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--dark);
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: transform var(--t-mid), opacity var(--t-mid);
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
  padding: 56px var(--pad-x) 48px;
}
.page-hero-inner { max-width: var(--max-width); margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb-sep { color: var(--border); }
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { font-size: 17px; max-width: 640px; line-height: 1.75; }

/* ── HERO (Homepage) ── */
.hero-home {
  background: var(--white);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--gap-xl);
  align-items: center;
  padding: 80px var(--pad-x);
  max-width: var(--max-width);
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red-10);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 13px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.hero-home h1 { margin-bottom: 1.25rem; }
.hero-home h1 em { color: var(--red); font-style: normal; }
.hero-home .lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-kpis {
  display: flex;
  gap: var(--gap-lg);
  padding-top: var(--gap-lg);
  margin-top: var(--gap-lg);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.kpi-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 30px;
  color: var(--red);
  line-height: 1;
}
.kpi-label { font-size: 12px; color: var(--muted); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-visual {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.hero-visual-inner {
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--gap-sm);
  padding: var(--gap-lg);
}
.hero-visual-bg-text {
  position: absolute;
  bottom: -10px;
  right: -5px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 100px;
  color: rgba(204,10,34,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.fleet-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 0.5rem;
}
.fleet-badge {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 30px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--dark);
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
}
.trust-item::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── CERT STRIP ── */
.cert-strip {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-lg);
  flex-wrap: wrap;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
}
.cert-icon {
  width: 36px; height: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--gap-md);
  transition: border-color var(--t-mid), box-shadow var(--t-mid);
}
.card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 48px; height: 48px;
  background: var(--red-10);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: var(--gap-sm);
  flex-shrink: 0;
}
.card-icon.blue { background: var(--blue-10); }
.card-icon.green { background: var(--green-10); }
.card-icon.dark { background: var(--bg-2); }
.card h4 { margin-bottom: 0.4rem; }
.card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.card-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: var(--gap-sm); }

/* Stat Card */
.stat-card {
  background: var(--red-10);
  border-radius: var(--r-lg);
  padding: var(--gap-md);
  text-align: center;
}
.stat-card-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 36px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-card-label { font-size: 12px; color: var(--red-dark); text-transform: uppercase; letter-spacing: 0.5px; }

/* Fleet Card */
.fleet-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-mid), box-shadow var(--t-mid);
}
.fleet-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); }
.fleet-card-header {
  background: var(--bg-1);
  padding: 1.25rem var(--gap-md);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.fleet-card-icon { font-size: 28px; }
.fleet-card-name { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--dark); }
.fleet-card-body { padding: var(--gap-md); }
.spec-table { display: flex; flex-direction: column; gap: 0; }
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--bg-2);
  font-size: 13px;
}
.spec-row:last-child { border-bottom: none; }
.spec-key { color: var(--muted); }
.spec-val { font-weight: 600; color: var(--dark); }
.fleet-desc {
  border-top: 1px solid var(--border);
  padding-top: var(--gap-sm);
  margin-top: var(--gap-sm);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* Process / Steps */
.step-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--gap-md);
  align-items: flex-start;
  padding: var(--gap-md) 0;
  border-bottom: 1px solid var(--border-2);
}
.step-row:last-child { border-bottom: none; }
.step-num {
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}
.step-title { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--dark); margin-bottom: 4px; }
.step-text { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* Info Table */
.info-table { display: flex; flex-direction: column; gap: 0; }
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-2);
  font-size: 14px;
  gap: 1rem;
}
.info-row:last-child { border-bottom: none; }
.info-key { color: var(--muted); flex-shrink: 0; min-width: 140px; }
.info-val { font-weight: 600; color: var(--dark); text-align: right; }

/* ── FORMS ── */
.form-grid { display: flex; flex-direction: column; gap: 0.9rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--mid);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,10,34,0.08);
}
.form-input::placeholder, .form-textarea::placeholder { color: #BBBBBB; }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { cursor: pointer; }
.form-submit {
  width: 100%;
  border: none;
  border-radius: var(--r-md);
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 0.2px;
  background: var(--red);
  color: var(--white);
  transition: background var(--t-fast), box-shadow var(--t-fast);
}
.form-submit:hover { background: var(--red-dark); box-shadow: var(--shadow-red); }
.form-note { font-size: 11px; color: var(--muted); line-height: 1.5; }
.form-note a { color: var(--red); }
.form-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--red);
  padding: 56px var(--pad-x);
  text-align: center;
}
.cta-block h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-block p { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── CONTACT DETAILS ── */
.ci-row { display: flex; gap: var(--gap-sm); align-items: flex-start; }
.ci-icon {
  width: 44px; height: 44px;
  background: var(--red-10);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ci-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.ci-value { font-size: 15px; font-weight: 600; color: var(--dark); }
.ci-value a { color: var(--dark); text-decoration: none; }
.ci-value a:hover { color: var(--red); }
.contact-detail-list { display: flex; flex-direction: column; gap: var(--gap-md); }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--red-10);
  border: 1.5px solid var(--red-20);
  border-radius: var(--r-lg);
  padding: var(--gap-md);
}
.highlight-box.blue {
  background: var(--blue-10);
  border-color: rgba(23,86,169,0.2);
}
.highlight-box.green {
  background: var(--green-10);
  border-color: rgba(12,123,62,0.2);
}
.highlight-box.dark {
  background: var(--dark);
  border-color: var(--dark-2);
}

/* ── FOOTER ── */
footer {
  background: #111111;
  color: #666666;
  padding: 4rem var(--pad-x) 2rem;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--gap-xl);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #222;
  margin-bottom: 1.75rem;
}
.footer-logo-mark {
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-brand-text { font-size: 13px; color: #555; line-height: 1.7; max-width: 260px; margin-top: 0.5rem; }
.footer-col h5 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  color: #ddd;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col ul a {
  color: #555;
  text-decoration: none;
  font-size: 13px;
  transition: color var(--t-fast);
  cursor: pointer;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copy { font-size: 12px; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: #555; text-decoration: none; font-size: 12px; transition: color var(--t-fast); }
.footer-legal a:hover { color: var(--white); }
.footer-cert-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
.footer-cert {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: var(--r-sm);
  padding: 4px 10px;
  font-size: 11px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── DIVIDERS ── */
hr.divider { border: none; border-top: 1px solid var(--border); margin: var(--gap-xl) 0; }

/* ── UTILITIES ── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-sm { gap: var(--gap-sm); }
.gap-md { gap: var(--gap-md); }
.mt-sm { margin-top: var(--gap-sm); }
.mt-md { margin-top: var(--gap-md); }
.mt-lg { margin-top: var(--gap-lg); }
.mb-sm { margin-bottom: var(--gap-sm); }
.mb-md { margin-bottom: var(--gap-md); }
.mb-lg { margin-bottom: var(--gap-lg); }

/* ══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 1024px) {
  .hero-home         { grid-template-columns: 1fr; }
  .hero-visual       { display: none; }
  .grid-4            { grid-template-columns: 1fr 1fr; }
  .grid-3            { grid-template-columns: 1fr 1fr; }
  .footer-top        { grid-template-columns: 1fr 1fr; }
  .nav-menu          { display: none; }
  .nav-toggle        { display: block; }
  .nav-actions .btn  { display: none; }
}

/* ── Mobile ── */
@media (max-width: 640px) {
  :root { --pad-x: 4%; --gap-xl: 2.5rem; --gap-lg: 1.75rem; }
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  .grid-2            { grid-template-columns: 1fr; }
  .grid-3            { grid-template-columns: 1fr; }
  .grid-4            { grid-template-columns: 1fr 1fr; }
  .form-row-2        { grid-template-columns: 1fr; }
  .footer-top        { grid-template-columns: 1fr; gap: 2rem; }
  .trust-strip       { gap: 1.25rem; }
  .hero-kpis         { gap: 1.5rem; }
  .btn-lg            { padding: 13px 22px; font-size: 14px; }
  .topbar-left span  { display: none; }
  .page-hero         { padding: 36px var(--pad-x) 30px; }
  .cert-strip        { gap: 1rem; }
  .info-key          { min-width: 110px; }
}

/* ── Mobile Nav (JS toggled) ── */
.nav-mobile-open .nav-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 68px;
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
  z-index: 400;
}
.nav-mobile-open .nav-menu a {
  height: auto;
  padding: 12px var(--pad-x);
  border-bottom: 1px solid var(--border-2);
  border-left: none;
}
.nav-mobile-open .has-drop .nav-dropdown {
  display: block;
  position: static;
  box-shadow: none;
  border: none;
  border-top: none;
  background: var(--bg-1);
}
