/* =========================
   Takiwebneked.hu – Light theme
   - Background: white
   - H1: #030712
   - Text: #353941
   ========================= */

:root{
  /* Base */
  --bg: #ffffff;
  --surface: #ffffff;
  --surface2: #fafafa;

  /* Text */
  --h1: #030712;          /* given */
  --text: #353941;        /* given */
  --muted: #5c6370;       /* supportive body */
  --muted2:#747b87;       /* secondary */

  /* Lines & shadows */
  --line: #e6e8ee;
  --line2:#dfe3ea;
  --shadow: 0 18px 45px rgba(3, 7, 18, .08);
  --shadow2: 0 10px 24px rgba(3, 7, 18, .06);

  /* Accent (diszkrét, ha nem kell: hagyd, de jól áll a CTA-nak) */
  --accent: #2563eb;
  --accent2:#7c3aed;
  --accentSoft: rgba(37,99,235,.10);
  --accentSoft2: rgba(124,58,237,.10);

  /* Status */
  --ok: #16a34a;
  --warn:#f59e0b;

  /* Radius + layout */
  --radius: 16px;
  --radius2: 22px;
  --max: 1100px;
}

*{ box-sizing:border-box; }

html, body{ height: 100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a{ color: inherit; }

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

/* =========================
   Header / Nav
   ========================= */

header{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  text-decoration:none;
  flex-direction: column;
}

.logo{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(37,99,235,.18);
  flex: 0 0 auto;
}

.brand strong{
  display:block;
  font-size: 14px;
  letter-spacing: .2px;
  color: var(--h1);
}

.brand span{
  display:block;
  font-size: 12px;
  color: var(--muted2);
}

.navlinks{
  display:flex;
  gap: 12px;
  align-items:center;
  flex-wrap:wrap;
}

.navlinks a{
  text-decoration:none;
  font-size: 13px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}

.navlinks a:hover{
  color: var(--h1);
  border-color: var(--line);
  background: rgba(250,250,250,.9);
}

/* =========================
   Buttons
   ========================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration:none;

  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow2);

  font-weight: 700;
  font-size: 14px;
  color: var(--h1);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease;
}

.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(37,99,235,.35);
  box-shadow: 0 16px 38px rgba(37,99,235,.12);
}

.btn.primary{
  border-color: rgba(37,99,235,.35);
  background: linear-gradient(135deg, var(--accentSoft), var(--accentSoft2));
}

/* =========================
   Hero
   ========================= */

.hero{
  padding: 34px 0 12px;
}

.grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items:start;
}

@media (max-width: 960px){
  .grid{ grid-template-columns: 1fr; }
  .navlinks{ display:none; }
}

h1{
  font-size: 44px;
  line-height: 1.08;
  margin: 0 0 12px;
  letter-spacing: -0.6px;
  color: var(--h1);
}

@media (max-width: 520px){
  h1{ font-size: 34px; }
}

.lead{
  font-size: 16px;
  color: var(--text);
  margin: 0 0 18px;
  max-width: 62ch;
}

/* =========================
   Pills
   ========================= */

.pillrow{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin: 14px 0 22px;
}

.pill{
  display:inline-flex;
  gap: 8px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface2);
  color: var(--muted);
  font-size: 12px;
}

.dot{
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--ok);
}

/* =========================
   Cards
   ========================= */

.card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 18px;
}

.card h2{
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--h1);
}

.card p{
  color: var(--muted);
  margin: 0 0 10px;
  font-size: 13px;
}

/* Mini stats */
.mini{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.mini .item{
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: var(--surface2);
}

.k{
  font-size: 12px;
  color: var(--muted2);
  margin: 0;
}

.v{
  font-size: 14px;
  font-weight: 800;
  margin: 3px 0 0;
  color: var(--h1);
}

/* =========================
   Sections
   ========================= */

section{
  padding: 26px 0;
}

.section-title{
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -0.2px;
  color: var(--h1);
}

.section-sub{
  margin: 0 0 18px;
  color: var(--muted);
}

/* =========================
   Features
   ========================= */

.cols3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 960px){
  .cols3{ grid-template-columns: 1fr; }
}

.feature{
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 10px 22px rgba(3,7,18,.05);
}

.feature strong{
  display:block;
  margin-bottom: 6px;
  color: var(--h1);
}

.feature p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* =========================
   Steps
   ========================= */

.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 960px){
  .steps{ grid-template-columns: 1fr; }
}

.step{
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface2);
}

.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 30px;
  height: 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accentSoft), var(--accentSoft2));
  border: 1px solid rgba(37,99,235,.18);
  color: var(--h1);
  font-weight: 900;
  margin-bottom: 10px;
}

.step strong{
  display:block;
  margin-bottom: 6px;
  color: var(--h1);
}

/* =========================
   Pricing
   ========================= */

.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 960px){
  .pricing{ grid-template-columns: 1fr; }
}

.price{
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 10px 22px rgba(3,7,18,.05);
}

.price .tag{
  display:inline-flex;
  font-size: 12px;
  color: var(--muted);
  border:1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface2);
}

.amount{
  font-size: 26px;
  font-weight: 900;
  margin: 10px 0 2px;
  color: var(--h1);
}

.small{
  color: var(--muted);
  font-size: 12px;
  margin: 0 0 10px;
}

ul{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

li{ margin: 6px 0; }

/* =========================
   FAQ
   ========================= */

.faq details{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 12px 14px;
  margin: 10px 0;
}

.faq summary{
  cursor:pointer;
  font-weight: 800;
  color: var(--h1);
}

.faq p{
  color: var(--muted);
  margin: 10px 0 0;
}

/* =========================
   CTA block
   ========================= */

.cta{
  display:flex;
  gap: 14px;
  align-items:center;
  justify-content:space-between;

  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid rgba(37,99,235,.22);
  background: linear-gradient(135deg, rgba(37,99,235,.06), rgba(124,58,237,.06));
}

.cta h2{
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--h1);
}

.cta p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* =========================
   Footer
   ========================= */

footer{
  border-top: 1px solid var(--line);
  margin-top: 20px;
  padding: 22px 0 40px;
  color: var(--muted2);
  font-size: 12px;
}

.footgrid{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-items:center;
  justify-content:space-between;
}

.mutedlink{
  color: var(--muted2);
  text-decoration:none;
}

.mutedlink:hover{
  color: var(--h1);
}

/* Accessibility helper */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* Notes */
.note{
  font-size: 12px;
  color: var(--muted);
  border-left: 3px solid rgba(37,99,235,.35);
  padding-left: 10px;
  margin-top: 12px;
}
