/* styles.css */
:root{
  --bg:#0b0f19;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.09);
  --text:#eaf0ff;
  --muted: rgba(234,240,255,.74);
  --line: rgba(255,255,255,.14);
  --shadow: 0 16px 40px rgba(0,0,0,.35);
  --accent:#7c3aed;
  --accent2:#22d3ee;
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

*{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);
  background:
    radial-gradient(1000px 650px at 10% 0%, rgba(124,58,237,.35), transparent 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(34,211,238,.25), transparent 60%),
    var(--bg);
}
a{color:inherit}
img{max-width:100%; height:auto; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.pill{
  display:inline-flex; gap:10px; align-items:center;
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:600;
  font-size:13px;
  letter-spacing:.2px;
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 4px rgba(124,58,237,.14);
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  text-decoration:none;
  font-weight:700;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.09)}
.btn.primary{
  border-color: rgba(124,58,237,.55);
  background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(34,211,238,.75));
  color:#07101a;
}
.btn.primary:hover{filter: brightness(1.03)}
.btn.small{padding:10px 12px; border-radius:12px; font-size:14px}
.btn.ghost{background:transparent}
.grid{display:grid; gap:16px}

/* Header */
header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,25,.6);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:12px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.2px;
}
.logo{
  width:38px; height:38px; border-radius:12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 10px 24px rgba(124,58,237,.25);
}
.brand span{font-size:15px}
.navlinks{
  display:flex; gap:10px; align-items:center;
}
.navlinks a{
  padding:10px 12px;
  border-radius:12px;
  text-decoration:none;
  color:var(--muted);
  border:1px solid transparent;
  font-weight:700;
  font-size:14px;
}
.navlinks a:hover{
  color:var(--text);
  border-color: rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.nav-cta{
  display:flex; gap:10px; align-items:center;
}
.burger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  cursor:pointer;
}
.burger:focus{outline:2px solid rgba(34,211,238,.35); outline-offset:2px}
.burger .bars{
  width:18px; height:12px; margin:0 auto;
  display:flex; flex-direction:column; justify-content:space-between;
}
.burger .bars i{
  display:block; height:2px; border-radius:2px;
  background: rgba(234,240,255,.9);
}

/* Mobile menu */
.mobile-menu{
  display:none;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 10px 0 16px;
}
.mobile-menu a{display:block; padding:12px 10px; border-radius:12px}
.mobile-menu a:hover{background: rgba(255,255,255,.06)}
.mobile-menu .row{display:flex; gap:10px; padding:10px}
.mobile-menu .row .btn{flex:1}

/* Hero */
.hero{
  position:relative;
  padding: 46px 0 26px;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:-30px;
  background:
    linear-gradient(180deg, rgba(11,15,25,.25), rgba(11,15,25,.92)),
    url("https://elmenyfotozas.hu/wp-content/uploads/2024/04/ai-selfie-pro-02.webp");
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) contrast(1.02);
  opacity:.38;
  transform: scale(1.04);
}
.hero > .container{position:relative}
.hero-wrap{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
  padding: 26px 0;
}
h1{
  margin:14px 0 10px;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height:1.06;
  letter-spacing:-.5px;
}
.lead{
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height:1.55;
  margin: 0 0 18px;
  max-width: 54ch;
}
.hero-actions{display:flex; gap:10px; flex-wrap:wrap}
.hero-cards{
  display:grid; gap:12px;
  grid-auto-rows: 1fr;
}
.card{
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card .inner{padding:16px}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); line-height:1.5; font-size:14px}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  font-weight:800; font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(34,211,238,.12);
  border: 1px solid rgba(34,211,238,.22);
  color: rgba(234,240,255,.92);
}

/* Sections */
section{padding: 38px 0}
.section-title{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:12px; margin-bottom:16px;
}
.section-title h2{
  margin:0;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing:-.2px;
}
.section-title p{margin:0; color:var(--muted); max-width:70ch; line-height:1.5}
.panels{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
}
.panel{
  grid-column: span 6;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  overflow:hidden;
}
.panel .inner{padding:18px}
.panel h3{margin:0 0 8px; font-size:18px}
.panel p{margin:0; color:var(--muted); line-height:1.55}
.panel .media{
  height: 210px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.10);
  overflow:hidden;
}
.panel .media img{width:100%; height:100%; object-fit:cover}
.kvs{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:10px;
  margin-top:12px;
}
.kv{
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-weight:700;
  font-size: 13px;
  line-height:1.35;
}
.kv b{display:block; color:var(--text); font-size:13px; margin-bottom:2px}

/* Pricing */
.switcher{
  display:flex; gap:10px; flex-wrap:wrap;
  margin: 14px 0 18px;
}
.switcher button{
  appearance:none;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  padding:10px 12px;
  border-radius: 999px;
  font-weight:800;
  cursor:pointer;
  transition: background .12s ease, transform .12s ease, border-color .12s ease;
}
.switcher button:hover{background: rgba(255,255,255,.08); transform: translateY(-1px)}
.switcher button.active{
  color: #07101a;
  border-color: rgba(34,211,238,.35);
  background: linear-gradient(135deg, rgba(34,211,238,.85), rgba(124,58,237,.85));
}

.pricing{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
  align-items:stretch;
}
.price-card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.price-card .top{
  display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
}
.price-card h3{margin:0; font-size:18px}
.price{
  font-weight:900;
  font-size: 22px;
  letter-spacing:-.2px;
  white-space:nowrap;
}
.sub{
  color:var(--muted);
  font-weight:700;
  font-size:13px;
  margin-top:2px;
}
ul.features{
  margin:0;
  padding-left: 18px;
  color: var(--muted);
  line-height:1.5;
  font-weight:600;
  font-size:14px;
}
.price-card .actions{margin-top:auto; display:flex; gap:10px}
.price-card .actions a{flex:1}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
  
}
.gitem img,
.backdrop img{
  cursor: pointer;
}
.gitem{
  grid-column: span 4;
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  position:relative;
  min-height: 220px;
}
.gitem img{width:100%; height:100%; object-fit:cover}
.gcap{
  position:absolute; left:10px; bottom:10px; right:10px;
  padding:10px 12px;
  border-radius: 16px;
  background: rgba(11,15,25,.65);
  border:1px solid rgba(255,255,255,.12);
  color: rgba(234,240,255,.92);
  font-weight:800;
  font-size: 13px;
  backdrop-filter: blur(8px);
}

/* Backdrops */
.backdrops{
  display:grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap:12px;
}
.backdrop{
  border-radius: 20px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.backdrop img{width:100%; height:150px; object-fit:cover}
.backdrop .label{
  padding:10px 12px;
  color: var(--muted);
  font-weight:800;
  font-size: 12px;
}

/* Contact */
.contact{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  overflow:hidden;
}
.contact .wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:0;
}
.contact .left{
  padding:18px;
  border-right: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(500px 260px at 20% 0%, rgba(124,58,237,.28), transparent 60%),
    rgba(255,255,255,.03);
}
.contact .left h3{margin:0 0 10px}
.contact .left p{margin:0 0 12px; color:var(--muted); line-height:1.55}
.contact .contact-lines{
  display:grid; gap:10px;
  margin-top:12px;
}
.cline{
  padding:12px 12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-weight:800;
  font-size: 14px;
}
.cline b{display:block; color:var(--text); font-size:12px; margin-bottom:3px}
form{
  padding:18px;
  display:grid;
  gap:12px;
}
.row2{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
label{font-weight:800; font-size:12px; color: rgba(234,240,255,.86)}
input, select, textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(11,15,25,.55);
  color: var(--text);
  outline:none;
  font-weight:650;
}
input:focus, select:focus, textarea:focus{border-color: rgba(34,211,238,.45)}
textarea{min-height: 110px; resize: vertical}
.form-actions{display:flex; gap:10px; flex-wrap:wrap}
.fineprint{margin:0; color: rgba(234,240,255,.55); font-size:12px; line-height:1.5}

/* Footer */
footer{
  padding: 26px 0 40px;
  color: rgba(234,240,255,.62);
  font-weight:650;
  font-size:13px;
}
.footer-wrap{
  display:flex; flex-wrap:wrap; gap:10px; align-items:center; justify-content:space-between;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 18px;
}

/* Lightbox */
.lb{
  position:fixed; inset:0; display:none;
  align-items:center; justify-content:center;
  background:rgba(0,0,0,.85); z-index:9999;
  padding:24px;
}
.lb.is-open{ display:flex; }
.lb__img{
  max-width:min(1100px, 95vw);
  max-height:85vh;
  width:auto; height:auto;
  border-radius:14px;
  box-shadow:0 10px 40px rgba(0,0,0,.4);
}
.lb__close{
  position:absolute; top:14px; right:14px;
  width:44px; height:44px;
  border:0; border-radius:999px;
  background:rgba(255,255,255,.14);
  color:#fff; font-size:28px; line-height:44px;
  cursor:pointer;
}

/* Responsive */
@media (max-width: 980px){
  .hero-wrap{grid-template-columns: 1fr; }
  .panel{grid-column: span 12;}
  .pricing{grid-template-columns: 1fr; }
  .gallery .gitem{grid-column: span 6;}
  .backdrops{grid-template-columns: repeat(3, minmax(0, 1fr));}
  .contact .wrap{grid-template-columns: 1fr;}
  .contact .left{border-right:none; border-bottom: 1px solid rgba(255,255,255,.10);}
}
@media (max-width: 760px){
  .navlinks, .nav-cta{display:none}
  .burger{display:inline-flex; align-items:center; justify-content:center}
  .mobile-menu.show{display:block}
  .gallery{
    display:flex;
    gap:12px;
    overflow:auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }
  .gitem{
    flex: 0 0 84%;
    scroll-snap-align: start;
    min-height: 240px;
  }
  .backdrops{grid-template-columns: repeat(2, minmax(0, 1fr));}
  .row2{grid-template-columns: 1fr;}
}
.pricing-block{margin-top: 10px;}
    .pricing-block + .pricing-block{margin-top: 24px;}
    .pricing-title{
      margin: 8px 0 14px;
      font-size: clamp(18px, 2vw, 22px);
      letter-spacing: -.2px;
    }
    .form-alert{
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
      border-radius: 16px;
      padding: 12px 12px;
      font-weight: 800;
      color: rgba(234,240,255,.92);
    }
    .form-alert.ok{border-color: rgba(34,211,238,.35); background: rgba(34,211,238,.10);}
    .form-alert.err{border-color: rgba(255,99,132,.35); background: rgba(255,99,132,.10);}