:root {
  --bg: #0a0f0c;
  --bg-2: #0f1813;
  --surface: #142019;
  --surface-2: #1a2820;
  --border: rgba(120, 168, 130, 0.18);
  --text: #e6f0e8;
  --muted: #8aa094;
  --primary: #6dbe73;
  --primary-soft: #56a45e;
  --primary-dark: #2f6b3b;
  --accent: #9ce0a3;
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 15, 12, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.2px;
}
.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.brand-text { color: var(--text); }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 12px;
}
.nav-links a {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--primary); }

.btn-admin {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #08110a;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--primary);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  box-shadow: 0 6px 20px rgba(109, 190, 115, 0.25);
}
.btn-admin:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(109, 190, 115, 0.35);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) brightness(.55);
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 20% 30%, rgba(47, 107, 59, 0.55), transparent 70%),
    linear-gradient(180deg, rgba(10,15,12,0.65) 0%, rgba(10,15,12,0.78) 60%, rgba(10,15,12,0.95) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 96px 24px 80px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy { max-width: 620px; }

.eyebrow,
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(38px, 5.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  font-weight: 800;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  font-size: 18px;
  color: #c4d6c9;
  margin: 0 0 28px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  border: 1px solid transparent;
}
.cta-primary {
  background: var(--primary);
  color: #08110a;
  box-shadow: 0 10px 30px rgba(109, 190, 115, 0.3);
}
.cta-primary:hover { background: var(--accent); transform: translateY(-1px); }
.cta-ghost {
  border-color: rgba(255,255,255,0.18);
  color: var(--text);
}
.cta-ghost:hover { border-color: var(--primary); color: var(--primary); }

/* ---------- PHONE MOCK ---------- */
.hero-phone {
  display: flex;
  justify-content: center;
}
.phone {
  width: 280px;
  height: 580px;
  background: #0b110d;
  border-radius: 42px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  transform: rotate(-2deg);
  transition: transform .4s ease;
}
.phone::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
.phone:hover { transform: rotate(0deg) translateY(-4px); }
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: linear-gradient(180deg, #0e1814 0%, #0a120e 100%);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  font-size: 11px;
  color: var(--text);
  padding: 28px 12px 10px;
}

.phone-sm {
  width: 220px;
  height: 460px;
  border-radius: 36px;
  padding: 10px;
  transform: rotate(0deg);
}
.phone-sm::before { width: 70px; height: 18px; top: 14px; }
.phone-sm .phone-screen { border-radius: 26px; padding: 24px 10px 8px; font-size: 9.5px; }

/* ---------- status bar ---------- */
.ps-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: #d9e6dd;
  padding: 0 6px 6px;
  letter-spacing: 0.02em;
}
.phone-sm .ps-statusbar { font-size: 9px; padding-bottom: 4px; }
.ps-sigs {
  width: 38px;
  height: 8px;
  background:
    radial-gradient(circle at 5px 4px, #d9e6dd 2.2px, transparent 2.5px),
    radial-gradient(circle at 12px 4px, #d9e6dd 2.2px, transparent 2.5px),
    radial-gradient(circle at 19px 4px, #d9e6dd 2.2px, transparent 2.5px),
    linear-gradient(90deg, transparent 22px, #d9e6dd 22px, #d9e6dd 36px, transparent 36px);
}

/* ---------- shared building blocks ---------- */
.ps-tag,
.ps-eyebrow {
  display: inline-block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--primary);
  text-transform: uppercase;
}
.phone-sm .ps-tag, .phone-sm .ps-eyebrow { font-size: 7px; }

/* ---------- HOME screen ---------- */
.ps-home-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px 8px;
}
.ps-home-head span { font-size: 15px; font-weight: 700; }
.phone-sm .ps-home-head span { font-size: 12px; }
.ps-search {
  width: 18px;
  height: 18px;
  border: 1.5px solid #d9e6dd;
  border-radius: 50%;
  position: relative;
}
.ps-search::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 7px;
  height: 1.5px;
  background: #d9e6dd;
  transform: rotate(45deg);
  border-radius: 1px;
}
.phone-sm .ps-search { width: 14px; height: 14px; }

.ps-hero-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  padding: 12px;
  background-size: cover;
  background-position: center;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 14px;
  isolation: isolate;
}
.ps-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,15,12,0.2) 0%, rgba(10,15,12,0.85) 80%);
  z-index: 0;
}
.ps-hero-card > * { position: relative; z-index: 1; }
.ps-hero-card .ps-tag { color: #cde9d2; margin-bottom: 4px; }
.ps-hero-card strong { font-size: 15px; line-height: 1.1; display: block; margin-bottom: 4px; font-weight: 800; }
.ps-hero-card em { font-style: normal; font-size: 9px; color: #c4d6c9; line-height: 1.35; display: block; }
.phone-sm .ps-hero-card { min-height: 95px; padding: 9px; }
.phone-sm .ps-hero-card strong { font-size: 12px; }
.phone-sm .ps-hero-card em { font-size: 7.5px; }

.ps-section { padding: 0 4px; display: flex; flex-direction: column; gap: 6px; }
.ps-section .ps-eyebrow { color: var(--primary); margin-bottom: 2px; }
.ps-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.ps-row b { font-size: 14px; font-weight: 700; }
.ps-row i { font-style: normal; font-size: 9px; color: var(--primary); }
.phone-sm .ps-row b { font-size: 11px; }

.ps-weather {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ps-weather div { display: flex; align-items: baseline; gap: 8px; }
.ps-weather strong { font-size: 18px; font-weight: 800; }
.ps-weather span { font-size: 10px; color: #c4d6c9; }
.ps-weather small { color: var(--muted); font-size: 8px; }
.phone-sm .ps-weather { padding: 8px 10px; border-radius: 10px; }
.phone-sm .ps-weather strong { font-size: 14px; }
.phone-sm .ps-weather span { font-size: 8.5px; }
.phone-sm .ps-weather small { font-size: 7px; }

.ps-tip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.ps-tip-icon {
  width: 22px;
  height: 22px;
  background: rgba(109,190,115,0.22);
  border: 1px solid rgba(109,190,115,0.35);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.ps-tip-icon::after {
  content: "☁";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 12px;
}
.ps-tip b { font-size: 10px; font-weight: 700; display: block; }
.ps-tip span { font-size: 8.5px; color: #c4d6c9; line-height: 1.3; }

/* compact home (small phones) — hide tip card */
.ps-home-compact .ps-tip { display: none; }

/* ---------- SPLASH screen ---------- */
.ps-splash {
  background:
    radial-gradient(40% 30% at 50% 40%, rgba(109,190,115,0.22), transparent 70%),
    linear-gradient(180deg, #142019 0%, #060c08 100%);
  justify-content: flex-start;
}
.ps-splash-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-bottom: 16px;
}
.ps-splash-logo {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,190,115,0.55), rgba(109,190,115,0.08) 65%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps-splash-logo img {
  width: 64px;
  height: 64px;
  border-radius: 20px;
}
.phone-sm .ps-splash-logo { width: 70px; height: 70px; }
.phone-sm .ps-splash-logo img { width: 52px; height: 52px; border-radius: 16px; }

.ps-splash h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.phone-sm .ps-splash h3 { font-size: 18px; }
.ps-loader {
  width: 70%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(109,190,115,0.4) 30%, var(--primary) 70%, transparent 100%);
  position: relative;
  transform: scaleY(2);
  margin-top: 6px;
}
.ps-loader::after {
  content: "";
  position: absolute;
  right: 18%;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(156,224,163,0.7);
}
.ps-splash-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 22px;
  text-align: center;
  padding: 0 12px;
}
.ps-splash-foot b { font-size: 11px; font-weight: 700; color: #d9e6dd; }
.ps-splash-foot span { font-size: 9px; color: var(--muted); }
.phone-sm .ps-splash-foot b { font-size: 9.5px; }
.phone-sm .ps-splash-foot span { font-size: 7.5px; }

/* ---------- MODULES screen ---------- */
.ps-modules { padding-bottom: 10px; }
.ps-mod-banner {
  display: flex;
  gap: 10px;
  align-items: center;
  background: linear-gradient(135deg, rgba(109,190,115,0.45), rgba(47,107,59,0.45));
  border: 1px solid rgba(109,190,115,0.3);
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 10px;
}
.ps-mod-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ps-mod-logo img { width: 30px; height: 30px; border-radius: 8px; }
.ps-mod-banner strong { display: block; font-size: 11px; font-weight: 700; }
.ps-mod-banner span { font-size: 8px; color: #d9e6dd; line-height: 1.3; }
.phone-sm .ps-mod-logo { width: 28px; height: 28px; }
.phone-sm .ps-mod-logo img { width: 22px; height: 22px; }
.phone-sm .ps-mod-banner strong { font-size: 9.5px; }
.phone-sm .ps-mod-banner span { font-size: 7px; }

.ps-mod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  flex: 1;
}
.ps-mod-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  min-height: 0;
}
.ps-mod-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(109,190,115,0.22);
  border: 1px solid rgba(109,190,115,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--primary);
}
.ps-mod-tile span {
  font-size: 6.5px;
  color: #d9e6dd;
  line-height: 1.15;
  font-weight: 600;
}
.phone-sm .ps-mod-icon { width: 18px; height: 18px; font-size: 9px; }
.phone-sm .ps-mod-tile span { font-size: 5.5px; }

/* ---------- PLACE DETAIL screen ---------- */
.ps-place-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 6px;
}
.ps-back, .ps-bm { font-size: 16px; color: #d9e6dd; }
.ps-place-title { font-size: 13px; font-weight: 700; }
.phone-sm .ps-place-title { font-size: 10px; }
.phone-sm .ps-back, .phone-sm .ps-bm { font-size: 12px; }
.ps-place-meta {
  font-size: 7.5px;
  color: var(--muted);
  padding: 0 4px 8px;
}
.phone-sm .ps-place-meta { font-size: 6.5px; }
.ps-place-photo {
  height: 90px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.ps-place-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
}
.ps-place-photo-tag {
  position: absolute;
  right: 6px;
  bottom: 6px;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.phone-sm .ps-place-photo { height: 70px; }
.phone-sm .ps-place-photo-tag { font-size: 7px; }

.ps-place-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 10px;
  margin-bottom: 6px;
}
.ps-place-card strong { display: block; font-size: 11px; font-weight: 700; margin-bottom: 2px; }
.ps-place-cat { display: block; font-size: 8px; color: var(--muted); margin-bottom: 4px; }
.ps-place-card p { margin: 0; font-size: 8px; color: #c4d6c9; line-height: 1.35; }
.phone-sm .ps-place-card { padding: 6px 8px; }
.phone-sm .ps-place-card strong { font-size: 9.5px; }
.phone-sm .ps-place-card p { font-size: 7px; }
.phone-sm .ps-place-cat { font-size: 7px; }
.ps-place-actions {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}
.ps-place-actions span {
  flex: 1;
  background: rgba(109,190,115,0.12);
  border: 1px solid rgba(109,190,115,0.25);
  color: #cde9d2;
  border-radius: 8px;
  padding: 4px 6px;
  font-size: 7.5px;
  font-weight: 600;
  text-align: center;
}
.phone-sm .ps-place-actions span { font-size: 6.5px; padding: 3px 4px; }

/* ---------- SECTIONS ---------- */
section {
  padding: 100px 0;
}
section h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  font-weight: 800;
}
.section-lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 620px;
  margin: 0 0 48px;
}

/* ---------- MODULES ---------- */
.modules { background: var(--bg-2); }
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.module-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(109,190,115,0.45);
  background: var(--surface-2);
}
.module-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(109,190,115,0.22), rgba(109,190,115,0.06));
  border: 1px solid rgba(109,190,115,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}
.module-card h3 {
  font-size: 18px;
  margin: 0 0 6px;
  font-weight: 700;
}
.module-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

/* ---------- SCREENS ---------- */
.screens { background: var(--bg); }
.screen-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.screen-row .phone-sm:nth-child(odd) { transform: translateY(-12px); }
.screen-row .phone-sm:nth-child(even) { transform: translateY(12px); }

/* ---------- GALLERY ---------- */
.gallery { background: var(--bg-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  background: rgba(8, 17, 10, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
}
.gi-1 { grid-column: span 2; grid-row: span 2; }
.gi-2 { grid-column: span 1; grid-row: span 1; }
.gi-3 { grid-column: span 1; grid-row: span 1; }
.gi-4 { grid-column: span 1; grid-row: span 1; }
.gi-5 { grid-column: span 1; grid-row: span 1; }
.gi-6 { grid-column: span 2; grid-row: span 1; }

/* ---------- DOWNLOAD ---------- */
.download { background: var(--bg); }
.download-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.download-copy h2 { margin-bottom: 14px; }
.download-copy p { color: var(--muted); font-size: 17px; max-width: 480px; margin-bottom: 28px; }
.store-row { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  min-width: 200px;
  transition: border-color .2s ease, transform .2s ease;
}
.store-badge:hover { border-color: var(--primary); transform: translateY(-2px); }
.store-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(160deg, var(--primary), var(--primary-dark));
  border-radius: 8px;
  position: relative;
}
.store-icon::after {
  content: "";
  position: absolute;
  inset: 8px;
  background: #08110a;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M16.5 12.4c0-2.1 1.7-3.1 1.8-3.2-1-1.4-2.5-1.6-3-1.7-1.3-.1-2.5.8-3.1.8-.7 0-1.6-.8-2.7-.7-1.4 0-2.7.8-3.4 2-1.5 2.5-.4 6.3 1 8.4.7 1 1.6 2.2 2.7 2.1 1.1 0 1.5-.7 2.8-.7s1.7.7 2.8.7c1.1 0 1.9-1 2.6-2 .8-1.2 1.2-2.3 1.2-2.4-.1 0-2.3-.9-2.3-3.4ZM14.4 6.1c.6-.7 1-1.7.9-2.7-.9 0-1.9.6-2.5 1.3-.5.6-1 1.6-.9 2.6 1 .1 2 -.5 2.5-1.2Z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M16.5 12.4c0-2.1 1.7-3.1 1.8-3.2-1-1.4-2.5-1.6-3-1.7-1.3-.1-2.5.8-3.1.8-.7 0-1.6-.8-2.7-.7-1.4 0-2.7.8-3.4 2-1.5 2.5-.4 6.3 1 8.4.7 1 1.6 2.2 2.7 2.1 1.1 0 1.5-.7 2.8-.7s1.7.7 2.8.7c1.1 0 1.9-1 2.6-2 .8-1.2 1.2-2.3 1.2-2.4-.1 0-2.3-.9-2.3-3.4ZM14.4 6.1c.6-.7 1-1.7.9-2.7-.9 0-1.9.6-2.5 1.3-.5.6-1 1.6-.9 2.6 1 .1 2 -.5 2.5-1.2Z'/></svg>") center / contain no-repeat;
}
.store-icon-play::after {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='m4 2.5 11 9.5L4 21.5z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='m4 2.5 11 9.5L4 21.5z'/></svg>") center / contain no-repeat;
}
.store-text { display: flex; flex-direction: column; line-height: 1.15; }
.store-text small { color: var(--muted); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.1em; }
.store-text strong { font-size: 15px; }

.download-art {
  position: relative;
  height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.download-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 40px; height: 40px; border-radius: 10px; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand strong { font-size: 15px; }
.footer-brand span { font-size: 13px; color: var(--muted); }
.footer-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}
.footer-meta a:hover { color: var(--primary); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 64px; padding-bottom: 64px; }
  .hero-phone { order: -1; }
  .phone { transform: rotate(0); width: 240px; height: 500px; }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gi-1 { grid-column: span 2; grid-row: span 1; }
  .gi-6 { grid-column: span 2; }
  .download-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: 72px 0; }
  .nav-links { display: none; }
  .module-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .gi-1, .gi-2, .gi-3, .gi-4, .gi-5, .gi-6 { grid-column: span 1; grid-row: span 1; }
  .screen-row { gap: 18px; }
  .phone-sm { width: 180px; height: 380px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
