:root {
  --bg: #0E0D13;          /* page background (sötét) */
  --bg2: #15141C;         /* alternating soft sections */
  --dark: #1A1922;        /* cards (elevált sötét felület) */
  --dark2: #15141C;       /* panels / alt sections (alias of bg2) */
  --border: #2A2833;      /* finom sötét keretek */
  --gold: #F0913C;        /* PRIMARY accent — brand orange */
  --gold-d: #DE7C24;      /* darker orange (button hover) */
  --gold2: #84B83F;       /* SECONDARY accent — brand green */
  --white: #F5F4F8;       /* headings / strong text (világos) */
  --muted: #9A95A6;       /* muted text */
  --text: #BDB9C7;        /* body text (világosszürke) */
  --radius: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow: 0 4px 20px rgba(0,0,0,0.35);
  --shadow-lg: 0 16px 44px rgba(0,0,0,0.55);
  --maxw: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── BRAND LOGO ─── */
.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; }
.brand-logo { position: relative; display: inline-block; line-height: 0; }
.brand-img { height: 90px; width: auto; display: block; }
.brand--sm .brand-img { height: 90px; width: auto; }
.brand-logo .swap { position: absolute; top: 0; left: 0; opacity: 0; transition: opacity .25s ease; }
.brand:hover .brand-logo .swap { opacity: 1; }
@media (max-width: 500px) { .brand-img { height: 70px; } }

/* ─── HOME HERO ─── */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem max(1.5rem, calc((100% - var(--maxw)) / 2)) 5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg, .page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 55% at 82% 8%, rgba(240,145,60,0.14), transparent 60%),
    radial-gradient(ellipse 50% 55% at 2% 100%, rgba(132,184,63,0.13), transparent 58%),
    radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1.6px);
  background-size: auto, auto, 26px 26px;
}
.hero-tag, .section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero-tag::before, .section-tag::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 16ch;
}
.hero h1 em { font-style: normal; color: var(--gold); display: block; }
.hero-mid { margin-top: .7rem; font-size: clamp(1.05rem, 1.8vw, 1.45rem); font-weight: 600; letter-spacing: -0.01em; color: var(--gold2); }
.hero-sub { margin-top: 1.4rem; font-size: 1.12rem; color: var(--text); max-width: 52ch; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; width: 100%; }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .hero-right { order: -1; }
}
.hero-actions { margin-top: 2.5rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero-scroll { display: none; }

/* ─── PAGE HERO (subpages) ─── */
.page-hero { padding: 11rem max(1.5rem, calc((100% - var(--maxw)) / 2)) 4.5rem; position: relative; overflow: hidden; }
.page-hero-inner { position: relative; max-width: 64rem; }
.page-hero h1 em { display: block; }
.page-hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; max-width: var(--maxw); }
.page-hero-grid .page-hero-inner { max-width: none; }
.hero-media img { width: 100%; max-width: 480px; height: auto; display: block; margin: 0 auto; }
@media (max-width: 900px) { .page-hero-grid { grid-template-columns: 1fr; gap: 2rem; } .hero-media { order: -1; max-width: 360px; margin: 0 auto; } }
.page-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 20ch;
}
.page-hero h1 em { font-style: normal; color: var(--gold); }
.lead { margin-top: 1.5rem; font-size: 1.12rem; color: var(--text); max-width: 58ch; }
.lead + .lead { margin-top: .8rem; }

/* ─── BUTTONS ─── */
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: .85rem 1.7rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: background .2s, transform .15s, box-shadow .2s, border-color .2s, color .2s;
}
.btn-primary { color: #fff; background: var(--gold); box-shadow: 0 6px 18px rgba(240,145,60,0.30); }
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(132,184,63,0.38); }
.btn-primary:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.btn-ghost { color: var(--white); background: var(--dark); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--gold2); color: var(--gold2); transform: translateY(-2px); }
.cta-row { margin-top: 2rem; display: flex; gap: .8rem; flex-wrap: wrap; align-items: center; }

/* ─── SECTION LAYOUT ─── */
/* teljes szélességű szekció, a tartalom középre zárva max 1200px-re */
section { padding: 6.5rem max(1.5rem, calc((100% - var(--maxw)) / 2)); position: relative; }
section.alt, .profit-section { background: var(--bg2); }

h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.08;
  max-width: 24ch;
}

/* ── Visszafogott összekötő a szekciók között ── */
.section-divider {
  display: block;
  border: none;
  height: 30px;
  margin: 0;
  position: relative;
  background: transparent;
  overflow: visible;
}
.section-divider::before {
  content: '';
  position: absolute; left: 50%; top: 7px; bottom: 7px; width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  opacity: .22;
}
.section-divider::after {
  content: '';
  position: absolute; left: 50%; top: 50%; width: 6px; height: 6px;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: var(--gold2); opacity: .5;
}

.block-head { max-width: 60rem; margin-bottom: 3.5rem; }
.block-head p { margin-top: 1.2rem; font-size: 1.1rem; color: var(--text); max-width: 60ch; }

/* ─── PROSE / LISTS ─── */
.prose { max-width: 62rem; }
.prose p { color: var(--text); margin-bottom: 1.1rem; font-size: 1.08rem; }
.prose p strong { color: var(--white); font-weight: 700; }

.checklist, .arrowlist, .xlist { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin: 1.6rem 0; }
.checklist li, .arrowlist li, .xlist li { padding-left: 1.8rem; position: relative; color: var(--text); font-size: 1rem; }
.checklist li::before {
  content: '✓'; position: absolute; left: 0; top: .05em;
  color: var(--gold2); font-weight: 800;
}
.arrowlist li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.xlist li::before { content: '✕'; position: absolute; left: 0; color: #E0564F; font-weight: 700; }

/* ─── SPLIT + PANELS ─── */
.split2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.split2.center { align-items: center; }
.panel {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.4rem;
  position: relative;
}
.panel--white { background: var(--dark); }
.panel h3 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: 1rem; }
.panel p { color: var(--text); font-size: 1rem; margin-bottom: 1rem; }

/* ─── INTRO ─── */
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.intro-right { padding-top: .5rem; }
.intro-right p { font-size: 1.1rem; color: var(--text); margin-bottom: 1.3rem; }
.integrations { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.tag {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: .4rem 1rem;
  transition: border-color .2s, color .2s, box-shadow .2s;
}
.tag:hover { border-color: var(--gold); color: var(--gold); box-shadow: var(--shadow); }

/* ─── CARD GRIDS ─── */
.features-header { max-width: 56rem; margin-bottom: 3rem; }
.features-header p { margin-top: 1.2rem; font-size: 1.1rem; color: var(--text); max-width: 56ch; }

.features-grid, .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cards.cols-4 { grid-template-columns: repeat(4, 1fr); }

.feature-card, .card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feature-card:hover, .card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #DDD8E8; }
.feature-icon, .card-icon {
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(240,145,60,0.10);
}
.feature-card h3, .card h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: .6rem; }
.feature-card p, .card p { font-size: 0.96rem; color: var(--text); line-height: 1.65; }

.feature-list { margin-top: 1rem; list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.feature-list li { font-size: 0.9rem; color: var(--muted); padding-left: 1.2rem; position: relative; }
.feature-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ─── PROFIT ─── */
.profit-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: center; }
.profit-visual {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.2rem 2.4rem;
  position: relative;
}
.profit-visual::before {
  content: 'VALÓS PROFIT';
  position: absolute;
  top: -12px; left: 2rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: var(--gold);
  color: #fff;
  padding: .3rem .7rem;
  border-radius: var(--radius-pill);
}
.cost-item { display: flex; justify-content: space-between; align-items: center; padding: .85rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; font-weight: 500; }
.cost-item:last-child { border-bottom: none; }
.cost-label { color: var(--muted); letter-spacing: 0.01em; }
.cost-value { color: var(--text); font-weight: 600; font-variant-numeric: tabular-nums; }
.cost-value.neg { color: #E0564F; }
.cost-value.pos { color: #5BA12B; }
.profit-right h2 { margin-bottom: 1.3rem; }
.profit-right p { color: var(--text); margin-bottom: 1rem; font-size: 1.05rem; }

/* ─── MODES ─── */
.modes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.mode-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.6rem;
  position: relative;
}
.mode-card.featured { border-color: var(--gold); box-shadow: 0 16px 44px rgba(240,145,60,0.18); }
.mode-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(240,145,60,0.12);
  color: var(--gold-d);
  padding: .35rem .8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.3rem;
}
.mode-card.featured .mode-badge { background: var(--gold); color: #fff; }
.mode-card h3 { font-size: 1.6rem; font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: 1rem; }
.mode-card p { color: var(--text); font-size: 1rem; line-height: 1.65; }
.mode-features { margin-top: 1.6rem; list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.mode-features li { font-size: 0.96rem; color: var(--text); padding-left: 1.6rem; position: relative; }
.mode-features li::before { content: '✓'; position: absolute; left: 0; color: var(--gold2); font-weight: 800; }

/* ─── FULFILLMENT ─── */
.fulfill-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.fulfill-left h2 { margin-bottom: 1.3rem; }
.fulfill-left p { color: var(--text); margin-bottom: 1rem; font-size: 1.05rem; }
.fulfill-steps { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.fulfill-step {
  display: flex; align-items: center; gap: 1.3rem;
  padding: 1.2rem 1.4rem;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.fulfill-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.step-num { font-size: 1.6rem; font-weight: 800; color: var(--gold); min-width: 2.2rem; letter-spacing: -0.02em; }
.step-text h4 { font-size: 1.02rem; font-weight: 700; color: var(--white); margin-bottom: .15rem; letter-spacing: -0.01em; }
.step-text p { font-size: 0.92rem; color: var(--muted); }
.fulfill-right {
  background: linear-gradient(160deg, var(--dark), var(--bg2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.6rem;
  position: relative;
  overflow: hidden;
}
.fulfill-right::after {
  content: 'SHIPNOW';
  position: absolute;
  bottom: 1.2rem; right: 1.6rem;
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(240,145,60,0.10);
  pointer-events: none;
}
.fulfill-right h3 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: 1rem; }
.fulfill-right p { color: var(--text); font-size: 1rem; margin-bottom: 1.3rem; }
.shipnow-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(132,184,63,0.14);
  color: #5BA12B;
  padding: .35rem .8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.6rem;
}

/* ─── PÁLYÁZAT ─── */
.palyzat-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-bottom: 4rem; }
.palyzat-left h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.palyzat-left .big-num { font-size: clamp(3.5rem, 7vw, 6.5rem); font-weight: 800; color: var(--gold); line-height: 1; display: block; margin: 1.2rem 0 .4rem; letter-spacing: -0.03em; }
.palyzat-left p { color: var(--text); margin-top: .4rem; font-size: 1rem; }
.palyzat-right { padding-top: .5rem; }
.palyzat-right p { color: var(--text); margin-bottom: 1.1rem; font-size: 1.05rem; }
.info-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.info-box { background: var(--dark); border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow); padding: 1.4rem; }
.info-box .info-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.info-box .info-value { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; color: var(--white); }
.info-box .info-value.gold { color: var(--gold); }

.eligibility { border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2.6rem; background: var(--dark); }
.eligibility h3 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: 2rem; }
.eligibility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.elig-group h4 { font-size: 0.95rem; font-weight: 700; letter-spacing: -0.01em; color: var(--white); margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 1px solid var(--border); }
.elig-group ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.elig-group li { font-size: 0.96rem; color: var(--text); padding-left: 1.6rem; position: relative; }
.elig-group li::before { content: '✓'; position: absolute; left: 0; color: var(--gold2); font-weight: 800; }
.elig-group.no li::before { content: '✕'; color: #E0564F; }

.deadline-banner {
  margin-top: 2.5rem;
  background: linear-gradient(120deg, rgba(240,145,60,0.10), rgba(132,184,63,0.10));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.deadline-text h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: .3rem; }
.deadline-text p { font-size: 0.95rem; color: var(--text); }

/* ─── WHY GRID ─── */
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; margin-top: 3rem; }
.why-item {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.8rem 1.6rem;
  transition: transform .2s, box-shadow .2s;
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon {
  font-size: 1.4rem; margin-bottom: 1rem; display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px; background: rgba(132,184,63,0.12);
}
.why-item h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; color: var(--white); margin-bottom: .5rem; }
.why-item p { font-size: 0.92rem; color: var(--text); line-height: 1.6; }

/* ─── CTA SECTION ─── */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: var(--maxw);
  margin: 3rem auto 5rem;
  padding: 6rem 2rem;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(240,145,60,0.13), transparent 60%),
    radial-gradient(ellipse 60% 80% at 50% 120%, rgba(132,184,63,0.13), transparent 60%),
    var(--bg2);
}
.cta-section .section-tag { justify-content: center; display: inline-flex; }
.cta-section h2 { font-size: clamp(2rem, 4.8vw, 3.6rem); max-width: 22ch; margin: 1rem auto 1.6rem; }
.cta-section p { color: var(--text); max-width: 54ch; margin: 0 auto 2.4rem; font-size: 1.1rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── CONTACT ─── */
.contact-section { padding-top: 5rem; padding-bottom: 5rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 2rem; }
/* összefüggő sáv: egy keret + elválasztó vonalak */
.info-list {
  display: flex; flex-direction: column;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.info-pair { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--border); }
.info-pair .info-row { border-bottom: none; }
.info-pair .info-row:first-child { border-right: 1px solid var(--border); }
.info-list > .info-row:last-child { border-bottom: none; }
.info-row {
  display: flex; align-items: flex-start; gap: 1.1rem;
  padding: 1.2rem 1.4rem;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.info-row:hover { background: var(--bg2); }
@media (max-width: 820px) {
  .info-pair { grid-template-columns: 1fr; }
  .info-pair .info-row:first-child { border-right: none; border-bottom: 1px solid var(--border); }
}
.info-row .ic { font-size: 1.2rem; line-height: 1.4; }
.info-row .info-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold); margin-bottom: .25rem; }
.info-row a, .info-row span.val { color: var(--white); text-decoration: none; font-size: 1rem; font-weight: 500; transition: color .2s; }
.info-row a:hover { color: var(--gold); }
.info-note { margin-top: 1.6rem; font-size: 0.9rem; color: var(--muted); line-height: 1.8; }

.contact-form-wrap {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.6rem;
  position: relative;
}
.contact-form-wrap::before {
  content: 'KAPCSOLAT';
  position: absolute; top: -12px; left: 2rem;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em;
  background: var(--gold); color: #fff; padding: .3rem .7rem; border-radius: var(--radius-pill);
}
.contact-form-wrap h3 { font-size: 1.6rem; font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: .5rem; }
.contact-form-wrap > p { color: var(--muted); font-size: 0.98rem; margin-bottom: 1.8rem; }
.form-group { margin-bottom: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
input, textarea, select {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  font-weight: 400;
  padding: .8rem 1rem;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(240,145,60,0.15); }
input::placeholder, textarea::placeholder { color: var(--muted); }
textarea { resize: vertical; min-height: 130px; }
select { appearance: none; cursor: pointer; }
.form-note { margin-top: 1.1rem; font-size: 0.8rem; color: var(--muted); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.form-status { display: none; margin-top: 1.3rem; border: 1px solid #E0564F; border-radius: var(--radius-sm); padding: 1rem 1.2rem; font-size: 0.92rem; color: #E0564F; background: rgba(224,86,79,0.06); }
.thankyou { display: none; text-align: center; padding: 1rem 0 .5rem; }
.thankyou .ty-icon {
  font-size: 1.8rem; line-height: 1; color: #fff; display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%; background: var(--gold2); margin-bottom: 1rem;
}
.thankyou h3 { font-size: 1.6rem; font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: 1rem; }
.thankyou p { color: var(--text); font-size: 1rem; max-width: 38ch; margin: 0 auto 2rem; }

/* ─── FOOTER ─── */
footer { border-top: 1px solid var(--border); padding: 4rem max(1.5rem, calc((100% - var(--maxw)) / 2)) 2.5rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { margin-top: 1rem; color: var(--text); font-size: 0.92rem; max-width: 32ch; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-col a { display: block; color: var(--text); text-decoration: none; font-size: 0.95rem; margin-bottom: .7rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }
.footer-bottom a { color: var(--text); text-decoration: underline; }
.footer-bottom a:hover { color: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 980px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .cards, .cards.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  section, .profit-section, .contact-section { padding: 4.5rem 1.5rem; }
  .hero { padding: 5.5rem 1.5rem 3rem; min-height: auto; }
  .page-hero { padding: 9rem 1.5rem 3rem; }
  .cta-section { padding: 5rem 1.5rem; margin: 1rem 1rem 3rem; }
  .intro, .profit-inner, .fulfill-grid, .palyzat-hero, .eligibility-grid, .modes-grid,
  .split2, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .features-grid, .cards, .cards.cols-2, .cards.cols-4 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .info-boxes { grid-template-columns: 1fr 1fr; }
  .deadline-banner { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  footer { padding: 3rem 1.5rem 2rem; }
}
@media (max-width: 480px) {
  .why-grid, .footer-top, .info-boxes { grid-template-columns: 1fr; }
}
