/* ===== Global reset & base ===== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #e4ebf5;
  color: #333333;
  line-height: 1.6;
}

/* ===== Layout helpers ===== */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Neomorphism utility ===== */

.neocard {
  background: #e4ebf5;
  border-radius: 24px;
  box-shadow:
    14px 14px 28px #c2c9d6,
    -14px -14px 28px #ffffff;
}

.neocard2 {
  background: #202529;
  border-radius: 18px;
  box-shadow:
    14px 14px 28px #c2c9d6,
    -14px -14px 28px #ffffff;
}

/* ===== Header & navigation ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(228, 235, 245, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 0.9rem;
  text-decoration: none;
  color: #444444;
  position: relative;
  padding-bottom: 0.15rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff7a5c, #4b6fff);
  transition: width 0.2s ease-out;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

/* ===== Hero ===== */

.hero {
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 320px;
  min-width: 0;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1rem;
  color: #555555;
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.hero-subtext {
  font-size: 0.9rem;
  color: #666666;
  max-width: 28rem;
}

/* Hero visual with screenshot */

.hero-visual {
  flex: 0 0 320px;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual2 {
  flex: 0 0 320px;
  padding: 0.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-screenshot {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* ===== Buttons & store badge ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, filter 0.12s ease-out;
}

.btn-ghost {
  background: transparent;
  color: #4b6fff;
  box-shadow:
    inset 2px 2px 4px #c2c9d6,
    inset -2px -2px 4px #ffffff;
}

.btn-ghost:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  background: #e4ebf5;
  color: #333333;
  box-shadow:
    10px 10px 20px #c2c9d6,
    -10px -10px 20px #ffffff;
}

.btn-secondary:hover {
  transform: translateY(-1px);
}

/* Google Play store badge */

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0.2rem;
  border-radius: 4px;
  background: #e4ebf5;
  box-shadow:
    10px 10px 20px #c2c9d6,
    -10px -10px 20px #ffffff;
}

.store-badge img {
  display: block;
  height: 40px;
  width: auto;
}

/* ===== Sections ===== */

.section {
  padding: 3rem 0;
}

.section-alt {
  padding: 3rem 0;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.section-intro {
  max-width: 40rem;
  color: #555555;
  margin-bottom: 2rem;
}

/* ===== Features ===== */

.feature-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.feature-card {
  padding: 1.6rem 1.5rem;
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  color: #555555;
}

/* ===== Video section ===== */

.video-wrapper {
  margin-top: 1rem;
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
}

.video-wrapper iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}

/* ===== Contact – small, one-line ===== */

.small-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #555555;
  padding: 0.5rem 0;
}

.small-contact-label {
  font-weight: 500;
}

.contact-email {
  font-weight: 600;
  text-decoration: none;
  color: #4b6fff;
}

.contact-email:hover {
  text-decoration: underline;
}

/* Kicsit kisebb függőleges margó a contact szekciónál */
#contact.section-alt {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

/* ===== Footer ===== */

.site-footer {
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: #666666;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer a {
  color: #4b6fff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* ===== Privacy page ===== */

.privacy-main {
  padding-top: 1rem;
}

.privacy-card {
  padding: 1.8rem 1.6rem;
}

.privacy-title {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.6rem;
}

.privacy-meta {
  margin-top: 0;
  margin-bottom: 1.4rem;
  font-size: 0.85rem;
  color: #777777;
}

.privacy-section-title {
  margin-top: 1.4rem;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.privacy-card p,
.privacy-card ul {
  font-size: 0.95rem;
  color: #444444;
}

.privacy-card ul {
  padding-left: 1.2rem;
  margin-top: 0.4rem;
  margin-bottom: 0.8rem;
}

.privacy-contact {
  margin-top: 0.4rem;
  font-size: 0.95rem;
}


/* ===== Responsive tweaks ===== */

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero-inner {
    flex-direction: column;
  }
}

