/* ═══════════════════════════════════════════
   AXON AUTO GROUP — Main Stylesheet
   Dark Premium Automotive
═══════════════════════════════════════════ */

/* ─── Tokens ─────────────────────────────── */
:root {
  --bg:         #080809;
  --surface-1:  #111115;
  --surface-2:  #1a1a1f;
  --surface-3:  #222228;
  --border:     rgba(200,200,210,0.10);
  --border-hi:  rgba(200,200,210,0.20);

  --chrome-1:   #ffffff;
  --chrome-2:   #d8d8e0;
  --chrome-3:   #a0a0b0;
  --chrome-4:   #606070;

  --text-1:     #f0f0f2;
  --text-2:     #a0a0b0;
  --text-3:     #606070;

  --accent:     #c8c8d8;
  --wa-green:   #25D366;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --nav-h:      72px;
  --transition: 0.25s ease;
  --transition-slow: 0.5s cubic-bezier(0.22,1,0.36,1);

  --font-head:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'Montserrat', 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;
}

/* ─── Reset ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ─── Container ──────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Chrome gradient text ───────────────── */
.chrome-text {
  background: linear-gradient(
    160deg,
    #ffffff 0%,
    #e0e0e8 20%,
    #a8a8b8 45%,
    #d8d8e0 70%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(8,8,9,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}
.logo-axon {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(160deg, #fff 0%, #c8c8d8 40%, #888898 70%, #c0c0d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--chrome-4);
  text-transform: uppercase;
  -webkit-text-fill-color: var(--chrome-4);
}

/* Nav right group */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text-1); }
.nav-links .nav-cta {
  padding: 10px 22px;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-sm);
  color: var(--text-1);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--transition), border-color var(--transition);
}
.nav-links .nav-cta:hover {
  background: var(--surface-2);
  border-color: rgba(200,200,210,0.35);
}
.nav-links .nav-stock {
  padding: 10px 22px;
  border: 1px solid rgba(232,56,13,0.5);
  border-radius: var(--radius-sm);
  color: #e8380d;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.nav-links .nav-stock:hover {
  background: rgba(232,56,13,0.1);
  border-color: #e8380d;
  color: #ff5533;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-2);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  background: rgba(8,8,9,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu[hidden] { display: none; }
.mobile-link {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { color: var(--text-1); }
.mobile-link--cta {
  margin-top: 12px;
  padding: 16px;
  text-align: center;
  background: var(--surface-2);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-md);
  color: var(--text-1);
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 0 32px rgba(37,211,102,0.25);
}
.btn--primary:hover {
  background: #22c55e;
  box-shadow: 0 4px 40px rgba(37,211,102,0.35);
}

.btn--viber {
  background: #7360f2;
  color: #fff;
  box-shadow: 0 0 32px rgba(115,96,242,0.25);
}
.btn--viber:hover {
  background: #6450e0;
  box-shadow: 0 4px 40px rgba(115,96,242,0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-hi);
}
.btn--ghost:hover {
  background: var(--surface-2);
  color: var(--text-1);
  border-color: rgba(200,200,210,0.3);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--large {
  padding: 18px 36px;
  font-size: 16px;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  max-width: 100vw;
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero-glow--1 {
  width: 600px; height: 600px;
  top: -100px; left: -200px;
  background: radial-gradient(circle, rgba(180,180,200,0.06) 0%, transparent 70%);
}
.hero-glow--2 {
  width: 800px; height: 800px;
  bottom: -200px; right: -300px;
  background: radial-gradient(circle, rgba(160,160,190,0.04) 0%, transparent 70%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,200,210,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,200,210,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0;
  padding: 80px 24px 100px clamp(24px, 4vw, 56px);
  text-align: left;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(54px, 11vw, 132px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--text-1);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.title-line {
  display: block;
  text-shadow:
    0 2px 0 rgba(90,90,110,0.9),
    0 4px 0 rgba(60,60,80,0.7),
    0 6px 0 rgba(40,40,60,0.5),
    0 8px 0 rgba(20,20,40,0.35),
    0 14px 28px rgba(0,0,0,0.9);
}

.title-line--chrome {
  text-shadow: none;
  filter:
    drop-shadow(0 2px 0 rgba(80,80,110,0.9))
    drop-shadow(0 4px 0 rgba(50,50,80,0.7))
    drop-shadow(0 6px 0 rgba(30,30,60,0.5))
    drop-shadow(0 12px 20px rgba(0,0,0,0.9));
}
.hero-subtitle {
  font-size: clamp(15px, 2vw, 20px);
  color: var(--text-2);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 48px;
  overflow-wrap: break-word;
}
.br-desktop { display: none; }
@media (min-width: 768px) { .br-desktop { display: block; } }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--chrome-4));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
}

/* ═══════════════════════════════════════════
   STATS
═══════════════════════════════════════════ */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-1);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 640px;
  margin: 0 auto;
}
.stat-card {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-card:last-child {
  border-right: none;
}
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-unit {
  font-size: 0.6em;
}
.stat-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ═══════════════════════════════════════════
   WHY IMPORT / MYTHS & TRUTHS
═══════════════════════════════════════════ */
.why-section {
  padding: 120px 0;
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
.why-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* Reasons list */
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #b0b8c8;
  margin-top: 2px;
}
.why-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 4px;
}
.why-item p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
  margin: 0;
}

/* Myths accordion */
.myth-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.myth-item {
  border-bottom: 1px solid var(--border);
}
.myth-item:first-child {
  border-top: 1px solid var(--border);
}
.myth-question {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  list-style: none;
  transition: color 0.2s;
}
.myth-question::-webkit-details-marker { display: none; }
.myth-question:hover { color: var(--text-1); }
.myth-arrow {
  margin-left: auto;
  font-size: 20px;
  color: var(--text-3);
  transition: transform 0.25s;
  line-height: 1;
}
details[open] .myth-arrow {
  transform: rotate(90deg);
}
.myth-answer {
  padding: 0 4px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.myth-answer p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.65;
  margin: 0;
}
.myth-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.myth-false {
  background: rgba(220, 60, 60, 0.15);
  color: #e07070;
  border: 1px solid rgba(220, 60, 60, 0.25);
}
.myth-true {
  background: rgba(60, 180, 120, 0.12);
  color: #6ecfa0;
  border: 1px solid rgba(60, 180, 120, 0.22);
  width: fit-content;
  margin-bottom: 4px;
}

/* Mobile */
@media (max-width: 768px) {
  .why-section { padding: 64px 0; }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  /* Mobile: show Μύθοι & Αλήθειες first, then Γιατί να μας διαλέξετε */
  .why-myths { order: 1; }
  .why-left  { order: 2; }
}

/* ═══════════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.02;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-1);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services {
  padding: 120px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border);
}
.service-card {
  background: var(--bg);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background var(--transition);
}
.service-card:hover { background: var(--surface-1); }

.service-icon {
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-1);
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}
.service-card:hover .service-icon {
  background: var(--surface-3);
  border-color: var(--border-hi);
}
.service-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-1);
}
.service-desc {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 30ch;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.how-it-works {
  padding: 120px 0;
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 32px;
  align-items: start;
  position: relative;
  padding-bottom: 56px;
}
.step:last-child { padding-bottom: 0; }

.step-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 0.85;
  color: var(--surface-3);
  letter-spacing: -0.02em;
  text-align: right;
  padding-top: 4px;
  user-select: none;
  position: relative;
  z-index: 1;
}
.step:hover .step-number {
  background: linear-gradient(160deg, #fff 0%, #c8c8d8 40%, #888898 70%, #c0c0d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}
.step-content {
  padding-top: 8px;
  position: relative;
  z-index: 1;
}
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-1);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
}
.step-line {
  position: absolute;
  left: 39px;
  top: 80px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--border-hi), transparent);
}

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(160,160,190,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 600;
  line-height: 1.02;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-1);
  margin-bottom: 24px;
}
.cta-subtitle {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 48px;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-tagline {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.7;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}
.footer-nav a {
  font-size: 14px;
  color: var(--text-2);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--text-1); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-3);
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s var(--transition-slow) forwards;
}
.animate-in--delay-1 { animation-delay: 0.1s; }
.animate-in--delay-2 { animation-delay: 0.22s; }
.animate-in--delay-3 { animation-delay: 0.36s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s var(--transition-slow), transform 0.6s var(--transition-slow);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grids */
.services-grid .service-card:nth-child(1).reveal { transition-delay: 0s; }
.services-grid .service-card:nth-child(2).reveal { transition-delay: 0.08s; }
.services-grid .service-card:nth-child(3).reveal { transition-delay: 0.16s; }
.services-grid .service-card:nth-child(4).reveal { transition-delay: 0.24s; }

.steps-list .step:nth-child(1).reveal { transition-delay: 0s; }
.steps-list .step:nth-child(2).reveal { transition-delay: 0.12s; }
.steps-list .step:nth-child(3).reveal { transition-delay: 0.24s; }

.stats-grid .stat-card:nth-child(1).reveal { transition-delay: 0s; }
.stats-grid .stat-card:nth-child(3).reveal { transition-delay: 0.1s; }
.stats-grid .stat-card:nth-child(5).reveal { transition-delay: 0.2s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .animate-in { animation: none; opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll span { animation: none; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero — CTA above fold, more breathable title */
  .hero-content { padding: 60px 24px 80px; }
  .hero-title { line-height: 1.05; }
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 28px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  .stat-card { padding: 32px 20px; }

  /* Fleet gallery */
  .fleet-section { padding: 64px 0 0; }

  /* Services — section padding halved */
  .services { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 28px; }

  /* How it works — section padding halved */
  .how-it-works { padding: 64px 0; }
  .step {
    grid-template-columns: 56px 1fr;
    gap: 0 20px;
  }
  .step-number { font-size: 52px; }
  .step-line { left: 27px; }

  /* Map section padding */
  .map-section { padding: 64px 0 0; }
  .map-section .section-header { margin-bottom: 32px; }

  /* CTA section padding halved */
  .cta-section { padding: 80px 0; }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }
  .footer-nav { align-items: flex-start; }

}

@media (max-width: 640px) {
  /* CTA buttons full-width stack */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-buttons .btn {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 38px; word-break: normal; overflow-wrap: normal; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .services-grid { border-radius: var(--radius-md); }
}


/* ═══════════════════════════════════════════
   FLEET GALLERY
═══════════════════════════════════════════ */
.fleet-section {
  padding: 120px 0 0;
  overflow: hidden;
}
.fleet-section .section-header {
  margin-bottom: 48px;
}

.fleet-track-wrap {
  position: relative;
}

.fleet-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 calc((100vw - 1160px) / 2);
  padding-bottom: 0;
}
.fleet-track::-webkit-scrollbar { display: none; }

.fleet-card {
  flex: 0 0 340px;
  height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.fleet-card:hover { transform: scale(1.02); }

.fleet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.fleet-card:hover img { transform: scale(1.04); }

.fleet-card__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(to top, rgba(8,8,9,0.85) 0%, transparent 100%);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-1);
}

/* "50+ αυτοκίνητα" card */
.fleet-card--more {
  background: var(--surface-2);
  border: 1px solid var(--border-hi);
  flex: 0 0 240px;
}
.fleet-card--more a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.fleet-card__more-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 24px;
}
.fleet-card__more-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}
.fleet-card__more-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  line-height: 1.4;
}
.fleet-card__more-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  transition: color var(--transition);
}
.fleet-card--more:hover .fleet-card__more-cta { color: var(--text-1); }

/* Right fade hint */
.fleet-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}
.fleet-fade--right {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

/* Bottom border separator */
.fleet-section::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--border);
  margin-top: 48px;
}

/* Mobile */
@media (max-width: 768px) {
  .fleet-section { padding: 64px 0 0; }
  .fleet-section .section-header { margin-bottom: 32px; }
  .fleet-track {
    padding: 0 20px;
    gap: 10px;
  }
  .fleet-card { flex: 0 0 280px; height: 200px; }
  .fleet-card--more { flex: 0 0 180px; }
  .fleet-card__more-num { font-size: 48px; }
}

/* ═══════════════════════════════════════════
   INSTAGRAM BUTTON
═══════════════════════════════════════════ */
.btn--instagram {
  background: linear-gradient(135deg, #833AB4 0%, #C13584 40%, #E1306C 70%, #FD1D1D 100%);
  color: #fff;
  box-shadow: 0 0 32px rgba(193,53,132,0.25);
}
.btn--instagram:hover {
  box-shadow: 0 4px 40px rgba(193,53,132,0.45);
  filter: brightness(1.1);
}

/* ═══════════════════════════════════════════
   IMPORT MAP SECTION
═══════════════════════════════════════════ */
.map-section {
  padding: 120px 0 0;
}
.map-section .section-header {
  margin-bottom: 48px;
}
.map-wrap {
  width: 100%;
  height: 540px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.map-legend {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  padding: 18px 24px;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border);
}
.map-legend__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}
.map-legend__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.map-legend__dot--source {
  background: #e53e3e;
  box-shadow: 0 0 8px rgba(229,62,62,0.6);
}
.map-legend__dot--dest {
  background: #d4af37;
  box-shadow: 0 0 8px rgba(212,175,55,0.6);
}

/* Leaflet dark theme overrides */
.leaflet-container {
  background: #0c0c0e !important;
  font-family: 'Space Grotesk', sans-serif !important;
}
.leaflet-control-zoom a {
  background: var(--surface-2) !important;
  color: var(--text-2) !important;
  border-color: var(--border-hi) !important;
}
.leaflet-control-zoom a:hover {
  background: var(--surface-3) !important;
  color: var(--text-1) !important;
}
.leaflet-control-zoom {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
}
.leaflet-popup-content-wrapper {
  background: var(--surface-2) !important;
  border: 1px solid var(--border-hi) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.7) !important;
  color: var(--text-1) !important;
  padding: 0 !important;
}
.leaflet-popup-content {
  margin: 16px 20px !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}
.leaflet-popup-tip-container { margin-top: -1px !important; }
.leaflet-popup-tip { background: var(--surface-2) !important; }
.leaflet-popup-close-button {
  color: var(--text-3) !important;
  font-size: 18px !important;
  top: 8px !important;
  right: 10px !important;
}
.leaflet-popup-close-button:hover { color: var(--text-1) !important; }

/* map scroll-lock hint */
.map-scroll-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,8,9,0.55);
  backdrop-filter: blur(4px);
  z-index: 1000;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
  border-radius: 0;
}
.map-scroll-hint.hidden { opacity: 0; }
.map-scroll-hint span {
  padding: 12px 24px;
  background: var(--surface-2);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* Footer Instagram link */
.footer-insta {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .map-wrap { height: 380px; }
  .map-legend { gap: 20px; }
}

/* ═══════════════════════════════════════════
   EMAIL & CAR.GR BUTTONS
═══════════════════════════════════════════ */
.btn--email {
  background: var(--surface-3);
  color: var(--text-1);
  border: 1px solid var(--border-hi);
  box-shadow: 0 0 24px rgba(200,200,210,0.06);
}
.btn--email:hover {
  background: var(--surface-2);
  border-color: rgba(200,200,210,0.3);
  box-shadow: 0 4px 32px rgba(200,200,210,0.12);
}

.btn--cargr {
  background: #e8380d;
  color: #fff;
  box-shadow: 0 0 32px rgba(232,56,13,0.25);
}
.btn--cargr:hover {
  background: #cc2f08;
  box-shadow: 0 4px 40px rgba(232,56,13,0.4);
}

/* ═══════════════════════════════════════════
   FOOTER ENHANCEMENTS
═══════════════════════════════════════════ */
.footer-address {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.8;
  font-style: normal;
}
.footer-address a {
  color: var(--text-2);
  transition: color var(--transition);
}
.footer-address a:hover { color: var(--text-1); }

.footer-legal-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px;
}
.footer-legal-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.footer-legal-info {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.6;
}
.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}
.footer-legal-links a {
  font-size: 12px;
  color: var(--text-2);
  transition: color var(--transition);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border-hi);
}
.footer-legal-links a:hover { color: var(--text-1); }

@media (max-width: 768px) {
  .footer-legal-block { min-width: unset; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-nav { align-items: flex-start; }
}

/* ═══════════════════════════════════════════
   CTA PHONES
═══════════════════════════════════════════ */
.cta-phones {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.cta-phone-link:hover { color: var(--chrome-2); }
.cta-phone-sep {
  font-size: 20px;
  color: var(--text-3);
}

/* ═══════════════════════════════════════════
   CTA SECONDARY BUTTONS
═══════════════════════════════════════════ */
.cta-secondary {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
  width: 100%;
}
.btn--sm {
  padding: 10px 18px;
  font-size: 13px;
  gap: 7px;
}
.btn--instagram-sm {
  background: linear-gradient(135deg, #833AB4 0%, #C13584 40%, #E1306C 70%, #FD1D1D 100%);
  color: #fff;
  opacity: 0.85;
}
.btn--instagram-sm:hover { opacity: 1; filter: brightness(1.1); }
.btn--cargr-sm {
  background: #e8380d;
  color: #fff;
  opacity: 0.85;
}
.btn--cargr-sm:hover { opacity: 1; }

@media (max-width: 640px) {
  .cta-phones { flex-direction: column; gap: 8px; }
  .cta-phone-sep { display: none; }
  .cta-secondary { flex-direction: column; align-items: stretch; }
  .cta-secondary .btn { justify-content: center; }
}

/* ═══════════════════════════════════════════
   LANGUAGE TOGGLE BUTTON
═══════════════════════════════════════════ */
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-hi);
  background: transparent;
  color: var(--text-1);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.lang-btn:hover {
  background: var(--surface-2);
  border-color: rgba(200,200,210,0.35);
}
.lang-flag {
  font-size: 15px;
  line-height: 1;
}

.lang-btn-mobile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-2);
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition: color var(--transition);
  width: 100%;
  text-align: left;
  letter-spacing: normal;
}
.lang-btn-mobile:hover {
  color: var(--text-1);
  background: transparent;
}
.lang-btn-mobile .lang-flag {
  font-size: 22px;
}

/* ═══════════════════════════════════════════
   COOKIE CONSENT BANNER
═══════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 780px;
  background: var(--surface-2);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.7), 0 0 0 1px rgba(200,200,210,0.05);
  animation: cookieSlideUp 0.4s cubic-bezier(0.22,1,0.36,1) forwards;
}
.cookie-banner[hidden] { display: none; }

@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}
.cookie-desc {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.5;
}
.cookie-desc a {
  color: var(--text-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border-hi);
  transition: color var(--transition);
}
.cookie-desc a:hover { color: var(--text-1); }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 22px;
  font-size: 14px;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .cookie-banner { bottom: 16px; width: calc(100% - 32px); padding: 16px 18px; }
  .cookie-inner { flex-direction: column; gap: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; justify-content: center; }
}

/* ═══════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════ */
body.preloading { overflow: hidden; }

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 0.7s ease;
}
#preloader.done {
  opacity: 0;
  pointer-events: none;
}

/* soft glow behind the logo */
.preloader-glow {
  position: absolute;
  width: min(680px, 90vw);
  height: min(680px, 90vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170,170,200,0.10) 0%, rgba(170,170,200,0.03) 40%, transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}

.preloader-logo {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: preloaderIn 1s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes preloaderIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

/* big chrome AXON with a sweeping shimmer */
.preloader-logo .logo-axon {
  font-size: clamp(56px, 12vw, 88px);
  letter-spacing: 0.14em;
  background: linear-gradient(110deg,
    #6a6a78 0%, #e8e8f0 18%, #ffffff 30%, #c0c0d0 45%,
    #8a8a98 60%, #ffffff 78%, #7a7a88 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: axonShimmer 2.6s ease-in-out infinite;
}
@keyframes axonShimmer {
  0%   { background-position: 130% 0; }
  100% { background-position: -130% 0; }
}
.preloader-logo .logo-sub {
  font-size: clamp(11px, 2.5vw, 14px);
  letter-spacing: 0.42em;
  -webkit-text-fill-color: var(--chrome-4);
  padding-left: 0.42em;
}

@media (prefers-reduced-motion: reduce) {
  .preloader-logo { animation: none; }
  .preloader-logo .logo-axon { animation: none; }
  #preloader { transition: none; }
}

/* ═══════════════════════════════════════════
   HERO VIDEO BACKGROUND
═══════════════════════════════════════════ */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04) brightness(1.08);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(8,8,9,0.82) 0%, rgba(8,8,9,0.55) 34%, rgba(8,8,9,0.18) 64%, rgba(8,8,9,0.22) 100%),
    linear-gradient(to bottom, rgba(8,8,9,0.25) 0%, transparent 35%, rgba(8,8,9,0.6) 100%);
}
.hero .hero-glow { z-index: 2; }

/* ═══════════════════════════════════════════
   SERVICES — numbered cards (patron style)
═══════════════════════════════════════════ */
.services-grid { counter-reset: svc; }
.service-card { position: relative; }
.service-card::before {
  counter-increment: svc;
  content: "0" counter(svc);
  position: absolute;
  top: 28px;
  right: 32px;
  font-family: var(--font-head);
  font-size: 58px;
  font-weight: 500;
  line-height: 1;
  color: rgba(240,240,242,0.06);
  pointer-events: none;
  transition: color var(--transition);
}
.service-card:hover::before { color: rgba(240,240,242,0.12); }

/* ═══════════════════════════════════════════
   WHY — 2 columns (Γιατί Axon + Μύθοι)
═══════════════════════════════════════════ */
.why-grid {
  grid-template-columns: 1fr 1fr;
  max-width: 1040px;
  gap: 72px;
  align-items: start;
}
.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 28px;
}
.why-stat { display: flex; flex-direction: column; gap: 8px; }
.why-stat-num {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.01em;
}
.why-stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  line-height: 1.4;
}
.why-left .why-icon svg { width: 14px; height: 14px; }
.why-left .why-icon { color: #6ecfa0; }

@media (max-width: 860px) {
  .why-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    gap: 48px;
  }
}
@media (max-width: 420px) {
  .why-stats { gap: 24px; }
  .why-stat-num { font-size: 36px; }
}

/* ═══════════════════════════════════════════
   CONTACT + MAP (2 columns, patron style)
═══════════════════════════════════════════ */
.map-section { padding: 120px 0; }

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.contact-items { display: flex; flex-direction: column; gap: 10px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-1);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
a.contact-item:hover {
  border-color: var(--border-hi);
  background: var(--surface-2);
  transform: translateX(3px);
}
.contact-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-sm);
  color: var(--chrome-3);
}
/* colored icon per contact type (icon square only, not the whole row) */
.contact-item--phone .contact-icon {
  color: #4aa3ff;
  background: rgba(74,163,255,0.12);
  border-color: rgba(74,163,255,0.35);
}
.contact-item--wa .contact-icon {
  color: #25D366;
  background: rgba(37,211,102,0.12);
  border-color: rgba(37,211,102,0.35);
}
.contact-item--mail .contact-icon {
  color: #ec6049;
  background: rgba(236,96,73,0.12);
  border-color: rgba(236,96,73,0.35);
}
.contact-item--loc .contact-icon {
  color: #e8b54a;
  background: rgba(232,181,74,0.12);
  border-color: rgba(232,181,74,0.35);
}

.contact-item-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-item-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.contact-item-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-1);
  word-break: break-word;
}
.contact-socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 2px; }

/* Map panel */
.contact-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 460px;
}
.contact-map .map-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.map-badge {
  position: absolute;
  bottom: 14px; left: 14px;
  z-index: 600;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  background: rgba(8,8,9,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-sm);
  pointer-events: none;
}
.map-badge .logo-axon { font-size: 18px; }
.map-badge-text { font-size: 11px; letter-spacing: 0.03em; color: var(--text-3); }

.contact-map .map-legend {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 600;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  padding: 11px 14px;
  background: rgba(8,8,9,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-sm);
}
.contact-map .map-legend__item { font-size: 11px; }

@media (max-width: 860px) {
  .contact-wrapper { grid-template-columns: 1fr; gap: 28px; }
  .contact-map { min-height: 360px; order: -1; }
  .map-section { padding: 64px 0; }
}

/* ═══════════════════════════════════════════
   MOBILE POLISH
═══════════════════════════════════════════ */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
* { -webkit-tap-highlight-color: transparent; }
/* avoid iOS auto-zoom on focus + smoother momentum scroll */
input, textarea, select { font-size: 16px; }

@media (max-width: 768px) {
  /* comfortable tap targets */
  .hamburger { min-height: 44px; justify-content: center; }
  .nav-links .nav-cta,
  .nav-links .nav-stock { padding: 12px 20px; }

  /* services cards read better on a single column */
  .service-card { padding: 30px 24px; gap: 14px; }
  .service-card::before { font-size: 46px; top: 22px; right: 24px; }
  .service-desc { max-width: none; }

  /* tighter section rhythm = less scrolling */
  .section-header { margin-bottom: 40px; }
  .section-subtitle { font-size: 15px; }

  /* why stats sit comfortably */
  .why-stats { gap: 28px; }
}

@media (max-width: 480px) {
  /* keep long Greek serif titles to 1–2 tidy lines */
  .section-title { font-size: 36px; }
  .hero-subtitle { font-size: 15px; }
  .contact-item { padding: 14px 14px; gap: 12px; }
  .contact-icon { width: 40px; height: 40px; }
  .contact-item-value { font-size: 14px; }
  .why-stat-num { font-size: 34px; }
}

/* Mobile: full-screen video background with text overlaid (same as desktop) */
@media (max-width: 768px) {
  .hero-content { padding: 80px 24px 96px; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8,8,9,0.55) 0%, rgba(8,8,9,0.25) 30%, rgba(8,8,9,0.45) 70%, rgba(8,8,9,0.85) 100%);
  }
}


