
* {
  box-sizing: border-box;
}

:root {
  --bg: #f4f4f5;
  --bg-soft: #efeff1;
  --text: #141416;
  --muted: #686a70;
  --dark: #0d0d10;
  --dark-2: #17181c;
  --line: #dddddf;
  --accent: #ea1c24;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 16, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-wrap {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.logo-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.header-logo { min-width: 270px; }
.header-logo img {
  width: 235px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.18));
}

.main-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.main-nav a {
  color: #ececf0;
  font-size: 14px;
  font-weight: 600;
}
.main-nav a:hover { color: #ffffff; }

.menu-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  color: white;
  font-size: 28px;
  line-height: 1;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: white;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 25px rgba(234, 28, 36, 0.28);
}

.btn:hover { transform: translateY(-1px); filter: brightness(1.03); }
.btn-small { min-height: 42px; padding: 0 16px; font-size: 13px; }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.42);
  box-shadow: none;
}
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: #bcbcbc;
  box-shadow: none;
}
.btn-full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 84% 28%, rgba(234, 28, 36, 0.18), transparent 22%),
    radial-gradient(circle at 90% 78%, rgba(255, 255, 255, 0.10), transparent 24%),
    linear-gradient(115deg, #0d0d10 0%, #16171b 55%, #24252a 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -170px;
  width: 540px;
  height: 540px;
  border: 85px solid rgba(234, 28, 36, 0.12);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 70px;
  align-items: center;
  padding: 92px 0;
}

.hero-logo-bubble {
  margin-bottom: 30px;
}

.hero-logo {
  width: min(500px, 90vw);
  height: auto;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,0.24));
}

.eyebrow {
  display: inline-block;
  color: #ff7479;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.eyebrow.dark { color: var(--accent); }

.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  margin: 0 0 24px;
  letter-spacing: -0.045em;
}

.lead {
  max-width: 760px;
  font-size: 20px;
  line-height: 1.7;
  color: #d3d4d9;
}

.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: #c1c3c9;
  font-size: 13px;
}

.hero-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
}

.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}

.card-label {
  color: #ff6d73;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 12px 0 16px;
  font-size: 31px;
  line-height: 1.15;
}

.hero-card p {
  margin: 0 0 18px;
  color: #d0d1d6;
  line-height: 1.72;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: #ffffff;
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff7b80;
  font-weight: 900;
}

.text-link { color: #fff; font-weight: 800; }

.section { padding: 92px 0; }
.section-light-gray { background: var(--bg-soft); }
.section-dark { background: var(--dark); color: white; }

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

.section-heading h2, .quote-grid h2, .contact-grid h2 {
  font-size: clamp(34px, 4vw, 50px);
  margin: 0 0 14px;
  letter-spacing: -0.03em;
}

.section-heading p, .muted, .contact-intro {
  color: var(--muted);
  line-height: 1.75;
}

.section-dark .muted { color: #a8aab0; }

.trust-bar-section {
  padding-top: 0;
  margin-top: -34px;
  position: relative;
  z-index: 4;
}

.trust-bar {
  background: white;
  border: 1px solid #e7e7ea;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item { padding: 12px 8px; }

.trust-item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}

.trust-item span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

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

.info-card {
  background: white;
  border: 1px solid #e7e7ea;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);
}

.feature-card { min-height: 225px; }
.icon { font-size: 28px; margin-bottom: 18px; }

.info-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 34px;
}

.brand-grid span {
  background: white;
  border: 1px solid #e2e2e5;
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  font-weight: 800;
  color: #595b61;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 24px rgba(0,0,0,0.03);
}

.catalog-panel {
  background: white;
  border: 1px solid #e2e2e5;
  border-radius: 22px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  box-shadow: var(--shadow);
}

.catalog-panel h3 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.2;
}

.catalog-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.catalog-bullets {
  display: grid;
  gap: 12px;
  align-content: center;
}

.catalog-point {
  background: #f7f7f8;
  border: 1px solid #ececef;
  border-radius: 14px;
  padding: 16px 18px;
  font-weight: 700;
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 74px;
  align-items: start;
}

.quote-tips {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.quote-tips div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.quote-tips strong {
  display: grid;
  place-items: center;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  font-size: 14px;
}

.quote-tips span {
  color: #cacbd1;
  padding-top: 4px;
  line-height: 1.65;
}

.quote-form {
  background: var(--dark-2);
  border: 1px solid #2b2d33;
  border-radius: 18px;
  padding: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

input, textarea {
  width: 100%;
  border: 1px solid #363943;
  background: #111216;
  color: white;
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  outline: none;
}

input:focus, textarea:focus { border-color: var(--accent); }
textarea { resize: vertical; }

.form-note {
  color: #7d7f87;
  font-size: 11px;
  line-height: 1.5;
  margin-bottom: 0;
}

.form-success {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: #d4ffd9;
  background: rgba(90, 180, 90, 0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
}

.contact-list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.contact-list > div {
  padding-bottom: 16px;
  border-bottom: 1px solid #dddddf;
}

.contact-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 7px;
}

.hours {
  display: grid;
  gap: 7px;
  max-width: 380px;
}

.hours span {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.hours b { white-space: nowrap; }

.map-box {
  min-height: 430px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, #ececee 0%, #dadbdd 100%);
  display: grid;
  place-items: center;
  border: 1px solid #d4d4d7;
}

.map-placeholder {
  text-align: center;
  padding: 34px;
}

.map-logo-bubble {
  margin-bottom: 20px;
}

.map-logo-bubble img {
  width: 270px;
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.16));
}

.map-placeholder strong {
  display: block;
  font-size: 26px;
  margin-top: 4px;
  margin-bottom: 10px;
}

.map-placeholder p {
  color: #555861;
  line-height: 1.6;
  margin-bottom: 18px;
}

.text-map-link {
  color: var(--accent);
  font-weight: 800;
}

.footer {
  background: #09090b;
  color: #d2d3d8;
  padding: 30px 0;
  border-top: 1px solid #1c1c1f;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-logo-bubble { padding: 0; }

.footer-logo {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.18));
}

.footer-copy {
  margin-left: auto;
  text-align: right;
}

.footer-copy strong {
  display: block;
  color: white;
  margin-bottom: 6px;
}

.footer-copy p {
  margin: 0 0 6px;
  color: #b9bbc3;
}

.footer-copy small { color: #8d9099; }

.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: white;
  font-size: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  z-index: 40;
}

@media (max-width: 980px) {
  .main-nav, .nav-cta { display: none; }
  .menu-toggle { display: block; }

  .main-nav.open {
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    background: #101114;
    border-top: 1px solid #25262b;
    padding: 8px 20px 16px;
  }

  .main-nav.open a {
    padding: 14px 0;
    border-bottom: 1px solid #1f2024;
  }

  .hero-grid, .quote-grid, .contact-grid, .catalog-panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-card { max-width: 620px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 68px 0; }
  .nav-wrap { min-height: 84px; }
  .main-nav.open { top: 84px; }

  .header-logo { min-width: auto; }
  .header-logo img { width: 165px; }
  .hero-grid { padding: 68px 0; }
  .hero-logo { width: 320px; }

  .hero h1 { font-size: 42px; }
  .lead { font-size: 17px; }

  .trust-bar { grid-template-columns: 1fr; }
  .cards, .form-row, .brand-grid { grid-template-columns: 1fr; }

  .quote-tips strong {
    min-width: 30px;
    height: 30px;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copy {
    text-align: left;
    margin-left: 0;
  }

  .footer-logo { width: 170px; }
  .map-logo-bubble img { width: 210px; }
  .hours span { font-size: 14px; }
}

.hidden-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  margin: 8px 0 18px;
  color: #c8cad0;
  font-weight: 500;
  line-height: 1.55;
}

.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.about-section {
  background: #ffffff;
}

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

.about-copy h2 {
  font-size: clamp(34px, 4vw, 50px);
  margin: 0 0 20px;
  letter-spacing: -0.035em;
}

.about-copy p {
  color: var(--muted);
  line-height: 1.82;
  font-size: 16px;
}

.about-lead {
  font-size: 19px !important;
  color: #303238 !important;
  font-weight: 600;
}

.about-signature {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #e5e5e8;
}

.about-signature strong {
  display: block;
  font-size: 20px;
  margin-bottom: 5px;
}

.about-signature span {
  color: var(--accent);
  font-weight: 800;
}

.about-panel {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 118px;
}

.about-stat {
  background: #f6f6f7;
  border: 1px solid #e6e6e9;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(0,0,0,.035);
}

.about-stat strong {
  display: block;
  font-size: 18px;
  margin-bottom: 7px;
}

.about-stat span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.phone-list {
  display: grid;
  gap: 10px;
  max-width: 380px;
}

.phone-person {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 12px 14px;
  background: #f5f5f6;
  border: 1px solid #e1e1e4;
  border-radius: 12px;
  transition: transform .15s ease, border-color .15s ease;
}

.phone-person:hover {
  transform: translateY(-1px);
  border-color: #c9c9cd;
}

.phone-person span {
  font-weight: 800;
  color: var(--accent);
}

.phone-person strong {
  white-space: nowrap;
}

.btn-secondary-contact {
  background: #22242a;
  border-color: #22242a;
  box-shadow: none;
}

@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-panel {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .about-panel {
    grid-template-columns: 1fr;
  }

  .phone-person {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}


/* --- V11 képes integrációk --- */
.hero-visual {
  display: grid;
  gap: 16px;
  align-self: stretch;
}

.hero-image-frame {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-visual-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-visual-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #f2f3f6;
  font-size: 13px;
  font-weight: 700;
}

.gallery-section {
  background: #ffffff;
}

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

.gallery-card {
  margin: 0;
  background: white;
  border: 1px solid #e6e6e9;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,0.05);
}

.gallery-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.gallery-card-wide img {
  min-height: 100%;
}

.gallery-card figcaption {
  padding: 22px 22px 24px;
  display: grid;
  gap: 8px;
}

.gallery-card strong {
  font-size: 22px;
}

.gallery-card span {
  color: var(--muted);
  line-height: 1.7;
}

.brand-showcase,
.catalog-showcase {
  margin-bottom: 24px;
  background: white;
  border: 1px solid #e3e3e6;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,.05);
}

.brand-showcase img,
.catalog-showcase img {
  width: 100%;
  display: block;
}

.catalog-showcase {
  margin-top: 6px;
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-visual-tags span {
    font-size: 12px;
  }

  .gallery-card strong {
    font-size: 20px;
  }
}


/* --- V12 javítások --- */
.hero-visual {
  align-self: center;
}

.hero-image-frame {
  min-height: 0;
  padding: 14px;
  background: rgba(255,255,255,0.04);
}

.hero-image-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center center;
  border-radius: 18px;
}

.gallery-section {
  background: #ffffff;
}

.single-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.showcase-large {
  margin: 0;
}

.showcase-large img {
  width: 100%;
  display: block;
}

.showcase-info-panel {
  display: grid;
  gap: 14px;
}

.showcase-mini {
  background: #f6f6f7;
  border: 1px solid #e6e6ea;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(0,0,0,.035);
}

.showcase-mini strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.showcase-mini span {
  color: var(--muted);
  line-height: 1.65;
}

.brand-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

.brand-category {
  background: white;
  border: 1px solid #e3e3e7;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,.04);
}

.brand-category h3 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.25;
}

.brand-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-wall span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 11px;
  border-radius: 999px;
  background: #f3f3f5;
  border: 1px solid #e4e4e8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  color: #3c3f46;
}

.compact-showcase img {
  max-height: 360px;
  object-fit: cover;
}

@media (max-width: 980px) {
  .single-showcase,
  .brand-categories {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-image-frame {
    padding: 10px;
  }

  .brand-wall span {
    font-size: 11px;
    min-height: 32px;
    padding: 6px 10px;
  }
}


/* --- V13 logós fal --- */
.logo-wall-section {
  margin-bottom: 26px;
}

.logo-wall-frame {
  background: #ffffff;
  border: 1px solid #e3e3e7;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(0,0,0,.05);
}

.logo-wall-frame img {
  width: 100%;
  display: block;
}

.logo-wall-note {
  margin: 12px 4px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}


/* --- V14 szervizeknek / B2B partner blokk --- */
.service-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(234, 28, 36, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f6f6f7 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.service-copy h2 {
  font-size: clamp(36px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 22px;
}

.service-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

.service-lead {
  color: #2f3137 !important;
  font-size: 19px !important;
  font-weight: 650;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.service-panel {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 14px;
  background: #111216;
  color: #ffffff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid #24262c;
  box-shadow: 0 22px 54px rgba(0,0,0,.16);
}

.service-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(234,28,36,.14);
  border: 1px solid rgba(234,28,36,.30);
  color: #ff7479;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.service-feature {
  background: #1a1b20;
  border: 1px solid #292b32;
  border-radius: 16px;
  padding: 18px;
}

.service-feature strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
}

.service-feature span {
  color: #bfc1c8;
  font-size: 14px;
  line-height: 1.6;
}

.service-feature-highlight {
  background: linear-gradient(135deg, rgba(234,28,36,.18), rgba(255,255,255,.04));
  border-color: rgba(234,28,36,.34);
}

.service-feature-highlight strong {
  color: #ffffff;
  font-size: 22px;
}

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-panel {
    position: static;
  }
}

/* --- V15 ajánlatkérő sikeres küldés --- */
.form-success-panel,
.form-error-panel {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  display: grid;
  gap: 5px;
  line-height: 1.5;
}

.form-success-panel[hidden],
.form-error-panel[hidden] {
  display: none;
}

.form-success-panel {
  background: rgba(54, 190, 92, 0.10);
  border: 1px solid rgba(78, 220, 116, 0.28);
  color: #d9ffe4;
}

.form-error-panel {
  background: rgba(234, 28, 36, 0.10);
  border: 1px solid rgba(234, 28, 36, 0.30);
  color: #ffdfe1;
}

.form-success-panel strong,
.form-error-panel strong {
  font-size: 16px;
}

.quote-form button[disabled] {
  opacity: .68;
  cursor: wait;
  transform: none;
}

.required-note {
  margin: 2px 0 12px;
  color: #aeb0b6;
  font-size: 12px;
}

/* --- V17 országos szállítás + erősebb ajánlatkérés --- */

.shipping-highlight {
  background: linear-gradient(135deg, #16171b 0%, #202126 100%);
  color: #fff;
  border-top: 1px solid #292b31;
  border-bottom: 1px solid #292b31;
}

.shipping-highlight-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
}

.shipping-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(234,28,36,.14);
  border: 1px solid rgba(234,28,36,.28);
  font-size: 30px;
}

.shipping-kicker {
  display: inline-block;
  margin-bottom: 6px;
  color: #ff767b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.shipping-copy h2 {
  margin: 0 0 7px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
}

.shipping-copy p {
  margin: 0;
  color: #c8c9ce;
  line-height: 1.7;
}

.shipping-copy strong {
  color: #fff;
}

.quote-strip {
  background: #ef1d2a;
  color: #fff;
}

.quote-strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.quote-strip-inner > div {
  display: grid;
  gap: 3px;
}

.quote-strip-inner span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  opacity: .85;
}

.quote-strip-inner strong {
  font-size: clamp(20px, 2.8vw, 30px);
  line-height: 1.1;
}

.quote-strip .btn {
  background: #fff;
  color: #16171b;
  border-color: #fff;
  white-space: nowrap;
}

.quote-strip .btn:hover {
  transform: translateY(-2px);
}

.quote-section-strong {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(234,28,36,.18), transparent 22%),
    radial-gradient(circle at 85% 85%, rgba(255,255,255,.06), transparent 24%),
    #101114;
}

.quote-section-strong::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.025) 45%, transparent 70%);
}

.quote-section-strong .container {
  position: relative;
  z-index: 1;
}

.quote-priority-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ef1d2a;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .11em;
}

.quote-section-strong h2 {
  max-width: 760px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.03;
  letter-spacing: -.045em;
}

.quote-strong-lead {
  margin: 18px 0 8px;
  max-width: 760px;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
}

.quote-section-strong .quote-form {
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}

.quote-section-strong .btn-full {
  min-height: 54px;
  font-size: 16px;
  font-weight: 900;
}

.floating-quote-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ef1d2a;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.18);
}

.floating-quote-cta:hover {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .shipping-highlight-inner {
    grid-template-columns: auto 1fr;
  }

  .shipping-action {
    grid-column: 1 / -1;
  }

  .quote-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .shipping-highlight-inner {
    grid-template-columns: 1fr;
  }

  .shipping-icon {
    width: 54px;
    height: 54px;
  }

  .floating-quote-cta {
    right: 14px;
    bottom: 14px;
    min-width: 132px;
    min-height: 46px;
    font-size: 14px;
  }
}

/* --- V18 kezdőlapi futár kiemelés --- */
.hero-shipping-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  margin: 14px 0 20px;
  padding: 11px 14px;
  border-radius: 15px;
  background: rgba(239,29,42,.12);
  border: 1px solid rgba(239,29,42,.28);
}

.hero-shipping-icon {
  font-size: 24px;
  line-height: 1;
}

.hero-shipping-badge div {
  display: grid;
  gap: 2px;
}

.hero-shipping-badge strong {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.hero-shipping-badge small {
  color: #c8c9ce;
  font-size: 12px;
  line-height: 1.45;
}

/* --- V19 piros országos futárszolgálat sáv --- */
.courier-red-strip {
  background: linear-gradient(135deg, #e91e2b 0%, #c80f1d 100%);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(0,0,0,.12);
}

.courier-red-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding-top: 26px;
  padding-bottom: 26px;
}

.courier-red-copy {
  max-width: 930px;
}

.courier-red-kicker {
  display: inline-block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  color: rgba(255,255,255,.82);
}

.courier-red-copy h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.courier-red-copy p {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 15px;
  line-height: 1.72;
}

.courier-red-copy strong {
  color: #fff;
  font-weight: 900;
}

.courier-red-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #fff;
  color: #16171b;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(0,0,0,.16);
}

.courier-red-btn:hover {
  transform: translateY(-2px);
}

/* V18 hero shipping badge no longer used */
.hero-shipping-badge {
  display: none !important;
}

@media (max-width: 820px) {
  .courier-red-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .courier-red-btn {
    width: fit-content;
  }
}

/* --- V20 spam protection + SEO support --- */
.hidden-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
