/* ==========================================================================
   Dzsadzsa Kft. — dizájn tokenek
   ========================================================================== */
:root {
  --deep-blue: #1F3B8C;
  --deep-blue-2: #2B4BA0;
  --deep-blue-light: #4A6FD6;
  --deep-blue-dark: #142961;

  --bg-dark: #070B16;
  --bg-dark-2: #0E1730;
  --bg-dark-border: rgba(255,255,255,.1);

  --ink: #12172B;
  --white: #FFFFFF;
  --bg-soft: #F4F6FB;
  --bg-soft-2: #EAEEF8;
  --grey: #5B6478;
  --grey-light: #8891A4;
  --border: #E1E5F0;
  --success: #2E7D32;

  --font-body: 'Manrope', 'Segoe UI', Arial, sans-serif;
  --font-head: 'Archivo', 'Segoe UI', Arial, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(20, 41, 97, 0.06);
  --shadow-md: 0 10px 30px rgba(20, 41, 97, 0.12);
  --shadow-lg: 0 20px 60px rgba(20, 41, 97, 0.18);
  --glow: 0 0 24px rgba(74, 111, 214, 0.55);
  --container-w: 1180px;
}

* { box-sizing: border-box; min-width: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-wrap: break-word;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--deep-blue-dark);
  margin: 0 0 .5em;
  line-height: 1.1;
  letter-spacing: -.01em;
}
p { margin: 0 0 1em; color: var(--grey); }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--deep-blue-2);
  margin-bottom: .8em;
}
.eyebrow-light { color: var(--deep-blue-light); }

.section { padding: 108px 0; scroll-margin-top: 88px; }
.section-alt { background: var(--bg-soft); }
.section-dark {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  color: rgba(255,255,255,.8);
}
.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 800;
  max-width: 720px;
}
.title-light { color: var(--white); }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-accent {
  background: var(--deep-blue-2);
  color: var(--white);
  box-shadow: 0 0 0 0 rgba(74,111,214,0);
}
.btn-accent:hover { background: var(--deep-blue); transform: translateY(-2px); box-shadow: var(--glow); }
.btn-ghost {
  background: rgba(255,255,255,.06);
  color: var(--white);
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.6); }
.btn-full { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(7,11,22,.72);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom-color: rgba(255,255,255,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.brand { display: flex; align-items: center; gap: 10px; }
.logo-badge {
  display: inline-flex;
  background: var(--white);
  border-radius: 12px;
  padding: 8px 16px;
  box-shadow: var(--shadow-sm);
}
.logo-img { height: 46px; width: auto; mix-blend-mode: multiply; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-weight: 600;
  font-size: .93rem;
  color: rgba(255,255,255,.85);
  transition: color .15s ease;
}
.main-nav a:hover { color: var(--white); }
.nav-cta {
  background: var(--deep-blue-2);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--deep-blue); box-shadow: var(--glow); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .32s cubic-bezier(.65,0,.35,1), opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center bottom;
  transform: scale(1.06);
  transform-origin: center bottom;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,11,22,.35) 0%, rgba(7,11,22,.55) 45%, rgba(7,11,22,.95) 100%),
    linear-gradient(90deg, rgba(7,11,22,.75) 0%, rgba(7,11,22,.15) 55%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: .3;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 160px 0 96px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}
.hero-tag .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--deep-blue-light);
  box-shadow: 0 0 10px var(--deep-blue-light);
}
.hero-title {
  color: var(--white);
  font-size: clamp(2.2rem, 5.6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: .3em;
  max-width: 16ch;
}
.hero-sub {
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
  max-width: 560px;
  margin-bottom: 2.2em;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--white);
}
.hero-stat .label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  font-weight: 600;
  margin-top: 2px;
}

.hero-scanline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--deep-blue-light), transparent);
  box-shadow: 0 0 18px 2px rgba(74,111,214,.8);
  z-index: 3;
  animation: scan 5s ease-in-out infinite;
}
@keyframes scan {
  0%, 100% { opacity: .5; transform: scaleX(.7); }
  50% { opacity: 1; transform: scaleX(1); }
}

/* ==========================================================================
   Split head (Mit szállítunk)
   ========================================================================== */
#szallitunk { padding: 140px 0 132px; }
.split-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 80px;
}
.split-head h2 {
  font-size: clamp(2.8rem, 5.6vw, 5rem);
  font-weight: 900;
  margin: 0;
}
.split-desc {
  font-size: 1.25rem;
  line-height: 1.5;
  margin: 0;
  color: var(--grey);
}

.cargo-list { border-top: 1px solid var(--border); }
.cargo-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 48px 12px;
  border-bottom: 1px solid var(--border);
  transition: background .2s ease, padding-left .2s ease;
}
.cargo-row:hover { background: var(--bg-soft); padding-left: 24px; }
.cargo-name {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--deep-blue-dark);
  flex: 0 0 auto;
  min-width: 400px;
}
.cargo-index {
  color: var(--deep-blue-2);
  font-size: 1.1rem;
  font-weight: 700;
  white-space: nowrap;
}
.cargo-spec {
  flex: 1;
  text-align: right;
  color: var(--grey);
  font-size: 1.15rem;
}
.cargo-arrow {
  color: var(--deep-blue-2);
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  transition: transform .2s ease;
}
.cargo-row:hover .cargo-arrow { transform: translateX(8px); }

.cargo-note {
  margin-top: 36px;
  font-size: 1.05rem;
  color: var(--grey-light);
}

/* ==========================================================================
   Hová szállítunk / map
   ========================================================================== */
.map-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 40px;
}
.map-visual {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.hu-map-big { width: 100%; height: auto; }
.country-outline {
  fill: none;
  stroke: var(--deep-blue-2);
  stroke-width: 2.5;
  stroke-linejoin: round;
}
.county {
  fill: #C9D6F0;
  stroke: var(--white);
  stroke-width: 1.4;
  transition: fill .2s ease;
}
.county-hl { stroke-width: 1.8; }
.county-bp { fill: var(--deep-blue-light); filter: drop-shadow(0 0 6px rgba(74,111,214,.6)); }
.county-pest { fill: var(--deep-blue-2); }
.county-bacs, .county-szolnok { fill: var(--deep-blue); }
.map-label-big {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  fill: var(--white);
  pointer-events: none;
}

.map-lead {
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 1.4em;
}
.base-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 18px;
}
.base-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.base-list strong {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--deep-blue-2);
}
.base-list span { color: var(--ink); font-weight: 600; }

/* ==========================================================================
   Rólunk
   ========================================================================== */
.about-wrap { position: relative; }
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-text p { font-size: 1.1rem; }
.about-stats {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}
.about-stat-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.about-stat-row:first-child { padding-top: 0; }
.about-stat-hero { padding-bottom: 28px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--deep-blue);
  white-space: nowrap;
}
.stat-num-hero {
  font-size: clamp(3.6rem, 6vw, 5rem);
  line-height: 1;
  color: var(--deep-blue-dark);
}
.stat-label {
  font-size: .85rem;
  color: var(--grey);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: right;
}
.about-stat-hero .stat-label { align-self: flex-end; }

/* ==========================================================================
   Miért tartjuk a határidőt
   ========================================================================== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 40px;
}
.reason-item {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
}
.reason-icon {
  display: block;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.reason-num {
  position: absolute;
  top: 40px;
  right: 36px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 3rem;
  color: var(--deep-blue-2);
  opacity: .14;
  line-height: 1;
  z-index: 0;
}
.reason-item h3 {
  font-size: 1.2rem;
  margin-bottom: .4em;
  position: relative;
  z-index: 1;
  max-width: 80%;
}
.reason-item p { margin: 0; font-size: .95rem; position: relative; z-index: 1; }

/* ==========================================================================
   Flotta
   ========================================================================== */
.flotta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.flotta-lead { font-size: 1.05rem; }
.flotta-blocks {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}
.flotta-block {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-left: 3px solid var(--deep-blue);
  padding-left: 18px;
}
.flotta-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  margin-top: 2px;
}
.flotta-block h3 {
  font-size: 1rem;
  color: var(--deep-blue-dark);
  margin-bottom: .3em;
}
.flotta-block p { font-size: .93rem; margin: 0; }
.photo-box {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Hogyan működik / timeline
   ========================================================================== */
.timeline {
  position: relative;
  max-width: 860px;
  margin: 72px 0 96px;
  padding-left: 0;
}
.timeline-line-track,
.timeline-line-progress {
  position: absolute;
  left: 39px;
  width: 3px;
  border-radius: 3px;
}
.timeline-line-track {
  top: 8px;
  bottom: 8px;
  background: rgba(255,255,255,.1);
}
.timeline-line-progress {
  top: 8px;
  height: 0;
  background: linear-gradient(180deg, var(--deep-blue-light), var(--deep-blue-2));
  box-shadow: 0 0 14px rgba(74,111,214,.7);
}
.timeline-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 72px;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-dot {
  flex: 0 0 auto;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--bg-dark-2);
  border: 2px solid var(--deep-blue-light);
  box-shadow: 0 0 26px rgba(74,111,214,.5);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.timeline-body { padding-top: 14px; }
.timeline-body h3 {
  color: var(--white);
  font-size: 1.55rem;
  margin-bottom: .35em;
}
.timeline-body p {
  color: rgba(255,255,255,.65);
  margin: 0;
  font-size: 1.05rem;
  max-width: 520px;
}

.vision-quote {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 48px;
  max-width: 780px;
}
.vision-quote p {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: rgba(255,255,255,.92);
  line-height: 1.4;
  margin-bottom: .6em;
}
.vision-quote span {
  color: var(--deep-blue-light);
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ==========================================================================
   Csapat
   ========================================================================== */
.team-intro {
  max-width: 720px;
  font-size: 1.02rem;
  margin-top: 20px;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}
.team-card {
  display: flex;
  align-items: stretch;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.team-photo {
  flex: 0 0 260px;
  aspect-ratio: 374 / 560;
  background-size: cover;
  background-position: center;
}
.team-body {
  flex: 1;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-card h3 { margin-bottom: .1em; font-size: 1.2rem; }
.team-role {
  display: block;
  color: var(--deep-blue-2);
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: .8em;
}
.team-card p { font-size: .93rem; }
.team-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
  font-size: .9rem;
  font-weight: 600;
}
.team-contact a { color: var(--deep-blue); }
.team-contact a:hover { text-decoration: underline; }

/* ==========================================================================
   Vélemények
   ========================================================================== */
.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.demo-tag {
  font-size: .78rem;
  font-weight: 700;
  color: var(--deep-blue-2);
  background: var(--bg-soft-2);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.stars {
  color: var(--deep-blue-2);
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: 1rem;
}
.review-card p {
  font-size: .95rem;
  color: var(--ink);
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--deep-blue-2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .82rem;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: .92rem; color: var(--ink); }
.review-author span { font-size: .8rem; color: var(--grey-light); }

/* ==========================================================================
   Partnerség banner
   ========================================================================== */
.partnership-banner {
  background: var(--white);
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.partnership-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.partnership-inner h2 { max-width: 480px; margin-bottom: .3em; }
.partnership-inner p { max-width: 460px; margin: 0; }
.partnership-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.partnership-cta span {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--deep-blue-dark);
  font-size: 1.05rem;
}

/* ==========================================================================
   Kapcsolat
   ========================================================================== */
.kapcsolat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.kapcsolat-lead { font-size: 1.02rem; }
.address-list {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}
.address-item h4 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--deep-blue-2);
  margin-bottom: .2em;
}
.address-item p { margin: 0; color: var(--ink); font-weight: 600; }

.contact-direct {
  display: grid;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.contact-direct a { color: var(--deep-blue); font-weight: 600; }
.contact-direct a:hover { text-decoration: underline; }

.offer-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.offer-form h3 { margin-bottom: 20px; }
.form-row { margin-bottom: 16px; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.offer-form label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.offer-form input,
.offer-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--bg-soft);
  transition: border-color .15s ease, background .15s ease;
}
.offer-form input:focus,
.offer-form textarea:focus {
  outline: none;
  border-color: var(--deep-blue-2);
  background: var(--white);
}
.offer-form textarea { resize: vertical; }
.form-note {
  font-size: .82rem;
  color: var(--grey-light);
  margin: 14px 0 0;
  text-align: center;
}
.form-note a { color: var(--deep-blue-2); font-weight: 600; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.8);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
}
.footer-name strong { font-weight: 800; }
.footer-slogan { font-size: .88rem; color: rgba(255,255,255,.6); margin-top: 2px; }
.footer-col h4 {
  color: var(--white);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .8em;
}
.footer-col p { margin: 0 0 .5em; font-size: .9rem; color: rgba(255,255,255,.65); }
.footer-col a:hover { text-decoration: underline; }

.footer-bottom { padding: 22px 0; }
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.demo-badge {
  background: rgba(255,255,255,.08);
  padding: 4px 12px;
  border-radius: 999px;
}

/* ==========================================================================
   Placeholder fallback
   ========================================================================== */
.placeholder-gradient {
  background-color: var(--deep-blue);
  background-image: linear-gradient(135deg, var(--deep-blue-dark), var(--deep-blue-2));
  background-size: cover;
  background-position: center;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .about-grid, .flotta-grid, .kapcsolat-grid, .map-grid { grid-template-columns: 1fr; }
  .split-head { grid-template-columns: 1fr; gap: 20px; }
  .reasons-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .flotta-photo { order: -1; }
  .footer-inner { grid-template-columns: 1fr; }
  .cargo-name { min-width: 220px; }
}

@media (max-width: 720px) {
  .hero {
    min-height: calc(100vh - 1cm);
  }
  .hero-media {
    background-image: url('../assets/hero-kamion-mobile.png') !important;
    background-position: left bottom !important;
  }
  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(7,11,22,.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .38s cubic-bezier(.22,.61,.36,1), opacity .3s ease, visibility 0s linear .38s;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform .38s cubic-bezier(.22,.61,.36,1), opacity .3s ease, visibility 0s;
  }
  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .3s ease, transform .3s ease;
  }
  .main-nav.open a {
    opacity: 1;
    transform: translateY(0);
  }
  .main-nav.open a:nth-child(1) { transition-delay: .06s; }
  .main-nav.open a:nth-child(2) { transition-delay: .10s; }
  .main-nav.open a:nth-child(3) { transition-delay: .14s; }
  .main-nav.open a:nth-child(4) { transition-delay: .18s; }
  .main-nav.open a:nth-child(5) { transition-delay: .22s; }
  .main-nav.open a:nth-child(6) { transition-delay: .26s; }
  .main-nav a:last-child { border-bottom: none; }
  .nav-cta { text-align: center; margin-top: 10px; }
  .nav-toggle {
    display: flex;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
  }

  .hero-inner { padding: 130px 0 72px; text-align: center; }
  .hero-tag { font-size: .74rem; padding: 7px 14px; }
  .hero-title { font-size: 1.9rem; max-width: 100%; }
  .hero-sub { font-size: .95rem; margin-bottom: 1.8em; margin-left: auto; margin-right: auto; }
  .hero-cta-row { justify-content: center; }
  .hero-stats { gap: 28px; justify-content: center; }
  .hero-stat { align-items: center; }
  .hero-stat .num { font-size: 1.4rem; }
  .hero-stat .label { font-size: .74rem; }
  .cargo-row { flex-wrap: wrap; gap: 8px; }
  .cargo-spec { text-align: left; flex: 1 1 100%; }
  .team-card { flex-direction: column; }
  .team-photo { flex-basis: auto; width: 180px; margin: 24px auto 0; border-radius: var(--radius); }
  .form-row-split { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  #szallitunk { padding: 80px 0 72px; }
  .split-head { margin-bottom: 48px; }
  .cargo-row { padding: 32px 8px; }
  .cargo-name { font-size: 1.4rem; min-width: 0; flex: 1 1 100%; flex-wrap: wrap; row-gap: 2px; }
  .partnership-inner { flex-direction: column; align-items: flex-start; }
}
