:root {
  --color-bg: #050816;
  --color-bg-alt: #0b1020;
  --color-surface: #111827;
  --color-surface-soft: #111827cc;
  --color-primary: #fbbf24;  /* arany, prémium érzet */
  --color-primary-soft: #f59e0b33;
  --color-secondary: #22d3ee; /* türkiz, tech/jövő hangulat */
  --color-text: #f9fafb;
  --color-muted: #9ca3af;
  --color-border: #1f2933;

  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.35);

  --max-width: 1120px;
}

/* RESET / ALAPOK */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: radial-gradient(circle at 0 0, #1d2437 0, #050816 40%, #020617 100%);
}

/* KONTAINEREK */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER / NAV */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 8, 22, 0.95), rgba(5, 8, 22, 0.85), transparent);
  border-bottom: 1px solid rgba(31, 41, 55, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 0.65rem;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 40%;
  background: radial-gradient(circle at 30% 20%, #fbbf24, #f59e0b, #f97316);
  color: #020617;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.65);
}

.logo-img {
  width: 34px;
  height: 34px;
  border-radius: 40%;
  object-fit: contain;          /* hogy ne torzuljon a logó */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.65);
}

.logo-text {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--color-text);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--color-muted);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.main-nav a:hover {
  color: var(--color-text);
  background: rgba(31, 41, 55, 0.8);
  transform: translateY(-1px);
}

.nav-cta {
  background: var(--color-primary);
  color: #111827;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(251, 191, 36, 0.45);
}

.nav-cta:hover {
  background: #f59e0b;
  color: #111827;
}

/* HERO */

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.28), transparent 65%);
}

.hero-pill::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(to bottom right, #22c55e, #a3e635);
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.15);
}

.hero h1 {
  margin: 1.2rem 0 0.8rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(2.2rem, 3.4vw + 1.4rem, 3.3rem);
  line-height: 1.1;
}

.hero-subtitle {
  margin: 0;
  font-size: 0.98rem;
  color: var(--color-muted);
  max-width: 32rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.8rem 0 1.6rem;
}

/* GOMBOK */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #111827;
  box-shadow: 0 18px 35px rgba(248, 181, 52, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 45px rgba(248, 181, 52, 0.6);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.5);
  color: var(--color-text);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.9);
}

.btn-block {
  width: 100%;
}

/* HERO META */

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(31, 41, 55, 0.7);
}

.meta-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin-bottom: 0.15rem;
}

.meta-value {
  font-size: 0.86rem;
}

/* HERO VIZUÁLIS KÁRTYA */

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.6rem;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.25), transparent 60%),
              radial-gradient(circle at 100% 100%, rgba(251, 191, 36, 0.2), transparent 60%),
              var(--color-surface-soft);
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: var(--color-muted);
  margin-bottom: 0.7rem;
}

.hero-card h2 {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.3rem;
  margin: 0 0 0.4rem;
}

.hero-card p {
  margin: 0 0 0.9rem;
  font-size: 0.87rem;
  color: var(--color-muted);
}

.hero-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.86rem;
  display: grid;
  gap: 0.35rem;
}

.hero-list li {
  color: var(--color-text);
}

/* kis állat buborékok */

.hero-pets {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  display: flex;
  gap: 0.45rem;
}

.pet-circle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(15, 23, 42, 0.9);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Ha feltöltesz hero képet, átírhatod: url("../img/hero-pet-cat-dog.jpg") stb. */
.pet-cat {
  background-image: linear-gradient(135deg, #22c55e, #a3e635);
}

.pet-dog {
  background-image: linear-gradient(135deg, #0ea5e9, #22d3ee);
}

/* SZEKCIÓK */

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: radial-gradient(circle at 50% 0, rgba(56, 189, 248, 0.08), transparent 55%),
              radial-gradient(circle at 0 100%, rgba(251, 191, 36, 0.05), transparent 55%),
              #020617;
  border-top: 1px solid rgba(15, 23, 42, 1);
  border-bottom: 1px solid rgba(15, 23, 42, 1);
}

.section-header {
  text-align: left;
  max-width: 38rem;
  margin-bottom: 2.2rem;
}

.section-header h2 {
  font-family: "Poppins", system-ui, sans-serif;
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
}

.section-header p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

/* GRID */

.grid {
  display: grid;
  gap: 1.6rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* KÁRTYÁK */

.feature-card,
.category-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.4rem 1.5rem;
  border: 1px solid rgba(30, 64, 175, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.category-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.category-card-link:hover,
.category-card-link:focus-visible {
  outline: none;
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.75);
  border-color: rgba(56, 189, 248, 0.9);
}


.feature-card::before,
.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.12), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.feature-card h3,
.category-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.feature-card p,
.category-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.category-card ul {
  position: relative;
  z-index: 1;
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--color-text);
}

/* FEATURE IKONOK – ha nincsenek képek, akkor is jól mutatnak */

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 1.2rem;
  background: radial-gradient(circle at 20% 0, #fbbf24, #f97316);
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
}

.feature-icon-food {
  background: radial-gradient(circle at 20% 0, #fbbf24, #f97316);
}

.feature-icon-tech {
  background: radial-gradient(circle at 20% 0, #22d3ee, #0ea5e9);
}

.feature-icon-care {
  background: radial-gradient(circle at 20% 0, #fb7185, #ec4899);
}

/* ROADMAP */

.roadmap {
  display: grid;
  gap: 1.4rem;
}

.roadmap-item {
  padding: 1.3rem 1.4rem 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(55, 65, 81, 0.9);
  box-shadow: var(--shadow-subtle);
}

.roadmap-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--color-muted);
  margin-bottom: 0.45rem;
}

.roadmap-item h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.roadmap-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* CSATLAKOZZ BLOKK */

.join-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.join-text h2 {
  font-family: "Poppins", system-ui, sans-serif;
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.join-text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.join-note {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* LÁBLÉC */

.site-footer {
  padding: 2.2rem 0 2.4rem;
  background: #020617;
  border-top: 1px solid rgba(15, 23, 42, 1);
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

.footer-text {
  margin: 0;
  font-size: 0.86rem;
  color: var(--color-muted);
}

.footer-meta {
  margin: 0;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.footer-meta a {
  color: var(--color-secondary);
  text-decoration: none;
}

.footer-meta a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .join-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }

  .main-nav {
    display: none; /* MVP: mobilon egyszerűen eltüntetjük a navigációt */
  }
}

@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-meta {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 2.8rem 0;
  }

  .header-inner {
    padding: 0.7rem 0;
  }
}
/* MODAL – FELUGRÓ ÉRDEKLŐDÉSI ŰRLAP */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  backdrop-filter: blur(10px);
}

.modal-overlay.is-visible {
  display: flex;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.16), transparent 60%),
              #020617;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.7rem 1.7rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.modal h3 {
  margin: 0 0 0.5rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.25rem;
}

.modal-intro {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  color: var(--color-muted);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(31, 41, 55, 1);
  color: var(--color-text);
}

.modal-form {
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.84rem;
}

.form-control {
  border-radius: 0.65rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.95);
  padding: 0.55rem 0.7rem;
  color: var(--color-text);
  font-size: 0.9rem;
  font-family: inherit;
}

.form-control::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

.form-control:focus {
  outline: 2px solid rgba(56, 189, 248, 0.75);
  outline-offset: 1px;
  border-color: transparent;
}

.modal-note {
  margin: 0.6rem 0 0;
  font-size: 0.72rem;
  color: var(--color-muted);
}

.hidden {
  display: none;
}

@media (max-width: 480px) {
  .modal {
    margin: 0 1.2rem;
    padding: 1.4rem 1.3rem 1.5rem;
  }
}
.thankyou-card {
  max-width: 560px;
  margin: 4rem auto 3rem;
  padding: 2rem 2.2rem 2.3rem;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.16), transparent 60%),
              radial-gradient(circle at 100% 100%, rgba(251, 191, 36, 0.12), transparent 60%),
              rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.thankyou-card h1 {
  margin: 0 0 0.8rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.6rem;
}

.thankyou-card p {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.thankyou-card .btn {
  margin-top: 0.8rem;
}
/* HAMAROSAN ELÉRHETŐ TERMÉKEK – ACCORDION */

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* teljes szélességű, egymás alatti kártyák */
.accordion-card {
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(30, 64, 175, 0.7);
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
}

/* fejléc gomb */
.accordion-header {
  width: 100%;
  padding: 1.1rem 1.3rem;
  border: none;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.accordion-header-text h2 {
  margin: 0 0 0.2rem;
  font-size: 1.1rem;
  font-family: "Poppins", system-ui, sans-serif;
}

.accordion-header-text p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-muted);
  flex-shrink: 0;
}

.accordion-card.open .accordion-icon {
  transform: rotate(45deg); /* + jelből X-szerű */
}

.accordion-body {
  padding: 0 1.3rem 1.3rem;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  display: none;
}

.accordion-card.open .accordion-body {
  display: block;
}

.accordion-body h3 {
  margin: 0.9rem 0 0.4rem;
  font-size: 1rem;
}

.accordion-body p {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.accordion-body ul {
  margin: 0 0 0.9rem 1.1rem;
  font-size: 0.9rem;
}

.accordion-cta-text {
  margin-top: 0.4rem;
  margin-bottom: 0.7rem;
}

/* landing kategóriakártya, ha linkként használjuk */
.category-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.category-card-link:hover,
.category-card-link:focus-visible {
  outline: none;
}
/* Kategória oldalak – részletes leírások */

.category-detail {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.detail-card {
  background: rgba(15, 23, 42, 0.97);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem 1.6rem;
  border: 1px solid rgba(30, 64, 175, 0.85);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.detail-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-family: "Poppins", system-ui, sans-serif;
}

.detail-card p {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.detail-card ul {
  margin: 0 0 0.2rem 1.2rem;
  font-size: 0.9rem;
}

.detail-cta {
  margin-top: 0.8rem;
  padding: 1.5rem 1.6rem 1.7rem;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.18), transparent 60%),
              radial-gradient(circle at 100% 100%, rgba(251, 191, 36, 0.16), transparent 60%),
              rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: var(--shadow-soft);
}

.detail-cta h2 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  font-family: "Poppins", system-ui, sans-serif;
}

.detail-cta p {
  margin: 0 0 0.8rem;
  font-size: 0.92rem;
  color: var(--color-muted);
}

@media (max-width: 640px) {
  .detail-card,
  .detail-cta {
    padding: 1.3rem 1.2rem 1.4rem;
  }
}
.accordion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

/* Ha külön szeretnéd hangsúlyozni a “Részletek” gombot */
.accordion-actions .btn.btn-ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.7);
  color: var(--color-text);
}

.accordion-actions .btn.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(56, 189, 248, 0.9);
}

.teaser-disclaimer {
  margin-top: 1.4rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}
