/*
Theme Name: dieselKompresszorLandolo2026
Version: 1.0
*/

    /* ─────────────────────────────────────────────
       TOKENS
    ───────────────────────────────────────────── */
    :root {
      --blue:        #0A74DA;
      --blue-dark:   #0860b8;
      --blue-faint:  #EEF5FD;
      --gold:        #F0B429;
      --ink:         #0D1117;
      --ink-2:       #374151;
      --ink-3:       #6B7280;
      --line:        #E5E7EB;
      --bg:          #F9FAFB;
      --white:       #FFFFFF;
      --radius-sm:   10px;
      --radius:      18px;
      --radius-lg:   28px;
      --shadow-sm:   0 1px 4px rgba(0,0,0,.06);
      --shadow:      0 4px 20px rgba(0,0,0,.07);
      --shadow-lg:   0 16px 56px rgba(0,0,0,.1);
      --ease:        cubic-bezier(.22,.68,0,1.2);
      --container:   1160px;
      --atlasSarga: #f9c205;
    }

    /* ─────────────────────────────────────────────
       RESET & BASE
    ───────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'DM Sans', system-ui, sans-serif;
      background: var(--bg);
      color: var(--ink);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; width: 100%; height: 100%; object-fit: cover; }

    .container {
      width: min(calc(100% - 48px), var(--container));
      margin-inline: auto;
    }

    /* ─────────────────────────────────────────────
       TYPOGRAPHY HELPERS
    ───────────────────────────────────────────── */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 16px;
    }
    .eyebrow::before {
      content: '';
      display: block;
      width: 20px; height: 2px;
      background: var(--blue);
      border-radius: 2px;
    }


		.mk-how-shell{
			background: var(--white);
		}
		.mk-how-inner{
			padding: 67px 0px;
		}

    .display {
      font-family: 'DM Serif Display', Georgia, serif;
      font-size: clamp(40px, 5.5vw, 72px);
      line-height: 1.06;
      letter-spacing: -.02em;
      color: var(--ink);
    }

    .display em {
      font-style: italic;
      color: var(--blue);
    }

    .h2 {
      font-family: 'DM Serif Display', Georgia, serif;
      font-size: clamp(30px, 4vw, 52px);
      line-height: 1.1;
      letter-spacing: -.02em;
    }

    .h3 {
      font-size: 20px;
      font-weight: 700;
      line-height: 1.3;
      letter-spacing: -.01em;
    }

    .body-lg  { font-size: 18px; color: var(--ink-2); line-height: 1.75; }
    .body     { font-size: 16px; color: var(--ink-2); line-height: 1.7;  }
    .caption  { font-size: 13px; color: var(--ink-3); }

    /* ─────────────────────────────────────────────
       BUTTONS
    ───────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 52px;
      padding: 0 28px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: -.01em;
      transition: transform .22s var(--ease), box-shadow .22s ease, background .18s ease;
      white-space: nowrap;
      cursor: pointer;
      border: none;
      text-decoration: none;
    }
    .btn:hover { transform: translateY(-2px); }

    .btn-primary {
      background: var(--atlasSarga);
      color: #fff;
      box-shadow: 0 0 0 0 rgba(10,116,218,.4);
      animation: pulse 2.8s ease infinite;
    }
    .btn-primary:hover {
      background: var(--blue-dark);
      box-shadow: 0 8px 28px rgba(10,116,218,.38);
      animation: none;
    }
    @keyframes pulse {
      0%,100% { box-shadow: 0 0 0 0 rgba(10,116,218,.35); }
      60%      { box-shadow: 0 0 0 10px rgba(10,116,218,0); }
    }

    .btn-ghost {
      background: transparent;
      color: var(--ink);
      border: 1.5px solid var(--line);
    }
    .btn-ghost:hover {
      border-color: var(--blue);
      color: var(--blue);
    }

    .btn-white {
      background: var(--atlasSarga);
      color: var(--blue);
      box-shadow: var(--shadow);
    }
    .btn-white:hover { box-shadow: var(--shadow-lg); }

    .btn-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    /* ─────────────────────────────────────────────
       SECTION LAYOUT
    ───────────────────────────────────────────── */
    .section       { padding: 112px 0; }
    .section-sm    { padding: 72px 0;  }
    .section-white { background: var(--white); }
    .section-ink   { background: var(--ink); }
    .section-blue  { background: var(--blue); }

    .section-head        { margin-bottom: 64px; }
    .section-head.center { text-align: center; }
    .section-head.center .body-lg { max-width: 580px; margin-inline: auto; margin-top: 16px; }
    .section-head .body-lg { margin-top: 16px; max-width: 560px; }

    /* ─────────────────────────────────────────────
       IMAGE PLACEHOLDER
    ───────────────────────────────────────────── */
    .img-placeholder {
      background: linear-gradient(135deg, #e8ecf0 0%, #d1d9e0 100%);
      border-radius: var(--radius-lg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: #9CA3AF;
      font-size: 13px;
      font-weight: 500;
      text-align: center;
      padding: 32px;
    }
    .img-placeholder svg { opacity: .35; }

    /* ─────────────────────────────────────────────
       ① NAV
    ───────────────────────────────────────────── */
    .nav {
      position: sticky;
      top: 0;
      z-index: 90;
      height: 66px;
      background: rgba(6,12,20,.85);
      backdrop-filter: blur(18px) saturate(180%);
      -webkit-backdrop-filter: blur(18px) saturate(180%);
      border-bottom: 1px solid rgba(255,255,255,.07);
      transition: background .3s ease, border-color .3s ease;
    }
    .nav.light {
      background: rgba(255,255,255,.95);
      border-bottom: 1px solid rgba(0,0,0,.07);
    }
    .nav-inner {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-logo-badge {
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 6px;
      width: 33%;
    }
    .nav-logo-text { font-size: 17px; font-weight: 700; letter-spacing: -.02em; color: #fff; transition: color .3s; }
    .nav-logo-sub  { font-size: 11px; color: rgba(255,255,255,.45); display: block; margin-top: -2px; transition: color .3s; }
    .nav.light .nav-logo-text { color: var(--ink); }
    .nav.light .nav-logo-sub  { color: var(--ink-3); }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,.75);
      padding: 8px 14px;
      border-radius: 8px;
      transition: color .15s, background .15s;
    }
    .nav.light .nav-links a { color: var(--ink-2); }
    .nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }
    .nav.light .nav-links a:hover { color: var(--blue); background: var(--blue-faint); }
    .nav-cta { height: 38px; padding: 0 18px; font-size: 14px; }

    /* ─────────────────────────────────────────────
       ② HERO – scroll hero
    ───────────────────────────────────────────── */

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: none; }
    }

    /* Scroll wrapper – 280vh tall drives the animation */
    #hero-wrapper {
      position: relative;
      height: 280vh;
    }

    /* Sticky container – stays in viewport */
    #hero-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: #1F2937;
    }

    /* Background radial glow */
    .bg-glow {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 70% at 50% 60%, rgba(10,116,218,.2) 0%, transparent 70%),
        radial-gradient(ellipse 100% 50% at 50% 100%, rgba(10,116,218,.06) 0%, transparent 60%);
      pointer-events: none;
      z-index: 0;
    }

    /* Noise texture */
    .bg-noise {
      position: absolute;
      inset: 0;
      opacity: .04;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
    }

    /* Top text block – centred */
    .hero-top {
      position: relative;
      z-index: 10;
      text-align: center;
      padding: 0 24px;
      max-width: 760px;
      margin-bottom: 32px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp .7s .1s ease forwards;
    }

    /* Badge pill */
    .hero-badge-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 7px 18px;
      background: rgba(10,116,218,.15);
      border: 1px solid rgba(10,116,218,.35);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,.8);
      margin-bottom: 22px;
    }
    .hero-badge-pill .dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 3px rgba(240,180,41,.25);
      flex-shrink: 0;
    }

    /* h1 inside hero */
    #hero-sticky h1 {
      font-family: 'DM Serif Display', Georgia, serif;
      font-size: clamp(34px, 5vw, 64px);
      line-height: 1.07;
      letter-spacing: -.025em;
      color: #fff;
      margin-bottom: 18px;
    }
    #hero-sticky h1 em {
      font-style: italic;
      color: var(--blue);
    }

    /* hero sub */
    .hero-sub {
      font-size: 17px;
      color: rgba(255,255,255,.6);
      max-width: 520px;
      margin: 0 auto 26px;
      line-height: 1.75;
    }

    /* Scroll cue */
    .scroll-cue {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      color: rgba(255,255,255,.3);
      letter-spacing: .1em;
      text-transform: uppercase;
      opacity: 0;
      animation: fadeUp .6s 1.4s ease forwards;
      transition: opacity .3s;
      z-index: 10;
    }
    .scroll-cue.hidden { opacity: 0 !important; }
    .scroll-wheel {
      width: 22px; height: 38px;
      border: 1.5px solid rgba(255,255,255,.2);
      border-radius: 999px;
      position: relative;
      overflow: hidden;
    }
    .scroll-dot {
      width: 4px; height: 4px;
      background: rgba(255,255,255,.5);
      border-radius: 50%;
      position: absolute;
      top: 6px; left: 50%;
      transform: translateX(-50%);
      animation: scrollDotAnim 1.8s ease-in-out infinite;
    }
    @keyframes scrollDotAnim {
      0%   { top: 6px; opacity: 1; }
      80%  { top: 24px; opacity: 0; }
      100% { top: 6px; opacity: 0; }
    }

    /* Hero micro */
    .hero-micro {
      position: absolute;
      bottom: 80px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 24px;
      font-size: 12px;
      color: rgba(255,255,255,.25);
      white-space: nowrap;
      opacity: 0;
      animation: fadeUp .6s 1.1s ease forwards;
      z-index: 10;
    }
    .hero-micro span + span::before {
      content: '·';
      margin-right: 24px;
    }

    /* ─────────────────────────────────────────────
       ③ ATLAS STRIP
    ───────────────────────────────────────────── */
    .atlas-strip {
      background: var(--blue);
      padding: 0;
      overflow: hidden;
    }
    .atlas-strip-inner {
      display: flex;
      align-items: stretch;
      overflow: hidden;
    }
    .atlas-strip-label {
      background: rgba(0,0,0,.15);
      padding: 16px 28px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #fff;
      white-space: nowrap;
    }
    .atlas-strip-items {
      display: flex;
      align-items: center;
      gap: 0;
      flex: 1;
    }
    .atlas-strip-item {
      padding: 16px 28px;
      font-size: 13.5px;
      font-weight: 500;
      color: rgba(255,255,255,.88);
      border-left: 1px solid rgba(255,255,255,.15);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .atlas-strip-item::before {
      content: '★';
      font-size: 10px;
      color: var(--gold);
    }

    /* ── HERO BUTTONS ── */
    .hero-btns {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 52px;
      padding: 0 28px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      text-decoration: none;
      transition: transform .2s, box-shadow .2s, background .18s;
      position: relative;
      overflow: hidden;
    }
    .btn:hover { transform: translateY(-2px); }

    .btn-primary {
      background: var(--atlasSarga);
      color: #000;
      box-shadow: 0 0 0 0 rgba(10,116,218,.5);
      animation: pulsebtn 3s ease infinite;
    }
    .btn-primary:hover {
      background: var(--blue-dark);
      animation: none;
      box-shadow: 0 8px 28px rgba(10,116,218,.4);
    }
    @keyframes pulsebtn {
      0%,100% { box-shadow: 0 0 0 0 rgba(10,116,218,.4); }
      60%      { box-shadow: 0 0 0 12px rgba(10,116,218,0); }
    }
    .btn-ghost {
      background: rgba(255,255,255,.07);
      color: rgba(255,255,255,.8);
      border: 1.5px solid rgba(255,255,255,.15);
    }
    .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); }

    /* ── STAGE: the three-column visual ── */
    #stage {
      position: relative;
      z-index: 5;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      width: 100%;
      max-width: 1100px;
      padding: 0 40px;
      margin-top: 0;
    }

    /* ── LEFT BLUE ELEMENT ── */
    /* ── KÉT OLDALSÓ KÉP ── */
    #arm-left {
      flex: 1;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding-right: 20px;
      transform: translateX(-240px);
      opacity: 0;
      transition: transform .05s linear, opacity .05s linear;
      will-change: transform, opacity;
    }

    #arm-right {
      flex: 1;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      padding-left: 20px;
      transform: translateX(240px);
      opacity: 0;
      transition: transform .05s linear, opacity .05s linear;
      will-change: transform, opacity;
    }

    .hero-side-img {
      width: 600px;
      height: 360px;
      border-radius: 20px;
      overflow: hidden;

      flex-shrink: 0;
      position: relative;
    }

    /* Ha <img> van benne */
    .hero-side-img img {
      width: 100%;
      height: 100%;
      object-fit: scale-down;
      display: block;
    }

    /* Placeholder állapot (amíg nincs kép) */
    .hero-side-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: rgba(255,255,255,.25);
      font-size: 12px;
      font-weight: 500;
      text-align: center;
      padding: 20px;
    }
    .hero-side-placeholder svg { opacity: .2; }

    /* ── CENTER IMAGE ── */
    #center-img {
      width: 320px;
      height: 340px;
      flex-shrink: 0;
      z-index: 10;
      position: relative;
      opacity: 0;
      transform: scale(.9);
      animation: fadeScale .8s .5s cubic-bezier(.22,.68,0,1.15) forwards;
    }
    @keyframes fadeScale {
      to { opacity: 1; transform: scale(1); }
    }

    .center-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(160deg, #1a2535 0%, #0f1823 100%);
      border-radius: 24px;
      border: 1.5px solid rgba(255,255,255,.1);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: rgba(255,255,255,.3);
      font-size: 13px;
      font-weight: 500;
      box-shadow:
        0 0 0 1px rgba(10,116,218,.2),
        0 24px 60px rgba(0,0,0,.5);
      position: relative;
      overflow: hidden;
    }
    .center-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(10,116,218,.12) 0%, transparent 60%);
    }
    .center-placeholder svg { opacity: .2; }
    .center-placeholder span { position: relative; z-index: 1; text-align: center; }

    /* glow ring around center on convergence */
    #center-img::after {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 28px;
      border: 2px solid rgba(10,116,218,.0);
      box-shadow: 0 0 0 0 rgba(10,116,218,.0);
      transition: border-color .3s, box-shadow .3s;
      pointer-events: none;
    }
    #center-img.glowing::after {
      border-color: rgba(10,116,218,.6);
      box-shadow: 0 0 40px rgba(10,116,218,.3), 0 0 80px rgba(10,116,218,.15);
    }

    /* ── SCROLL CUE ── */
    .scroll-cue {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: rgba(255,255,255,.3);
      letter-spacing: .08em;
      text-transform: uppercase;
      opacity: 0;
      animation: fadeUp .6s 1.2s ease forwards;
      transition: opacity .3s;
    }
    .scroll-cue.hidden { opacity: 0 !important; }
    .scroll-wheel {
      width: 24px; height: 40px;
      border: 1.5px solid rgba(255,255,255,.2);
      border-radius: 999px;
      position: relative;
      overflow: hidden;
    }
    .scroll-dot {
      width: 4px; height: 4px;
      background: rgba(255,255,255,.5);
      border-radius: 50%;
      position: absolute;
      top: 6px; left: 50%;
      transform: translateX(-50%);
      animation: scrollDot 1.8s ease-in-out infinite;
    }
    @keyframes scrollDot {
      0%   { top: 6px; opacity: 1; }
      80%  { top: 26px; opacity: 0; }
      100% { top: 6px; opacity: 0; }
    }

    /* ── BOTTOM MICRO TEXT ── */
    .hero-micro {
      position: absolute;
      bottom: 88px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 24px;
      font-size: 12.5px;
      color: rgba(255,255,255,.28);
      white-space: nowrap;
      opacity: 0;
      animation: fadeUp .6s 1s ease forwards;
    }
    .hero-micro span::before {
      content: '·';
      margin-right: 24px;
    }
    .hero-micro span:first-child::before { content: none; }

    /* ── PARTICLE CANVAS ── */
    #pcanvas {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
    }

    /* ── CONVERGENCE SPARK ── */
    .spark {
      position: absolute;
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
      pointer-events: none;
      animation: sparkPop .4s ease forwards;
      z-index: 20;
    }
    @keyframes sparkPop {
      0%   { transform: scale(0); opacity: 1; }
      60%  { transform: scale(1.8); opacity: .8; }
      100% { transform: scale(0) translate(var(--tx), var(--ty)); opacity: 0; }
    }

    /* ─────────────────────────────────────────────
       ④ TRUST BAR
    ───────────────────────────────────────────── */
    .trust-bar {
      background: var(--white);
      border-bottom: 1px solid var(--line);
      padding: 40px 0;
    }
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
    }
    .trust-item {
      text-align: center;
      padding: 0 20px;
      border-right: 1px solid var(--line);
    }
    .trust-item:last-child { border-right: none; }
    .trust-num {
      font-family: 'DM Serif Display', serif;
      font-size: 42px;
      color: var(--blue);
      line-height: 1;
      margin-bottom: 6px;
    }
    .trust-lbl { font-size: 13px; color: var(--ink-3); line-height: 1.4; }

    /* ─────────────────────────────────────────────
       ⑤ WHY US – early
    ───────────────────────────────────────────── */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .why-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      transition: box-shadow .2s, transform .2s var(--ease);
    }
    .why-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }
    .why-icon {
      width: 48px; height: 48px;
      background: var(--blue-faint);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 20px;
    }
    .why-card .h3 { margin-bottom: 10px; }
    .why-card .body { font-size: 14.5px; }

    /* ─────────────────────────────────────────────
       ⑥ LOGOS
    ───────────────────────────────────────────── */
    .logo-section {
      padding: 48px 0;
      background: var(--white);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .logo-label {
      text-align: center;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ink-3);
      margin-bottom: 32px;
    }
    .logo-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 14px;
    }
    .logo-box {
      height: 68px;
      /*background: var(--bg);
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);*/
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 600;
      color: var(--ink-3);
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    /* ─────────────────────────────────────────────
       ⑦ PROBLEM
    ───────────────────────────────────────────── */
    .problem-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .problem-list {
      list-style: none;
      display: grid;
      gap: 12px;
      margin: 28px 0;
    }
    .problem-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px 20px;
      background: #FEF2F2;
      border: 1px solid #FECACA;
      border-radius: var(--radius-sm);
      font-size: 15px;
      color: var(--ink-2);
    }
    .problem-list li::before {
      content: '✕';
      color: #EF4444;
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .callout {
      padding: 28px 32px;
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, var(--blue) 0%, #0549a3 100%);
      color: #fff;
      font-size: 17px;
      font-weight: 500;
      line-height: 1.7;
      position: relative;
      overflow: hidden;
    }
    .callout::before {
      content: '"';
      position: absolute;
      top: -10px; left: 16px;
      font-family: Georgia, serif;
      font-size: 100px;
      opacity: .12;
      line-height: 1;
    }

    .solution-checks {
      list-style: none;
      display: grid;
      gap: 14px;
      margin-top: 24px;
    }
    .solution-checks li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      color: var(--ink-2);
    }
    .solution-checks li::before {
      content: '✓';
      color: var(--blue);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* ─────────────────────────────────────────────
       ⑧ METHOD / HOW IT WORKS
    ───────────────────────────────────────────── */
    .method-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      position: relative;
    }
    .method-grid::before {
      content: '';
      position: absolute;
      top: 52px;
      left: calc(100% / 6);
      right: calc(100% / 6);
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--blue), var(--blue), transparent);
      opacity: .25;
    }

/* ════════════════════════════════════════
   KOMPRESSZOR VÁLASZTÓ KÁRTYÁK KEZDÉS
════════════════════════════════════════ */

.method-card-list {
    display: grid;
    grid-template-rows: repeat(3, auto);
    gap: 20px;
    margin-bottom: 40px;
}

.method-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    overflow: visible;
    transition: transform .22s var(--ease), box-shadow .22s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.method-card-featured {
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(10,116,218,.15), var(--shadow-lg);
}

.method-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.method-left {
    flex: 0 0 210px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.method-icon {
    font-size: 40px;
    line-height: 1;
    flex: 0 0 auto;
}

.method-left .h3 {
    margin: 0;
}


.method-middle {
    flex: 1 1 420px;
    max-width: 30%;
}

.method-middle .body {
    margin: 0;
}

.method-right {
    flex: 0 0 160px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.method-note {
    font-size: 12px;
    color: var(--ink-3);
}

/* ════════════════════════════════════════
   KOMPRESSZOR VÁLASZTÓ KÁRTYÁK RESZPONZÍV
════════════════════════════════════════ */

@media (max-width: 900px) {
    .method-card {
        align-items: flex-start;
        gap: 24px;
    }

    .method-left {
        flex: 0 0 190px;
    }

    .method-middle {
        flex: 1 1 auto;
        max-width: none;
    }

    .method-right {
        flex: 0 0 130px;
    }
}

@media (max-width: 768px) {
    .method-card {
        flex-direction: column;
        padding: 32px 24px;
    }

    .method-left,
    .method-middle,
    .method-right {
        flex: unset;
        width: 100%;
        max-width: 100%;
    }

    .method-right {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
}

/* ════════════════════════════════════════
   KOMPRESSZOR VÁLASZTÓ KÁRTYÁK VÉGE
════════════════════════════════════════ */
 




    .method-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }
    .method-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue), #60a8f0);
    }

    .method-num {
      font-family: 'DM Serif Display', serif;
      font-size: 72px;
      color: var(--blue-faint);
      line-height: 1;
      margin-bottom: 12px;
      letter-spacing: -.03em;
    }
    .method-card .h3 { margin-bottom: 12px; font-size: 19px; }
    .method-card .body { font-size: 14.5px; }

    /* ─────────────────────────────────────────────
       ⑨ APPLICATIONS
    ───────────────────────────────────────────── */
    .app-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .app-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 36px;
    }
    .app-card .h3 { margin-bottom: 20px; }

    .list { list-style: none; display: grid; gap: 10px; }
    .list li {
      padding-left: 20px;
      position: relative;
      font-size: 15px;
      color: var(--ink-2);
    }
    .list li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--blue);
      font-weight: 700;
    }

    .pressure-pill {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 999px;
      margin-bottom: 8px;
    }
    .p-blue { background: var(--blue-faint); color: var(--blue); }
    .p-gold { background: rgba(240,180,41,.12); color: #b07700; }

    .pressure-block { padding: 20px; border-radius: var(--radius-sm); margin-bottom: 16px; }
    .pressure-block-blue { background: var(--blue-faint); border: 1px solid rgba(10,116,218,.15); }
    .pressure-block-gold { background: rgba(240,180,41,.08); border: 1px solid rgba(240,180,41,.25); }
    .pressure-block p { font-size: 14.5px; color: var(--ink-2); margin-top: 4px; }

    /* ─────────────────────────────────────────────
       ⑩ BENEFITS
    ───────────────────────────────────────────── */
    .benefit-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .benefit-card {
      padding: 32px;
      border-radius: var(--radius-lg);
      background: var(--white);
      border: 1px solid var(--line);
    }
    .benefit-num {
      font-family: 'DM Serif Display', serif;
      font-size: 56px;
      color: var(--blue-faint);
      line-height: 1;
      margin-bottom: 8px;
    }
    .benefit-card .h3 { margin-bottom: 10px; font-size: 18px; }
    .benefit-card .body { font-size: 14.5px; }

    /* ─────────────────────────────────────────────
       ⑪ SERVICE SECTION
    ───────────────────────────────────────────── */
    .service-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .service-img {
      height: 480px;
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .service-list {
      list-style: none;
      display: grid;
      gap: 16px;
      margin: 28px 0 36px;
    }
    .service-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 15px;
      color: var(--ink-2);
    }
    .service-list li::before {
      content: '✓';
      color: var(--blue);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .service-note {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 20px;
      background: var(--blue-faint);
      border: 1px solid rgba(10,116,218,.15);
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-weight: 500;
      color: var(--blue);
    }

    /* ─────────────────────────────────────────────
       ⑫ SPARE PARTS SECTION
    ───────────────────────────────────────────── */
    .parts-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .parts-img {
      height: 460px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      order: 1;
    }
    .parts-content { order: 2; }

    .parts-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin: 28px 0 36px;
    }
    .parts-item {
      padding: 18px 20px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
    }
    .parts-item-icon { font-size: 22px; margin-bottom: 8px; }
    .parts-item-label {
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 4px;
      color: var(--ink);
    }
    .parts-item-desc { font-size: 13px; color: var(--ink-3); }

    /* ─────────────────────────────────────────────
       ⑬ MIMIKO / TEAM
    ───────────────────────────────────────────── */
    .mimiko-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      background: var(--white);
      border: 1px solid var(--line);
    }
/*
    .mimiko-photo { height: 520px; }*/
    .mimiko-content {
      padding: 56px 52px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .mimiko-content .h2 { margin-bottom: 16px; }
    .mimiko-content .body-lg { margin-bottom: 28px; }
    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 36px;
    }
    .tag {
      padding: 5px 14px;
      background: var(--blue-faint);
      border: 1px solid rgba(10,116,218,.18);
      border-radius: 999px;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--blue);
    }

    /* ─────────────────────────────────────────────
       ⑭ FAQ
    ───────────────────────────────────────────── */
    .faq-cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    details {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      transition: box-shadow .2s;
    }
    details:hover { box-shadow: var(--shadow); }
    details[open] { box-shadow: var(--shadow); }

    summary {
      padding: 22px 24px;
      font-size: 15.5px;
      font-weight: 600;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      color: var(--ink);
      user-select: none;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: '+';
      font-size: 20px;
      font-weight: 300;
      color: var(--blue);
      flex-shrink: 0;
      transition: transform .2s;
    }
    details[open] summary::after { transform: rotate(45deg); }
    .faq-body {
      padding: 0 24px 22px;
      font-size: 14.5px;
      color: var(--ink-3);
      line-height: 1.75;
      border-top: 1px solid var(--line);
      padding-top: 18px;
    }

   /* ─────────────────────────────────────────────
   ⑮ LEAD FORM – VILÁGOS, PROFI DESIGN
───────────────────────────────────────────── */

.lead-section{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(0,0,0,.045), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(0,0,0,.035), transparent 24%),
        #fff;
}

/* finom műszaki háttérpontozás */
.lead-section::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        radial-gradient(rgba(0,0,0,.10) 1px, transparent 1px);
    background-size:24px 24px;
    opacity:.18;
    mask-image:linear-gradient(to bottom, #000 0%, transparent 85%);
    pointer-events:none;
}

/* halvány kék/sárga fényfolt */
.lead-section::after{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    right:-180px;
    bottom:-220px;
    border-radius:50%;
    background:
        radial-gradient(circle, var(--atlasSarga), transparent 68%);
    opacity:.18;
    pointer-events:none;
}

.lead-section .hero-glow{
    display:none;
}

.lead-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:start;
}

/* FORM KÁRTYA */
.form-card{
    position:relative;
    overflow:hidden;
    background:#fff;
    padding:42px;
    border-radius:28px;
    border:1px solid rgba(0,0,0,.06);
    box-shadow:
        0 28px 70px rgba(0,0,0,.08);
}

/* felső fénycsík */
.form-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(135deg, var(--blue) 0%, #0549a3 100%);
}

/* sarok glow */
.form-card::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    right:-110px;
    top:-110px;
    border-radius:50%;
    background:var(--atlasSarga);
    opacity:.14;
    pointer-events:none;
}

.form-card > *{
    position:relative;
    z-index:2;
}

.form-card .eyebrow{
    color:var(--blue);
}

.form-card .h2{
    font-size:30px;
    margin-bottom:8px;
    color:#111;
}

.form-card .body{
    margin-bottom:28px;
    color:rgba(0,0,0,.62);
}

/* FORM MEZŐK */
.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.field{
    background:#fff;
    border:1px solid rgba(0,0,0,.10);
    border-radius:16px;
    padding:15px 16px;
    font-size:14px;
    color:#111;
    font-family:'DM Sans', sans-serif;
    transition:.2s ease;
    outline:none;
    box-shadow:0 8px 20px rgba(0,0,0,.03);
}

.field::placeholder{
    color:rgba(0,0,0,.42);
}

.field:focus{
    border-color:var(--blue);
    box-shadow:
        0 0 0 4px rgba(5,73,163,.08),
        0 10px 24px rgba(0,0,0,.05);
}

.field.full{
    grid-column:1 / -1;
}

textarea.field{
    min-height:110px;
    resize:vertical;
}

.form-note{
    font-size:12.5px;
    color:rgba(0,0,0,.52);
    margin-top:14px;
}

/* JOBB OLDALI INFÓ */
.lead-info{
    position:relative;
    color:#111;
    padding-top:8px;
}

.lead-info .display{
    color:#111;
    font-size:clamp(32px, 4vw, 52px);
    margin-bottom:16px;
}

.lead-info .body-lg{
    color:rgba(0,0,0,.58);
    margin-bottom:48px;
}

/* LÉPÉSEK */
.steps{
    position:relative;
    display:grid;
    gap:24px;
}

/* összekötő vonal */
.steps::before{
    content:"";
    position:absolute;
    left:19px;
    top:20px;
    bottom:20px;
    width:1px;
    background:linear-gradient(to bottom, var(--atlasSarga), transparent);
    opacity:.65;
}

.step-item{
    position:relative;
    display:flex;
    gap:20px;
    align-items:flex-start;
}

.step-circle{
    position:relative;
    z-index:2;
    width:38px;
    height:38px;
    background:linear-gradient(135deg, var(--blue) 0%, #0549a3 100%);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    font-weight:700;
    color:#fff;
    flex-shrink:0;
    box-shadow:0 10px 22px rgba(5,73,163,.18);
}

.step-text{
    padding:2px 0 0;
}

.step-text strong{
    display:block;
    font-size:16px;
    font-weight:700;
    color:#111;
    margin-bottom:4px;
}

.step-text span{
    font-size:14px;
    line-height:1.55;
    color:rgba(0,0,0,.55);
}

/* MOBIL */
@media(max-width:991px){

    .lead-grid{
        grid-template-columns:1fr;
        gap:42px;
    }

    .form-card{
        padding:30px 22px;
        border-radius:22px;
    }

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

    .lead-info .body-lg{
        margin-bottom:34px;
    }
}

   /* ─────────────────────────────────────────────
   ⑯ CLOSING CTA – PRÉMIUM VILÁGOS
───────────────────────────────────────────── */

.closing{
    position:relative;
    overflow:hidden;

    padding:120px 0;

    background:
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* felső grid */
.closing::before{
    content:'';
    position:absolute;
    inset:0;

    background-image:
        linear-gradient(rgba(0,0,0,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.035) 1px, transparent 1px);

    background-size:34px 34px;

    mask-image:
        linear-gradient(to bottom,
        rgba(0,0,0,.9),
        transparent 90%);

    pointer-events:none;
}

/* glow */
.closing::after{
    content:'';
    position:absolute;

    width:620px;
    height:620px;

    left:50%;
    top:50%;

    transform:translate(-50%, -50%);

    border-radius:50%;

    background:
        radial-gradient(circle,
        rgba(5,73,163,.07),
        rgba(201,169,97,.08),
        transparent 68%);

    pointer-events:none;
}

.closing-inner{
    position:relative;
    z-index:2;

    max-width:900px;
    margin:0 auto;
    text-align:center;
}

/* kis top badge */
.closing-inner::before{
    content:'Mimiko Kft. • Atlas Copco szakértelem';

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 18px;

    margin-bottom:26px;

    border-radius:999px;

    background:#fff;

    border:1px solid rgba(0,0,0,.06);

    box-shadow:
        0 12px 28px rgba(0,0,0,.05);

    color:var(--blue);

    font-size:13px;
    font-weight:700;
    letter-spacing:.04em;
}

.closing .display{
    color:#111;

    margin-bottom:18px;

    font-size:clamp(42px, 5vw, 82px);

    line-height:.95;
    letter-spacing:-0.05em;
}

/* arany kiemelés */
.closing .display span{
    color:var(--atlasSarga);
}

.closing .body-lg{
    color:rgba(0,0,0,.58);

    max-width:720px;

    margin-inline:auto;
    margin-bottom:42px;

    font-size:19px;
    line-height:1.7;
}

/* CTA sor */
.closing-actions{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

/* első gomb */
.closing-actions .btn-primary{
    position:relative;
    overflow:hidden;

    box-shadow:
        0 18px 40px rgba(5,73,163,.16);
}

/* fény anim */
.closing-actions .btn-primary::after{
    content:'';

    position:absolute;
    inset:0;

    background:
        linear-gradient(120deg,
        transparent 20%,
        rgba(255,255,255,.22) 50%,
        transparent 80%);

    transform:translateX(-120%);
    transition:.7s ease;
}

.closing-actions .btn-primary:hover::after{
    transform:translateX(120%);
}

/* második ghost gomb */
.closing-actions .btn-secondary{
    background:#fff;
    color:#111;

    border:1px solid rgba(0,0,0,.08);

    box-shadow:
        0 14px 30px rgba(0,0,0,.05);
}

/* lebegő mini elemek */
.closing-shape{
    position:absolute;
    border-radius:50%;
    pointer-events:none;
}

.closing-shape.one{
    width:14px;
    height:14px;
    background:var(--atlasSarga);
    top:18%;
    left:12%;
    opacity:.8;
}

.closing-shape.two{
    width:8px;
    height:8px;
    background:var(--blue);
    right:14%;
    top:28%;
    opacity:.5;
}

.closing-shape.three{
    width:120px;
    height:120px;

    border:1px solid rgba(5,73,163,.08);

    right:-40px;
    bottom:-40px;
}

/* ─────────────────────────────────────────────
   ⑰ FOOTER – VILÁGOS
───────────────────────────────────────────── */

footer{
    position:relative;
    overflow:hidden;

    background:#fff;

    padding:48px 0;

    text-align:left;

    border-top:1px solid rgba(0,0,0,.06);
}

/* felső halvány glow */
footer::before{
    content:'';
    position:absolute;

    width:320px;
    height:320px;

    left:50%;
    top:-240px;

    transform:translateX(-50%);

    border-radius:50%;

    background:
        radial-gradient(circle,
        rgba(5,73,163,.06),
        transparent 70%);
}

/* pontozás */
footer::after{
    content:'';
    position:absolute;
    inset:0;

    background-image:
        radial-gradient(rgba(0,0,0,.08) 1px, transparent 1px);

    background-size:20px 20px;

    opacity:.12;

    pointer-events:none;
}

footer .container{
    position:relative;
    z-index:2;
}

footer p{
    font-size:13.5px;
    color:rgba(0,0,0,.42);
}

footer strong{
    color:#111;
    font-weight:700;
}

footer p + p{
    margin-top:6px;
}

/* mobil */
@media(max-width:991px){

    .closing{
        padding:90px 0;
    }

    .closing .body-lg{
        font-size:17px;
    }

    .closing-actions{
        flex-direction:column;
        align-items:center;
    }

}
    /* ─────────────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────────────── */
    /* → Mobilos szabályok a fájl végén egyetlen blokkban */


    /* ═══════════════════════════════════════
       MOBILE STICKY CTA BAR
    ═══════════════════════════════════════ */
    #mobile-cta-bar {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 200;
      background: var(--ink);
      border-top: 1px solid rgba(255,255,255,.1);
      padding: 12px 20px;
      box-shadow: 0 -8px 32px rgba(0,0,0,.3);
      backdrop-filter: blur(12px);
      transform: translateY(100%);
      transition: transform .35s cubic-bezier(.22,.68,0,1);
    }
    #mobile-cta-bar.visible { transform: translateY(0); }
    #mobile-cta-bar .btn { width: 100%; justify-content: center; height: 52px; font-size: 16px; }
    #mobile-cta-bar .mob-note { font-size: 11px; color: rgba(255,255,255,.35); text-align: center; margin-top: 6px; }


    /* ═══════════════════════════════════════
       HAMBURGER MENU
    ═══════════════════════════════════════ */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      border-radius: 8px;
      transition: background .15s;
    }
    .nav-hamburger:hover { background: var(--blue-faint); }
    .nav-hamburger span {
      width: 22px; height: 2px;
      background: var(--ink);
      border-radius: 2px;
      transition: transform .25s, opacity .25s;
      display: block;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-mobile-menu {
      display: none;
      position: absolute;
      top: 66px; left: 0; right: 0;
      background: rgba(255,255,255,.97);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--line);
      padding: 16px 24px 24px;
      box-shadow: 0 16px 40px rgba(0,0,0,.1);
      flex-direction: column;
      gap: 4px;
      z-index: 99;
    }
    .nav-mobile-menu.open { display: flex; }
    .nav-mobile-menu a {
      font-size: 16px;
      font-weight: 500;
      color: var(--ink-2);
      padding: 12px 16px;
      border-radius: 10px;
      transition: background .15s, color .15s;
    }
    .nav-mobile-menu a:hover { background: var(--blue-faint); color: var(--blue); }
    .nav-mobile-menu .mob-cta {
      margin-top: 8px;
      background: var(--blue);
      color: #fff !important;
      text-align: center;
      border-radius: 12px;
      font-weight: 700 !important;
    }


    /* ═══════════════════════════════════════
       ÖSSZEHASONLÍTÓ TÁBLA
    ═══════════════════════════════════════ */
    .compare-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .compare-table th {
      padding: 20px 24px;
      font-size: 14px;
      font-weight: 700;
      text-align: left;
    }
    .compare-table th:first-child { background: var(--bg); color: var(--ink-3); font-weight: 600; }
    .compare-table th.col-us { background: var(--blue); color: #fff; text-align: center; }
    .compare-table th.col-other { background: #f3f4f6; color: var(--ink-3); text-align: center; }
    .compare-table td {
      padding: 16px 24px;
      font-size: 14.5px;
      border-top: 1px solid var(--line);
    }
    .compare-table td:first-child { color: var(--ink-2); font-weight: 500; background: #fff; }
    .compare-table td.col-us { text-align: center; background: rgba(10,116,218,.04); font-weight: 600; color: var(--ink); }
    .compare-table td.col-other { text-align: center; background: #fff; color: var(--ink-3); }
    .compare-table tr:last-child td:first-child { border-radius: 0 0 0 var(--radius-lg); }
    .compare-table tr:last-child td:last-child { border-radius: 0 0 var(--radius-lg) 0; }
    .tick { color: #16a34a; font-size: 18px; }
    .cross { color: #dc2626; font-size: 18px; }
    .partial { color: #d97706; font-size: 14px; font-weight: 600; }

    /* ═══════════════════════════════════════
       PROJEKT REFERENCIÁK
    ═══════════════════════════════════════ */
    .ref-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .ref-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform .22s var(--ease), box-shadow .22s;
    }
    .ref-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .ref-card-img {
      height: 180px;
    }
    .ref-card-body { padding: 24px; }
    .ref-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 999px;
      background: var(--blue-faint);
      color: var(--blue);
      margin-bottom: 10px;
    }
    .ref-card .h3 { font-size: 17px; margin-bottom: 8px; }
    .ref-card .body { font-size: 13.5px; margin-bottom: 16px; }
    .ref-stat {
      display: flex;
      gap: 16px;
    }
    .ref-stat-item { display: flex; flex-direction: column; }
    .ref-stat-num { font-family: 'DM Serif Display',serif; font-size: 22px; color: var(--blue); line-height: 1; }
    .ref-stat-lbl { font-size: 11px; color: var(--ink-3); margin-top: 2px; }

    



    /* ═══════════════════════════════════════
       TYPEWRITER
    ═══════════════════════════════════════ */
    #tw-wrap {
      display: inline-block;
    }
    #tw-text {
      color: var(--gold);
      font-style: italic;
      font-family: 'DM Serif Display', serif;
    }
    .tw-cursor {
      display: inline-block;
      color: var(--gold);
      animation: twBlink .7s step-end infinite;
      font-weight: 300;
      margin-left: 1px;
    }
    @keyframes twBlink {
      0%,100% { opacity: 1; }
      50%      { opacity: 0; }
    }

    /* ═══════════════════════════════════════
       DIAGONAL SECTION DIVIDERS
       Minden section-white és dark szekció
       teteje / alja átlósan vágva
    ═══════════════════════════════════════ */
    .diag-top {
      clip-path: polygon(0 4%, 100% 0%, 100% 100%, 0% 100%);
      margin-top: -40px;
      padding-top: calc(112px + 40px) !important;
    }
    .diag-bottom {
      clip-path: polygon(0 0%, 100% 0%, 100% 96%, 0% 100%);
      padding-bottom: calc(112px + 40px) !important;
      margin-bottom: -40px;
    }
    .diag-both {
      clip-path: polygon(0 4%, 100% 0%, 100% 96%, 0% 100%);
      margin-top: -50px;
      margin-bottom: 40px;
      padding-top: calc(112px + 40px) !important;
      padding-bottom: calc(112px + 40px) !important;
    }
    /* Sötét szekciókon fordított irány */
    .diag-top-inv {
      clip-path: polygon(0 0%, 100% 4%, 100% 100%, 0% 100%);
      margin-top: -40px;
      padding-top: calc(112px + 40px) !important;
    }
    .diag-both-inv {
      clip-path: polygon(0 0%, 100% 4%, 100% 96%, 0% 100%);
      margin-top: -50px;
      margin-bottom: -40px;
      padding-top: calc(112px + 40px) !important;
      padding-bottom: calc(112px + 40px) !important;
    }

    /* ═══════════════════════════════════════
       STICKY MEDIA SECTION
    ═══════════════════════════════════════ */
    .sticky-media-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 80px;
      align-items: start;
      padding-top: 112px;
      padding-bottom: 112px;
    }

    /* Sticky szöveg: felső korlát: nav magassága */
    .sticky-text {
      position: sticky;
      top: 80px;
      padding-bottom: 40px;
    }

    /* Képek oldal: scroll container */
    .sticky-images {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .sticky-img-panel {
      border-radius: var(--radius-lg);
      overflow: hidden;
      opacity: .35;
      transform: scale(.97) translateY(20px);
      transition: opacity .5s ease, transform .5s cubic-bezier(.22,.68,0,1), box-shadow .4s;
    }
    .sticky-img-panel.active {
      opacity: 1;
      transform: scale(1) translateY(0);
      box-shadow: var(--shadow-lg);
    }
    .sticky-img-inner {
      height: 300px;
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    .sticky-img-caption {
      background: var(--white);
      border: 1px solid var(--line);
      border-top: none;
      border-radius: 0 0 var(--radius-lg) var(--radius-lg);
      padding: 16px 20px;
      font-size: 14px;
      color: var(--ink-2);
      line-height: 1.55;
    }
    .sticky-img-caption strong {
      display: block;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 4px;
    }

    /* Dot nav */
    .sticky-dots {
      display: flex;
      gap: 10px;
      margin-top: 28px;
      align-items: center;
    }
    .sdot {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: var(--line);
      border: none;
      cursor: pointer;
      transition: background .2s, transform .2s, width .3s;
      padding: 0;
    }
    .sdot.active {
      background: var(--blue);
      width: 28px;
      border-radius: 999px;
    }




    /* ═══════════════════════════════════════
       NAGY CTA SZALAG – minden szekció közt
    ═══════════════════════════════════════ */
    .cta-banner {
      background: var(--blue);
      padding: 36px 0;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .cta-banner-inner {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }
    .cta-banner-text { flex: 1; min-width: 260px; }
    .cta-banner-text strong {
      display: block;
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -.02em;
      margin-bottom: 4px;
    }
    .cta-banner-text span {
      font-size: 14px;
      color: rgba(255,255,255,.65);
    }
    .cta-banner .btn-white {
      background: #fff;
      color: var(--blue);
      font-size: 15px;
      font-weight: 700;
      white-space: nowrap;
      flex-shrink: 0;
      box-shadow: 0 8px 24px rgba(0,0,0,.15);
    }
    .cta-banner .btn-white:hover {
      background: #f0f2f5;
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(0,0,0,.2);
    }

    /* ═══════════════════════════════════════
       VIDEÓ SZEKCIÓ
    ═══════════════════════════════════════ */
    .video-section {
      background: var(--ink);
      padding: 96px 0;
      position: relative;
      overflow: hidden;
    }
    .video-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(10,116,218,.18) 0%, transparent 60%);
      pointer-events: none;
    }
    .video-layout {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .video-content .eyebrow {
      color: rgba(255,255,255,.5);
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.12);
    }
    .video-content .eyebrow::before { background: rgba(255,255,255,.4); }
    .video-content h2 {
      color: #fff;
      margin-bottom: 16px;
    }
    .video-content p {
      color: rgba(255,255,255,.6);
      font-size: 16px;
      line-height: 1.75;
      margin-bottom: 20px;
    }
    .video-bullets {
      list-style: none;
      display: grid;
      gap: 12px;
      margin-bottom: 36px;
    }
    .video-bullets li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14.5px;
      color: rgba(255,255,255,.75);
    }
    .video-bullets li::before {
      content: '▶';
      font-size: 10px;
      color: var(--gold);
      flex-shrink: 0;
      margin-top: 4px;
    }
    .video-frame {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: #0f1823;
      border: 1px solid rgba(255,255,255,.1);
      box-shadow: 0 32px 80px rgba(0,0,0,.4);
      aspect-ratio: 16/9;
    }
    .video-placeholder {
      width: 100%;
      height: 100%;
      min-height: 280px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      background: linear-gradient(145deg, #1a2535 0%, #0f1823 100%);
      position: relative;
    }
    .video-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 50%, rgba(10,116,218,.12) 0%, transparent 60%);
    }
    .video-play-btn {
      position: relative;
      z-index: 1;
      width: 72px; height: 72px;
      background: var(--blue);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 0 0 0 rgba(10,116,218,.4);
      animation: pulse 2.5s ease infinite;
      transition: transform .2s, background .2s;
      border: none;
      text-decoration: none;
    }
    .video-play-btn:hover {
      transform: scale(1.1);
      background: var(--blue-dark);
      animation: none;
    }
    .video-play-btn svg { margin-left: 4px; }
    .video-placeholder-label {
      position: relative;
      z-index: 1;
      font-size: 13px;
      color: rgba(255,255,255,.35);
      text-align: center;
    }
    .video-placeholder-label strong {
      display: block;
      font-size: 15px;
      color: rgba(255,255,255,.6);
      margin-bottom: 4px;
    }
    .video-duration {
      position: absolute;
      bottom: 14px;
      right: 16px;
      background: rgba(0,0,0,.6);
      color: rgba(255,255,255,.8);
      font-size: 12px;
      font-weight: 600;
      padding: 3px 8px;
      border-radius: 6px;
      z-index: 2;
    }
    .video-cta-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .btn-video {
      background: rgba(255,255,255,.08);
      color: rgba(255,255,255,.85) !important;
      border: 1.5px solid rgba(255,255,255,.2) !important;
    }
    .btn-video:hover {
      background: rgba(255,255,255,.14);
      border-color: rgba(255,255,255,.35) !important;
    }



    /* ╔═══════════════════════════════════════════════════╗
       ║  RESPONSIVE – egyetlen szisztematikus blokk      ║
       ╚═══════════════════════════════════════════════════╝ */

    /* ── TABLET (max 1024px) ── */
    @media (max-width: 1024px) {
      :root { --container: 960px; }

      /* Grids */
      .why-grid           { grid-template-columns: repeat(2, 1fr); }
      .logo-grid          { grid-template-columns: repeat(3, 1fr); }
      .ref-grid           { grid-template-columns: repeat(2, 1fr); }
      .trust-grid         { grid-template-columns: repeat(3, 1fr); gap: 0; }
      .trust-item         { border-right: none; border-bottom: 1px solid var(--line); padding: 20px 0; }
      .trust-item:nth-child(3n) { border-right: none; }
      .trust-item:last-child    { border-bottom: none; }

      /* Sections */
      .service-layout,
      .parts-layout        { gap: 48px; }
      .video-layout        { gap: 48px; }
      .lead-grid           { gap: 48px; }
      .mimiko-layout       { grid-template-columns: 1fr 1fr; }
      .mimiko-content      { padding: 40px 36px; }

      /* Sticky media */
      .sticky-media-section { gap: 0 48px; }
      .arm-shape-left,
      .arm-shape-right      { width: 260px; height: 260px; }
    }

    /* ── MOBILE (max 768px) ── */
    @media (max-width: 768px) {
      :root {
        --container:  100%;
        --radius-lg:  20px;
        --radius:     14px;
        --radius-sm:  8px;
      }

      /* ── ÁLTALÁNOS ── */
      body { overflow-x: hidden; }

      .container {
        width: calc(100% - 32px);
        margin-inline: auto;
      }

      .section        { padding: 64px 0; }
      .section-sm     { padding: 48px 0; }

      /* Egyes szekciókon inline padding-top override */
      [style*="padding:72px 0"],
      [style*="padding: 72px 0"],
      [style*="padding:80px 0"],
      [style*="padding: 80px 0"],
      [style*="padding:96px 0"],
      [style*="padding: 96px 0"] {
        padding: 64px 0 !important;
      }

      /* Tipográfia */
      .display      { font-size: clamp(30px, 9vw, 48px) !important; }
      .h2           { font-size: clamp(26px, 7vw, 38px); }
      .h3           { font-size: 18px; }
      .body-lg      { font-size: 16px; }

      /* Section fejléc */
      .section-head       { margin-bottom: 36px; }
      .section-head.center .body-lg { margin-top: 12px; }

      /* ── NAV ── */
      .nav              { position: fixed; height: 60px; }
      .nav-links        { display: none !important; }
      .nav-hamburger    { display: flex; }
      .nav-logo-badge   { font-size: 10px; padding: 3px 8px; }
      .nav-logo-text    { font-size: 15px; }
      .nav-logo-sub     { display: none; }

      /* Mobilmenü */
      .nav-mobile-menu {
        top: 60px;
        padding: 12px 16px 20px;
        gap: 2px;
      }
      .nav-mobile-menu a { font-size: 15px; padding: 10px 14px; }

      /* Nav fix miatt az oldal tolja le a tartalmat */
      body { padding-top: 60px; }
      #hero-wrapper { margin-top: -60px; }

      /* ── HERO ── */
      #hero-sticky          { justify-content: flex-start; padding-top: 80px; }
      .hero-top             { padding: 0 0; margin-bottom: 24px; text-align: center; }
      .hero-badge-pill      { font-size: 11px; padding: 5px 12px; margin-bottom: 16px; }
      #hero-sticky h1       { font-size: clamp(26px, 8.5vw, 42px); margin-bottom: 14px; }
      .hero-sub             { font-size: 15px; margin: 0 auto 20px; }
      .hero-btns            { gap: 10px; }
      .hero-btns .btn       { height: 48px; padding: 0 22px; font-size: 14px; }
      #stage                { display: none; }
      .hero-micro           { display: none; }
      .scroll-cue           { display: none; }

      /* ── GRIDS → egyes oszlop ── */
      .problem-layout,
      .service-layout,
      .parts-layout,
      .app-layout,
      .lead-grid,
      .faq-cols,
      .video-layout,
      .compare-table-wrap  { grid-template-columns: 1fr !important; gap: 28px !important; }

      .mimiko-layout        { grid-template-columns: 1fr; }
      .mimiko-photo         { height: 260px; border-radius: 0; }
      .mimiko-content       { padding: 28px 24px; }

      .why-grid             { grid-template-columns: 1fr; gap: 14px; }
      .method-grid          { grid-template-columns: 1fr; gap: 16px; }
      .method-grid::before  { display: none; }
      .benefit-grid         { grid-template-columns: 1fr; gap: 16px; }
      .ref-grid             { grid-template-columns: 1fr; gap: 16px; }

      /* Sorrend javítás */
      .parts-img            { order: -1; }
      .parts-content        { order: 1; }

      /* Trust */
      .trust-grid           { grid-template-columns: repeat(2, 1fr); gap: 0; }
      .trust-item           { padding: 16px 8px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
      .trust-item:nth-child(2n) { border-right: none; }
      .trust-item:nth-last-child(-n+2) { border-bottom: none; }
      .trust-num            { font-size: 30px; }
      .trust-lbl            { font-size: 11px; }

      /* Logo grid */
      .logo-grid            { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .logo-box             { height: 56px; font-size: 10px; }

      /* ── FORM ── */
      .form-grid            { grid-template-columns: 1fr; gap: 10px; }
      .form-card            { padding: 28px 20px; }
      .form-card .h2        { font-size: 24px; }
      .lead-info .display   { font-size: clamp(26px, 8vw, 40px); }

      /* ── KÁRTYÁK ── */
      .why-card, .method-card, .benefit-card,
      .app-card, .ref-card, .reason-card      { padding: 22px 20px; }
      .why-card .h3, .method-card .h3         { font-size: 17px; }
      .method-num                              { font-size: 48px; }
      .benefit-num                             { font-size: 40px; }

      /* ── SERVICE ── */
      .service-img          { height: 240px; border-radius: var(--radius-lg); }
      .service-list         { gap: 10px; }
      .service-list li      { font-size: 14px; }
      .service-note         { font-size: 12.5px; padding: 10px 14px; }

      /* ── PARTS ── */
      .parts-img            { height: 220px; border-radius: var(--radius-lg); }
      .parts-grid           { grid-template-columns: 1fr 1fr; gap: 10px; }
      .parts-item           { padding: 14px; }

      /* ── STICKY MEDIA (szerviz) ── */
      .sticky-media-section { grid-template-columns: 1fr; gap: 32px; padding: 64px 0; }
      .sticky-text          { position: static; padding-bottom: 0; }
      .sticky-img-panel     { opacity: 1 !important; transform: none !important; box-shadow: var(--shadow); }
      .sticky-dots          { display: none; }

      /* ── DIAGONÁLIS SZEKCIÓK ── */
      .diag-top, .diag-bottom, .diag-both,
      .diag-top-inv, .diag-both-inv {
        clip-path: none !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 64px !important;
        padding-bottom: 64px !important;
      }

      /* ── CTA SZALAG ── */
      .cta-banner           { padding: 28px 0; }
      .cta-banner-inner     { flex-direction: column; text-align: center; gap: 16px; }
      .cta-banner-text strong { font-size: 17px; }
      .cta-banner .btn-white  { width: 100%; justify-content: center; max-width: 340px; }

      /* ── VIDEÓ SZEKCIÓ ── */
      .video-section        { padding: 64px 0; }
      .video-layout         { grid-template-columns: 1fr; gap: 36px; }
      .video-frame          { border-radius: var(--radius); }
      .video-placeholder    { min-height: 220px; }
      .video-play-btn       { width: 60px; height: 60px; }
      .video-cta-row        { flex-direction: column; }
      .video-cta-row .btn   { width: 100%; justify-content: center; }

      /* ── ÖSSZEHASONLÍTÁS TÁBLA ── */
      .compare-table        { font-size: 13px; }
      .compare-table th,
      .compare-table td     { padding: 12px 10px; }
      .compare-table th:first-child,
      .compare-table td:first-child { display: none; }

      /* ── KOMPRESSZOR VÁLASZTÓ ── */
      .method-grid[style]   { grid-template-columns: 1fr !important; }

      /* ── MIMIKO / TULAJDONOS ── */
      .mimiko-layout .mimiko-photo { order: -1; }

      /* ── STEPS ── */
      .steps                { gap: 20px; }
      .step-circle          { width: 32px; height: 32px; font-size: 14px; flex-shrink: 0; }
      .step-text strong     { font-size: 14px; }
      .step-text span       { font-size: 12.5px; }

      /* ── FAQ ── */
      summary               { padding: 16px 18px; font-size: 14.5px; }
      .faq-body             { padding: 14px 18px; font-size: 13.5px; }

      /* ── CLOSING CTA ── */
      .closing              { padding: 56px 0; }
      .closing .display     { font-size: clamp(26px, 8vw, 40px) !important; }
      .closing p            { font-size: 15px; }

      /* ── REFERENCIA KÁRTYÁK ── */
      .ref-card-img         { height: 160px; }
      .ref-stat             { gap: 12px; }
      .ref-stat-num         { font-size: 18px; }

      /* ── BUTTONS ── */
      .btn-row              { gap: 10px; }
      .btn { height: 48px; padding: 0 22px; font-size: 14px; }

      /* ── ATLAS STRIP ── */
      .atlas-strip-label    { padding: 12px 16px; font-size: 11px; }
      .atlas-strip-item     { padding: 12px 16px; font-size: 12px; }

      /* ── PARTNER SZEKCIÓ ── */
      [style*="grid-template-columns:2fr 1fr"],
      [style*="grid-template-columns: 2fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
      }
      [style*="grid-template-columns:repeat(4,1fr)"],
      [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
      }
      [style*="grid-template-columns:repeat(5,1fr)"],
      [style*="grid-template-columns: repeat(5, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
      }
      [style*="grid-template-columns:repeat(3,1fr)"],
      [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
      }



      /* ── STICKY MOBILE CTA ── */
      #mobile-cta-bar       { display: block; padding: 10px 16px; }
      #mobile-cta-bar .btn  { height: 48px; font-size: 14px; }

      /* ── FOOTER ── */
      footer [style*="grid-template-columns:2fr 1fr 1fr 1fr"],
      footer [style*="grid-template-columns: 2fr 1fr 1fr 1fr"] {
        grid-template-columns: 1fr 1fr !important;
        gap: 28px !important;
      }
      footer [style*="font-size:12px"]  { font-size: 11px !important; }
      footer [style*="padding:56px"]    { padding: 40px 0 24px !important; }

      /* ── GARANCIA GRID ── */
      [style*="grid-template-columns:1fr 1fr"][style*="max-width:960px"],
      [style*="grid-template-columns: 1fr 1fr"][style*="max-width"] {
        grid-template-columns: 1fr !important;
      }

      /* Partner nagy kártya */
      [style*="display:flex"][style*="justify-content:space-between"] {
        flex-direction: column;
        gap: 20px;
      }
    }

    /* ── KIS MOBIL (max 400px) ── */
    @media (max-width: 400px) {
      .trust-grid           { grid-template-columns: 1fr; }
      .trust-item           { border-right: none; }
      .trust-item:nth-child(2n) { border-right: none; }
      .parts-grid           { grid-template-columns: 1fr; }
      .logo-grid            { grid-template-columns: repeat(2, 1fr); }
      #hero-sticky h1       { font-size: 26px; }
      .hero-badge-pill      { font-size: 10px; padding: 4px 10px; }
    }
































/* =========================================
   DIESEL HERO – FULL ÚJ CSS
========================================= */

.dk-hero {
  position: relative;
  overflow: hidden;
  background: #f5f6f8;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 120px 0;
}

/* Háttérkép */
.dk-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  

  background-repeat: no-repeat;
  background-position: right center;
background-size: auto 100%;
  opacity: 0.6;
}

/* Bal oldali fade */
.dk-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;

  background: linear-gradient(
    90deg,
    rgba(245,246,248,0.98) 0%,
    rgba(245,246,248,0.97) 24%,
    rgba(245,246,248,0.88) 38%,
    rgba(245,246,248,0.56) 54%,
    rgba(245,246,248,0.08) 72%,
    rgba(245,246,248,0) 100%
  );

  pointer-events: none;
}

/* Finom felső glow */
.dk-hero::after {
  content: "";
  position: absolute;
  right: -240px;
  top: -240px;

  width: 620px;
  height: 620px;

  border-radius: 50%;

  background: rgba(255, 202, 5, 0.16);

  filter: blur(90px);

  z-index: 1;
  pointer-events: none;
}

/* Tartalom */
.dk-hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
}

.dk-hero-content {
  max-width: 540px;
}
.dk-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
}
/* =========================================
   FELSŐ LABEL
========================================= */

.dk-hero-label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;

  margin-bottom: 34px;

  font-size: 12px;
  line-height: 1;

  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.dk-hero-label span {
  width: 62px;
  height: 4px;

  border-radius: 999px;

  background: #ffca05;
}

.dk-hero-label strong {
  color: #1f2937;
  font-weight: 900;
}

.dk-hero-label em {
  color: #8b909a;
  font-style: normal;
  font-weight: 700;
}

/* =========================================
   FŐCÍM
========================================= */

.dk-hero h1 {
  margin: 0;

  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.06em;

  font-weight: 900;

  color: #17202e;
}

.dk-hero h1 span,
.dk-hero h1 strong {
  color: #ffca05;
}

/* =========================================
   SZÖVEG
========================================= */

.dk-hero p {
  max-width: 560px;

  margin: 28px 0 38px;

  font-size: 19px;
  line-height: 1.65;

  color: #4b5563;
}

/* =========================================
   FEATURE ROW
========================================= */

.dk-hero-features {
  display: flex;
  align-items: flex-start;
  gap: 30px;

  margin-bottom: 42px;
}

.dk-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.dk-feature-icon {
  width: 34px;
  height: 34px;

  flex: 0 0 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  line-height: 1;

  color: #ffca05;
}

.dk-feature strong {
  display: block;

  margin-bottom: 2px;

  font-size: 15px;
  line-height: 1.2;

  font-weight: 900;

  color: #1f2937;
}

.dk-feature small {
  display: block;

  font-size: 14px;
  line-height: 1.35;

  color: #6b7280;
}

/* =========================================
   GOMBOK
========================================= */

.dk-hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Sárga CTA */
.dk-btn-primary {
  position: relative;
  overflow: hidden;

  min-width: 230px;
  min-height: 58px;

  padding: 0 28px;

  border-radius: 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;

  background: #ffca05;

  color: #111827;

  font-size: 15px;
  font-weight: 900;

  text-transform: uppercase;
  letter-spacing: 0.04em;

  text-decoration: none;

  box-shadow:
    0 16px 34px rgba(255, 202, 5, 0.28);

  transition: all 0.25s ease;
}

/* Shine effect */
.dk-btn-primary::after {
  content: "";

  position: absolute;
  top: 0;
  left: -80%;

  width: 40%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.7),
    transparent
  );

  transform: skewX(-18deg);

  transition: left 0.75s ease;
}

.dk-btn-primary:hover::after {
  left: 120%;
}

.dk-btn-primary:hover {
  transform: translateY(-2px);

  background: #ffd633;

  color: #111827;
}

.dk-btn-primary span {
  position: relative;
  z-index: 2;

  font-size: 22px;
}

/* Link gomb */
.dk-btn-link {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding-bottom: 10px;

  text-decoration: none;

  color: #1f2937;

  font-size: 15px;
  font-weight: 900;
}

.dk-btn-link::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 3px;

  border-radius: 999px;

  background: #ffca05;
}

.dk-btn-link span {
  font-size: 22px;
  line-height: 1;

  color: #ffca05;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1200px) {

  .dk-hero-bg {
    background-size: auto 78%;
    background-position: 118% center;
  }

}

@media (max-width: 992px) {

  .dk-hero {
    min-height: auto;
    padding: 80px 0 70px;
  }

  .dk-hero-bg {
  background-position: 108% center;
  background-size: auto 88%;

    opacity: 0.38;
  }

  .dk-hero::before {
    background: rgba(245,246,248,0.9);
  }

  .dk-hero-content {
    max-width: 100%;
  }

  .dk-hero h1 {
    max-width: 620px;
  }

  .dk-hero-features {
    gap: 18px;
  }

}

/* =========================================
   MOBIL
========================================= */

@media (max-width: 768px) {

  .dk-hero {
    padding: 120px 0 60px;
  }

  .dk-hero-label {
    margin-bottom: 28px;
  }

  .dk-hero-label span {
    width: 42px;
    height: 3px;
  }

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

  .dk-hero p {
    margin: 22px 0 32px;
    font-size: 17px;
  }

  .dk-hero-features {
    flex-direction: column;
    gap: 18px;

    margin-bottom: 34px;
  }

  .dk-hero-actions {
    flex-direction: column;
    align-items: flex-start;

    gap: 22px;
  }

  .dk-btn-primary {
    width: 100%;
    min-width: 0;
  }

  .dk-hero-bg {
    background-size: auto 58%;
    background-position: 180% bottom;

    opacity: 0.22;
  }

}

@media (max-width: 480px) {

  .dk-hero h1 {
    font-size: 36px;
  }

  .dk-hero p {
    font-size: 16px;
  }

}

/* =========================================
   DIESEL HERO – VÉGE
========================================= */
/* ================================
   HERO SZEKCIÓ – VÉGE
================================ */

  /* Ügyfél logók egységes méretezése */
.logo-box {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  width: 160px;
  height: 99px;
  object-fit: contain;
  display: block;
}












		/* ════════════════════════════════════════
   ÖSSZEHASONLÍTÁS SZEKCIÓ DESIGN
════════════════════════════════════════ */

.hatter_dizajn{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at top left,
        rgba(201, 169, 97, 0.10) 0%,
        transparent 35%),
        #f7f7f7;
}

/* háttér technikai grid */
.hatter_dizajn::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size:40px 40px;
    pointer-events:none;
    z-index:1;
}

/* kompresszor háttérkép */
.hatter_dizajn::after{
    content:"";
    position:absolute;
    right:-120px;
    top:50%;
    transform:translateY(-50%);
    width:850px;
    height:850px;
	background:url('http://www.dieselkompresszor.hu/wp-content/uploads/2026/05/dieselkompresszor-rajza.png') no-repeat center;

    background-size:contain;

    opacity:0.10;
    filter:grayscale(1) contrast(1.1);

    pointer-events:none;
    z-index:1;
}

/* content legyen felül */
.hatter_dizajn .container{
    position:relative;
    z-index:3;
}

/* táblázat design */
.compare-table-wrap{
    position:relative;
    background:rgba(255,255,255,0.82);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,0.5);
}
		/* bal felső színes glow kör */
.compare-table-wrap::before{
    content:"";
    position:absolute;

    width:320px;
    height:320px;

    top:-140px;
    left:-140px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(255,170,0,0.30) 0%,
    rgba(255,140,0,0.18) 25%,
    rgba(255,120,0,0.08) 45%,
    transparent 72%);

    filter:blur(10px);

    z-index:0;
    pointer-events:none;
}

/* bal felső glow */
.compare-table-wrap::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    left:-120px;
    top:-120px;

    background:radial-gradient(circle,
    rgba(201,169,97,0.22) 0%,
    rgba(201,169,97,0.08) 35%,
    transparent 70%);

    z-index:0;
    pointer-events:none;
}

/* táblázat */
.compare-table{
    position:relative;
    z-index:2;
    width:100%;
    border-collapse:collapse;
    background:transparent;
}

.compare-table th{
    background:#111;
    color:#fff;
    padding:22px;
    font-size:18px;
}

.compare-table td{
    padding:20px 22px;
    border-bottom:1px solid rgba(0,0,0,0.06);
    background:rgba(255,255,255,0.72);
    backdrop-filter:blur(4px);
    transition:0.25s ease;
}

.compare-table tr:hover td{
    background:#ffffff;
}

/* saját oszlop */
.compare-table .col-us{
    background:rgba(201,169,97,0.08);
    font-weight:600;
}

/* hover */
.compare-table tr:hover .col-us{
    background:rgba(201,169,97,0.14);
}

/* mobil */
@media(max-width:991px){

    .diag-both::after{
        width:500px;
        height:500px;
        right:-180px;
        opacity:0.07;
    }

    .compare-table th,
    .compare-table td{
        padding:16px;
        font-size:14px;
    }

}


		/* ════════════════════════════════════════
   ÖSSZEHASONLÍTÁS SZEKCIÓ DESIGN
════════════════════════════════════════ */








	/* ════════════════════════════════════════
   PROBLÉMA SZEKCIÓ – ÚJ DESIGN
════════════════════════════════════════ */
/* ════════════════════════════════════════
   PROBLÉMA SZEKCIÓ – LETISZTULTABB
════════════════════════════════════════ */

.mk-problem-section{
    position:relative;
    overflow:hidden;
    padding:90px 0;
    background:#f9fafb;
}

/* háttér pontozás */
.mk-problem-section::before{
    content:"";
    position:absolute;
    inset:0;

    background-image:
    radial-gradient(rgba(0,0,0,0.08) 1px, transparent 1px);

    background-size:24px 24px;

    opacity:.18;

    mask-image:
    linear-gradient(to bottom, #000 0%, transparent 85%);

    pointer-events:none;
}

/* bal oldali vékony vezetővonal */
.mk-problem-section::after{
    content:"";
    position:absolute;

    left:7%;
    top:100px;

    width:1px;
    height:240px;

    background:
    linear-gradient(to bottom,
    transparent,
    var(--atlasSarga),
    transparent);

    opacity:.6;
}

.mk-problem-container{
    position:relative;
    z-index:2;

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

    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:60px;
    align-items:center;
}

/* cím */
.mk-problem-kicker{
    display:inline-flex;
    align-items:center;
    gap:14px;

    margin-bottom:14px;

    color:var(--atlasSarga);

    font-size:13px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.mk-problem-kicker::after{
    content:"";
    width:40px;
    height:1px;
    background:var(--atlasSarga);
}

.mk-problem-title{
    max-width:720px;

    margin:0;

    color:#111;

    font-size:clamp(34px, 4vw, 58px);
    line-height:1.04;
    letter-spacing:-0.04em;
    font-weight:900;
}

/* lista */
.mk-problem-points{
    display:grid;
    gap:12px;

    margin:38px 0 34px;
    padding:0;

    list-style:none;
}

.mk-problem-points li{
    position:relative;

    display:flex;
    align-items:center;

    min-height:72px;

    padding:16px 22px 16px 74px;

    border-radius:18px;

    background:#fff;

    border:1px solid rgba(0,0,0,0.06);

    box-shadow:
    0 10px 26px rgba(0,0,0,0.05);

    color:#111;

    font-size:14px;
    line-height:1.5;
    font-weight:500;

    transition:.25s ease;
}

.mk-problem-points li::before{
    content:"!";

    position:absolute;

    left:20px;
    top:50%;

    transform:translateY(-50%);

    width:38px;
    height:38px;

    border-radius:50%;

    background:var(--atlasSarga);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:15px;
    font-weight:400;
}

.mk-problem-points li:hover{
    transform:translateX(6px);
    border-color:rgba(0,0,0,0.12);
}

/* jobb oldal */
.mk-problem-card{
    position:relative;
    overflow:hidden;

    padding:46px 42px;

    border-radius:28px;

    background:
    linear-gradient(135deg,
    var(--blue) 0%,
    #0549a3 100%);

    box-shadow:
    0 30px 70px rgba(5,73,163,0.18);
}

/* glow */
.mk-problem-card::before{
    content:"";
    position:absolute;

    width:240px;
    height:240px;

    right:-120px;
    top:-120px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(255,255,255,0.14),
    transparent 70%);
}

/* alsó fény */
.mk-problem-card::after{
    content:"";
    position:absolute;

    left:50%;
    bottom:-60px;

    transform:translateX(-50%);

    width:260px;
    height:120px;

    background:
    radial-gradient(circle,
    var(--atlasSarga),
    transparent 70%);

    opacity:.5;
}

/* ikon */
.mk-problem-icon{
    position:relative;
    z-index:2;

    width:64px;
    height:64px;

    margin-bottom:28px;

    border-radius:50%;

    background:var(--atlasSarga);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;
    font-weight:900;
}

.mk-problem-card p{
    position:relative;
    z-index:2;
    margin:0;
    color:rgba(255,255,255,0.92);
    font-size:14px;
    line-height:1.6;
    font-weight:500;
}

/* mobil */
@media(max-width:991px){

    .mk-problem-section{
        padding:70px 0;
    }

    .mk-problem-container{
        grid-template-columns:1fr;
        gap:36px;
    }

    .mk-problem-title{
        font-size:38px;
    }

    .mk-problem-points li{
        min-height:auto;
        padding:16px 18px 16px 66px;
        font-size:15px;
    }

    .mk-problem-points li::before{
        width:34px;
        height:34px;
        left:18px;
        font-size:18px;
    }

    .mk-problem-card{
        padding:34px 28px;
        border-radius:24px;
    }

    .mk-problem-card p{
        font-size:18px;
    }

}



/* ════════════════════════════════════════
   FOOTER – VILÁGOS PRÉMIUM
════════════════════════════════════════ */

.mk-footer{
    position:relative;
    overflow:hidden;
    padding:70px 0 34px;
    background:#fff;
    border-top:1px solid rgba(0,0,0,.06);
}

/* háttérpontozás */
.mk-footer::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:radial-gradient(rgba(0,0,0,.08) 1px, transparent 1px);
    background-size:22px 22px;
    opacity:.14;
    pointer-events:none;
}

/* fényfolt */
.mk-footer::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    right:-170px;
    top:-220px;
    border-radius:50%;
    background:var(--atlasSarga);
    opacity:.12;
    pointer-events:none;
}

.mk-footer .container{
    position:relative;
    z-index:2;
}

.mk-footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:44px;
    margin-bottom:48px;
}

.mk-footer-logo-row{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
}

.mk-footer-badge{
    background:linear-gradient(135deg, var(--blue) 0%, #0549a3 100%);
    color:#fff;
    font-size:11px;
    font-weight:800;
    letter-spacing:.07em;
    text-transform:uppercase;
    padding:6px 11px;
    border-radius:8px;
}

.mk-footer-logo-row strong{
    font-size:17px;
    color:#111;
    letter-spacing:-.02em;
}

.mk-footer-brand p{
    max-width:320px;
    color:rgba(0,0,0,.56);
    font-size:14px;
    line-height:1.75;
}

.mk-footer-mini-card{
    margin-top:24px;
    max-width:360px;
    padding:18px;
    border-radius:18px;
    background:#fff;
    border:1px solid rgba(0,0,0,.07);
    box-shadow:0 14px 34px rgba(0,0,0,.05);
}

.mk-footer-mini-card span{
    display:block;
    margin-bottom:6px;
    color:rgba(0,0,0,.48);
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.mk-footer-mini-card a{
    color:#111;
    font-size:15px;
    font-weight:800;
    text-decoration:none;
}

.mk-footer-col{
    display:grid;
    align-content:start;
    gap:10px;
}

.mk-footer-col h4{
    margin:0 0 8px;
    color:var(--blue);
    font-size:12px;
    font-weight:900;
    letter-spacing:.1em;
    text-transform:uppercase;
}

.mk-footer-col a,
.mk-footer-col span{
    color:rgba(0,0,0,.58);
    font-size:14px;
    line-height:1.5;
    text-decoration:none;
    transition:.2s ease;
}

.mk-footer-col a:hover{
    color:#111;
    transform:translateX(4px);
}

.mk-footer-bottom{
    padding-top:24px;
    border-top:1px solid rgba(0,0,0,.07);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
}

.mk-footer-bottom p{
    margin:0;
    color:rgba(0,0,0,.42);
    font-size:12.5px;
}

/* mobil */
@media(max-width:991px){

    .mk-footer{
        padding:56px 0 30px;
    }

    .mk-footer-grid{
        grid-template-columns:1fr 1fr;
        gap:34px;
    }

    .mk-footer-brand{
        grid-column:1 / -1;
    }

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

@media(max-width:640px){

    .mk-footer-grid{
        grid-template-columns:1fr;
    }
}

	








