@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Montserrat:wght@500;700&display=swap');

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

:root {
  --bg: #FAFAF7;
  --text: #1A1A1A;
  --text-secondary: #6B6B6B;
  --cta: #1A1A1A;
  --accent: #C4A882;
  --card-bg: #F2EFE9;
  --border: #E0DDD7;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 50px;
  width: auto;
  display: block;
}

.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.footer-brand-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.nav-links a {
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); font-weight: 500; }

.nav-cta {
  background: var(--cta);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.85; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  border: none;
}
.btn:hover { opacity: 0.85; transform: translateY(-1px); }

.btn-primary {
  background: var(--cta);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--text); opacity: 1; }

/* ── SECTION LAYOUT ── */
.section { padding: 80px 2rem; }
.section-sm { padding: 48px 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 760px; margin: 0 auto; }

.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

/* ── PLACEHOLDER IMAGE ── */
.img-placeholder {
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ── HERO ── */
.hero {
  padding: 80px 2rem 80px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content { }
.hero-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 460px;
}
.hero-scroll-arrow {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s, transform 0.2s;
  text-decoration: none;
}
.hero-scroll-arrow:hover {
  color: var(--text);
  transform: translateY(3px);
}
.hero-image .img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  min-height: 360px;
}

/* ── STAT BAR ── */
.stat-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--card-bg);
}
.stat-bar .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label { font-size: 0.85rem; color: var(--text-secondary); }

/* ── PRODUCT CARDS ── */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }

.product-card .img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0;
}
.product-card-body {
  padding: 1.75rem;
  flex: 1;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
}
.product-card-body .btn { justify-self: start; }
.product-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.product-card-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.product-prices {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.product-prices span { color: var(--text); font-weight: 700; font-size: 1.05rem; }

/* ── ABOUT DARK ── */
.about-dark {
  background: var(--text);
  color: var(--white);
  padding: 80px 2rem;
}
.about-dark .section-title { color: var(--white); }
.about-dark .section-subtitle { color: rgba(255,255,255,0.65); max-width: 640px; margin-bottom: 3rem; }

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 560px;
}
.founder-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.founder-card .img-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 0.7rem;
  margin-bottom: 1rem;
}
.founder-name { font-size: 0.95rem; font-weight: 600; color: var(--white); }
.founder-role { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }

/* ── CONTACT FORM ── */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info { padding-top: 0.5rem; }
.contact-info-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.contact-info-icon {
  width: 20px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 1px;
}

/* ── FOOTER ── */
footer {
  background: #3A3A3A;
  color: #fff;
  border-top: none;
  padding: 2.5rem 2rem 1.75rem;
}
footer .footer-brand-logo img {
  filter: brightness(0) invert(1);
}
.footer-brand {
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.footer-brand-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-top: 0.6rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom-left { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom-right { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom-right a { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-right a:hover { color: #fff; }

/* ── PRODUCT PAGE ── */
.page-hero {
  padding: 72px 2rem 64px;
  border-bottom: 1px solid var(--border);
}
.page-hero .section-title { margin-bottom: 1.25rem; }
.page-hero .section-subtitle { margin-bottom: 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
}
.feature-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.feature-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.feature-text { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

.gamezone-section {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.gamezone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.gamezone-features { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.gamezone-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}
.gamezone-feature::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.gamezone-image .img-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.pricing-card {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  background: var(--white);
}
.pricing-card.featured { border-color: var(--accent); background: var(--card-bg); }
.pricing-size { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 0.5rem; }
.pricing-price { font-size: 2rem; font-weight: 700; letter-spacing: -0.04em; margin-bottom: 0.25rem; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-secondary); }
.pricing-options { margin: 1.25rem 0; display: flex; flex-direction: column; gap: 0.5rem; }
.pricing-option { font-size: 0.85rem; color: var(--text-secondary); }
.pricing-option strong { color: var(--text); }
.pricing-gamearea { font-size: 0.8rem; font-weight: 500; color: var(--text-secondary); margin-bottom: 1.5rem; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.step-card { padding: 0; }
.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.step-text { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

/* ── ABOUT PAGE ── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.about-story-text { font-size: 1rem; color: var(--text-secondary); line-height: 1.8; }
.about-story-image .img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
}
.about-founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.about-founder-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.about-founder-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1.25rem;
}
.about-founder-name { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.25rem; }
.about-founder-role { font-size: 0.85rem; color: var(--accent); font-weight: 500; }

/* ── FAQ PAGE ── */
.faq-list { margin-top: 3rem; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: all 0.3s;
  color: var(--text-secondary);
}
.faq-item.open .faq-icon {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.3s;
}
.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── CONFIGURATOR ── */
.config-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

.form-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.form-section:last-of-type { border-bottom: none; }

.form-section-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.required { color: var(--accent); }

.field-error {
  display: block;
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 0.3rem;
  min-height: 1.1em;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #c0392b; }

.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6B6B' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.checkbox-group { margin-bottom: 0; }
.checkbox-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-secondary);
}
.checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--cta);
  cursor: pointer;
}
.checkbox-label a { color: var(--text); text-decoration: underline; }
.checkbox-label a:hover { color: var(--accent); }

.btn-full { width: 100%; justify-content: center; margin-top: 0.5rem; }
.btn-full:disabled { opacity: 0.38; cursor: not-allowed; transform: none !important; }

/* Summary box */
.summary-box {
  position: sticky;
  top: 80px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
}
.summary-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.summary-placeholder { font-size: 0.85rem; color: var(--text-secondary); font-style: italic; }
.summary-config { margin-bottom: 1rem; display: flex; flex-direction: column; gap: 0.2rem; }
.summary-config-item { font-size: 0.82rem; color: var(--text-secondary); }
.summary-config-item strong { color: var(--text); font-weight: 600; }

.summary-lines {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.summary-line span:last-child { font-weight: 500; color: var(--text); text-align: right; }

.summary-total-row {
  border-top: 2px solid var(--text);
  padding-top: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}
.summary-total-label { font-size: 0.82rem; font-weight: 600; flex-shrink: 0; }
.summary-total-price { font-size: 1.6rem; font-weight: 700; letter-spacing: -0.04em; text-align: right; }

.summary-note {
  font-size: 0.775rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  background: rgba(196,168,130,0.12);
  border-radius: 6px;
  border-left: 2px solid var(--accent);
}

.summary-steps { border-top: 1px solid var(--border); padding-top: 1.25rem; }
.summary-steps-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 0.9rem;
}
.summary-step {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  align-items: flex-start;
}
.summary-step-num {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  margin-top: 1px;
}

/* Nav order link */
.nav-link-order {
  font-weight: 600 !important;
  color: var(--text) !important;
  background: var(--card-bg);
  padding: 0.2rem 0.65rem !important;
  border-radius: 4px;
  border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s, color 0.2s !important;
}
.nav-link-order:hover {
  background: var(--text) !important;
  color: var(--white) !important;
  border-color: var(--text);
}

/* ── FORM SUCCESS ── */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.form-success-icon {
  width: 52px;
  height: 52px;
  background: var(--text);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1.25rem;
}
.form-success h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.form-success p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── HERO VIDEO ── */
.hero-video-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-video-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 80px;
}
.hero-video-content .hero-tag { color: rgba(255,255,255,0.7); }
.hero-video-content .hero-title { color: #fff; }
.hero-video-content .hero-subtitle { color: rgba(255,255,255,0.75); max-width: 560px; }

.hero-video-toggle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.hero-video-toggle:hover { background: rgba(0, 0, 0, 0.75); }

/* ── STATS DARK ── */
.stats-dark {
  background: #F2EFE9;
  border: none;
}
.stats-dark .stat-item { border-right-color: #E0DDD7; }
.stats-dark .stat-number { color: #1A1A1A; }
.stats-dark .stat-label { color: #1A1A1A; opacity: 0.85; }

/* ── SPLIT SECTIONS ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.split-image {
  overflow: hidden;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-content {
  background: var(--card-bg);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-content-dark {
  background: #F2EFE9;
  color: #1A1A1A;
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-content-dark .section-tag { color: #1A1A1A; }
.split-content-dark .section-title { color: #1A1A1A; }
.split-content-dark .section-subtitle { color: rgba(26,26,26,0.85); }
.split-content-dark .product-prices { color: rgba(26,26,26,0.85); }
.split-content-dark .product-prices span { color: #1A1A1A; }

.gallery-preview-section {
  background: var(--card-bg);
  padding: 80px 2rem;
}
.gallery-preview-header {
  max-width: 1100px;
  margin: 0 auto 2rem;
}
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.gallery-preview-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.25s ease;
}
.gallery-preview-item img:hover {
  transform: scale(1.02);
}
.gallery-preview-actions {
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-page {
  background: var(--bg);
  padding: 80px 2rem;
}
.gallery-page .container {
  max-width: 1100px;
}
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.gallery-page-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.25s ease;
}
.gallery-page-grid img:hover {
  transform: scale(1.02);
}

/* ── GALLERY SECTION ── */
.gallery-section {
  background: #FAFAF7;
  padding: 48px 40px 24px;
}
.gallery-header {
  max-width: 1100px;
  margin: 0 auto 28px;
}
.gallery-tag {
  color: #C4A882;
}
.gallery-title {
  margin-top: 0.5rem;
}
.gallery-scroll-wrap {
  position: relative;
  overflow: hidden;
}
.gallery-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.gallery-scroll::-webkit-scrollbar {
  display: none;
}
.gallery-scroll {
  scrollbar-width: none;
}
.gallery-scroll img {
  height: 320px;
  width: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.gallery-scroll img:hover {
  transform: scale(1.02);
}
.gallery-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  pointer-events: none;
}
.gallery-fade-left {
  left: 0;
  background: linear-gradient(to right, #FAFAF7 0%, rgba(250,250,247,0) 100%);
}
.gallery-fade-right {
  right: 0;
  background: linear-gradient(to left, #FAFAF7 0%, rgba(250,250,247,0) 100%);
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--accent);
  padding: 100px 2rem;
  text-align: center;
}
.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #1A1A1A;
  margin-bottom: 1rem;
}
.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(26,26,26,0.72);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── BUTTON VARIANTS ── */
.btn-white {
  background: #fff;
  color: #1A1A1A;
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline-white:hover { border-color: #fff; opacity: 1; }

/* ── CONTACT SOCIAL ── */
.contact-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  transition: color 0.2s, border-color 0.2s;
}
.contact-social-link:hover { color: var(--text); border-color: var(--text); }
.contact-social-link svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ── CONTACT MAP ── */
.contact-map {
  margin-top: 2.5rem;
}
.contact-map iframe {
  display: block;
  border-radius: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero .container,
  .hero-split .container {
    display: flex;
    flex-direction: column;
  }
  .hero-content,
  .hero-text {
    order: 1;
  }
  .hero-image,
  .hero-img {
    order: 2;
  }
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .gamezone-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .about-founders { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr 1fr; }
  .config-layout { grid-template-columns: 1fr; }
  .summary-box { position: static; }
  .split-section { grid-template-columns: 1fr; min-height: auto; }
  .split-image { min-height: 340px; }
  .split-reverse .split-image { order: -1; }
  .split-content,
  .split-content-dark { padding: 56px 2rem; }
  .gallery-preview-grid,
  .gallery-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  nav { padding: 0 1.25rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  nav.menu-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    flex-wrap: wrap;
    align-items: center;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    padding-bottom: 1.25rem;
  }
  nav.menu-open .nav-logo {
    height: 64px;
  }
  nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: static;
    flex: 0 0 100%;
    order: 10;
    padding: 0.5rem 0 0.25rem;
    gap: 1rem;
    border-top: 1px solid var(--border);
  }
  nav.menu-open .nav-cta {
    display: inline-flex;
    position: static;
    order: 20;
    margin: 0.75rem 0 0;
  }
  .stat-bar .container { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-dark .stat-item { border-bottom-color: #E0DDD7; }
  .stat-item:last-child { border-bottom: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom-right { flex-wrap: wrap; gap: 1rem; }
  .section { padding: 56px 1.25rem; }
  .hero { padding: 48px 1.25rem 56px; }
  .page-hero { padding: 48px 1.25rem 40px; }
  .hero-video-content { padding: 0 1.25rem 48px; }
  .cta-section { padding: 72px 1.25rem; }
  .split-content,
  .split-content-dark { padding: 48px 1.25rem; }
}

/* ── REVIEWS SECTION ── */
.reviews-section {
  background: var(--card-bg);
  padding: 80px 2rem;
}
.reviews-header {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}
.reviews-rating {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.rating-stars {
  font-size: 1.5rem;
  color: #C4A882;
  letter-spacing: 0.2rem;
}
.rating-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1A1A1A;
  font-family: 'Montserrat', sans-serif;
}
.rating-count {
  font-size: 0.9rem;
  color: #6B6B6B;
}
.rating-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #6B6B6B;
}
.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #E0DDD7;
  border-top-color: #C4A882;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.reviews-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding: 0 2rem;
  margin: 0 -2rem;
  width: calc(100% + 4rem);
}
.reviews-scroll::-webkit-scrollbar {
  display: none;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  background: #fff;
  border: 1px solid #E0DDD7;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 300px;
  max-width: 380px;
  flex-shrink: 0;
}
.review-author {
  font-weight: 600;
  color: #1A1A1A;
  font-size: 0.95rem;
}
.review-stars {
  font-size: 0.85rem;
  color: #C4A882;
  letter-spacing: 0.15rem;
}
.review-text {
  font-size: 0.85rem;
  color: #6B6B6B;
  line-height: 1.5;
  flex-grow: 1;
}
.review-date {
  font-size: 0.75rem;
  color: #B0B0B0;
  margin-top: 0.5rem;
}
.review-placeholder {
  grid-column: 1 / -1;
  padding: 2rem;
  text-align: center;
  color: #6B6B6B;
  font-style: italic;
}

/* ── FOOTER STRIP ── */
footer {
  background: #3A3A3A;
  color: #F4F4F4;
  padding: 16px 40px;
}
.footer-strip {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  color: #F4F4F4;
}
.footer-left span {
  opacity: 0.9;
  font-size: 0.95rem;
}
.footer-logo img {
  height: 32px;
  width: auto;
  display: block;
}
.footer-right {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer-right a {
  color: #F4F4F4;
  opacity: 0.88;
  font-size: 0.95rem;
  transition: opacity 0.2s ease;
}
.footer-right a:hover {
  opacity: 1;
}

/* ── ÉTKEZŐASZTAL PAGE ── */

/* Hero image (real img, not placeholder) */
.hero-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* 2. FA ÉS MÉRET */
.ea-wood-section { background: #FAFAF7; }

.ea-wood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 3rem 0 2.5rem;
}

.ea-wood-photo {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin-bottom: 1rem;
}

.ea-wood-name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}

.ea-wood-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.ea-pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.ea-price-card {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ea-price-size {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
}

.ea-price-amount {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.ea-price-detail {
  font-size: 0.82rem;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 0.5rem;
}

.ea-price-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.ea-price-card .btn { align-self: flex-start; }

/* 3. RÉSZLETEK */
.ea-detail-section { background: #F2EFE9; }

.ea-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.ea-detail-text {}

.ea-detail-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ea-detail-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.ea-detail-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.ea-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.ea-photo-grid .img-placeholder {
  aspect-ratio: 1/1;
  border-radius: 10px;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
}

.ea-photo-grid .img-placeholder span {
  font-size: 0.72rem;
  opacity: 0.8;
}

.ea-grid-photo {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* 4. TEXTIL – full-bleed split */
.ea-textile-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: #FAFAF7;
}

.ea-textile-photo {
  overflow: hidden;
}

.ea-textile-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ea-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.ea-color-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.ea-color-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.ea-color-name {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-align: center;
  white-space: nowrap;
}

/* 5. FEDLAP */
.ea-fedlap-section { background: #F2EFE9; }

.ea-fedlap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.ea-fedlap-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin-bottom: 1rem;
}

.ea-fedlap-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.ea-fedlap-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* 6. RENDELÉS MENETE */
.ea-steps-section { background: #FAFAF7; }

/* ── RESPONSIVE – ÉTKEZŐASZTAL ── */
@media (max-width: 900px) {
  .ea-wood-grid { grid-template-columns: 1fr; }
  .ea-pricing-row { grid-template-columns: 1fr; }
  .ea-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ea-textile-split { grid-template-columns: 1fr; min-height: auto; }
  .ea-textile-photo { min-height: 340px; }
  .ea-textile-content { padding: 56px 2rem; }
  .ea-fedlap-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .ea-textile-split {
    flex-direction: column;
  }
  .ea-textile-photo {
    order: 2;
  }
  .ea-textile-content {
    order: 1;
  }
}

@media (max-width: 700px) {
  .ea-textile-content { padding: 48px 1.25rem; }
  .ea-detail-grid { gap: 2rem; }
}

/* ── SCROLL ANIMATIONS ── */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .animate-fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── MOBIL COLORS ── */
.mobil-colors-section {
  background: #F2EFE9;
  padding: 80px 40px;
  text-align: center;
}

.mobil-colors-section .section-title,
.mobil-colors-section .section-subtitle {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.mobil-colors-section .section-subtitle {
  margin-top: 0.75rem;
  margin-bottom: 3rem;
}

.mobil-colors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.mobil-color-card {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.mobil-color-card:hover { transform: scale(1.02); }

.mobil-color-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.mobil-color-card span {
  display: block;
  font-size: 13px;
  color: var(--text);
  text-align: center;
  padding: 0.6rem 0.5rem;
}

@media (max-width: 700px) {
  .mobil-colors-section { padding: 3rem 1.25rem; }
  .mobil-colors-grid { grid-template-columns: repeat(2, 1fr); }
}

.grecaptcha-badge {
  visibility: hidden !important;
}
