    :root{
      /* YardFlow-ish palette (blue/green/white + orange accents) */
      --blue: #2B5DAA;        /* fő kék */
      --blue-2:#1E4F96;       /* sötétebb kék */
      --green:#37B34A;        /* YardFlow zöld */
      --green-2:#2E9B3F;
      --orange:#F59E0B;       /* törésnek */
      --orange-2:#D97706;

      --dark:#0B1B3A;
      --text:#1f2a44;
      --muted:#5b6b86;

      --bg1:#eef3fb;
      --bg2:#f7fbff;

      --card: rgba(255,255,255,0.78);
      --card-strong:#ffffff;

      --border: rgba(30,79,150,0.16);
      --shadow-sm: 0 6px 18px rgba(11,27,58,0.08);
      --shadow-md: 0 14px 40px rgba(11,27,58,0.12);

      --radius: 16px;
      --container: 1320px;  /* kérted: picit szélesebb */
    }

    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; }
    body{
      margin:0;
      font-family:'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color:var(--text);
      line-height:1.6;
      background:
        radial-gradient(1100px 700px at 10% 10%, rgba(43,93,170,0.10), transparent 60%),
        radial-gradient(900px 600px at 90% 15%, rgba(55,179,74,0.10), transparent 55%),
        linear-gradient(180deg, var(--bg2), var(--bg1));
      overflow-x:hidden;
    }

    /* subtle “steel” texture feeling without images */
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background:
        linear-gradient(120deg, rgba(255,255,255,0.35), rgba(255,255,255,0.0) 40%, rgba(255,255,255,0.25));
      mix-blend-mode:soft-light;
      opacity:0.6;
    }

    a{ color:inherit; text-decoration:none; }
    p{ margin:0 0 1.1rem; }

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

    /* Topbar */
    .topbar{
      position:sticky; top:0; z-index:100;
      background: rgba(255,255,255,0.72);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom:1px solid var(--border);
    }
    .topbar-inner{
      height:76px;
      display:flex;
      align-items:center;
      justify-content:flex-start;
      gap:18px;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 220px;
    }
    .brand img{
      height:34px;
      width:auto;
      display:block;
      filter: drop-shadow(0 2px 6px rgba(11,27,58,0.12));
    }

    .nav{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
      justify-content:flex-end;
    
      margin-left:auto;
    }
    .nav a.link{
      padding:10px 12px;
      border-radius:12px;
      font-weight:600;
      color:var(--muted);
      border:1px solid transparent;
    }
    .nav a.link:hover{
      color:var(--blue);
      background: rgba(43,93,170,0.06);
      border-color: rgba(43,93,170,0.14);
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:10px 16px;
      border-radius:12px;
      font-weight:700;
      font-size:0.95rem;
      border:1px solid transparent;
      transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
      cursor:pointer;
      white-space:nowrap;
    }

    .btn.primary{
      background: linear-gradient(180deg, var(--green), var(--green-2));
      color:#fff;
      box-shadow: 0 10px 24px rgba(55,179,74,0.22);
    }
    .btn.primary:hover{ transform: translateY(-1px); filter: brightness(1.04); }

    .btn.secondary{
      background: rgba(255,255,255,0.75);
      color: var(--dark);
      border-color: rgba(43,93,170,0.18);
      box-shadow: var(--shadow-sm);
    }
    .btn.secondary:hover{ transform: translateY(-1px); border-color: rgba(43,93,170,0.30); }

    .btn.orange{
      background: linear-gradient(180deg, var(--orange), var(--orange-2));
      color:#fff;
      box-shadow: 0 10px 24px rgba(245,158,11,0.22);
    }
    .btn.orange:hover{ transform: translateY(-1px); filter: brightness(1.03); }

    /* Hero */
    .hero{
      padding: 42px 0 18px;
      display:grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 34px;
      align-items:center;
    }

    .kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(43,93,170,0.08);
      border: 1px solid rgba(43,93,170,0.14);
      color: var(--blue);
      font-weight:800;
      letter-spacing:0.04em;
      text-transform:uppercase;
      font-size:0.78rem;
      margin-bottom:14px;
    }
    .topbadge{
    margin-left: 8px;

    font-weight: 700;        /* félkövér */
    font-style: italic;     /* dőlt */
    font-size: 0.82rem;
    letter-spacing: 0.04em;

    color: rgba(11,27,58,0.70);

    /* opcionális: picit „lebegjen”, ne legyen gomb */
    background: transparent;
    border: none;
    padding: 0;
    }

    .dot{
      width:8px; height:8px;
      border-radius:999px;
      background: var(--green);
      box-shadow: 0 0 0 4px rgba(55,179,74,0.15);
    }

    h1{
      margin:0 0 14px;
      line-height:1.08;
      letter-spacing:-0.03em;
      color: var(--dark);
      font-size: clamp(2.2rem, 4.7vw, 3.4rem);
      font-weight: 800;
    }
    .grad{
      background: linear-gradient(90deg, var(--blue), var(--green));
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
    }
    .lead{
      color: var(--muted);
      font-size: 1.12rem;
      max-width: 56ch;
      margin-bottom: 18px;
    }

    .bullets{
      list-style:none;
      padding:0;
      margin:0 0 18px;
      display:grid;
      gap:10px;
    }
    .bullets li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color: var(--text);
      font-weight:600;
    }
    .check{
      flex:0 0 auto;
      width:22px; height:22px;
      border-radius:999px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background: rgba(55,179,74,0.14);
      border: 1px solid rgba(55,179,74,0.22);
      color: var(--green);
      margin-top:2px;
    }

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

    .alpha{
      margin-top: 12px;
      font-size: 0.82rem;
      color: rgba(91,107,134,0.9);
    }
    .alpha b{ color: var(--dark); }

    /* Hero image – keret nélkül, beolvadva */
    .hero-card{
    position: relative;
    border-radius: 22px;

    /* KILL THE CARD */
    border: 0;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    /* ne vágja le a kamiont / „kilógó” elemeket */
    overflow: visible;
    }

    .hero-card img{
    width: 100%;
    display: block;
    height: auto;

    /* a kép kapja a “soft” formát, ne a kártya */
    border-radius: 22px;

    /* ne tegyen alá mesterséges gradient hátteret */
    background: transparent;
    }

    /* HERO NOTE – ne verje szét a látványt */
    .hero-note{
    position:absolute;
    left:14px; right:14px; bottom:14px;

    display:flex;
    align-items:center;
    gap:10px;

    padding:10px 12px;
    border-radius:14px;

    background: rgba(255,255,255,0.62);   /* kevésbé “buborék” */
    border: 1px solid rgba(43,93,170,0.10);
    box-shadow: 0 8px 18px rgba(11,27,58,0.08);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    }

    /* ikon ne legyen egy nagy kék “tégla” */
    .pill{
    width:36px; height:36px;
    border-radius:12px;

    background: rgba(43,93,170,0.10);
    border: 1px solid rgba(43,93,170,0.14);
    color: var(--blue);

    box-shadow:none;
    }

    /* tipó: kompakt, nem ordít */
    .hero-note .t1{
    margin:0;
    font-weight:800;
    color: var(--dark);
    font-size:0.92rem;
    line-height:1.15;
    }

    .hero-note .t2{
    margin:2px 0 0;
    color: rgba(91,107,134,0.92);
    font-size:0.84rem;
    font-weight:600;
    line-height:1.15;
    }

    /* Sections */
    .section{
      padding: 46px 0;
    }
    .section-title{
      max-width: 860px;
      margin: 0 0 20px;
    }
    h2{
      margin:0 0 10px;
      color: var(--dark);
      letter-spacing:-0.02em;
      font-size: 2.05rem;
      font-weight: 800;
    }
    .section-lead{
      margin:0;
      color: var(--muted);
      font-size: 1.06rem;
    }

    .grid{
      margin-top: 22px;
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .card{
      border-radius: 18px;
      padding: 18px;
      background: var(--card);
      border: 1px solid rgba(43,93,170,0.14);
      box-shadow: var(--shadow-sm);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      overflow:hidden;
      position:relative;
    }
    .card:hover{
      transform: translateY(-2px);
      border-color: rgba(43,93,170,0.26);
      box-shadow: var(--shadow-md);
    }

    .card .icon{
      width:46px; height:46px;
      border-radius: 14px;
      display:flex;
      align-items:center;
      justify-content:center;
      margin-bottom: 10px;
      color: var(--blue);
      background: rgba(43,93,170,0.10);
      border: 1px solid rgba(43,93,170,0.16);
    }
    .card h3{
      margin:0 0 8px;
      color: var(--dark);
      font-size: 1.14rem;
      font-weight: 800;
      letter-spacing:-0.01em;
    }
    .card p{
      margin:0 0 10px;
      color: var(--muted);
      font-weight:600;
    }
    .card ul{
      margin:0;
      padding-left: 18px;
      color: rgba(91,107,134,0.95);
      font-weight:600;
    }
    .card li{ margin: 6px 0; }

    /* Contact */
    .contact{
      padding-bottom: 70px;
    }
    .contact-wrap{
      border-radius: 26px;
      background:
        radial-gradient(700px 400px at 20% 20%, rgba(43,93,170,0.18), transparent 55%),
        radial-gradient(700px 400px at 85% 25%, rgba(55,179,74,0.16), transparent 55%),
        linear-gradient(180deg, rgba(11,27,58,0.96), rgba(11,27,58,0.92));
      color:#fff;
      padding: 34px;
      display:grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 18px;
      border: 1px solid rgba(255,255,255,0.10);
      box-shadow: 0 22px 60px rgba(11,27,58,0.28);
      overflow:hidden;
      position:relative;
    }
    .contact-wrap h2{ color:#fff; }
    .contact-wrap p{ color: rgba(255,255,255,0.78); font-weight:600; }

    .contact-card{
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 18px;
      padding: 18px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .kv{
      display:grid;
      gap: 12px;
      margin-top: 8px;
    }
    .kv small{
      display:block;
      text-transform:uppercase;
      letter-spacing:0.08em;
      font-weight:800;
      font-size:0.72rem;
      color: rgba(255,255,255,0.62);
      margin-bottom:4px;
    }
    .kv a{
      color:#fff;
      text-decoration: underline;
      text-decoration-color: rgba(255,255,255,0.35);
    }

    footer{
      padding: 26px 0;
      text-align:center;
      color: rgba(91,107,134,0.85);
      border-top: 1px solid rgba(43,93,170,0.14);
    }

    /* Responsive */
    @media (max-width: 980px){
      .hero{ grid-template-columns: 1fr; padding-top: 20px; }
      .hero-card{ max-width: 720px; margin: 0 auto; }
      .grid{ grid-template-columns: 1fr; }
      .contact-wrap{ grid-template-columns: 1fr; }
      .brand{ min-width: unset; }
    }
    @media (max-width: 520px){
    .hero-note{
        left:12px; right:12px; bottom:12px;
        padding:9px 10px;
        gap:8px;
    }
    .pill{ width:34px; height:34px; }
    .hero-note .t1{ font-size:0.9rem; }
    .hero-note .t2{ font-size:0.82rem; }
    }
    /* Process flow – áttekintő, ikon + cím + leírás */
.flow-wrap{
  margin-top: 18px;
  margin-bottom: 18px;
}

.flow{
  display:flex;
  align-items:stretch;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;

  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(43,93,170,0.12);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.flow-step{
  flex: 1 1 0;
  min-width: 170px;
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 10px 10px;
  border-radius: 14px;
}

.flow-step:hover{
  background: rgba(43,93,170,0.05);
}

.flow-ico{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;

  color: var(--blue);
  background: rgba(43,93,170,0.10);
  border: 1px solid rgba(43,93,170,0.14);
  flex: 0 0 auto;
}

.flow-ico svg{
  width: 22px;
  height: 22px;
}

.flow-title{
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  font-size: 0.98rem;
  margin-top: 2px;
}

.flow-sub{
  margin-top: 4px;
  color: rgba(91,107,134,0.92);
  font-weight: 650;
  font-size: 0.86rem;
  line-height: 1.25;
}

.flow-arrow{
  width: 34px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(43,93,170,0.35);
  flex: 0 0 auto;
}

.flow-arrow svg{
  width: 22px;
  height: 22px;
}

/* Responsive: tördeljen szépen, nyilak eltűnnek */
@media (max-width: 980px){
  .flow{
    flex-wrap: wrap;
    gap: 8px;
  }
  .flow-arrow{
    display:none;
  }
  .flow-step{
    flex: 1 1 calc(50% - 8px);
    min-width: 260px;
  }
}

@media (max-width: 520px){
  .flow-step{
    flex: 1 1 100%;
    min-width: unset;
  }
}
/* Mobile nav */
.menu-btn{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border: 1px solid rgba(43,93,170,0.16);
  background: rgba(255,255,255,0.75);
  box-shadow: var(--shadow-sm);
  cursor:pointer;
  position:relative;
  padding:0;
}

.menu-btn span{
  position:absolute;
  left:12px; right:12px;
  height:2px;
  background: rgba(11,27,58,0.75);
  border-radius:999px;
  transition: transform .18s ease, opacity .18s ease, top .18s ease;
}
.menu-btn span:nth-child(1){ top:14px; }
.menu-btn span:nth-child(2){ top:21px; }
.menu-btn span:nth-child(3){ top:28px; }

.menu-panel{
  display:none;
  position:absolute;
  top: calc(100% + 10px);
  right:0;
  min-width: 220px;
  padding:10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(43,93,170,0.16);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 200;
}

.menu-panel .link{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  font-weight:700;
  color: var(--muted);
}
.menu-panel .link:hover{
  background: rgba(43,93,170,0.06);
  color: var(--blue);
}
.menu-panel .btn{
  width:100%;
  justify-content:center;
  margin-top:8px;
}

/* show hamburger on small screens, hide inline nav items */
@media (max-width: 720px){
  .nav{
    position:relative;
    gap:10px;
  }
  .nav .nav-item{
    display:none;
  }
  .menu-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }
}

/* open state */
.nav.menu-open .menu-panel{ display:block; }

.nav.menu-open .menu-btn span:nth-child(1){ top:21px; transform: rotate(45deg); }
.nav.menu-open .menu-btn span:nth-child(2){ opacity:0; }
.nav.menu-open .menu-btn span:nth-child(3){ top:21px; transform: rotate(-45deg); }

/* --- Header polish: language switch --- */
.yf-lang-switch{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px;
  border-radius:999px;
  background: rgba(11, 27, 58, 0.06);
  border: 1px solid rgba(11, 27, 58, 0.10);
}

.yf-lang-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  height:32px;
  padding:0 12px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  font-size:13px;
  letter-spacing:.2px;
  color: rgba(11, 27, 58, 0.72);
  background: transparent;
  transition: transform .12s ease, background .12s ease, color .12s ease;
}

.yf-lang-pill:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.75);
}

.yf-lang-pill.is-active{
  background: rgba(255,255,255,0.92);
  color: rgba(11, 27, 58, 0.92);
  box-shadow: 0 6px 18px rgba(11, 27, 58, 0.10);
}

/* --- Header structure polish --- */
.yf-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 27, 58, 0.08);
}

.yf-header .container-xl{
  max-width: 1200px; /* 16:9-en jól néz ki, nem megy sarokig */
}

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

/* --- Language switch: premium segmented control --- */
.lang-switch{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px;
  border-radius:999px;
  background: rgba(11,27,58,.06);
  border: 1px solid rgba(11,27,58,.12);

  margin-left:10px;
}

.lang-switch .lang-btn{
  min-width:42px;
  height:32px;
  padding:0 12px;
  border-radius:999px;
  border:0;
  background:transparent;
  font-weight:700;
  font-size:13px;
  letter-spacing:.2px;
  cursor:pointer;
  color: rgba(11,27,58,.70);
  transition: transform .12s ease, background .12s ease, color .12s ease, box-shadow .12s ease;
}

.lang-switch .lang-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.70);
}

.lang-switch .lang-btn.is-active,
.lang-switch .lang-btn[aria-pressed="true"]{
  background:#fff;
  color:#0B1B3A;
  box-shadow: 0 6px 18px rgba(11,27,58,.12);
}

