/* ─── Variables ─────────────────────────────────────────── */
:root {
  --green-dark: #40826d;
  --green-light: #92e88e;
  --green-mid: #5aab8a;
  --bg: #ffffff;
  --bg-soft: #f6faf8;
  --text: #111111;
  --text-muted: #666666;
  --border: #e4ede9;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(64, 130, 109, 0.1);
  --shadow-lg: 0 12px 48px rgba(64, 130, 109, 0.16);
  --transition: 0.25s ease;
  --gradient: linear-gradient(
    135deg,
    var(--green-dark) 0%,
    var(--green-light) 100%
  );
}

/* ─── Reset & Base ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ─── Typography ────────────────────────────────────────── */
h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h3 {
  font-size: 1.1rem;
  font-weight: 700;
}
p {
  color: var(--text-muted);
}

/* ─── Utilities ─────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(64, 130, 109, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 20px rgba(64, 130, 109, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(64, 130, 109, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: white;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #111;
  color: white;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.store-btn:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.store-btn .store-icon {
  font-size: 1.8rem;
}
.store-btn .store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.store-btn .store-text span:first-child {
  font-size: 0.7rem;
  opacity: 0.7;
}
.store-btn .store-text strong {
  font-size: 1rem;
}
.store-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── Navbar ────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  padding: 5px;
}
.navbar-logo img {
  height: 65px;
  width: auto;
  filter: drop-shadow(0 0 6px #40826d) drop-shadow(0 0 10px #40826d);
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.navbar-links a:hover {
  color: var(--green-dark);
}
.navbar-links a.active {
  color: var(--green-dark);
}
.navbar-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: width var(--transition);
}
.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}
.navbar-cta {
  margin-left: 8px;
}

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

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 70% 50%,
      rgba(146, 232, 142, 0.22) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 80% at 10% 80%,
      rgba(64, 130, 109, 0.1) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.hero-eyebrow {
  margin-bottom: 20px;
}
.hero-title {
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-phones {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: flex-end;
}
.hero-phone {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease;
}
.hero-phone:nth-child(1) {
  transform: rotate(-4deg) translateY(10px);
  width: 190px;
}
.hero-phone:nth-child(2) {
  transform: rotate(3deg);
  width: 190px;
  z-index: 2;
}
.hero-phone:hover {
  transform: rotate(0) translateY(-6px) !important;
}

/* ─── Features ──────────────────────────────────────────── */
.features {
  background: var(--bg);
}
.features-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}
.features-header p {
  margin-top: 12px;
  font-size: 1.05rem;
}
/* .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.feature-card h3 {
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.92rem;
  line-height: 1.65;
} */
/* ══════════════════════════════════════════════
   FEATURES — TAB VERSION
══════════════════════════════════════════════ */

.features-tabs {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

/* ── Tab nav bar ── */
.features-tab-nav {
  display: flex;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--bg);
}
.features-tab-nav::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 18px 22px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.18s,
    border-color 0.18s,
    color 0.18s;
  font-family: var(--font-body);
  color: var(--text-muted);
  flex-shrink: 0;
}
.tab-btn:hover {
  background: rgba(64, 130, 109, 0.05);
  color: var(--text);
}
.tab-btn.active {
  border-bottom-color: var(--green);
  color: var(--green);
  background: var(--surface);
}

.tab-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.5;
}
.tab-btn.active .tab-num {
  opacity: 1;
}

.tab-label {
  font-size: 0.88rem;
  font-weight: 600;
}

/* ── Tab panels ── */
.features-tab-content {
  position: relative;
  min-height: 320px;
}

.tab-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 52px 48px;
  animation: tab-fade 0.3s ease;
}
.tab-panel.active {
  display: grid;
}

@keyframes tab-fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Left: text ── */
.tab-panel-text h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  margin-bottom: 14px;
  color: var(--text);
}
.tab-panel-text p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.tab-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tab-bullets li {
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tab-bullets li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  flex-shrink: 0;
}

/* ── Right: visual card ── */
.tab-panel-visual {
  display: flex;
  justify-content: center;
}

.tab-visual-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.visual-caption {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
}

/* Scan visual */
.visual-screen {
  background: linear-gradient(150deg, #1a3a30, #0d2018);
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  overflow: hidden;
  min-height: 100px;
  align-items: flex-end;
}
.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--green-light),
    transparent
  );
  animation: scan-move 2s ease-in-out infinite;
}
@keyframes scan-move {
  0% {
    top: 0%;
    opacity: 1;
  }
  90% {
    top: 100%;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
.scan-chip {
  background: rgba(146, 232, 142, 0.18);
  border: 1px solid rgba(146, 232, 142, 0.4);
  color: var(--green-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
}

/* Recipe list visual */
.recipe-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.recipe-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.85rem;
}
.recipe-row.best {
  border-color: var(--green);
  background: rgba(64, 130, 109, 0.05);
}
.recipe-name {
  font-weight: 500;
}
.recipe-match {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
}

/* Waste stat visual */
.waste-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
}
.waste-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--green);
  line-height: 1;
}
.waste-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* Favorites visual */
.fav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fav-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
}
.fav-heart {
  color: #e05252;
  font-size: 1rem;
}

/* Diet chips visual */
.diet-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 8px 0;
}
.diet-chip {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  background: var(--surface);
  transition: all 0.2s;
}
.diet-chip.active {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: white;
  border-color: transparent;
}

/* Speed bars visual */
.speed-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.speed-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 500;
}
.speed-time {
  color: var(--green);
  font-weight: 700;
}
.speed-bar {
  height: 8px;
  background: var(--border);
  border-radius: 50px;
  overflow: hidden;
}
.speed-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 50px;
  animation: bar-grow 0.6s ease both;
}
@keyframes bar-grow {
  from {
    width: 0 !important;
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .tab-panel {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 24px;
  }
  .tab-panel-visual {
    order: -1;
  }
  .tab-visual-card {
    max-width: 100%;
  }
  .tab-btn {
    padding: 14px 16px;
  }
}

/* ─── Screenshots ───────────────────────────────────────── */
.screenshots {
  background: var(--bg-soft);
  overflow: hidden;
}
.screenshots-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}
.screenshots-header p {
  margin-top: 12px;
}
.screenshots-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  align-items: flex-start;
}
.screenshot-item {
  text-align: center;
  max-width: 220px;
}
.screenshot-item img {
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.35s ease;
  width: 100%;
}
.screenshot-item:hover img {
  transform: translateY(-8px);
}
.screenshot-label {
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ─── Why Choose Us ─────────────────────────────────────── */
.why {
  background: var(--bg);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-content .section-label {
  margin-bottom: 16px;
}
.why-content h2 {
  margin-bottom: 16px;
}
.why-content > p {
  margin-bottom: 36px;
  font-size: 1.02rem;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(64, 130, 109, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 0.9rem;
  margin-top: 2px;
}
.why-item-text strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.why-item-text p {
  font-size: 0.88rem;
}
.why-visual {
  background: var(--gradient);
  border-radius: 28px;
  padding: 48px 40px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-stat {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 20px;
}
.why-stat:last-child {
  border: none;
  padding: 0;
}
.why-stat .number {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.why-stat .label {
  font-size: 0.88rem;
  opacity: 0.8;
  margin-top: 2px;
}

/* ─── Reviews ───────────────────────────────────────────── */
.reviews {
  background: var(--bg-soft);
}
.reviews-header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 56px;
}
.reviews-header p {
  margin-top: 12px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.review-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}
.reviewer-name {
  font-weight: 700;
  font-size: 0.9rem;
}
.reviewer-country {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── CTA Banner ────────────────────────────────────────── */
.cta-banner {
  background: var(--gradient);
  padding: 80px 0;
  text-align: center;
  color: white;
}
.cta-banner h2 {
  color: white;
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  font-size: 1.05rem;
}
.cta-banner .store-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.cta-banner .store-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}
.cta-banner .store-buttons {
  justify-content: center;
}

/* ─── Footer ────────────────────────────────────────────── */
footer {
  background: #111;
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 0 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}
.footer-logo {
  filter: brightness(0) invert(1);
  height: 32px;
  width: auto;
}
.footer-col h4 {
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: var(--green-light);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.social-icons {
  display: flex;
  gap: 14px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
}
.social-icon:hover {
  border-color: var(--green-light);
  color: var(--green-light);
  background: rgba(146, 232, 142, 0.08);
}
.footer-contact-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.footer-contact-btn:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: white;
}

/* ─── Modal ─────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  max-width: 480px;
  width: 90%;
  transform: translateY(20px);
  transition: transform var(--transition);
}
.modal-overlay.open .modal {
  transform: translateY(0);
}
.modal h3 {
  margin-bottom: 8px;
}
.modal p {
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.modal input,
.modal textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  margin-bottom: 12px;
  transition: border-color var(--transition);
}
.modal input:focus,
.modal textarea:focus {
  outline: none;
  border-color: var(--green-dark);
}
.modal textarea {
  height: 100px;
  resize: vertical;
}
.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 4px;
}
.modal-close {
  cursor: pointer;
}

/* ─── Animations ────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-actions {
    align-items: center;
  }
  .hero-phones {
    margin-top: 40px;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .screenshots-row {
    gap: 16px;
  }
  .why-inner {
    grid-template-columns: 1fr;
  }
  .why-visual {
    order: -1;
  }
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 70px 0;
  }
  .navbar-links,
  .navbar-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .screenshots-row {
    flex-direction: column;
    align-items: center;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .hero-phones {
    flex-direction: column;
    align-items: center;
  }
  .hero-phone {
    width: 200px !important;
    transform: none !important;
  }
}

.navbar-mobile-open .navbar-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  gap: 16px;
}
.navbar-mobile-open .navbar-cta {
  display: block;
  margin: 0;
  padding: 0 24px 20px;
}
