/* =========================================================
   LEVEGOFURDETO.HU — NATIVE HERO V3
   Vizuális cél: a jóváhagyott referencia hero pontos arányai.
   Minden webes szöveg: Plus Jakarta Sans.
   ========================================================= */

:root{
  --ivory:#f7f2e8;
  --ivory-2:#fbf8f2;
  --deep:#103f34;
  --deep-hover:#174c40;
  --ink:#143e35;
  --soft:#5f655e;
  --line:#ded5c7;
  --max:1280px;
}

*,
*::before,
*::after{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  min-width:320px;
  background:var(--ivory);
  color:var(--ink);
  font-family:"Plus Jakarta Sans",sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{color:inherit;text-decoration:none}

/* HERO --------------------------------------------------- */

.hero{
  position:relative;
  min-height:532px;
  overflow:hidden;
  background:var(--ivory-2);
  border-bottom:1px solid var(--line);
}

.hero-photo{
  position:absolute;
  z-index:0;
  top:0;
  right:0;
  bottom:66px;
  left:22%;
  background-image:url("assets/hero-room.jpg");
  background-size:cover;
  background-position:center 48%;
  background-repeat:no-repeat;
}

.hero-wash{
  position:absolute;
  z-index:1;
  inset:0 0 66px 0;
  pointer-events:none;
  background:
    linear-gradient(
      90deg,
      rgba(250,247,241,1) 0%,
      rgba(250,247,241,.995) 18%,
      rgba(250,247,241,.92) 25%,
      rgba(250,247,241,.48) 34%,
      rgba(250,247,241,.08) 47%,
      rgba(250,247,241,0) 58%
    );
}

/* HEADER ------------------------------------------------- */

.topbar{
  position:relative;
  z-index:4;
  height:62px;
}

.topbar-inner{
  width:min(var(--max),calc(100% - 92px));
  height:100%;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  font-size:17px;
  line-height:1;
  font-weight:700;
  letter-spacing:-.035em;
  color:#0d3e34;
}

.nav{
  display:flex;
  align-items:center;
  gap:30px;
  font-size:11px;
  line-height:1;
  font-weight:700;
  color:#111d19;
}

.nav > a:not(.nav-button){
  padding:10px 0;
}

.nav-button{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 17px;
  border-radius:4px;
  background:var(--deep);
  color:white;
  box-shadow:0 3px 8px rgba(16,63,52,.10);
}

/* MAIN COPY ---------------------------------------------- */

.hero-content{
  position:relative;
  z-index:3;
  width:min(var(--max),calc(100% - 92px));
  margin:0 auto;
}

.hero-copy{
  width:255px;
  padding-top:13px;
}

.hero-copy h1{
  margin:0 0 15px;
  font-size:44px;
  line-height:.98;
  letter-spacing:-.055em;
  font-weight:600;
  color:#103f34;
}

.hero-kicker{
  margin:0 0 7px;
  font-size:10.8px;
  line-height:1.35;
  font-weight:800;
  color:#1d2f29;
}

.hero-text{
  margin:0;
  font-size:9.8px;
  line-height:1.72;
  font-weight:500;
  color:#283a34;
}

.hero-button{
  width:fit-content;
  min-height:36px;
  margin-top:15px;
  padding:0 10px 0 16px;
  display:inline-flex;
  align-items:center;
  gap:12px;
  border-radius:4px;
  background:var(--deep);
  color:#fff;
  font-size:10.5px;
  line-height:1;
  font-weight:700;
  box-shadow:0 5px 13px rgba(16,63,52,.13);
  transition:background .15s ease,transform .15s ease;
}

.hero-button:hover{
  background:var(--deep-hover);
  transform:translateY(-1px);
}

.hero-button .arrow{
  font-size:22px;
  line-height:1;
  font-weight:400;
  transform:translateY(-1px);
}

/* TRUST STRIP -------------------------------------------- */

.trust-strip{
  position:absolute;
  z-index:5;
  left:0;
  right:0;
  bottom:0;
  height:66px;
  background:rgba(249,245,237,.96);
  border-top:1px solid rgba(218,207,192,.78);
}

.trust-inner{
  width:min(var(--max),calc(100% - 92px));
  height:100%;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.06fr 1.15fr 1.23fr 1.17fr 1.35fr;
  align-items:center;
}

.trust-item{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:0 12px;
  color:#263a34;
  font-size:9.5px;
  line-height:1.45;
  font-weight:600;
}

.trust-item svg{
  flex:0 0 23px;
  width:23px;
  height:23px;
  fill:none;
  stroke:#1c5044;
  stroke-width:1.45;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* NEXT SECTION PLACEHOLDER ------------------------------ */

.next-section{
  min-height:260px;
  padding:65px 24px 75px;
  background:#faf7f1;
  border-bottom:1px solid var(--line);
}

.next-inner{
  width:min(1100px,100%);
  margin:0 auto;
  text-align:center;
}

.section-no{
  margin-bottom:10px;
  color:#a18e73;
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
}

.next-inner h2{
  margin:0;
  font-size:38px;
  line-height:1.12;
  letter-spacing:-.045em;
  font-weight:700;
}

.next-inner p{
  margin:13px 0 0;
  color:#887e70;
  font-size:13px;
  line-height:1.6;
  font-weight:500;
}

/* RESPONSIVE --------------------------------------------- */

@media (min-width:1400px){
  .hero{min-height:612px}
  .hero-photo{bottom:76px}
  .hero-wash{inset:0 0 76px 0}
  .trust-strip{height:76px}

  .topbar{height:72px}
  .topbar-inner,
  .hero-content,
  .trust-inner{
    width:min(1380px,calc(100% - 120px));
  }

  .brand{font-size:19px}
  .nav{font-size:12px;gap:34px}
  .nav-button{min-height:36px;padding-inline:20px}

  .hero-copy{width:292px;padding-top:15px}
  .hero-copy h1{font-size:51px;margin-bottom:18px}
  .hero-kicker{font-size:12px}
  .hero-text{font-size:11px}
  .hero-button{min-height:41px;font-size:11.5px;margin-top:17px;padding-left:18px}

  .trust-item{font-size:10.6px}
  .trust-item svg{width:25px;height:25px;flex-basis:25px}
}

@media (max-width:900px){

  .hero{
    display:flex;
    flex-direction:column;
  }

  .topbar{
    order:1;
  }

  .hero-photo{
    order:2;
  }

  .hero-content{
    order:3;
  }

  .trust-strip{
    order:4;
  }
  .hero{
    min-height:auto;
    padding-bottom:0;
  }

  .topbar{
    height:70px;
    background:#faf7f1;
  }

  .brand{
    font-size:18px;
    font-weight:700;
    letter-spacing:-.035em;
  }

  .topbar-inner{
    width:calc(100% - 44px);
  }

  .nav{
    display:none;
  }

  .hero-photo{
    position:relative;
    left:auto;
    right:auto;
    top:auto;
    bottom:auto;
    width:100%;
    height:48vw;
    min-height:300px;
    max-height:470px;
    background-position:center 50%;
  }

  .hero-wash{
    display:none;
  }

  .hero-content{
    width:100%;
    margin:0;
    background:#faf7f1;
  }

  .hero-copy{
    width:auto;
    padding:38px 22px 34px;
  }

  .hero-copy h1{
    font-size:clamp(46px,13vw,64px);
  }

  .hero-kicker{
    font-size:13px;
  }

  .hero-text{
    max-width:560px;
    font-size:13px;
  }

  .hero-button{
    min-height:49px;
    margin-top:21px;
    padding:0 18px;
    font-size:13px;
  }

  .trust-strip{
    position:relative;
    height:auto;
  }

  .trust-inner{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
  }

  .trust-item{
    min-height:64px;
    justify-content:flex-start;
    padding:12px 22px;
    font-size:10px;
    border-top:1px solid rgba(218,207,192,.65);
  }

  .trust-item:nth-child(even){
    border-left:1px solid rgba(218,207,192,.65);
  }

  .trust-item:last-child{
    grid-column:1 / -1;
  }
}

@media (max-width:560px){
  .brand{font-size:17px}

  .hero-photo{
    height:58vw;
    min-height:250px;
  }

  .hero-copy{
    padding-top:32px;
  }

  .hero-copy h1{
    font-size:49px;
  }

  .hero-text br{
    display:none;
  }

  .trust-inner{
    grid-template-columns:1fr;
  }

  .trust-item,
  .trust-item:nth-child(even){
    border-left:0;
  }

  .trust-item:last-child{
    grid-column:auto;
  }
}


/* =========================================================
   V5 MOBIL KORREKCIÓ
   Márkanév a hero-kép bal felső sarkában
   ========================================================= */
@media (max-width:900px){
  .hero{
    display:flex;
    flex-direction:column;
  }

  .topbar{
    position:absolute;
    z-index:10;
    top:0;
    left:0;
    right:0;
    height:72px;
    order:initial;
    background:transparent;
  }

  .topbar-inner{
    width:100%;
    height:72px;
    margin:0;
    padding:0 22px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
  }

  .brand{
    font-size:18px;
    line-height:1;
    font-weight:700;
    letter-spacing:-.035em;
    color:#103f34;
    text-shadow:0 1px 10px rgba(250,247,241,.65);
  }

  .nav{
    display:none;
  }

  .hero-photo{
    order:1;
  }

  .hero-content{
    order:2;
  }

  .trust-strip{
    order:3;
  }
}


/* =========================================================
   02 — MIÉRT TÉR VISSZA ÚJRA ÉS ÚJRA?
   Az EREDETI jóváhagyott kompozíció natív HTML/CSS változata
   ========================================================= */

.why-section{
  background:#fbf7ef;
  border-bottom:1px solid #e2d8ca;
  padding:34px 0 28px;
  color:#153d34;
}

.why-inner{
  width:min(1320px, calc(100% - 70px));
  margin:0 auto;
}

.why-header{
  text-align:center;
  margin-bottom:25px;
}

.why-header h2{
  margin:0;
  font-size:35px;
  line-height:1.12;
  letter-spacing:-.045em;
  font-weight:600;
  color:#153d34;
}

.why-title-rule{
  display:block;
  width:48px;
  height:1.5px;
  margin:9px auto 10px;
  background:#b48a4b;
}

.why-header p{
  margin:0;
  font-size:14px;
  line-height:1.55;
  font-weight:400;
  color:#62584d;
}

.why-top{
  display:grid;
  grid-template-columns: 1.1fr 50px 1.1fr 50px 2.55fr;
  align-items:start;
}

.why-step-title{
  min-height:36px;
  display:flex;
  align-items:center;
  gap:11px;
  margin-bottom:9px;
}

.why-step-title h3{
  margin:0;
  font-size:15px;
  line-height:1.2;
  font-weight:600;
  letter-spacing:-.025em;
  color:#203c35;
}

.why-number{
  width:32px;
  height:32px;
  flex:0 0 32px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#10483e;
  color:white;
  font-size:17px;
  line-height:1;
  font-weight:600;
}

.why-number--gold{
  background:#ac8447;
}

.why-arrow{
  padding-top:10px;
  text-align:center;
  font-size:31px;
  line-height:1;
  font-weight:300;
  color:#aa8249;
}

.why-square-image{
  display:block;
  width:100%;
  aspect-ratio:1.42 / 1;
  object-fit:cover;
  border-radius:8px;
  border:1px solid #e1d5c5;
}

.why-caption{
  margin:9px 0 0;
  text-align:center;
  color:#3c3832;
  font-size:12px;
  line-height:1.52;
  font-weight:400;
}

.why-sources{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:0;
}

.why-source{
  min-width:0;
  padding:0 8px;
  text-align:center;
}

.why-source + .why-source{
  border-left:1px solid #e3d9cc;
}

.why-source-image{
  height:148px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border-radius:999px;
  background:#f5efe5;
}

.why-source-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.why-source p{
  min-height:37px;
  margin:8px -5px 0;
  font-size:11px;
  line-height:1.45;
  font-weight:500;
  color:#35322d;
}

.why-divider{
  height:1px;
  margin:20px 0 21px;
  background:#d8c8b3;
}

.why-bottom{
  position:relative;
  display:grid;
  grid-template-columns:1.45fr 1fr;
  gap:67px;
  align-items:stretch;
}

.why-step4-copy{
  min-height:58px;
  display:flex;
  align-items:flex-start;
  gap:13px;
  margin-bottom:11px;
}

.why-step4-copy h3{
  margin:2px 0 4px;
  font-size:19px;
  line-height:1.25;
  font-weight:600;
  letter-spacing:-.035em;
  color:#203c35;
}

.why-step4-copy p{
  margin:0;
  color:#62584d;
  font-size:12.5px;
  line-height:1.5;
  font-weight:400;
}

.why-main-image{
  overflow:hidden;
  border-radius:14px;
  border:1px solid #decebb;
  background:#efe5d7;
}

.why-main-image img{
  display:block;
  width:100%;
  height:auto;
}

.why-flow-arrow{
  position:absolute;
  z-index:3;
  left:61.6%;
  top:52%;
  transform:translate(-50%,-50%);
  color:#b48643;
  font-size:49px;
  line-height:1;
}

.why-question{
  position:relative;
  min-height:100%;
  padding:72px 42px 34px;
  border:2px solid #d5bc94;
  border-radius:20px;
  background:#fcfaf6;
  box-shadow:
    inset 0 0 0 5px #fcfaf6,
    inset 0 0 0 7px rgba(213,188,148,.44);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.why-number--five{
  position:absolute;
  top:-17px;
  left:-17px;
  width:50px;
  height:50px;
  font-size:25px;
  box-shadow:0 0 0 3px #fbf7ef;
}

.why-leaf{
  position:absolute;
  top:-21px;
  left:50%;
  transform:translateX(-50%);
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:50%;
  border:1.5px solid #bd9557;
  background:#fbf7ef;
  color:#a67938;
  font-size:25px;
}

.why-question-first{
  margin:0;
  color:#273731;
  font-size:18px;
  line-height:1.48;
  font-weight:500;
}

.why-question-rule{
  width:74px;
  height:1.5px;
  margin:21px 0;
  background:#b78a48;
}

.why-question-middle{
  margin:0 0 8px;
  color:#273731;
  font-size:19px;
  line-height:1.3;
  font-weight:500;
}

.why-question-main{
  margin:0;
  color:#153d34;
  font-size:32px;
  line-height:1.17;
  letter-spacing:-.035em;
  font-weight:600;
}

.why-question-main strong{
  color:#a87939;
  font-weight:600;
}

.why-ornament{
  position:absolute;
  left:50%;
  bottom:-16px;
  transform:translateX(-50%);
  min-width:110px;
  padding:0 14px;
  background:#fbf7ef;
  color:#ad8344;
  font-size:29px;
  line-height:1;
}

/* Alap mobil szétesés elleni szabályok.
   A végleges mobilkompozíciót később külön csiszoljuk. */
@media (max-width:900px){
  .why-inner{
    width:calc(100% - 30px);
  }

  .why-header h2{
    font-size:31px;
  }

  .why-top{
    grid-template-columns:1fr;
    gap:24px;
  }

  .why-arrow{
    display:none;
  }

  .why-step-title h3{
    font-size:18px;
  }

  .why-caption{
    font-size:14px;
  }

  .why-sources{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
  }

  .why-source + .why-source{
    border-left:0;
  }

  .why-source-image{
    height:auto;
    aspect-ratio:1 / 1.2;
  }

  .why-source p{
    font-size:13px;
  }

  .why-bottom{
    grid-template-columns:1fr;
    gap:26px;
  }

  .why-flow-arrow{
    display:none;
  }

  .why-question{
    min-height:460px;
  }
}

@media (max-width:560px){
  .why-section{
    padding-top:30px;
  }

  .why-header{
    text-align:left;
  }

  .why-header h2{
    font-size:29px;
  }

  .why-title-rule{
    margin-left:0;
  }

  .why-header p{
    font-size:14px;
  }

  .why-sources{
    grid-template-columns:1fr 1fr;
  }

  .why-step4-copy h3{
    font-size:20px;
  }

  .why-question{
    padding-left:24px;
    padding-right:24px;
  }

  .why-question-first{
    font-size:16px;
  }

  .why-question-main{
    font-size:29px;
  }
}


/* =========================================================
   V8 — TRUST SOR EGYSZERŰSÍTÉS
   Egyetlen üzenet: 2007 óta Magyarországon
   ========================================================= */

.trust-strip--single{
  display:flex;
  align-items:center;
  justify-content:center;
}

.trust-single{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#24433b;
  font-size:12px;
  line-height:1.3;
  font-weight:600;
  letter-spacing:.01em;
}

@media (min-width:1400px){
  .trust-single{
    font-size:13px;
  }
}

@media (max-width:900px){
  .trust-strip--single{
    min-height:58px;
  }

  .trust-single{
    min-height:58px;
    padding:0 22px;
    font-size:14px;
    font-weight:600;
  }
}

@media (max-width:560px){
  .trust-strip--single{
    min-height:56px;
  }

  .trust-single{
    min-height:56px;
    font-size:14px;
  }
}


/* =========================================================
   V9 — TRUST FELIRAT HANGSÚLYOSABB
   A „Levegőfürdető” márkanév vizuális karakteréhez igazítva
   ========================================================= */

.trust-single{
  color:#103f34;
  font-size:18px;
  font-weight:700;
  letter-spacing:-.025em;
}

@media (min-width:1400px){
  .trust-single{
    font-size:19px;
  }
}

@media (max-width:900px){
  .trust-single{
    font-size:17px;
    font-weight:700;
  }
}

@media (max-width:560px){
  .trust-single{
    font-size:16px;
    font-weight:700;
  }
}
