:root {
    --yellow: #C9960C;
    --yellow-light: #E8B020;
    --yellow-dark: #A67A08;
    --yellow-bg: #F5E6C0;
    --black: #1E1E1E;
    --black2: #2A2A2A;
    --black3: #333333;
    --black4: #444444;
    --gray: #888888;
    --gray-light: #BBBBBB;
    --white: #F8F5F0;
    --pure-white: #ffffff;
    --green: #2E8B57;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── UTILITY ─── */
  .container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
  .sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

  /* ─── NAVBAR ─── */
  #navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--black);
    border-bottom: 3px solid var(--yellow);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
  }
  .nav-brand {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--yellow-light);
    text-decoration: none;
    flex-shrink: 0;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
  }
  .nav-links a {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-light);
    text-decoration: none;
    padding: 6px 14px;
    transition: color 0.15s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-cta {
    background: var(--yellow);
    color: var(--pure-white);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.15s;
    white-space: nowrap;
  }
  .nav-cta:hover { background: var(--yellow-dark); }
  .nav-cta svg { width: 15px; height: 15px; }

  .nav-mobile-cta {
    display: none;
    background: var(--yellow);
    color: var(--pure-white);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 9px 18px;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  /* ─── URGENCY BAR ─── */
  .urgency-bar {
    background: var(--black2);
    border-bottom: 1px solid var(--black3);
    padding: 9px 0;
    text-align: center;
  }
  .urgency-inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .urgency-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--yellow-light);
    animation: blink 1.2s ease-in-out infinite;
    flex-shrink: 0;
  }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
  .urgency-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--yellow-light);
  }
  .urgency-sep { color: var(--black4); font-size: 12px; }

  /* ─── HERO ─── */
  .hero-bg-img {
    display: block;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 60% 30%;
    filter: brightness(0.40) contrast(1.1);
    z-index: 0;
  }

  #hero {
    background: var(--black);
    padding: 72px 0 0;
    overflow: hidden;
    position: relative;
  }
  #hero > .container {
    position: relative;
    z-index: 1;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 0;
    align-items: stretch;
  }
  .hero-left { padding-right: 48px; padding-bottom: 64px; }

  .hero-label {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 24px;
  }
  .hero-label span { color: var(--yellow); }

  .hero-h1 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(52px, 7vw, 88px);
    line-height: 0.92;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 32px;
  }
  .hero-h1 .accent { color: var(--yellow); display: block; }

  .hero-body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 40px;
  }

  .hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 56px;
  }
  .btn-primary {
    background: var(--yellow);
    color: var(--pure-white);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 32px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.15s;
    border: none;
    cursor: pointer;
  }
  .btn-primary:hover { background: var(--yellow-dark); }
  .btn-primary svg { width: 18px; height: 18px; }
  .btn-secondary {
    background: transparent;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 28px;
    border: 2px solid var(--black4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.15s, color 0.15s;
    cursor: pointer;
  }
  .btn-secondary:hover { border-color: var(--gray); }

  .hero-features {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
  }
  .hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
  }
  .hero-feature-check {
    width: 18px; height: 18px;
    border: 1.5px solid var(--yellow);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .hero-feature-check svg { width: 10px; height: 10px; color: var(--yellow); }

  .hero-right {
    background: transparent;
    border-left: none;
    display: flex;
    flex-direction: column;
  }
  .hero-img-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-height: 280px;
  }
  .hero-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 30% 30%;
    display: block;
    filter: brightness(0.75) contrast(1.1);
  }
  .hero-phone-box {
    background: var(--yellow);
    padding: 28px 32px;
    flex-shrink: 0;
    margin-top: auto;
  }
  .hero-phone-eyebrow {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 6px;
  }
  .hero-phone-num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 32px;
    letter-spacing: -0.01em;
    color: var(--pure-white);
    text-decoration: none;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
  }
  .hero-phone-sub {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.6);
  }

  /* ─── STATS ─── */
  #stats {
    background: var(--black);
    border-top: none;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .stat-item {
    padding: 28px 32px;
    border-right: 1px solid var(--black3);
  }
  .stat-item:last-child { border-right: none; }
  .stat-val {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 36px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--yellow-light);
  }
  .stat-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 4px;
  }

  /* ─── SECTION BASE ─── */
  .section {
    padding: 80px 0;
    border-top: 1px solid var(--black3);
  }
  .section-eyebrow {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--yellow);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }
  .section-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--yellow);
    flex-shrink: 0;
  }
  .section-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 48px;
  }

  /* ─── TECH ─── */
  .tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--black3);
  }
  .tech-card {
    background: var(--black);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
  }
  .tech-card-num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 80px;
    line-height: 1;
    color: var(--black3);
    letter-spacing: -0.03em;
    margin-bottom: -16px;
    user-select: none;
  }
  .tech-card-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 26px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
  }
  .tech-card-desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 20px;
  }
  .tech-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }
  .tech-tag {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--yellow);
    border: 1px solid var(--black4);
    padding: 5px 12px;
  }
  .tech-card-accent {
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--yellow);
  }

  /* ─── HOW ─── */
  .steps-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--black3);
    margin-top: 0;
  }
  .step {
    background: var(--black);
    padding: 36px 28px;
  }
  .step-num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 48px;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
  }
  .step-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 17px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
  }
  .step-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
  }

  /* ─── PRICE ─── */
  .price-wrap { max-width: 640px; }
  .price-block {
    border: 2px solid var(--yellow);
    overflow: hidden;
  }
  .price-header {
    background: var(--yellow);
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .price-header-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--pure-white);
  }
  .price-header-sub {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    margin-top: 2px;
  }
  .price-badge {
    background: rgba(0,0,0,0.25);
    color: var(--pure-white);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 14px;
    flex-shrink: 0;
  }
  .price-rows { background: var(--black2); padding: 8px 32px 16px; }
  .price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid var(--black3);
  }
  .price-row:last-child { border-bottom: none; }
  .price-row-name {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-light);
  }
  .price-row-val {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: var(--yellow);
    white-space: nowrap;
  }
  .price-row-free {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: var(--green);
    white-space: nowrap;
  }
  .price-note {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gray);
    margin-top: 16px;
    margin-bottom: 0;
  }

  /* ─── ÚJ: Árlista alatti CTA ─── */
  .price-cta-wrap {
    margin-top: 28px;
    padding: 28px 32px;
    background: var(--black2);
    border: 1px solid var(--black3);
    border-top: 3px solid var(--yellow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .price-cta-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--gray-light);
    max-width: 320px;
  }

  /* ─── AREA ─── */
  .area-districts {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
  }
  .district {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: var(--gray-light);
    border: 1px solid var(--black4);
    padding: 6px 14px;
    transition: border-color 0.15s, color 0.15s;
  }
  .district:hover { border-color: var(--yellow); color: var(--yellow); }
  .area-note {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gray);
  }

  /* ─── REVIEWS ─── */
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--black3);
  }
  .review-card {
    background: var(--black);
    padding: 32px 28px;
  }
  .review-stars {
    font-size: 16px;
    letter-spacing: 3px;
    color: var(--yellow);
    margin-bottom: 16px;
  }
  .review-text {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 16px;
  }
  .review-author {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
  }

  /* ─── FAQ ─── */
  .faq-list { display: flex; flex-direction: column; gap: 2px; background: var(--black3); }
  .faq-item { background: var(--black); }
  .faq-item summary {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--white);
    list-style: none;
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.15s;
    user-select: none;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary:hover { color: var(--yellow); }
  .faq-item[open] summary { color: var(--yellow); border-bottom: 1px solid var(--black3); }
  .faq-arrow {
    width: 20px; height: 20px;
    border: 2px solid currentColor;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s;
  }
  .faq-item[open] .faq-arrow { transform: rotate(45deg); }
  .faq-arrow svg { width: 10px; height: 10px; }
  .faq-body {
    padding: 20px 28px 24px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.7;
  }
  .faq-body ul { padding-left: 20px; margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }

  /* ─── CONTACT ─── */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--black3);
    align-items: start;
  }
  .contact-info {
    background: var(--black);
    padding: 48px 40px;
  }
  .contact-eyebrow {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 16px;
  }
  .contact-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 44px;
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 32px;
  }
  .contact-phone-big {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 34px;
    letter-spacing: -0.01em;
    color: var(--yellow);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.15s;
  }
  .contact-phone-big:hover { color: var(--yellow-dark); }
  .contact-hours {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .contact-hour-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gray);
    padding-bottom: 6px;
    border-bottom: 1px solid var(--black3);
  }
  .contact-hour-row span:first-child { font-weight: 500; color: var(--gray-light); }
  .contact-urgent {
    margin-top: 24px;
    background: var(--yellow);
    padding: 14px 20px;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--pure-white);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .urgent-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--black);
    animation: blink 1.2s infinite;
    flex-shrink: 0;
  }
  .contact-form-wrap {
    background: var(--black2);
    padding: 48px 40px;
  }
  .form-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .form-full { grid-column: 1 / -1; }
  .form-input, .form-textarea {
    width: 100%;
    background: var(--black);
    border: 1px solid var(--black4);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.15s;
    -webkit-appearance: none;
    border-radius: 0;
  }
  .form-input::placeholder, .form-textarea::placeholder { color: var(--gray); }
  .form-input:focus, .form-textarea:focus { border-color: var(--yellow); }
  .form-textarea { resize: vertical; min-height: 110px; }
  .form-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
    cursor: pointer;
  }
  .form-checkbox-row input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--yellow);
    width: 16px; height: 16px;
    flex-shrink: 0;
    cursor: pointer;
  }
  .form-checkbox-row a { color: var(--yellow); text-decoration: none; }
  .form-checkbox-row a:hover { text-decoration: underline; }
  .btn-submit {
    width: 100%;
    background: var(--yellow);
    color: var(--pure-white);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 17px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    padding: 18px;
    cursor: pointer;
    transition: background 0.15s;
    margin-top: 4px;
  }
  .btn-submit:hover { background: var(--yellow-dark); }

  /* ─── CTA BAND ─── */
  #cta-band {
    background: var(--black);
    border-top: 3px solid var(--yellow);
    border-bottom: 3px solid var(--yellow);
    padding: 64px 0;
  }
  .cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  .cta-band-eyebrow {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 10px;
  }
  .cta-band-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
  }
  .cta-band-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--yellow-light);
  }
  .btn-dark {
    background: var(--yellow);
    color: var(--pure-white);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 17px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 20px 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    transition: background 0.15s;
  }
  .btn-dark:hover { background: var(--yellow-dark); }
  .btn-dark svg { width: 18px; height: 18px; }

  /* ─── FOOTER ─── */
  footer {
    background: #080808;
    border-top: 3px solid var(--yellow);
    padding: 48px 0 28px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
  }
  .footer-brand {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 12px;
  }
  .footer-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 20px;
  }
  .footer-col-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 14px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-links a {
    font-family: var(--font-body);
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: color 0.15s;
  }
  .footer-links a:hover { color: var(--yellow); }
  .footer-bottom {
    border-top: 1px solid var(--black3);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  .footer-copy {
    font-family: var(--font-body);
    font-size: 12px;
    color: #333;
  }

  /* ─── STICKY MOBILE CALL ─── */
  .sticky-call-mobile {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--yellow);
    color: var(--pure-white);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 17px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px;
    text-align: center;
    z-index: 900;
    border-top: 2px solid var(--yellow-dark);
  }

  /* ─── BACK TO TOP ─── */
  .back-top {
    position: fixed;
    bottom: 80px; right: 24px;
    width: 44px; height: 44px;
    background: var(--black3);
    border: 2px solid var(--yellow);
    color: var(--yellow);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    z-index: 800;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }
  .back-top.visible { opacity: 1; pointer-events: auto; }
  .back-top svg { width: 16px; height: 16px; }

  /* ─── COOKIE BANNER ─── */
  #cookie-banner {
    position: fixed;
    inset-x: 0; bottom: 0;
    z-index: 2000;
    background: #111;
    border-top: 2px solid var(--yellow);
  }
  .cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 32px;
    flex-wrap: wrap;
  }
  .cookie-text { font-family: var(--font-body); font-size: 13px; color: var(--gray-light); max-width: 600px; line-height: 1.5; }
  .cookie-text a { color: var(--yellow); text-decoration: none; }
  .cookie-text strong { font-weight: 500; color: var(--white); display: block; margin-bottom: 2px; }
  .cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
  .cookie-btn {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 9px 18px;
    border: 2px solid var(--black4);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: border-color 0.15s;
  }
  .cookie-btn:hover { border-color: var(--gray); }
  .cookie-btn-accept {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--pure-white);
  }
  .cookie-btn-accept:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }
  #cookie-panel-backdrop {
    position: fixed; inset: 0; z-index: 2100;
    background: rgba(0,0,0,0.75);
    display: none;
    align-items: center;
    justify-content: center;
  }
  #cookie-panel-backdrop.open { display: flex; }
  .cookie-panel {
    background: #111;
    border: 2px solid var(--yellow);
    padding: 36px 32px;
    width: 100%;
    max-width: 420px;
    margin: 16px;
    position: relative;
  }
  .cookie-panel-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
  }
  .cookie-panel-close {
    position: absolute; top: 14px; right: 18px;
    background: none; border: none;
    color: var(--gray); font-size: 22px; cursor: pointer;
    line-height: 1;
  }
  .cookie-panel-close:hover { color: var(--white); }
  .cookie-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--black3);
  }
  .cookie-row:last-of-type { border-bottom: none; }
  .cookie-row-label { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--white); text-transform: uppercase; letter-spacing: 0.05em; }
  .cookie-row-desc { font-family: var(--font-body); font-size: 12px; color: var(--gray); margin-top: 4px; line-height: 1.5; }
  .cookie-toggle {
    width: 44px; height: 24px;
    border-radius: 12px;
    background: #333;
    border: none;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: background 0.2s;
  }
  .cookie-toggle.on { background: var(--yellow); }
  .cookie-toggle::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--white);
    transition: transform 0.2s;
  }
  .cookie-toggle.on::after { transform: translateX(20px); }
  .cookie-toggle-disabled { opacity: 0.4; cursor: not-allowed; background: #4ade80 !important; }
  .cookie-toggle-disabled::after { transform: translateX(20px) !important; }
  .cookie-panel-save {
    width: 100%;
    background: var(--yellow);
    color: var(--pure-white);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    padding: 14px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.15s;
  }
  .cookie-panel-save:hover { background: var(--yellow-dark); }

  /* ════════════════════════════════════════
     RESPONSIVE
     ════════════════════════════════════════ */

  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-left { padding-right: 0; padding-bottom: 0; }
    .hero-right { border-left: none; border-top: 3px solid var(--yellow); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--black3); }
    .tech-grid { grid-template-columns: 1fr; }
    .steps-list { grid-template-columns: 1fr 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .cta-band-inner { flex-direction: column; text-align: center; }
    .form-grid { grid-template-columns: 1fr; }
    .price-cta-wrap { flex-direction: column; align-items: flex-start; }
  }

@media (max-width: 768px) {
  /* Navbar */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-mobile-cta { display: inline-flex; }
  .nav-brand { font-size: 13px; letter-spacing: 0.02em; }
  .nav-inner { height: 56px; }

  /* Hero – mobile: darker overlay, centered image */
  #hero {
    overflow: visible;
    position: relative;
  }
  .hero-bg-img {
    object-position: 50% 30%;
    filter: brightness(0.35) contrast(1.1);
  }
  #hero > .container {
    position: relative;
    z-index: 1;
  }
  .hero-right {
    border-left: none;
    border-top: 3px solid var(--yellow);
    background: transparent;
    position: relative;
    z-index: 2;
  }
  .hero-phone-box {
    background: var(--yellow);
    position: relative;
    z-index: 2;
  }
  .hero-left {
    padding-right: 0;
    padding-bottom: 32px;
    position: relative;
    z-index: 2;
  }

  /* Sticky call + body padding */
  .sticky-call-mobile { display: block; }
  body { padding-bottom: 64px; }
}

@media (max-width: 600px) {
  #hero { padding-top: 48px; }
  .hero-h1 { font-size: 48px; }
  .steps-list { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .contact-info, .contact-form-wrap { padding: 32px 24px; }
  .price-rows { padding: 8px 20px 12px; }
  .price-header { padding: 16px 20px; }
  .hero-inline-form { max-width: 100%; padding: 20px 0 0; }
  .price-cta-wrap { padding: 20px 24px; }
}

  /* ─── HERO INLINE FORM (bal oldal alján, desktop) ─── */
  .hero-inline-form {
    padding-top: 28px;
    border-top: 1px solid var(--black3);
    max-width: 460px;
  }
  .hero-inline-form-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 10px;
  }
  .hero-inline-form-row {
    display: flex;
    gap: 0;
  }
  .hero-inline-input {
    flex: 1;
    font-size: 15px !important;
    padding: 14px 16px !important;
    border-right: none !important;
  }
  .hero-inline-btn {
    background: var(--yellow);
    color: var(--pure-white);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    padding: 14px 20px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.15s;
  }
  .hero-inline-btn:hover { background: var(--yellow-dark); }

  @media (max-width: 768px) {
    .hero-inline-form { max-width: 100%; }
    .hero-inline-form-row { flex-direction: column; }
    .hero-inline-input { border-right: 1px solid var(--black4) !important; }
    .hero-inline-btn { width: 100%; padding: 15px; font-size: 15px; }
  }