/* Modern Reset & Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

:root {
  --bg-main: #090a0d;
  --bg-card: #12141a;
  --bg-glass: rgba(18, 20, 26, 0.85);
  --accent-orange: #ff5500;
  --accent-light: #ff7700;
  --accent-amber: #ffaa00;
  --accent-glow: rgba(255, 85, 0, 0.35);
  --text-main: #ffffff;
  --text-muted: #a0a6b5;
  --text-dim: #6b7280;
  --border-card: rgba(255, 85, 0, 0.15);
  --border-hover: rgba(255, 85, 0, 0.5);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --shadow-glow: 0 10px 30px rgba(255, 85, 0, 0.2);
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* Background Texture Glows */
.bg-glow-top {
  position: absolute;
  top: -100px;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,85,0,0.18) 0%, rgba(9,10,13,0) 70%);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-mid {
  position: absolute;
  top: 45%;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,119,0,0.12) 0%, rgba(9,10,13,0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 30%, #ffaa00 70%, #ff5500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-accent {
  color: var(--accent-orange);
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Navigation Header */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(9, 10, 13, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 0;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

/* Brand SVG Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-badge {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.25), rgba(255, 170, 0, 0.1));
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 0.05em;
}

.brand-text span {
  color: var(--accent-orange);
}

/* Nav Menu Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6600 0%, #ff3300 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(255, 85, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 85, 0, 0.6);
  background: linear-gradient(135deg, #ff7711 0%, #ff4411 100%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  background: rgba(255, 85, 0, 0.05);
}

/* Mobile Toggle Button - High Contrast Visible Style */
.mobile-toggle {
  display: flex !important;
  width: 44px;
  height: 44px;
  background: #ff5500 !important;
  border: 1px solid #ff7700 !important;
  border-radius: var(--radius-sm);
  color: #ffffff !important;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(255, 85, 0, 0.6);
  z-index: 9999 !important;
  position: absolute !important;
  right: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.mobile-toggle:hover {
  background: #ff6600 !important;
}

/* Hide mobile toggle on large desktop screens */
@media screen and (min-width: 1025px) {
  .mobile-toggle {
    display: none !important;
  }
}

/* Hero Section */
.hero-section {
  padding-top: 140px;
  padding-bottom: 60px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 85, 0, 0.1);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-amber);
  margin-bottom: 24px;
}

.hero-tag svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-orange);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  word-wrap: break-word;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  width: fit-content;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-card);
  margin-right: -10px;
  object-fit: cover;
}

.proof-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.proof-text strong {
  color: var(--text-main);
}

.proof-text svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-orange);
}

/* Hero Visual Asset */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), var(--shadow-glow);
}

.hero-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-img-wrapper:hover img {
  transform: scale(1.03);
}

/* Stats Bar Section */
.stats-bar {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 85, 0, 0.1);
  border: 1px solid rgba(255, 85, 0, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-orange);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px auto;
}

.section-badge {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-orange);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

/* Produse Vedeta / Street Favorites (3 Grid) */
.section-favorites {
  padding: 80px 0;
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card-product {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.card-product:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), var(--shadow-glow);
}

.card-img-container {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card-product:hover .card-img-container img {
  transform: scale(1.06);
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.card-meta svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-orange);
}

.card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.card-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-amber);
}

/* Category Grid (6 Grid) */
.section-categories {
  padding: 60px 0;
}

.cards-grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.card-category {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.3s ease;
}

.card-category:hover {
  border-color: var(--accent-orange);
  background: rgba(255, 85, 0, 0.05);
  transform: translateY(-4px);
}

.cat-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px auto;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.cat-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Promo Banner Section */
.section-promo {
  padding: 60px 0;
}

.promo-banner {
  background: linear-gradient(135deg, rgba(255,85,0,0.15) 0%, rgba(18,20,26,0.95) 100%), var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.promo-title {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.promo-title svg {
  width: 32px;
  height: 32px;
  fill: var(--accent-orange);
}

.promo-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* How It Works (4 Steps Grid) */
.section-process {
  padding: 80px 0;
}

.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  position: relative;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-orange);
  opacity: 0.8;
  margin-bottom: 12px;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* App Section */
.section-app {
  padding: 80px 0;
}

.app-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.app-feature-list {
  list-style: none;
  margin: 24px 0 32px 0;
}

.app-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.app-feature-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-orange);
  flex-shrink: 0;
}

.app-stores {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.app-store-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.app-store-btn:hover {
  border-color: var(--accent-orange);
  background: rgba(255, 85, 0, 0.1);
  color: var(--accent-orange);
}

.app-mockup-img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow);
  display: block;
  margin: 0 auto;
}

/* Testimonials (3 Grid) */
.section-testimonials {
  padding: 80px 0;
}

.card-testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-orange);
}

.user-name {
  font-size: 0.95rem;
  font-weight: 700;
}

.user-role {
  font-size: 0.75rem;
  color: var(--accent-amber);
  display: flex;
  align-items: center;
  gap: 4px;
}

.user-role svg {
  width: 12px;
  height: 12px;
  fill: var(--accent-amber);
}

.star-rating-svg {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.star-rating-svg svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-amber);
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Footer & Legal */
.footer {
  background: #060709;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0 24px 0;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr) 1.5fr;
  gap: 32px;
  margin-bottom: 48px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text-main);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-orange);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.newsletter-input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--accent-orange);
}

/* Legal Footer Bar */
.legal-footer {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.company-details {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.anpc-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.anpc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.anpc-btn svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-orange);
}

.anpc-btn:hover {
  border-color: var(--accent-orange);
  color: var(--text-main);
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 16px;
}

/* Modal Popup Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  color: var(--text-main);
  box-shadow: var(--shadow-glow);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

.modal-body h3 {
  color: var(--accent-orange);
  margin: 20px 0 10px 0;
  font-size: 1.2rem;
}

.modal-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 380px;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  padding: 20px;
  z-index: 9000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.cookie-text svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-amber);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   DESKTOP RESPONSIVE ADAPTATIONS (min-width: 1025px)
   ========================================================================== */
@media screen and (min-width: 1025px) {
  .mobile-toggle {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .navbar .container {
    padding: 0 16px !important;
  }

  .brand-text {
    font-size: 1.1rem !important;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: rgba(12, 14, 20, 0.98);
    backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: center;
    padding: 40px 24px;
    gap: 28px;
    border-bottom: 1px solid var(--border-card);
    display: none;
    z-index: 1001;
    box-shadow: 0 20px 40px rgba(0,0,0,0.9);
  }

  .nav-menu.active {
    display: flex !important;
  }

  .nav-menu .nav-link {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
  }

  .nav-actions {
    display: none !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-proof {
    margin-left: auto;
    margin-right: auto;
  }

  .cards-grid-3 {
    grid-template-columns: 1fr !important;
  }

  .cards-grid-6 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .cards-grid-4 {
    grid-template-columns: 1fr !important;
  }

  .stats-bar {
    grid-template-columns: 1fr !important;
    gap: 16px;
    padding: 20px;
  }

  .app-container {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 1.85rem !important;
    line-height: 1.2;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-visual {
    margin-top: 16px;
    width: 100%;
  }

  .hero-img-wrapper {
    max-width: 100%;
  }

  .promo-banner {
    padding: 32px 16px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: 100%;
    bottom: 16px;
  }
}
