/* ============================================================
   SpestiBG — Website Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,700&family=Inter:wght@400;500;600&display=swap');

/* --- Variables --- */
:root {
  --primary:        #22c55e;
  --primary-light:  #4ade80;
  --primary-dark:   #16a34a;
  --cyan:           #06b6d4;
  --accent:         #f59e0b;

  --bg:             #070c14;
  --bg-1:           #0d1525;
  --bg-card:        rgba(255, 255, 255, 0.04);
  --bg-card-hover:  rgba(255, 255, 255, 0.07);

  --border:         rgba(255, 255, 255, 0.08);
  --border-hover:   rgba(255, 255, 255, 0.16);

  --text:           #f1f5f9;
  --text-muted:     #94a3b8;
  --text-dim:       #475569;

  --radius:         16px;
  --radius-lg:      24px;
  --radius-xl:      32px;
  --nav-h:          62px;

  --shadow:         0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:      0 24px 80px rgba(0,0,0,0.5);
  --glow:           0 0 40px rgba(34,197,94,0.18);
  --glow-strong:    0 0 60px rgba(34,197,94,0.35);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.1rem; font-weight: 700; }

.gradient-text {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 100px 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(34,197,94,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(34,197,94,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-hover);
}
.btn-outline:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  color: var(--primary-light);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(7,12,20,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  flex-wrap: nowrap;
  gap: 8px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 50px; height: 50px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1.35rem;
}
.logo-text span { color: var(--primary-light); }

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-card); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  display: flex; align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px; gap: 2px;
}
.lang-btn {
  padding: 5px 12px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer; border: none;
  background: transparent; color: var(--text-muted);
  transition: all 0.2s;
}
.lang-btn.active { background: var(--primary); color: #fff; }

.nav-cta {
  display: none;
  padding: 8px 20px;       /* match nav link height, not full hero button */
  font-size: 0.88rem;
}
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }

.nav-links a.active-link {
  color: var(--primary-light);
  background: rgba(34,197,94,0.1);
}

.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 768px) { .hamburger { display: none; } }

.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(7,12,20,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-110%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0s linear 0.3s;
  z-index: 999;
}
.mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.3s ease, visibility 0s linear 0s;
}
.mobile-menu a {
  padding: 14px 16px; border-radius: var(--radius);
  font-weight: 500; color: var(--text-muted);
  transition: all 0.2s;
}
.mobile-menu a:hover { background: var(--bg-card); color: var(--text); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 55%, rgba(34,197,94,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 25%, rgba(6,182,212,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 65% 85%, rgba(245,158,11,0.06) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 0%, transparent 100%);
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 100px;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; padding: 100px 0; }
}

.hero-content { max-width: 580px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 100px;
  font-size: 0.83rem; font-weight: 600; color: var(--primary-light);
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--primary); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 { margin-bottom: 24px; }

.hero-sub {
  font-size: 1.1rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 32px;
  margin-top: 52px; padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem; font-weight: 800;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

/* --- Phone Mockup --- */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.phone-wrap {
  position: relative;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.phone-glow {
  position: absolute; inset: -50px;
  background: radial-gradient(ellipse at center, rgba(34,197,94,0.22) 0%, transparent 70%);
  z-index: 0; border-radius: 50%;
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,100% { opacity: 0.8; }
  50% { opacity: 1.2; }
}

.phone {
  position: relative; z-index: 1;
  width: 264px; height: 544px;
  background: #0d1525;
  border-radius: 46px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.6),
    0 40px 100px rgba(0,0,0,0.65),
    inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.phone-notch {
  width: 96px; height: 28px;
  background: #070c14;
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.phone-camera {
  width: 10px; height: 10px;
  background: #1c2a45;
  border-radius: 50%;
  border: 2px solid #0d1525;
}
.phone-screen {
  flex: 1;
  padding: 8px 12px 14px;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 8px;
}
.app-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 2px;
}
.app-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem; font-weight: 800; color: var(--text);
}
.app-updated { font-size: 0.6rem; color: var(--text-dim); }

.store-chips { display: flex; gap: 5px; overflow: hidden; }
.store-chip {
  padding: 3px 9px; border-radius: 100px;
  font-size: 0.56rem; font-weight: 700; border: 1px solid;
  white-space: nowrap;
}
.chip-lidl       { background: rgba(0,80,170,0.18); border-color: rgba(0,80,170,0.4);   color: #60a5fa; }
.chip-kaufland   { background: rgba(204,0,0,0.15);  border-color: rgba(204,0,0,0.35);   color: #f87171; }
.chip-billa      { background: rgba(255,102,0,0.15);border-color: rgba(255,102,0,0.35); color: #fb923c; }
.chip-fantastico { background: rgba(0,100,0,0.2);   border-color: rgba(0,200,0,0.3);    color: #86efac; }

.deal-card-mini {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 11px;
  padding: 9px 10px;
  display: flex; align-items: center; gap: 9px;
}
.deal-emoji {
  font-size: 1.35rem;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 8px; flex-shrink: 0;
}
.deal-info { flex: 1; min-width: 0; }
.deal-name {
  font-size: 0.63rem; font-weight: 600; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.deal-store { font-size: 0.56rem; color: var(--text-muted); margin-top: 2px; }
.deal-price-col { text-align: right; flex-shrink: 0; }
.deal-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem; font-weight: 800; color: var(--primary-light);
}
.deal-orig { font-size: 0.55rem; color: var(--text-dim); text-decoration: line-through; }
.deal-badge {
  display: inline-block;
  background: var(--primary); color: #fff;
  font-size: 0.5rem; font-weight: 700;
  padding: 1px 5px; border-radius: 4px; margin-top: 2px;
}

/* Floating tags */
.phone-tag {
  position: absolute;
  background: rgba(13,21,37,0.92);
  border: 1px solid var(--border-hover);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600;
  box-shadow: var(--shadow);
  white-space: nowrap;
  z-index: 2;
}
.phone-tag-l { left: -72px; top: 32%; }
.phone-tag-r { right: -72px; top: 58%; }
.tag-icon { font-size: 1.1rem; }
.tag-text { display: flex; flex-direction: column; }
.tag-sub { font-size: 0.63rem; color: var(--text-muted); font-weight: 400; }
@media (max-width: 1220px) { .phone-tag { display: none; } }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 100px;
  font-size: 0.75rem; font-weight: 700;
  color: var(--primary-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem; line-height: 1.7;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  background: var(--bg-1);
  position: relative; overflow: hidden;
}
.features::before, .how::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px)  { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4,1fr); } }

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow), var(--glow);
}
.feature-card:hover::after { transform: scaleX(1); }

.feature-icon {
  width: 52px; height: 52px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ============================================================
   STORES
   ============================================================ */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
@media (min-width: 768px) { .stores-grid { grid-template-columns: repeat(4,1fr); } }

.store-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.store-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.store-logo-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
}
.store-card h3 {
  font-size: 1.15rem; margin-bottom: 6px;
}
.store-desc { font-size: 0.82rem; color: var(--text-muted); }

.store-lidl       .store-logo-wrap { background: rgba(0,80,170,0.15);  border: 1px solid rgba(0,80,170,0.3);  }
.store-kaufland   .store-logo-wrap { background: rgba(204,0,0,0.12);   border: 1px solid rgba(204,0,0,0.25);  }
.store-billa      .store-logo-wrap { background: rgba(255,102,0,0.12); border: 1px solid rgba(255,102,0,0.25);}
.store-fantastico .store-logo-wrap { background: rgba(0,100,0,0.15);   border: 1px solid rgba(0,180,0,0.25);  }

.store-lidl       h3 { color: #60a5fa; }
.store-kaufland   h3 { color: #f87171; }
.store-billa      h3 { color: #fb923c; }
.store-fantastico h3 { color: #86efac; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--bg-1); position: relative; overflow: hidden; }

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
}
@media (min-width: 768px) { .how-grid { grid-template-columns: repeat(4,1fr); } }

.how-step { text-align: center; position: relative; }

.step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1.25rem; color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(34,197,94,0.35);
}
.how-step h3 { margin-bottom: 10px; }
.how-step p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

@media (min-width: 768px) {
  .how-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(50% + 38px);
    right: calc(-50% + 38px);
    height: 1px;
    background: linear-gradient(90deg, var(--primary), var(--cyan));
    opacity: 0.25;
  }
}

/* ============================================================
   DOWNLOAD CTA
   ============================================================ */
.download { position: relative; }

.download-inner {
  background: linear-gradient(135deg, rgba(34,197,94,0.07) 0%, rgba(6,182,212,0.05) 100%);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  text-align: center;
  position: relative; overflow: hidden;
}
.download-inner::before {
  content: '';
  position: absolute;
  top: -60%; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(34,197,94,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.download-inner h2 {
  max-width: 480px; margin: 0 auto 16px;
}
.download-inner > p {
  color: var(--text-muted);
  max-width: 400px; margin: 0 auto 40px;
  font-size: 1.05rem;
}
.download-btns {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}

.app-store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 28px;
  background: var(--text); color: var(--bg);
  border-radius: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  transition: all 0.25s;
  text-decoration: none;
}
.app-store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,255,255,0.15);
}
.app-store-btn .btn-sub {
  font-size: 0.68rem; font-weight: 400;
  display: block; opacity: 0.65;
}
.app-store-btn .btn-main {
  font-size: 1.05rem; display: block; line-height: 1.2;
}
.coming-soon {
  margin-top: 20px;
  font-size: 0.8rem; color: var(--text-dim);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-inner {
  display: flex; flex-direction: column; gap: 40px;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}
.footer-brand p {
  color: var(--text-muted); font-size: 0.85rem;
  margin-top: 12px; max-width: 240px; line-height: 1.65;
}
.footer-links { display: flex; gap: 56px; }
.footer-col h4 {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-dim); margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.9rem; color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--primary-light); }

.footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
  align-items: center; text-align: center;
  color: var(--text-dim); font-size: 0.82rem;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ============================================================
   INNER PAGES (Privacy / Contact)
   ============================================================ */
.inner-hero {
  padding: calc(var(--nav-h) + 64px) 0 56px;
  text-align: center;
}
.inner-hero h1 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 16px; }
.inner-hero p {
  color: var(--text-muted); font-size: 1.05rem;
  max-width: 480px; margin: 0 auto;
}

.content-block {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 100px;
}
.content-block h2 {
  font-size: 1.25rem; margin-top: 48px; margin-bottom: 14px;
  color: var(--text);
}
.content-block h2:first-child { margin-top: 0; }
.content-block p,
.content-block li {
  color: var(--text-muted); font-size: 0.95rem;
  line-height: 1.8; margin-bottom: 12px;
}
.content-block ul { list-style: disc; padding-left: 22px; }
.content-block a {
  color: var(--primary-light);
  text-decoration: underline; text-underline-offset: 3px;
}
.updated-date {
  display: inline-block;
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.82rem; color: var(--text-muted);
  margin-bottom: 40px;
}

/* Contact */
.contact-wrap {
  max-width: 520px;
  margin: 0 auto;
  padding-bottom: 100px;
  display: flex; flex-direction: column; gap: 20px;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
}
.contact-icon { font-size: 2.4rem; margin-bottom: 16px; }
.contact-card h2 { font-size: 1.3rem; margin-bottom: 12px; }
.contact-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.email-placeholder {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; padding: 12px 20px;
  background: rgba(34,197,94,0.06);
  border: 1px dashed rgba(34,197,94,0.3);
  border-radius: 10px;
  color: var(--text-dim); font-size: 0.85rem;
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 640px) {
  section { padding: 72px 0; }
  .hero-stats { gap: 20px; }
  .stat-value { font-size: 1.3rem; }
  .phone { width: 224px; height: 462px; }
  .phone-notch { width: 80px; }
  .download-inner { padding: 48px 20px; }
  .footer-links { gap: 32px; }
}
