:root{
  --neon: #39ff14;
  --neon-dark: #1ed300;
  --bg: #f4fff4;
  --card: #ffffff;
  --text: #111;
  --muted: #555;
  --line: rgba(57,255,20,.3);
  --radius: 18px;
}

*{box-sizing:border-box;}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height:1.6;
}

.container{
  width:min(1100px,92%);
  margin:0 auto;
}

.header{
  background: var(--neon);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);

  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 0;
  flex-wrap:wrap;
}

@media (max-width: 768px){

  .header__row{
    padding: 6px 0;
    gap: 4px;
  }

  .nav{
    margin-top: 0;
  }

  .nav a{
    font-size: 13px;
    padding: 5px 8px;
  }

  /* EZ A LÉNYEG: a logó “dobozát” is nagyítjuk mobilon */
  .brand__logo{
    width: 60px;
    height: 60px;
  }

  /* és a képet is, de ne lépje túl a dobozt */
  .brand__logo img{
    max-width: 100%;
    max-height: 100%;
  }
}


.brand__logo{
  width:80px;
  height:80px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.brand__logo img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

.brand__text strong{
  font-size:18px;
}

.nav{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.nav a{
  text-decoration:none;
  padding:10px 14px;
  border-radius:14px;
  background:#000;
  color:var(--neon);
  font-weight:700;
  transition:.2s;
}

.nav a:hover{
  background:#111;
  transform:translateY(-2px);
}

.nav a.active{
  background:var(--neon-dark);
  color:#000;
}

.hero{
  padding:60px 0;
  text-align:center;
}

h1{
  font-size:42px;
  margin-bottom:12px;
}

.lead{
  font-size:18px;
  color:var(--muted);
}

.btn{
  display:inline-block;
  padding:14px 18px;
  border-radius:16px;
  text-decoration:none;
  font-weight:800;
  margin:8px;
  transition:.2s;
}

.btn--primary{
  background:var(--neon);
  color:#000;
  box-shadow:0 8px 25px rgba(57,255,20,.4);
}

.btn--primary:hover{
  transform:translateY(-3px);
}

.btn--ghost{
  background:#000;
  color:var(--neon);
}

.section{
  padding:50px 0;
}

.card{
  background:var(--card);
  padding:20px;
  border-radius:var(--radius);
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  margin:12px 0;
}

.grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

@media(max-width:900px){
  .grid3{grid-template-columns:1fr;}
}

.table-wrap{
  overflow:auto;
}

table{
  width:100%;
  border-collapse:collapse;
}

th{
  background:var(--neon);
  color:#000;
  padding:12px;
}

td{
  padding:12px;
  border-bottom:1px solid var(--line);
}

tr:hover{
  background:#f0fff0;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

@media(max-width:900px){
  .gallery{grid-template-columns:1fr;}
}

.ph{
  height:200px;
  border-radius:var(--radius);
  background:var(--neon);
  display:grid;
  place-items:center;
  font-weight:700;
  color:#000;
}

.footer{
  background:#000;
  color:var(--neon);
  text-align:center;
  padding:20px 0;
  margin-top:40px;
}

.main-title{
  text-align: center;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.sub-title{
  text-align: center;
  font-size: 22px;
  margin: 14px 0 0;
}

.brand-hero{
  background: linear-gradient(145deg, #39ff14, #1ed300);
  padding: 60px 0;
  text-align: center;
  box-shadow:
    0 15px 40px rgba(0,0,0,.25),
    0 0 30px rgba(57,255,20,.6);
  position: relative;
}

.brand-hero h1{
  margin: 0;
  font-size: 54px;
  font-weight: 900;
  color: #000;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow:
    2px 2px 0 rgba(0,0,0,.15),
    0 0 20px rgba(0,0,0,.25);
}

@media (max-width: 768px){
  .brand-hero{
    padding: 40px 0;
  }

  .brand-hero h1{
    font-size: 36px;
  }
}

.brand-spacer{
  height: 30px;
  background: #f4fff4; /* konkrét szín, ne változó */
  border-bottom: 1px solid rgba(0,0,0,.10);
}

/* Mobilon legyen nagyobb, hogy biztos látszódjon */
@media (max-width: 768px){
  .brand-spacer{
    height: 45px;
  }
}

.contact-highlight{
  background: #ffffff;
  border-radius: 22px;
  padding: 34px 22px;
  text-align: center;

  /* neon keret + 3D hatás */
  border: 3px solid #39ff14;
  box-shadow:
    0 18px 40px rgba(0,0,0,.14),
    0 0 28px rgba(57,255,20,.55);

  max-width: 620px;
  margin: 18px auto 0;
}

.contact-link{
  display: inline-block;
  font-size: 26px;
  font-weight: 900;
  color: #000;
  text-decoration: none;
  margin-top: 8px;
}

.contact-link:hover{
  text-decoration: underline;
}

/* mobilon nagy szám, de ne törjön csúnyán */
@media (max-width: 480px){
  .contact-link{
    font-size: 22px;
  }
}

.review-card{
  background: #ffffff;
  border: 3px solid #39ff14;
  border-radius: 22px;

  box-shadow:
    0 18px 40px rgba(0,0,0,.14),
    0 0 28px rgba(57,255,20,.45);

  transition: transform .25s ease, box-shadow .25s ease;
}

.review-card:hover{
  transform: translateY(-4px);
  box-shadow:
    0 28px 60px rgba(0,0,0,.18),
    0 0 40px rgba(57,255,20,.65);
}

/* A quote bal oldali csík maradhat, de igazítsuk a fehér kártyához */
.review-card.quote::before{
  background: #39ff14;
}

/* fehér háttéren a muted legyen sötétebb, olvasható */
.review-card .muted{
  color: #333;
}
.review-card .tiny.muted{
  color: #555;
}

.review-image{
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}

.review-image img{
  width: 100%;
  height: 180px;   /* alap (mobil / kisebb képernyő) */
  object-fit: cover;
  display: block;
}

/* Nagy képernyőn legyen kisebb */
@media (min-width: 992px){
  .review-image img{
    height: 150px;
  }
}

.img-contain{
  object-fit: contain !important;  /* ne vágjon */
  background: #fff;                /* ha “csíkos” lenne a háttér, legyen szép */
}

.brand-hero--keywords{
  padding: 28px 0;
}

.brand-hero--keywords h2{
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 rgba(0,0,0,.15), 0 0 20px rgba(0,0,0,.25);
}

@media (max-width: 768px){
  .brand-hero--keywords h2{
    font-size: 18px;
    line-height: 1.3;
  }
}

.notes{
  margin: 10px 0 0;
  padding-left: 18px;
}

.notes li{
  margin: 10px 0;
}

.gallery-card{
  padding: 14px;           /* legyen “keret” érzés */
  display: flex;
  align-items: center;
  justify-content: center;
}


.gallery-card img{
  width: 100%;
  max-height: 220px;   /* ne legyen fix magasság */
  height: auto;        /* arányt tart */
  object-fit: contain;
  background: #fff;
  border-radius: 16px;
  display: block;
}

/* Laptopon kisebb */
@media (min-width: 992px){
  .gallery-card img{
    max-height: 180px;
  }
}

/* Mobil marad kisebb */
@media (max-width: 768px){
  .gallery-card img{
    max-height: 190px;
  }
}

.gallery-intro{
  text-align: center;
  font-size: 20px;            /* nagyobb, de nem túl nagy */
  font-weight: 700;
  margin: 10px 0 28px;
  color: #111;

  text-shadow:
  0 0 6px rgba(57,255,20,.6),
  0 0 18px rgba(57,255,20,.4);
  letter-spacing: 0.5px;
}

/* Mini neon kiemelés alá */
.gallery-intro::after{
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin: 10px auto 0;
  background: #39ff14;
  box-shadow: 0 0 12px rgba(57,255,20,.7);
  border-radius: 2px;
}

/* Mobilon picit kisebb */
@media (max-width:768px){
  .gallery-intro{
    font-size: 18px;
  }
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:20px;
  font-size:14px;
}

.footer-links a{
  color:#39ff14;
  text-decoration:none;
}

.footer-links a:hover{
  text-decoration:underline;
}

main{
  padding-top: 12px;
}

.docs-grid{
  grid-template-columns: repeat(3, 1fr);
}

.doc-card{
  text-decoration: none;
  color: inherit;
  display: block;
}

.doc-card h2{
  margin-top: 0;
}

.doc-cta{
  display: inline-block;
  margin-top: 10px;
  font-weight: 800;
}

@media (max-width: 900px){
  .docs-grid{
    grid-template-columns: 1fr;
  }
}



