/* CSS Document */
:root {
  --dark: #111827;
  --dark-2: #1f2937;
  --yellow: #f5b301;
  --yellow-dark: #d99700;
  --gray: #6b7280;
  --light: #f5f7fa;
  --white: #ffffff;
  --border: #e5e7eb;
  --radius: 22px;
  --shadow: 0 22px 60px rgba(17, 24, 39, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* ===== HEADER / NAVIGÁCIÓ ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -1px;
}

.logo span {
  color: var(--yellow-dark);
}

.main-nav {
  display: flex;
  gap: 26px;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  color: var(--dark-2);
}

.main-nav a:hover {
  color: var(--yellow-dark);
}

.nav-cta {
  background: var(--dark);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
}

/* ===== TELJES SZÉLESSÉGŰ HERO SZEKCIÓ ===== */

.hero-full {
  position: relative;
  min-height: 92vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(8, 13, 22, 0.08), rgba(8, 13, 22, 0.28)),
    url("https://images.unsplash.com/photo-1516971849755-77ddd3e004b0?q=80&w=1074&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover;
  background-position: center;
}

.hero-full::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 35%, rgba(245, 179, 1, 0.12), transparent 32%),
    linear-gradient(90deg, rgba(8, 13, 22, 0.48) 0%, rgba(8, 13, 22, 0.18) 52%, rgba(8, 13, 22, 0.04) 100%);
  z-index: 1;
}

.hero-full-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  margin-left: max(40px, calc((100vw - 1180px) / 2));
  padding: 48px 54px;
  border-radius: 28px;

  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.hero-full .eyebrow {
  color: var(--yellow);
  margin-bottom: 14px;
}

.hero-full h1 {
  max-width: 680px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -3px;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero-full p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 10px;
  font-weight: 900;
  transition: 0.25s ease;
}

.btn.primary {
  background: var(--yellow);
  color: var(--dark);
}

.btn.primary:hover {
  background: var(--yellow-dark);
}

.btn.secondary-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn.secondary-light:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* ===== BIZALMI SÁV ===== */

.trust-strip {
  background: var(--dark);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.trust-grid div {
  padding: 24px;
  text-align: center;
  font-weight: 900;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== ÁLTALÁNOS SZEKCIÓK ===== */

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.section-heading p {
  color: var(--gray);
  font-size: 18px;
}

.section-heading.light h2,
.section-heading.light p {
  color: var(--white);
}

/* ===== SZOLGÁLTATÁSOK ===== */

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 260px;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  background: #fff7db;
  border-radius: 16px;
  font-size: 26px;
  margin-bottom: 22px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
}

/* ===== SPLIT SZEKCIÓ ===== */

.split-section {
  padding: 96px 0;
  background: var(--light);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.image-panel {
  position: relative;
  min-height: 460px;
  border-radius: 32px;
  background:
    linear-gradient(rgba(17, 24, 39, 0.15), rgba(17, 24, 39, 0.45)),
    url("https://images.unsplash.com/photo-1581092921461-eab62e97a780?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.badge {
  position: absolute;
  left: 24px;
  top: 24px;
  background: var(--yellow);
  color: var(--dark);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
}

.split-content h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.split-content p {
  color: var(--gray);
  font-size: 18px;
  margin-bottom: 28px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow-dark);
  font-weight: 900;
}

/* ===== GÉPPARK ===== */

.dark-section {
  background:
    radial-gradient(circle at top left, rgba(245, 179, 1, 0.18), transparent 32%),
    var(--dark);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.fleet-card {
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.fleet-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.fleet-card p {
  color: rgba(255, 255, 255, 0.72);
}

/* ===== FOLYAMAT ===== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-step {
  border-top: 4px solid var(--yellow);
  padding: 26px;
  background: var(--light);
  border-radius: 0 0 var(--radius) var(--radius);
}

.process-step span {
  display: block;
  color: var(--yellow-dark);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 14px;
}

.process-step h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--gray);
}

/* ===== AJÁNLATKÉRÉS ===== */

.quote-section {
  padding: 96px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #fff6d8 100%);
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.quote-grid h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.quote-grid p {
  color: var(--gray);
  font-size: 18px;
  margin-bottom: 28px;
}

.contact-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
}

.quote-form {
  display: grid;
  gap: 14px;
  background: var(--white);
  padding: 28px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 18px;
  font: inherit;
  outline: none;
}

.quote-form textarea {
  min-height: 150px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--yellow-dark);
}

.quote-form button {
  border: 0;
  background: var(--dark);
  color: var(--white);
  border-radius: 999px;
  padding: 17px 24px;
  font-weight: 900;
  cursor: pointer;
}

/* ===== FOOTER ===== */

.site-footer {
  background: #080d16;
  color: rgba(255, 255, 255, 0.78);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */

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

  .hero-grid,
  .split-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 420px;
  }

  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-full {
  @media (max-width: 768px) {
  .hero-full {
    min-height: 86vh;
    background-position: center;
  }

  .hero-overlay {
    background:
      linear-gradient(rgba(8, 13, 22, 0.32), rgba(8, 13, 22, 0.58));
  }

  .hero-full-content {
    width: calc(100% - 28px);
    margin: 0 auto;
    padding: 34px 24px;
    border-radius: 22px;
  }

  .hero-full h1 {
    font-size: clamp(38px, 12vw, 58px);
    letter-spacing: -2px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    height: 70px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 70px 0 50px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero-stats,
  .service-grid,
  .process-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .image-panel {
    min-height: 340px;
  }

  .section,
  .split-section,
  .quote-section {
    padding: 68px 0;
  }

  .footer-inner {
    flex-direction: column;
  }
}