:root {
  --bg: #151a14;
  --surface: #2c3b26;
  --surface-2: #394a39;
  --accent: #465745;
  --accent-hover: #566957;
  --text: #dbdfd7;
  --text-muted: rgba(219, 223, 215, 0.72);
  --border: rgba(219, 223, 215, 0.12);
  --danger: #4d1a1a;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.muted {
  color: var(--text-muted);
}

.static-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 16px 64px;
}

.static-main .card {
  margin: 16px 0;
}

.static-main h1,
.static-main h2 {
  margin: 0 0 0.75rem;
}

.static-main a {
  color: #9fb39e;
}

.static-main ul,
.static-main ol {
  padding-left: 18px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-hover);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--surface-2);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(21, 26, 20, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.brand-logo {
  width: 32px;
  height: 32px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-menu a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-label {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.lang-select {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  padding: 0.35rem 0.75rem;
  font-size: 0.9rem;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.dropdown-toggle:hover {
  color: var(--text);
  border-color: rgba(219, 223, 215, 0.4);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  min-width: 200px;
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 150;
  box-shadow: var(--shadow);
}

.dropdown.open .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu a {
  color: var(--text-muted);
  padding: 0.35rem 0.5rem;
  border-radius: 10px;
}

.dropdown-menu a:hover {
  color: var(--text);
  background: var(--surface-2);
}

.nav-menu a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 0.6rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
}

.hero {
  position: relative;
  padding: 5rem 1.25rem 4rem;
  overflow: hidden;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.lead {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  margin: 0 0 1.5rem;
}

.cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  border-color: transparent;
}

.btn.primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn.ghost {
  color: var(--text);
  background: transparent;
}

.pill-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.pill {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pill-accent {
  background: var(--text-muted);
  border: 2px solid var(--border);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 1rem;
  color: var(--surface-2);
  text-transform: uppercase;
  font-weight: 800;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.phone-mock {
  width: min(320px, 80vw);
  padding: 1.25rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(70, 87, 69, 0.35), rgba(44, 59, 38, 0.7));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 19;
}

.phone-mock::after {
  content: "";
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(70, 87, 69, 0.35), transparent 60%);
  z-index: -1;
}

.hero-video {
  position: absolute;
  inset: 1.25rem;
  width: calc(100% - 2.5rem);
  height: calc(100% - 2.5rem);
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

.hero-note {
  margin-top: 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(70, 87, 69, 0.2), transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(57, 74, 57, 0.2), transparent 55%);
  pointer-events: none;
}

.section {
  padding: 4rem 1.25rem;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 0.75rem;
}

.section-sub {
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.two-col {
  display: grid;
  gap: 2rem;
}

.value-grid {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.card-mini-text {
  text-align: center;
} 

.card.mini {
  padding: 1rem;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 0.6rem;
  text-align: center;
}

.feature-groups {
  display: grid;
  gap: 1.5rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.feature-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.feature-head .icon {
  font-size: 1.4rem;
}

.feature-card ul {
  padding-left: 1.2rem;
  margin: 0.75rem 0 0;
  color: var(--text-muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  cursor: pointer;
  padding: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews {
  display: grid;
  gap: 1rem;
}

.review p {
  margin: 0.5rem 0 0.75rem;
}

.review-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.stars {
  color: #b8c6b2;
  font-size: 1.1rem;
}

.download {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.qr {
  width: 160px;
  height: 160px;
  border-radius: 16px;
  border: 1px dashed var(--border);
  background: var(--surface-2);
  display: grid;
  place-items: center;
  font-weight: 600;
  color: var(--text-muted);
}

.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 640px;
}

.field {
  display: grid;
  gap: 0.4rem;
}

input,
textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  color: var(--text);
  font-size: 1rem;
}

.form-note {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.toast {
  margin-top: 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  display: none;
}

.toast.show {
  display: inline-block;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.25rem 3rem;
  color: var(--text-muted);
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 1rem;
}

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.lightbox.show {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    right: 1.25rem;
    top: 68px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0.75rem;
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 180px;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-start;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .download {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .two-col {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-groups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reviews {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .download {
    grid-template-columns: 1fr auto;
  }
}
