/* CSS DESIGN SYSTEM - ULTRA PREMIUM VERSION WITH TRANSPARENT PNG ASSETS */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Outfit:wght@700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary-blue: #0066FF;
  --primary-blue-hover: #0052CC;
  --accent-orange: #FF6B00;
  --dark-navy: #0B192C;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --bg-light: #F8FAFC;
  --border-light: #E2E8F0;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-script: 'Caveat', cursive;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-light);
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-orange { color: var(--accent-orange) !important; }
.text-white { color: #FFFFFF !important; }

/* TOAST NOTIFICATIONS */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast-item {
  pointer-events: auto;
  background: rgba(11, 25, 44, 0.92);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn 0.3s ease-out forwards;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo-group {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-logo-img-white {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-item {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}

.nav-item:hover,
.nav-item.active {
  color: var(--primary-blue);
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-blue);
  border-radius: 2px;
}

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

.search-btn-round {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  color: #64748B;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.search-btn-round:hover {
  background: #EBF5FF;
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.login-btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-light);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.login-btn-outline:hover {
  border-color: var(--primary-blue);
  background: #F0F6FF;
}

.signup-btn-solid {
  background: var(--primary-blue);
  border: none;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.signup-btn-solid:hover {
  background: var(--primary-blue-hover);
}

.header-tagline-stacked {
  font-family: var(--font-script);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  color: #0F172A;
  text-align: right;
  margin-left: 15px;
  transform: rotate(-2deg);
  max-height: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #0F172A;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 70px 0 110px 0;
  background: #0B192C;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 25, 44, 0.72) 0%, rgba(11, 25, 44, 0.88) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-text-block {
  max-width: 650px;
  margin-bottom: 36px;
  color: #FFFFFF;
}

.eyebrow-tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #E2E8F0;
  display: block;
  margin-bottom: 14px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.hero-description {
  font-size: 16px;
  color: #E2E8F0;
  line-height: 1.5;
  font-weight: 400;
}

/* SEARCH CARD */
.search-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  max-width: 880px;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 6px 12px;
}

.search-input-col {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.search-icon {
  width: 20px;
  height: 20px;
  color: #64748B;
  flex-shrink: 0;
}

.search-input-col input {
  width: 100%;
  border: none;
  background: transparent;
  padding: 12px 0;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  outline: none;
}

.search-input-col input::placeholder {
  color: #94A3B8;
}

.search-divider {
  width: 1px;
  height: 32px;
  background: #CBD5E1;
}

.btn-search-solid {
  background: var(--primary-blue);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  border: none;
  padding: 12px 34px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-search-solid:hover {
  background: var(--primary-blue-hover);
}

.location-quick-action {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding-left: 4px;
  font-size: 13px;
}

.quick-lbl {
  color: #64748B;
  font-weight: 500;
}

.btn-location-detect {
  background: transparent;
  border: 1px solid #CBD5E1;
  color: #334155;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  transition: all 0.2s;
}

.btn-location-detect:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background: #F0F6FF;
}

/* 8 CATEGORY CARDS SECTION */
.categories-section {
  padding: 40px 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 12px;
}

.category-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 18px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-blue);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.cat-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.cat-blue { background: #EBF5FF; color: #0066FF; }
.cat-green { background: #E6F4EA; color: #107C41; }
.cat-orange { background: #FEF3C7; color: #D97706; }
.cat-red { background: #FEE2E2; color: #DC2626; }
.cat-cyan { background: #E0F2FE; color: #0284C7; }
.cat-gold { background: #FEF9C3; color: #CA8A04; }
.cat-purple { background: #F3E8FF; color: #9333EA; }
.cat-slate { background: #F1F5F9; color: #475569; }

.cat-label {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  line-height: 1.2;
}

/* FEATURED NEAR YOU SECTION */
.featured-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
}

.section-subtext {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.link-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

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

.place-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.place-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.place-thumb {
  width: 100%;
  height: 135px;
  overflow: hidden;
  position: relative;
}

.favorite-heart-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  border: none;
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 5;
}

.favorite-heart-btn:hover,
.favorite-heart-btn.active {
  color: #DC2626;
  background: #FFFFFF;
  transform: scale(1.1);
}

.place-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.place-card:hover .place-img {
  transform: scale(1.05);
}

.place-details {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.place-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 2px;
}

.place-location {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.place-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.rating .score {
  font-weight: 700;
  font-size: 13px;
}

.rating .reviews {
  color: var(--text-muted);
  font-size: 12px;
}

.distance {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.place-badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-top: auto;
}

.badge-blue { background: #E0F2FE; color: #0284C7; }
.badge-gray { background: #F1F5F9; color: #475569; }
.badge-sky { background: #E0F2FE; color: #0369A1; }
.badge-light-blue { background: #EFF6FF; color: #1D4ED8; }

/* 3 ACTION BANNER CARDS */
.action-cards-section {
  padding: 20px 0 60px 0;
}

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

.action-card {
  position: relative;
  height: 210px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.action-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.action-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 25, 44, 0.92) 0%, rgba(11, 25, 44, 0.7) 100%);
  z-index: 2;
}

.action-content {
  position: relative;
  z-index: 3;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFFFFF;
}

.action-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.action-icon-glass {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
}

.action-desc {
  font-size: 13px;
  color: #CBD5E1;
  max-width: 90%;
}

.btn-action-pill {
  align-self: flex-start;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  transition: all 0.2s;
}

.btn-action-pill:hover {
  background: #FFFFFF;
  color: var(--dark-navy);
  border-color: #FFFFFF;
}

.action-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.tour-badge-box {
  border: 2px solid #FFFFFF;
  padding: 4px 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.1;
  background: rgba(0, 0, 0, 0.4);
}

/* COMMUNITY BANNER SECTION */
.community-section {
  background: var(--dark-navy);
  color: #FFFFFF;
  padding: 60px 0;
}

.community-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  align-items: center;
  gap: 30px;
}

.community-heading {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 12px;
}

.community-desc {
  font-size: 14px;
  color: #CBD5E1;
  margin-bottom: 24px;
}

.btn-community-join {
  background: #FFFFFF;
  color: var(--dark-navy);
  font-weight: 800;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: all 0.2s;
}

.btn-community-join:hover {
  background: var(--primary-blue);
  color: #FFFFFF;
}

.community-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 16px;
  border-radius: 14px;
}

.stat-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-icon-svg {
  color: #FFFFFF;
  margin-bottom: 8px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
}

.stat-label {
  font-size: 11px;
  color: #94A3B8;
}

.community-handwritten {
  font-family: var(--font-script);
  font-size: 34px;
  color: #FFFFFF;
  line-height: 1.1;
  text-align: right;
  transform: rotate(-3deg);
}

/* ARTICLES SECTION */
.articles-section {
  padding: 60px 0;
  background: #FFFFFF;
}

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

.article-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.article-thumb {
  width: 100%;
  height: 155px;
  overflow: hidden;
}

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

.article-info {
  padding: 16px;
}

.article-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 12px;
}

.article-date {
  font-size: 12px;
  color: var(--text-muted);
}

/* APP DOWNLOAD SHOWCASE SECTION - TRANSPARENT PNG FLOATING PHONES */
.app-section {
  padding: 80px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
  overflow: hidden;
}

.app-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 50px;
}

.app-photo-showcase-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Clean Transparent PNG Mobile Phones Floating directly on page background */
.app-photo-img-transparent {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.12));
  transition: transform 0.4s ease;
}

.app-photo-img-transparent:hover {
  transform: translateY(-6px) scale(1.02);
}

.app-badge-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary-blue);
  background: #EBF5FF;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.app-heading {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 14px;
}

.app-subtext {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.store-badge-row {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
}

.store-badge {
  background: #000000;
  color: #FFFFFF;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s;
}

.store-badge:hover {
  transform: translateY(-2px);
}

.store-small { font-size: 9px; display: block; text-transform: uppercase; }
.store-bold { font-size: 14px; font-weight: 700; line-height: 1; }

.app-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.feature-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #E0F2FE;
  color: #0284C7;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FOOTER */
.footer {
  background: var(--dark-navy);
  color: #FFFFFF;
  padding: 40px 0 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a { color: #94A3B8; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  font-size: 13px;
  color: #94A3B8;
}

/* MODALS */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 25, 44, 0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-box {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 32px;
  width: 100%;
  max-width: 440px;
  position: relative;
  display: none;
}

.modal-box.active { display: block; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #64748B;
  cursor: pointer;
}

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 6px; }
.form-group input { width: 100%; padding: 10px 14px; border: 1px solid var(--border-light); border-radius: 8px; outline: none; }

.btn-modal-blue {
  width: 100%;
  background: var(--primary-blue);
  color: #FFF;
  font-weight: 700;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 8px;
}

.modal-list { display: flex; flex-direction: column; gap: 12px; }
.modal-item { display: flex; align-items: center; justify-content: space-between; padding: 12px; background: #F8FAFC; border: 1px solid var(--border-light); border-radius: 8px; }
.btn-mini-apply { background: var(--primary-blue); color: #FFF; border: none; padding: 6px 12px; border-radius: 6px; font-weight: 700; cursor: pointer; }

@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(5, 1fr); }
  .places-grid { grid-template-columns: repeat(3, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .community-grid { grid-template-columns: 1fr 1fr; }
  .community-handwritten { display: none; }
  .app-grid { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .nav-links { display: none; position: absolute; top: 76px; left: 0; width: 100%; background: #FFF; flex-direction: column; padding: 20px; border-bottom: 1px solid var(--border-light); }
  .nav-links.active { display: flex; }
  .hero-title { font-size: 38px; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .places-grid { grid-template-columns: repeat(1, 1fr); }
  .action-cards-grid { grid-template-columns: repeat(1, 1fr); }
  .community-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 20px; text-align: center; }
}
