*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0A0A;
  --bg-2: #111111;
  --bg-3: #1A1A1A;
  --border: rgba(255,255,255,0.08);
  --text: #FFFFFF;
  --text-muted: rgba(255,255,255,0.5);
  --text-dim: rgba(255,255,255,0.3);
  --accent: #7C6EF5;
  --accent-2: #5BE4A4;
  --radius: 1rem;
  --radius-sm: 0.5rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===== ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate="slide-left"] {
  opacity: 0;
  transform: translateX(40px);
}
[data-animate].visible {
  opacity: 1;
  transform: translate(0);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Space Grotesk', sans-serif;
}
.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
}
.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: white;
  color: black !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  gap: 4rem;
  flex-wrap: wrap;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: pulse-glow 6s ease-in-out infinite;
}
.glow-1 {
  width: 600px; height: 600px;
  background: rgba(124, 110, 245, 0.15);
  top: -200px; left: -100px;
}
.glow-2 {
  width: 400px; height: 400px;
  background: rgba(91, 228, 164, 0.1);
  bottom: -100px; right: 0;
  animation-delay: -3s;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}
.hero-content {
  max-width: 560px;
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 300px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-weight: 500;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent-2);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.btn-primary {
  background: white;
  color: black;
  padding: 0.85rem 1.75rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.85rem 1.75rem;
  border-radius: 2rem;
  font-weight: 500;
  font-size: 0.95rem;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); color: var(--text); transform: translateY(-2px); }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  flex: 1;
  min-width: 300px;
  max-width: 580px;
  padding: 1.5rem 1rem;
}
.mockup {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.mockup-bar {
  background: var(--bg-2);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.mockup-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.mockup-bar span:nth-child(1) { background: #FF5F57; }
.mockup-bar span:nth-child(2) { background: #FEBC2E; }
.mockup-bar span:nth-child(3) { background: #28C840; }
.mockup-url {
  margin-left: 0.75rem;
  background: rgba(255,255,255,0.06);
  border-radius: 0.3rem;
  padding: 0.2rem 0.75rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  flex: 1;
  max-width: 240px;
}
.mockup-screen { position: relative; }
.mockup-overlay {
  padding: 0.75rem;
  background: var(--bg-2);
}
.mockup-nav-sim {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding: 0.4rem 0.5rem;
  background: #2D5016;
  border-radius: 0.3rem;
}
.sim-logo { width: 48px; height: 8px; background: rgba(255,255,255,0.5); border-radius: 2px; }
.sim-links { display: flex; gap: 0.4rem; }
.sim-links div { width: 28px; height: 6px; background: rgba(255,255,255,0.3); border-radius: 2px; }
.mockup-hero-sim {
  background: linear-gradient(135deg, #2D5016, #1f3a0f);
  border-radius: 0.4rem;
  padding: 1.5rem 1rem;
  margin-bottom: 0.5rem;
}
.sim-headline { width: 70%; height: 12px; background: rgba(255,255,255,0.8); border-radius: 3px; margin-bottom: 0.5rem; }
.sim-sub { width: 50%; height: 8px; background: rgba(255,255,255,0.4); border-radius: 3px; margin-bottom: 1rem; }
.sim-btn { width: 80px; height: 20px; background: #E8A317; border-radius: 10px; }
.mockup-grid-sim { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.4rem; }
.sim-card { background: var(--bg-3); border-radius: 0.3rem; overflow: hidden; border: 1px solid var(--border); }
.sim-img { height: 40px; }
.sim-title { margin: 0.3rem; height: 5px; background: var(--border); border-radius: 2px; }
.sim-price { margin: 0.2rem 0.3rem 0.3rem; height: 5px; width: 50%; background: rgba(232,163,23,0.4); border-radius: 2px; }
.mockup-badge {
  position: absolute;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}
.badge-pet { bottom: -1rem; left: 1rem; animation-delay: 0s; }
.badge-sub { top: 2rem; right: 1rem; animation-delay: -2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== THEMES SECTION ===== */
.themes-section {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* FILTER */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.45rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.filter-btn:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }
.filter-btn.active { background: white; border-color: white; color: black; }

/* THEME CARDS */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.theme-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.theme-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.theme-card.hidden { display: none; }
.theme-card-preview {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-3);
}
.theme-preview-mockup {
  width: 100%;
  height: 100%;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.tp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0.5rem;
  background: rgba(255,255,255,0.04);
  border-radius: 0.25rem;
  flex-shrink: 0;
}
.tp-logo { width: 40px; height: 6px; background: rgba(255,255,255,0.3); border-radius: 2px; }
.tp-links { display: flex; gap: 0.3rem; }
.tp-links div { width: 24px; height: 5px; background: rgba(255,255,255,0.2); border-radius: 2px; }
.tp-hero {
  flex: 0 0 40%;
  border-radius: 0.35rem;
  display: flex;
  align-items: center;
  padding: 0.75rem;
}
.tp-hero-text { width: 60%; }
.tp-h1 { height: 8px; background: rgba(255,255,255,0.7); border-radius: 3px; margin-bottom: 0.35rem; }
.tp-sub { height: 5px; width: 70%; background: rgba(255,255,255,0.4); border-radius: 3px; margin-bottom: 0.6rem; }
.tp-cta { height: 14px; width: 50px; border-radius: 10px; }
.tp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  flex: 1;
}
.tp-card { background: rgba(255,255,255,0.04); border-radius: 0.25rem; overflow: hidden; }
.tp-img { height: 100%; min-height: 24px; }
.theme-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.25s;
}
.theme-card:hover .theme-card-overlay { opacity: 1; }
.preview-btn {
  background: white;
  color: black;
  padding: 0.55rem 1.1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition: opacity 0.2s;
}
.preview-btn:hover { opacity: 0.85; }
.docs-btn {
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  padding: 0.55rem 1.1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  transition: border-color 0.2s;
}
.docs-btn:hover { border-color: white; }

/* Coming Soon */
.coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.cs-icon { font-size: 2rem; display: block; }
.cs-label {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.3rem 0.85rem;
  border-radius: 2rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Card info */
.theme-card-info { padding: 1.25rem; }
.theme-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.theme-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.tag {
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tag-pets { background: rgba(45,80,22,0.3); color: #86EFAC; border: 1px solid rgba(134,239,172,0.2); }
.tag-food { background: rgba(224,122,47,0.2); color: #FBB175; border: 1px solid rgba(251,177,117,0.2); }
.tag-fashion { background: rgba(224,200,150,0.1); color: #E0C896; border: 1px solid rgba(224,200,150,0.2); }
.tag-wellness { background: rgba(168,213,186,0.1); color: #A8D5BA; border: 1px solid rgba(168,213,186,0.2); }
.tag-new { background: rgba(124,110,245,0.2); color: #A5B4FC; border: 1px solid rgba(165,180,252,0.2); }
.tag-soon { background: rgba(255,255,255,0.05); color: var(--text-dim); border: 1px solid var(--border); }
.theme-presets { display: flex; gap: 0.3rem; align-items: center; }
.preset-dot { width: 12px; height: 12px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.1); }
.theme-card-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.theme-card-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.theme-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.theme-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
}
.theme-price-soon {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.btn-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.45rem 1rem;
  border-radius: 2rem;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.btn-card:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); }
.btn-notify { cursor: pointer; }

/* ===== WHY SECTION ===== */
.why-section {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.why-left h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.why-left p { color: var(--text-muted); line-height: 1.8; font-size: 1.05rem; }
.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.why-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color 0.25s;
}
.why-card:hover { border-color: rgba(255,255,255,0.15); }
.why-icon { font-size: 1.5rem; display: block; margin-bottom: 0.75rem; }
.why-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; }
.why-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--text); }
.modal h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.modal p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.modal form { display: flex; flex-direction: column; gap: 0.75rem; }
.modal input[type="email"] {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  width: 100%;
  transition: border-color 0.2s;
}
.modal input:focus { outline: none; border-color: var(--accent); }
.modal button[type="submit"] {
  background: white;
  color: black;
  border: none;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
}
.modal button[type="submit"]:hover { opacity: 0.85; }

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}
.contact-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.contact-inner h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.contact-inner p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 2.5rem; }
.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: left;
  transition: border-color 0.25s, transform 0.25s;
}
.contact-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.contact-icon { font-size: 1.5rem; display: block; margin-bottom: 0.75rem; }
.contact-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.contact-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 0.75rem;
  max-width: 240px;
  line-height: 1.6;
}
.footer-links-group h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.footer-links-group ul { list-style: none; }
.footer-links-group li { margin-bottom: 0.5rem; }
.footer-links-group a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links-group a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; }
  .hero-stats { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-visual { max-width: 100%; }
  .mockup-badge { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .themes-grid { grid-template-columns: 1fr; }
  .why-right { grid-template-columns: 1fr; }
  .contact-options { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
