*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --pri:     #b8960a;
      --pri-d:   #8a6f08;
      --pri-l:   #d4a90c;
      --acc:     #1e1e1e;
      --acc-l:   #333333;
      --dark:    #1c2530;
      --dark2:   #252f3a;
      --cream:   #f0f5f1;
      --light:   #f4f8f5;
      --white:   #ffffff;
      --gray:    #6b7a8a;
      --text:    #222;
      --border:  #d0ddd4;
      --yellow:  #f5c800;
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Open Sans', sans-serif; color: var(--text); background: var(--white); }
    a { text-decoration: none; }

  /* Alapból rejtve desktopon */
.topbar{
  display:none;
}

/* Csak mobilon látszódjon */
@media (max-width:768px){

  .topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;

    padding:10px 14px;
    background:#111;

    position:sticky;
    top:0;
    z-index:999;
  }

  .topbar a{
    display:flex;
    align-items:center;
    gap:8px;

    color:#fff;
    text-decoration:none;
    font-weight:700;
    font-size:14px;
  }

  .topbar svg{
    width:16px;
    height:16px;
    fill:#fff;
  }

  .topbar span{
    font-size:12px;
    white-space:nowrap;
  }
}

    /* ─── NAV ─── */
    nav {
      background: var(--dark);
      display: flex; align-items: center; justify-content: space-between;
      padding: .6rem 2.5rem; position: sticky; top: 0; z-index: 200;
    }
    
:root { --logo-h: 150px; }

.nav-logo img {
  height: var(--logo-h);
  width: auto;
  margin: -38px 0;   /* a fájlban lévő üres keretet visszaszedjük */
  display: block;
}

nav { overflow: visible; }

@media (max-width: 900px) { :root { --logo-h: 115px; } .nav-logo img { margin: -28px 0; } }
@media (max-width: 480px) { :root { --logo-h: 92px; }  .nav-logo img { margin: -22px 0; } }

    .nav-call-btn {
      display: flex; align-items: center; gap: .6rem;
      background: var(--yellow); color: #1c2530;
      padding: .55rem 1.3rem; border-radius: 4px;
      font-family: 'Oswald', sans-serif;
      font-size: 1.05rem; font-weight: 600;
      letter-spacing: .03em;
      transition: background .2s, transform .15s;
      flex-shrink: 0;
    }
    .nav-call-btn:hover { background: #d4a800; transform: translateY(-1px); }
    .nav-call-btn svg { width: 18px; height: 18px; fill: none; stroke: #1c2530; stroke-width: 2; flex-shrink: 0; }

    .nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
    .nav-links a { color: rgba(255,255,255,.88); font-size: .9rem; font-weight: 600; letter-spacing: .03em; padding-bottom: 2px; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
    .nav-links a:hover, .nav-links a.active { color: #fff; border-color: var(--yellow); }
    .nav-cta { display: flex; align-items: center; gap: 1.2rem; }
    .nav-phone { display:flex; align-items:center; gap:.5rem; color:#fff; font-weight:700; font-size:.9rem; }
    .nav-phone svg { width:20px; height:20px; fill:none; stroke:var(--yellow); stroke-width:2; }
    .nav-phone span { display:flex; flex-direction:column; }
    .nav-phone small { font-size:.7rem; font-weight:400; opacity:.7; }
    .hamburger { display:none; background:var(--yellow); border:none; cursor:pointer; width:42px; height:42px; border-radius:4px; flex-direction:column; justify-content:center; align-items:center; gap:5px; }
    .hamburger span { display:block; width:20px; height:2px; background:#fff; border-radius:2px; }

    /* ─── MOBILE MENU ─── */
    .mob-menu { display:none; flex-direction:column; background:var(--dark2); position:fixed; inset:0; z-index:500; padding:2rem 1.5rem; }
    .mob-menu.open { display:flex; }
    .mob-close { align-self:flex-end; background:none; border:none; color:#fff; font-size:2rem; cursor:pointer; margin-bottom:1rem; }
    .mob-menu a { color:#fff; font-size:1.2rem; font-weight:700; padding:1rem 0; border-bottom:1px solid rgba(255,255,255,.08); }

    /* ─── HERO ─── */
    .hero {
      position: relative; min-height: 520px; overflow: hidden;
      display: flex; align-items: center;
      background: var(--dark2);
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(0,0,0,.78) 45%, rgba(0,0,0,.25) 100%);
      z-index: 1;
    }
    .hero-bg-img {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover; object-position: 30% center;
      opacity: .55;
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 1200px; margin: 0 auto; width: 100%;
      padding: 4rem 2.5rem;
    }
    .hero-tag {
      display: inline-block; background: var(--yellow); color: #fff;
      font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
      padding: .3rem .9rem; border-radius: 3px; margin-bottom: 1rem;
    }
    .hero h1 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2.6rem, 5.5vw, 5rem);
      font-weight: 700; text-transform: uppercase;
      color: #fff; line-height: 1.02; margin-bottom: .9rem;
      text-shadow: 0 2px 12px rgba(0,0,0,.45);
    }
    .hero p {
      font-size: clamp(.95rem, 1.4vw, 1.1rem); font-weight: 600; color: rgba(255,255,255,.92);
      line-height: 1.6; margin-bottom: 2rem; max-width: 500px;
      text-shadow: 0 1px 6px rgba(0,0,0,.5);
    }
    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-hero {
      display: inline-block; background: var(--yellow); color: #1c2530;
      padding: .9rem 2.2rem; font-size: 1rem; font-weight: 700;
      border-radius: 3px; transition: background .2s, transform .15s;
    }
    .btn-hero:hover { background: #d4a800; transform: translateY(-1px); }
    .btn-hero-sec {
      display: inline-block; background: rgba(255,255,255,.12); color: #fff;
      padding: .9rem 2.2rem; font-size: 1rem; font-weight: 700;
      border-radius: 3px; border: 1px solid rgba(255,255,255,.3);
      transition: background .2s;
    }
    .btn-hero-sec:hover { background: rgba(255,255,255,.22); }

    /* ─── STATS ─── */
.stats {
  position: relative;
  z-index: 10;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: #1e1e1e;
}
.stats-inner > div {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.6rem 2rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stats-inner > div:last-child { border-right: none; }
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem; font-weight: 700;
  color: #f5c800;
  line-height: 1;
}
.stat-label {
  color: rgba(255,255,255,.6);
  font-size: .82rem; font-weight: 600;
  margin-top: .3rem;
}

@media (max-width: 768px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stats-inner > div {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: .3rem;
    border-right: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .stats-inner > div:nth-child(2n)        { border-right: none; }
  .stats-inner > div:nth-last-child(-n+2) { border-bottom: none; }
}
    
/* ─── JELEK (Felismeri a poloska jeleit?) ─── */
.jelek {
  background: var(--light);
  padding: 4.5rem 2rem 2.5rem;
}
.jelek-inner { max-width: 1200px; margin: 0 auto; }
.jelek-head { max-width: 620px; margin-bottom: 2.5rem; }
.jelek-label {
  display: inline-block;
  font-size: .7rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: #9aa3ad; margin-bottom: .8rem;
}
.jelek-head h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700; text-transform: uppercase;
  color: #1c2530; line-height: 1.1; margin-bottom: .8rem;
}
.jelek-head p { font-size: .95rem; color: #5a6470; line-height: 1.7; }
.jelek-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.jelek-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 18px rgba(15,20,28,.07);
  transition: transform .2s, box-shadow .2s;
}
.jelek-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(15,20,28,.12); }
.jelek-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.jelek-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jelek-num {
  position: absolute; top: 10px; left: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: .8rem; font-weight: 700;
  color: #1c2530; background: var(--yellow);
  padding: .2rem .55rem; border-radius: 3px;
}
.jelek-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem; font-weight: 600;
  color: #1c2530; line-height: 1.25;
  padding: 1rem 1.1rem .4rem;
}
.jelek-card p {
  font-size: .84rem; color: #5a6470; line-height: 1.6;
  padding: 0 1.1rem 1.3rem;
}
.jelek-cta {
  margin-top: 2.2rem;
  background: #1e1e1e; border-radius: 12px;
  padding: 1.8rem 2.2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.jelek-cta-txt h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem; font-weight: 600; color: #fff; margin-bottom: .3rem;
}
.jelek-cta-txt p { font-size: .86rem; color: rgba(255,255,255,.6); line-height: 1.6; max-width: 480px; }
.jelek-cta-btns { display: flex; gap: .8rem; flex-wrap: wrap; }
.btn-jelek {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--yellow); color: #1c2530;
  padding: .85rem 1.7rem; border-radius: 6px;
  font-weight: 700; font-size: .92rem; text-decoration: none;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 18px rgba(245,200,0,.3);
}
.btn-jelek:hover { background: #d4a800; transform: translateY(-2px); }
.btn-jelek-sec {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.08); color: #fff;
  padding: .85rem 1.7rem; border-radius: 6px;
  font-weight: 700; font-size: .92rem; text-decoration: none;
  border: 1px solid rgba(255,255,255,.25);
  transition: background .2s;
}
.btn-jelek-sec:hover { background: rgba(255,255,255,.18); }

@media (max-width: 992px) {
  .jelek-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .jelek { padding: 3rem 1.2rem 1.5rem; }
  .jelek-grid { gap: .9rem; }
  .jelek-cta { padding: 1.6rem 1.4rem; }
  .jelek-cta-btns { width: 100%; }
  .btn-jelek, .btn-jelek-sec { flex: 1; justify-content: center; }
}
    
    /* ─── CTA ─── */
.cta {
  background: var(--light);
  padding: 4.5rem 2rem;
}
.cta-inner-bg {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  background-image: url('https://agyipoloskastop.hu/img/poloska-goc.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 340px;
}
.cta-inner-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(15,20,28,.80);
}
.cta-inner-bg > * {
  position: relative; z-index: 1;
}
.cta-left {
  padding: 3.5rem 3rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.cta-right {
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  background: rgba(255,255,255,.02);
}
.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4a9eff;
  margin-bottom: 14px;
}
.cta-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4a9eff;
  animation: ctablink 1.4s infinite;
  flex-shrink: 0;
}
@keyframes ctablink { 0%,100%{opacity:1} 50%{opacity:.25} }
.cta-inner-bg h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
  text-align: left;
}
.cta-inner-bg h2 span { color: var(--yellow); }
.cta-inner-bg > .cta-left > p {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}
.cta-pts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.cta-pts li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  color: rgba(255,255,255,.72);
  font-weight: 500;
}
.cta-pts li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #4a9eff;
  flex-shrink: 0;
}
.cta-phone-label {
  font-size: .68rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.cta-phone-num {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  transition: color .2s;
}
.cta-phone-num:hover { color: var(--yellow); }
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--yellow);
  color: #1c2530;
  padding: .9rem 1.8rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 18px rgba(245,200,0,.35);
  width: 100%;
}
.btn-cta:hover { background: #d4a800; transform: translateY(-2px); }
.cta-hours {
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  font-weight: 600;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .cta-inner-bg { grid-template-columns: 1fr; }
  .cta-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 2.5rem 1.8rem; }
  .cta-right { padding: 2rem 1.8rem; }
}


    /* ─── SECTION HELPERS ─── */
    .section { padding: 5rem 2rem; }
    .container { max-width: 1160px; margin: 0 auto; }
    .sec-label { font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--yellow); text-align: center; display: block; margin-bottom: .35rem; }
    .sec-title { font-family: 'Oswald', sans-serif; font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 600; text-align: center; color: var(--text); margin-bottom: .5rem; }
    .sec-rule {
      display: flex; align-items: center; justify-content: center; gap: .4rem; margin-bottom: 3rem;
    }
    .sec-rule::before, .sec-rule::after { content:''; width:52px; height:2px; background:var(--yellow); border-radius:2px; }
    .sec-rule span { width:6px; height:6px; background:var(--yellow); border-radius:50%; display:block; }

    /* ─── SERVICES — technológiák ─── */
    .services { background: var(--white); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.8rem;
    }
    .svc-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      transition: box-shadow .25s, transform .25s;
    }
    .svc-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-4px); }
    .svc-img { position: relative; height: 220px; overflow: hidden; background: var(--cream); }
    .svc-img img { width:100%; height:100%; object-fit:cover; display:block; transition: transform .4s; }
    .svc-card:hover .svc-img img { transform: scale(1.06); }
    .svc-img-badge {
      position: absolute; bottom: 0; left: 0;
      background: var(--yellow); width: 50px; height: 50px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 0 8px 0 0;
    }
    .svc-img-badge svg { width:24px; height:24px; stroke:#fff; fill:none; stroke-width:1.6; }
    .svc-body { padding: 1.4rem 1.4rem 1rem; }
    .svc-body h3 { font-family:'Oswald',sans-serif; font-size:1.4rem; font-weight:600; margin-bottom:.6rem; color:var(--text); }
    .svc-body p { font-size:.88rem; color:var(--gray); line-height:1.65; margin-bottom:.9rem; }
    .svc-tags { display:flex; flex-wrap:wrap; gap:.4rem; padding: 0 1.4rem .8rem; }
    .svc-tag { background:var(--light); color:var(--yellow); font-size:.75rem; font-weight:700; padding:.3rem .7rem; border-radius:20px; border:1px solid var(--border); }
    .svc-btns { display:flex; gap:.5rem; padding:.8rem 1.4rem 1.4rem; }
    .svc-btn {
      flex:1; display:flex; align-items:center; justify-content:center; gap:.4rem;
      padding:.6rem .4rem; border-radius:3px; font-weight:700; font-size:.82rem;
      transition: background .2s;
    }
    .svc-btn svg { width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:2; flex-shrink:0; }
    .svc-btn-call { background:var(--yellow); color:#1c2530; }
    .svc-btn-call:hover { background:#d4a800; }
    .svc-btn-dark { background:var(--dark); color:#fff; }
    .svc-btn-dark:hover { background:#111; }

    /* ─── HOW WE WORK ─── */
/* ─── HOW WE WORK ─── */
.how2 {
  background: var(--dark);
  padding: 5rem 2rem;
}
.how2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto;
}
.how2-card {
  position: relative;
  display: block;
  text-decoration: none;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  border-radius: 12px;
}
.how2-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 40%, rgba(0,0,0,.35) 100%);
  transition: background .3s;
  z-index: 1;
}
.how2-card--accent::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  z-index: 3;
}
.how2-card:hover::before {
  background: linear-gradient(to top, rgba(0,0,0,.95) 50%, rgba(0,0,0,.55) 100%);
}
.how2-card-inner {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.8rem 1.6rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.how2-num {
  font-family: 'Oswald', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--yellow);
  display: block;
  margin-bottom: .1rem;
}
.how2-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.how2-desc {
  font-size: .83rem;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .35s ease, opacity .3s ease, margin .3s ease;
}
.how2-card:hover .how2-desc {
  max-height: 100px;
  opacity: 1;
  margin-top: .3rem;
}
.how2-cta {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-top: .5rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease .05s, transform .25s ease .05s;
}
.how2-card:hover .how2-cta {
  opacity: 1;
  transform: translateY(0);
}
.how2 .sec-title {
  color: #fff !important;
}

@media(max-width: 900px) {
  .how2-grid { grid-template-columns: repeat(2, 1fr); }
  .how2-card .how2-desc { max-height: 100px; opacity: 1; margin-top: .3rem; }
  .how2-card .how2-cta { opacity: 1; transform: translateY(0); }
  .how2-card { min-height: 300px; }
}
@media(max-width: 560px) {
  .how2-grid { grid-template-columns: 1fr; }
  .how2-card { min-height: 240px; }
  .how2 { padding: 3.5rem 1.2rem; }
}

  /* ─── PROCESS ─── */
.process { background: var(--light); }

.proc-list {
  display: flex;
  flex-direction: column;
  max-width: 860px;
  margin: 0 auto;
}

.proc-item {
  display: flex;
  gap: 0;
  position: relative;
}

.proc-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 72px;
  flex-shrink: 0;
}

.proc-bubble {
  width: 56px;
  height: 56px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--yellow);
  z-index: 2;
  position: relative;
}

.proc-bubble span {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--yellow);
}

.proc-line {
  width: 3px;
  background: var(--yellow);
  flex: 1;
  opacity: .25;
  min-height: 2rem;
}

.proc-item:last-child .proc-line { display: none; }

.proc-body {
  flex: 1;
  padding: 0 0 2rem 2rem;
}

.proc-card-inner {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem 2.2rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--yellow);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
}

.proc-icon-box {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proc-icon-box svg {
  width: 26px;
  height: 26px;
  stroke: var(--dark);
  fill: none;
  stroke-width: 2;
}

.proc-step-label {
  font-family: 'Oswald', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .4rem;
  display: block;
}

.proc-text h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
  line-height: 1.2;
}

.proc-text p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .proc-card-inner { flex-direction: column; gap: 1rem; }
  .proc-left { width: 48px; }
  .proc-bubble { width: 44px; height: 44px; }
  .proc-bubble span { font-size: .9rem; }
  .proc-body { padding: 0 0 1.5rem 1rem; }
}

    /* ─── WHY US ─── */
    .why {
      position: relative; overflow: hidden;
      background: var(--dark2);
    }
    .why-bg {
      position: absolute; inset: 0;
      background-image: url('https://agyipoloskastop.hu/img/jeloletlen-auto.webp');
      background-size: cover; background-position: center;
      opacity: .2;
    }
    .why-inner {
      position: relative; z-index: 1;
      max-width: 1160px; margin: 0 auto;
      padding: 4.5rem 2.5rem;
      display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
    }
    .why h2 {
      font-family:'Oswald',sans-serif; font-size:clamp(2.2rem,4vw,3.6rem);
      font-weight:700; color:#fff; line-height:1.05;
    }
    .why-list { list-style:none; display:flex; flex-direction:column; }
    .why-list li {
      display:flex; align-items:center; gap:1rem;
      padding:.9rem 1.4rem;
      font-size:1rem; font-weight:600; color:#fff;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .why-list li:nth-child(even) { background: rgba(255,255,255,.06); }
    .why-check svg { width:20px; height:20px; stroke:var(--yellow); fill:none; stroke-width:2.5; flex-shrink:0; }

   .pricing-intro {
  max-width: 820px;
  margin: 0 auto 2rem;
  text-align: center;
  color: #6b7280;
  font-size: 1.05rem;
  line-height: 1.7;
}

.upsell-pricing {
  overflow: hidden;
}

.price-cards,
.treatment-levels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  padding: 2rem;
  background: #fff;
}

.treatment-levels {
  padding-top: 0;
}

.price-card,
.level-card {
  border-radius: 18px;
  padding: 1.5rem;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.price-card {
  text-align: center;
}

.price-card.recommended {
  background: #fffbea;
  border: 2px solid var(--acc, #facc15);
}

.price-badge {
  display: inline-block;
  margin-bottom: .8rem;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card.recommended .price-badge {
  background: #f5c800;
  color: #1c2530;
}

.price-card h3,
.level-card h3 {
  font-size: 1.25rem;
  margin-bottom: .7rem;
  color: #111827;
}

.big-price {
  font-size: 2rem;
  font-weight: 900;
  color: #eab308;
  margin-bottom: .8rem;
}

.price-card p,
.level-card p {
  color: #6b7280;
  font-size: .95rem;
  line-height: 1.55;
}

.level-card.highlight {
  background: #fff7ed;
  border-color: #fb923c;
}

.level-card.premium {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

.level-card.premium h3 {
  color: #fff;
}

.level-card.premium p {
  color: #d1d5db;
}

.extra-price {
  font-size: 1.45rem;
  font-weight: 900;
  color: #ef4444;
  margin: 1rem 0;
}

.level-card.premium .extra-price {
  color: #facc15;
}

.level-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.level-card li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: .65rem;
  font-size: .95rem;
  line-height: 1.45;
}

.level-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 900;
}

.pricing-extra {
  margin: 0 2rem 2rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.pricing-extra h3 {
  font-size: 1.45rem;
  margin-bottom: 1rem;
  color: #111827;
}

.extra-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed #e5e7eb;
  color: #111827;
}

.extra-row:last-child {
  border-bottom: none;
}

.extra-row strong {
  color: #ef4444;
  white-space: nowrap;
  font-weight: 900;
}

.extra-row.green strong {
  color: #16a34a;
}

.pricing-note {
  margin: 0 2rem 2rem;
  padding: 1.3rem 1.5rem;
  background: #f1f5f9;
  border-left: 5px solid var(--acc, #facc15);
  border-radius: 14px;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.7;
}

.pricing-cta {
  padding: 0 2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}

.pricing-cta .btn-pri {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;

  background: linear-gradient(135deg, #facc15, #eab308);
  color: #111827;

  padding: 1rem 2rem;
  border-radius: 14px;

  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 12px 28px rgba(234,179,8,.35);

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.pricing-cta .btn-pri:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(234,179,8,.45);
  background: linear-gradient(135deg, #fde047, #facc15);
}

.pricing-cta svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@media (max-width: 900px) {
  .price-cards,
  .treatment-levels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .price-cards,
  .treatment-levels {
    padding: 1.2rem;
  }

  .pricing-extra,
  .pricing-note {
    margin: 0 1.2rem 1.2rem;
  }

  .pricing-cta {
    padding: 0 1.2rem 1.5rem;
  }

  .big-price {
    font-size: 1.75rem;
  }

  .extra-row {
    flex-direction: column;
    gap: .35rem;
  }

  .extra-row strong {
    white-space: normal;
    font-size: 1.1rem;
  }
}

.price-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e5e7eb;
  text-align: left;
  align-items: flex-start;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.price-card.recommended .price-checks {
  border-top-color: rgba(245,200,0,.3);
}
.price-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  font-weight: 500;
  color: #374151;
}
.pcheck {
  color: #22c55e;
  font-weight: 900;
  font-size: .95rem;
  flex-shrink: 0;
}

 /* ─── REVIEWS ─── */
.reviews { background: var(--dark); }

.reviews .sec-label { color: var(--pri-l); opacity: 0.7; }
.reviews .sec-title { color: var(--white); }
.reviews .sec-rule span { background: var(--pri); }

.reviews-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:1.4rem; }
.rev-card {
  background: var(--dark2);
  border-radius: 8px;
  padding: 1.8rem 2rem;
  border-bottom: 3px solid var(--yellow);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.rev-stars { color: var(--yellow); font-size:.95rem; letter-spacing:2px; margin-bottom:.8rem; }
.rev-text { font-size:.88rem; color: rgba(255,255,255,0.55); line-height:1.8; font-style:italic; margin-bottom:1rem; }
.rev-author strong { font-size:.9rem; color: var(--white); display:block; font-weight:700; }
.rev-author span { font-size:.78rem; color: var(--pri-l); }

/* ─── TRUST ─── */
.trust {
  background: var(--light);
  padding: 3.5rem 2rem;
}
.trust-inner {
  max-width: 1160px;
  margin: 0 auto;
  background: var(--dark2);
  border-radius: 12px;
  padding: 3rem 2.5rem;
}
.trust-head { text-align:center; margin-bottom:2rem; }
.trust-head h2 { font-family:'Oswald',sans-serif; font-size:1.8rem; font-weight:700; color:#fff; margin-bottom:.3rem; }
.trust-head p { font-size:.88rem; color:rgba(255,255,255,.5); }
.trust-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:1rem; }
.trust-item {
  background:rgba(255,255,255,.06); border-radius:8px; padding:1.4rem 1rem;
  display:flex; flex-direction:column; align-items:center; gap:.6rem; text-align:center;
}
.trust-item svg { width:30px; height:30px; stroke:var(--yellow); fill:none; stroke-width:1.6; }
.trust-item span { color:rgba(255,255,255,.8); font-size:.82rem; font-weight:600; line-height:1.4; }

/* ─── FAQ ─── */
.faq { background: var(--light); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: .6rem; }
.faq-item { background: var(--white); border-radius: 6px; border: 1px solid var(--border); overflow: hidden; }

.faq-q {
  width:100%; text-align:left; border:none; cursor:pointer;
  padding: 1.1rem 1.4rem; display:flex; justify-content:space-between; align-items:center;
  font-family:'Open Sans',sans-serif; font-size:.93rem; font-weight:700; color:var(--text);
  background: var(--dark);
  color: var(--white);
  transition: background .2s;
}
.faq-q:hover { background: var(--dark2); }
.faq-item.open .faq-q { background: var(--dark2); }

.faq-q svg { width:18px; height:18px; stroke:var(--yellow); fill:none; stroke-width:2.5; flex-shrink:0; transition: transform .25s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { display:none; padding: 0 1.4rem 1.2rem; font-size:.88rem; color:var(--gray); line-height:1.75; }
.faq-item.open .faq-a { display:block; }





    /* ─── FOOTER ─── */
    footer { background: var(--dark); padding: 4rem 2rem 1.8rem; }
    .footer-inner { max-width:1160px; margin:0 auto; }
    .footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1.4fr; gap:3rem; margin-bottom:3rem; }
    .footer-logo-txt { color:#fff; font-family:'Oswald',sans-serif; font-size:1.3rem; font-weight:700; margin-bottom:.9rem; display:block; }
    .footer-logo-txt span { color:var(--yellow); }
    .footer-tagline { font-size:.84rem; color:rgba(255,255,255,.45); line-height:1.7; }
    .footer-col h5 { font-family:'Oswald',sans-serif; font-size:1rem; color:#fff; margin-bottom:.9rem; padding-bottom:.5rem; border-bottom:1px solid rgba(255,255,255,.08); }
    .footer-col ul { list-style:none; }
    .footer-col ul li { margin-bottom:.45rem; }
    .footer-col ul li a { color:rgba(255,255,255,.5); font-size:.86rem; transition:color .2s; }
    .footer-col ul li a:hover { color:var(--yellow); }
    .footer-contact { display:flex; flex-direction:column; gap:.9rem; }
    .fcon { display:flex; align-items:center; gap:.8rem; }
    .fcon-ic { width:34px; height:34px; background:rgba(255,255,255,.07); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
    .fcon-ic svg { width:15px; height:15px; stroke:#fff; fill:none; stroke-width:2; }
    .fcon a { color:rgba(255,255,255,.7); font-size:.86rem; }
    .fcon a:hover { color:var(--yellow); }
    .footer-bottom { border-top:1px solid rgba(255,255,255,.07); padding-top:1.3rem; text-align:center; font-size:.75rem; color:rgba(255,255,255,.25); }

    /* ─── RESPONSIVE ─── */
    @media(max-width:1024px){
      .services-grid { grid-template-columns:1fr; }
      .process-grid { grid-template-columns:repeat(2,1fr); }
      .footer-top { grid-template-columns:1fr 1fr; }
      .footer-brand { grid-column:1/-1; }
      .trust-grid { grid-template-columns:repeat(2,1fr); }
      .reviews-grid { grid-template-columns:repeat(2,1fr); }
    }
    @media(max-width:768px){
      nav { padding:.6rem 1.2rem; }
      .nav-links { display:none; }
      .nav-cta { display:none; }
      .hamburger { display:flex; }
      .badges { grid-template-columns:1fr; }
      .badge { border-right:none; border-bottom:1px solid rgba(255,255,255,.15); }
      .badge:last-child { border-bottom:none; }
      .process-grid { grid-template-columns:1fr; }
      .why-inner { grid-template-columns:1fr; gap:1.5rem; }
      .reviews-grid { grid-template-columns:1fr; }
      .footer-top { grid-template-columns:1fr; gap:2rem; }
      .pricing-cta { flex-direction:column; }
      .hero-bg-img { object-position: 65% center; }
    }
    @media(max-width:480px){
      .trust-grid { grid-template-columns:repeat(2,1fr); }
    }

    /* ─── CONTACT SECTION ─── */
    .contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start;
}
.contact-info-box {
  background: var(--white); border-radius: 8px; padding: 2.5rem 2rem;
  border: 1px solid var(--border);
}
.contact-info-label {
  font-family:'Oswald',sans-serif; font-weight:700; font-size:.7rem;
  letter-spacing:.2em; text-transform:uppercase; color:var(--yellow); margin-bottom:.8rem;
}
.contact-info-title {
  font-family:'Oswald',sans-serif; font-weight:700;
  font-size:clamp(1.8rem,3vw,2.8rem); line-height:1; text-transform:uppercase;
  color:var(--text); margin-bottom:1.5rem;
}
.contact-phone-big {
  display:block; font-family:'Oswald',sans-serif; font-weight:700;
  font-size:clamp(1.4rem,2.5vw,2rem); color:var(--yellow); margin-bottom:.5rem;
  transition:color .2s;
}
.contact-phone-big:hover { color:var(--pri-d); }
.contact-hours { margin-top:1.5rem; display:flex; flex-direction:column; gap:.4rem; }
.contact-hour-row {
  display:flex; justify-content:space-between;
  font-size:.86rem; color:var(--gray);
  padding-bottom:.5rem; border-bottom:1px solid var(--border);
}
.contact-hour-row span:first-child { font-weight:600; color:var(--text); }
.contact-urgent {
  margin-top:1.2rem; background:var(--yellow); padding:.8rem 1.2rem;
  font-family:'Oswald',sans-serif; font-weight:700; font-size:.85rem;
  letter-spacing:.05em; text-transform:uppercase; color:#1c2530;
  display:flex; align-items:center; gap:.7rem; border-radius:3px;
}
.urgent-dot {
  width:8px; height:8px; border-radius:50%; background:#1c2530;
  animation: blink 1.2s infinite; flex-shrink:0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }
.contact-form-box {
  background: var(--dark2); border-radius:8px; padding:2.5rem 2rem;
  border:1px solid rgba(255,255,255,.08);
}
.contact-form-title {
  font-family:'Oswald',sans-serif; font-weight:700; font-size:1.3rem;
  text-transform:uppercase; color:#fff; margin-bottom:1.2rem;
  letter-spacing:.03em;
}
.contact-form-box > p { color: rgba(255,255,255,.55); font-size:.86rem; margin-bottom:1rem; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:.7rem; }
.form-full { grid-column:1/-1; }
.form-input, .form-textarea {
  width:100%; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.15);
  color:#fff; font-family:'Open Sans',sans-serif; font-size:.9rem;
  padding:.75rem 1rem; outline:none; border-radius:3px;
  transition:border-color .15s; -webkit-appearance:none;
}
.form-input::placeholder, .form-textarea::placeholder { color:rgba(255,255,255,.45); }
.form-input:focus, .form-textarea:focus { border-color:var(--yellow); }
.form-textarea { resize:vertical; min-height:100px; }
.form-checkbox-row {
  display:flex; align-items:flex-start; gap:.6rem;
  font-size:.82rem; color:rgba(255,255,255,.55); line-height:1.5; cursor:pointer;
}
.contact-form-box a { color:var(--yellow) !important; text-decoration:underline; }
.form-checkbox-row input[type="checkbox"] {
  margin-top:2px; accent-color:var(--yellow); width:15px; height:15px;
  flex-shrink:0; cursor:pointer;
}
.form-submit-btn {
  width:100%; background:var(--yellow); color:#1c2530;
  font-family:'Oswald',sans-serif; font-weight:700; font-size:1rem;
  letter-spacing:.08em; text-transform:uppercase; border:none;
  padding:1rem; cursor:pointer; border-radius:3px;
  transition:background .15s; margin-top:.3rem;
}
.form-submit-btn:hover { background:#d4a800; }
@media(max-width:768px){
  .contact-grid { grid-template-columns:1fr; }
  .form-grid { grid-template-columns:1fr; }
}

    /* ─── DISTRICT BADGE ─── */
    .district-badge {
      font-family:'Oswald',sans-serif; font-weight:700; font-size:.85rem;
      letter-spacing:.05em; color:var(--gray);
      border:1px solid var(--border); padding:.35rem .9rem; border-radius:3px;
      transition: border-color .15s, color .15s;
    }
    .district-badge:hover { border-color:var(--yellow); color:var(--yellow); }

.wa-float{
  position:fixed;
  right:20px;
  bottom:20px;
  width:60px;
  height:60px;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 16px rgba(0,0,0,.35);
  z-index:9999;
  transition:transform .2s ease, background .2s ease;
}
.wa-float svg{ width:34px; height:34px; }
.wa-float:hover{ background:#1EBE5A; transform:scale(1.08); }
.wa-float:focus-visible{ outline:3px solid #fff; outline-offset:3px; }

/* figyelemfelkeltő lüktetés */
.wa-float::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  background:#25D366;
  opacity:.6;
  animation:wa-pulse 2.4s ease-out infinite;
  z-index:-1;
}
@keyframes wa-pulse{
  0%{ transform:scale(1); opacity:.6; }
  70%{ transform:scale(1.7); opacity:0; }
  100%{ opacity:0; }
}
@media (prefers-reduced-motion:reduce){
  .wa-float::before{ animation:none; }
  .wa-float:hover{ transform:none; }
}

    /* ─── BACK TO TOP ─── */
    .back-top {
      position:fixed; bottom:80px; right:1.5rem;
      width:42px; height:42px;
      background:var(--dark2); border:2px solid var(--yellow);
      color:var(--yellow); display:flex; align-items:center; justify-content:center;
      text-decoration:none; z-index:800;
      opacity:0; pointer-events:none; transition:opacity .2s; border-radius:3px;
    }
    .back-top.visible { opacity:1; pointer-events:auto; }
    .back-top svg { width:16px; height:16px; }

    /* ─── COOKIE BANNER ─── */
    #cookie-banner {
      position:fixed; inset-x:0; bottom:0; z-index:2000;
      background:#111; border-top:2px solid var(--yellow);
    }
    .cookie-inner {
      display:flex; align-items:center; justify-content:space-between;
      gap:1.5rem; padding:1rem 2rem; flex-wrap:wrap;
    }
    .cookie-text { font-size:.82rem; color:#bbb; max-width:600px; line-height:1.5; }
    .cookie-text a { color:var(--yellow); text-decoration:none; }
    .cookie-text strong { font-weight:600; color:#fff; display:block; margin-bottom:.15rem; }
    .cookie-btns { display:flex; gap:.5rem; flex-shrink:0; }
    .cookie-btn {
      font-family:'Oswald',sans-serif; font-weight:700; font-size:.75rem;
      letter-spacing:.1em; text-transform:uppercase;
      padding:.55rem 1.1rem; border:2px solid #444;
      background:transparent; color:#fff; cursor:pointer; transition:border-color .15s;
    }
    .cookie-btn:hover { border-color:#888; }
    .cookie-btn-accept { background:var(--yellow); border-color:var(--yellow); color:#1c2530; }
    .cookie-btn-accept:hover { background:#d4a800; border-color:#d4a800; }
    #cookie-panel-backdrop {
      position:fixed; inset:0; z-index:2100;
      background:rgba(0,0,0,.75); display:none; align-items:center; justify-content:center;
    }
    #cookie-panel-backdrop.open { display:flex; }
    .cookie-panel {
      background:#111; border:2px solid var(--yellow);
      padding:2rem; width:100%; max-width:420px; margin:1rem; position:relative;
    }
    .cookie-panel-title { font-family:'Oswald',sans-serif; font-weight:700; font-size:1.3rem; text-transform:uppercase; color:#fff; margin-bottom:1.5rem; }
    .cookie-panel-close { position:absolute; top:.8rem; right:1rem; background:none; border:none; color:#888; font-size:1.4rem; cursor:pointer; line-height:1; }
    .cookie-panel-close:hover { color:#fff; }
    .cookie-row { display:flex; align-items:flex-start; justify-content:space-between; gap:1rem; padding:1rem 0; border-bottom:1px solid #333; }
    .cookie-row:last-of-type { border-bottom:none; }
    .cookie-row-label { font-family:'Oswald',sans-serif; font-weight:700; font-size:.85rem; color:#fff; text-transform:uppercase; letter-spacing:.05em; }
    .cookie-row-desc { font-size:.78rem; color:#888; margin-top:.25rem; line-height:1.5; }
    .cookie-toggle { width:44px; height:24px; border-radius:12px; background:#333; border:none; cursor:pointer; position:relative; flex-shrink:0; transition:background .2s; }
    .cookie-toggle.on { background:var(--yellow); }
    .cookie-toggle::after { content:''; position:absolute; top:3px; left:3px; width:18px; height:18px; border-radius:50%; background:#fff; transition:transform .2s; }
    .cookie-toggle.on::after { transform:translateX(20px); }
    .cookie-toggle-disabled { opacity:.4; cursor:not-allowed; background:#4ade80 !important; }
    .cookie-toggle-disabled::after { transform:translateX(20px) !important; }
    .cookie-panel-save { width:100%; background:var(--yellow); color:#1c2530; font-family:'Oswald',sans-serif; font-weight:700; font-size:.95rem; letter-spacing:.08em; text-transform:uppercase; border:none; padding:.9rem; cursor:pointer; margin-top:1.2rem; transition:background .15s; }
    .cookie-panel-save:hover { background:#d4a800; }

    /* ─── MOBILE STICKY SHOW ─── */
    @media(max-width:768px){
      .sticky-call-mobile { display:block; }
      body { padding-bottom:60px; }
    }

    /* ─── GARANCIA ─── */
    .garancia {
      background: var(--white);
    }
    .garancia-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 3rem;
      align-items: center;
    }
    .garancia-text {
      max-width: 720px;
    }
    .garancia-text p {
      font-size: .92rem;
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 1rem;
    }
    .garancia-text strong {
      color: var(--yellow);
    }
    .garancia-points {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      padding-top: 1.5rem;
      margin-top: .5rem;
      border-top: 1px solid var(--border);
    }
    .garancia-point {
      display: flex;
      align-items: center;
      gap: .7rem;
    }
    .garancia-point span {
      width: 22px;
      height: 22px;
      border: 2px solid var(--yellow);
      color: var(--yellow);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .8rem;
      font-weight: 900;
      flex-shrink: 0;
    }
    .garancia-point b {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: .8rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--gray);
    }
    .garancia-point--gold span {
      background: var(--yellow);
      color: #1c2530;
    }
    .garancia-point--gold b {
      color: var(--yellow);
    }
    .garancia-image {
      width: 100%;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 18px 45px rgba(0,0,0,.12);
    }
    .garancia-image img {
      width: 100%;
      height: 430px;
      object-fit: cover;
      display: block;
    }
    @media(max-width: 768px) {
      .garancia-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      .garancia-image img {
        height: 300px;
      }
    }

    /* ─── PRECIOS (compartido entre index.html y precios.html) ─── */
    .pg-wrap{--pg-acc:#e8b800;--pg-acc-dark:#b98900;--pg-dark:#1c1c1c;--pg-ink:#2b2b2b;--pg-line:#e7e3da;--pg-light:#faf9f6;--pg-gray:#6b6b6b;}
    .pg-intro{max-width:760px;margin:0 auto 2.5rem;text-align:center;color:var(--pg-gray);font-size:1.02rem;line-height:1.6}
    .pg-intro strong{color:var(--pg-dark)}
    .pg-table-wrap{overflow-x:auto;border-radius:14px;box-shadow:0 6px 30px rgba(0,0,0,.08);margin-bottom:2.5rem;-webkit-overflow-scrolling:touch}
    table.pg-table{width:100%;border-collapse:collapse;min-width:520px;background:#fff}
    table.pg-table th,table.pg-table td{padding:1rem 1.2rem;text-align:center;border-bottom:1px solid var(--pg-line)}
    table.pg-table thead th{background:var(--pg-dark);color:#fff;font-family:'Oswald',sans-serif;letter-spacing:.03em;font-weight:600}
    table.pg-table thead th:first-child{text-align:left}
    table.pg-table tbody td:first-child{text-align:left;font-weight:700;color:var(--pg-dark)}
    table.pg-table tbody tr:last-child td{border-bottom:none}
    table.pg-table tbody tr:nth-child(even){background:var(--pg-light)}
    table.pg-table td.pg-price{font-weight:700;color:var(--pg-acc-dark);font-size:1.05rem}
    table.pg-table td.pg-price-start{position:relative;background:linear-gradient(135deg,#fffbea,#fff3c4)!important;box-shadow:inset 0 0 0 2px var(--pg-acc)}
    .pg-price-tag{display:block;font-family:'Oswald',sans-serif;font-size:.6rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--pg-acc-dark);margin-bottom:.15rem}
    .pg-zones{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1.2rem;margin-bottom:2.5rem}
    .pg-zone-card{background:#fff;border:1px solid var(--pg-line);border-radius:12px;padding:1.3rem 1.4rem}
    .pg-zone-card b{display:inline-block;background:var(--pg-acc);color:#fff;font-size:.78rem;font-weight:700;padding:.25rem .6rem;border-radius:20px;margin-bottom:.6rem}
    .pg-zone-card p{color:var(--pg-gray);font-size:.92rem;line-height:1.5;margin:0}
    .pg-sub-title{font-family:'Oswald',sans-serif;font-size:1.3rem;color:var(--pg-dark);margin:0 0 1rem;text-align:center}
    .pg-extras{display:grid;gap:.7rem;max-width:700px;margin:0 auto 2.5rem}
    .pg-extra-row{display:flex;justify-content:space-between;gap:1rem;align-items:center;background:#fff;border:1px solid var(--pg-line);border-radius:10px;padding:.9rem 1.2rem}
    .pg-extra-row span{color:var(--pg-ink);font-size:.94rem}
    .pg-extra-row strong{color:var(--pg-acc-dark);font-family:'Oswald',sans-serif;white-space:nowrap}
    .pg-extra-row.pg-free strong{color:#2e9e5b}
    .pg-vac{max-width:520px;margin:0 auto 2.5rem;background:#fff;border-radius:14px;box-shadow:0 6px 30px rgba(0,0,0,.08);overflow:hidden}
    table.pg-vac-table{width:100%;border-collapse:collapse}
    table.pg-vac-table th,table.pg-vac-table td{padding:.9rem 1.2rem;text-align:center;border-bottom:1px solid var(--pg-line)}
    table.pg-vac-table thead th{background:var(--pg-dark);color:#fff;font-family:'Oswald',sans-serif}
    table.pg-vac-table tbody tr:last-child td{border-bottom:none}
    table.pg-vac-table td:first-child{text-align:left;font-weight:600}
    .pg-note{max-width:760px;margin:0 auto 2rem;background:var(--pg-light);border-left:4px solid var(--pg-acc);padding:1rem 1.3rem;border-radius:8px;font-size:.9rem;color:var(--pg-gray);line-height:1.6}
    .pg-more-note{max-width:700px;margin:0 auto 2.2rem;text-align:center;color:var(--pg-gray);font-size:.94rem;line-height:1.6}
    .pg-more-note a{color:var(--pg-acc-dark);font-weight:700;text-decoration:underline}
    .lang-switch{margin-left:.75rem;font-size:.82rem;font-weight:700;letter-spacing:.04em;color:inherit;opacity:.75;text-decoration:none;border:1px solid currentColor;border-radius:20px;padding:.25rem .7rem}
    .lang-switch:hover{opacity:1}
    @media(max-width:640px){.pg-extra-row{flex-direction:column;align-items:flex-start;gap:.3rem}}

    /* ─── botón secundario (uso general) ─── */
    .btn-pri-sec{
      display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
      background:transparent;color:var(--dark);border:2px solid var(--dark);
      padding:.95rem 1.9rem;border-radius:14px;font-weight:800;font-size:1rem;
      text-decoration:none;transition:background .2s,color .2s,transform .15s;
    }
    .btn-pri-sec:hover{background:var(--dark);color:#fff;transform:translateY(-2px)}
    .btn-pri-sec svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2}

    /* ─── PRECIOS.HTML — hero compacto ─── */
    .pg-hero{background:var(--dark2);position:relative;overflow:hidden}
    .pg-hero-inner{max-width:1160px;margin:0 auto;padding:3.2rem 2.5rem 3rem;position:relative;z-index:1}
    .pg-breadcrumb{font-size:.78rem;color:rgba(255,255,255,.45);margin-bottom:1.1rem}
    .pg-breadcrumb a{color:rgba(255,255,255,.7)}
    .pg-breadcrumb a:hover{color:var(--yellow)}
    .pg-hero h1{font-family:'Oswald',sans-serif;font-size:clamp(1.9rem,4vw,3rem);font-weight:700;color:#fff;line-height:1.18;margin-bottom:.9rem;max-width:820px}
    .pg-hero-sub{font-size:1rem;color:rgba(255,255,255,.75);line-height:1.7;max-width:640px;margin-bottom:1.8rem}
    .pg-hero-btns{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:2.2rem}
    .pg-badges{display:flex;flex-wrap:wrap;gap:.7rem}
    .pg-badge{display:flex;align-items:center;gap:.5rem;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.15);color:rgba(255,255,255,.85);font-size:.78rem;font-weight:600;padding:.5rem .9rem;border-radius:20px}
    .pg-badge svg{width:14px;height:14px;stroke:var(--yellow);fill:none;stroke-width:2.5;flex-shrink:0}
    @media(max-width:768px){ .pg-hero-inner{padding:2.4rem 1.2rem 2.2rem} }

    /* ─── PRECIOS.HTML — qué incluye ─── */
    .pg-incl-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;max-width:900px;margin:0 auto 2.5rem}
    .pg-incl-col{background:#fff;border:1px solid var(--pg-line);border-radius:12px;padding:1.6rem 1.7rem}
    .pg-incl-col h4{font-family:'Oswald',sans-serif;font-size:1rem;color:var(--pg-dark);margin-bottom:1rem;text-transform:uppercase;letter-spacing:.03em}
    .pg-incl-list{list-style:none;display:flex;flex-direction:column;gap:.7rem}
    .pg-incl-list li{display:flex;align-items:flex-start;gap:.6rem;font-size:.9rem;color:var(--pg-ink);line-height:1.5}
    .pg-incl-list li svg{width:16px;height:16px;stroke:#2e9e5b;fill:none;stroke-width:3;flex-shrink:0;margin-top:.15rem}
    .pg-noincl-list li svg{stroke:#b0a684}
    .pg-noincl-list li strong{color:var(--pg-acc-dark);font-weight:700;margin-left:.2rem}
    @media(max-width:640px){ .pg-incl-grid{grid-template-columns:1fr} }

    /* ─── PRECIOS.HTML — qué influye en el precio ─── */
    .pg-influence{max-width:900px;margin:0 auto 2.5rem;display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1rem}
    .pg-influence-item{background:#fff;border:1px solid var(--pg-line);border-radius:10px;padding:1.1rem 1.2rem;font-size:.86rem;color:var(--pg-ink);line-height:1.5}
    .pg-influence-item b{display:block;font-family:'Oswald',sans-serif;color:var(--pg-dark);margin-bottom:.3rem;font-size:.92rem}

    /* ─── PRECIOS.HTML — precio cerrado (confianza) ─── */
    .pg-trust{max-width:820px;margin:0 auto 2.5rem;background:#fff;border-left:4px solid var(--pg-acc);border-radius:8px;padding:1.6rem 1.8rem;box-shadow:0 6px 24px rgba(0,0,0,.06)}
    .pg-trust h3{font-family:'Oswald',sans-serif;font-size:1.15rem;color:var(--pg-dark);margin-bottom:.6rem}
    .pg-trust p{font-size:.9rem;color:var(--pg-gray);line-height:1.7}
    .pg-trust p+p{margin-top:.6rem}

    /* ─── PRECIOS.HTML — cómo pedir presupuesto ─── */
    .pg-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem;max-width:1000px;margin:0 auto 2.5rem}
    .pg-step{background:#fff;border:1px solid var(--pg-line);border-radius:12px;padding:1.8rem 1.6rem;text-align:center}
    .pg-step-num{display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;border-radius:50%;background:var(--pg-dark);color:var(--pg-acc);font-family:'Oswald',sans-serif;font-weight:700;margin-bottom:1rem}
    .pg-step h4{font-family:'Oswald',sans-serif;font-size:1.02rem;color:var(--pg-dark);margin-bottom:.5rem}
    .pg-step p{font-size:.85rem;color:var(--pg-gray);line-height:1.6}
    @media(max-width:768px){ .pg-steps{grid-template-columns:1fr} }

    /* ─── FOOTER — horario de atención ─── */
    .footer-hours{margin-top:.2rem}
    .footer-hours-title{font-family:'Oswald',sans-serif;font-weight:700;font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.4);margin-bottom:.4rem}
    .footer-hours-text{color:rgba(255,255,255,.5);font-size:.82rem;line-height:1.7}