/* ============================================
   NODAAR – World-Class Landing Page CSS
   Version 2.0
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Syne:wght@700;800&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #E11D48;
  --red-dark: #BE123C;
  --red-light: #FFF1F2;
  --gold: #F59E0B;
  --green: #10B981;
  --bg: #ffffff;
  --bg-2: #F9FAFB;
  --dark: #0D0D1A;
  --dark-2: #1A1A2E;
  --text: #374151;
  --muted: #6B7280;
  --border: #E5E7EB;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-display: 'Syne', sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: .3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes gradShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes wiggle {

  0%,
  100% {
    transform: rotate(0);
  }

  25% {
    transform: rotate(-4deg);
  }

  75% {
    transform: rotate(4deg);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(225, 29, 72, .4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(225, 29, 72, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) {
  transition-delay: .1s;
}

.reveal:nth-child(3) {
  transition-delay: .2s;
}

.reveal:nth-child(4) {
  transition-delay: .3s;
}

.reveal:nth-child(5) {
  transition-delay: .4s;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229, 231, 235, .6);
  transition: .3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, .07);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand img {
  height: 36px;
}

.nav-brand span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  position: relative;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width .3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 26px !important;
  background: var(--red) !important;
  color: #fff !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  box-shadow: 0 6px 20px rgba(225, 29, 72, .3);
  animation: pulse 2.5s infinite;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--dark-2);
  border-radius: 2px;
  transition: .3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 100px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #FFF0F3 0%, #FFFFFF 60%, #F9FAFB 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(225, 29, 72, .07) 0%, transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-inner {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFBEB;
  border: 1.5px solid #FDE68A;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #B45309;
  margin-bottom: 28px;
  animation: fadeUp .6s ease-out;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -1.5px;
  animation: fadeUp .6s ease-out .1s both;
}

.hero .red {
  color: var(--red);
  position: relative;
}

.hero .red::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #E11D48, #F43F5E);
  opacity: .2;
  border-radius: 4px;
}

.hero p {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeUp .6s ease-out .2s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .6s ease-out .3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: all .3s cubic-bezier(.22, 1, .36, 1);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 24px rgba(225, 29, 72, .35);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(225, 29, 72, .45);
}

.btn-outline {
  background: #fff;
  color: var(--dark-2);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.btn-icon {
  font-size: 1.2rem;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--dark);
  padding: 28px 0;
}

.stats-bar .container {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  animation: countUp .6s ease-out both;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--red);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, .55);
  margin-top: 4px;
  font-weight: 500;
}

.social-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 44px;
  animation: fadeUp .6s ease-out .5s both;
}

.social-strip span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #9CA3AF;
}

.social-strip a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--muted);
  transition: all .3s cubic-bezier(.22, 1, .36, 1);
}

.social-strip a:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-4px) scale(1.12);
  box-shadow: 0 8px 20px rgba(225, 29, 72, .3);
}

/* ── SECTION SHARED ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .label {
  display: inline-block;
  padding: 7px 20px;
  border-radius: 100px;
  background: var(--red-light);
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ── GUIDE / STEPS ── */
.guide {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.steps {
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 28px 32px;
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: all .4s cubic-bezier(.22, 1, .36, 1);
  position: relative;
  overflow: hidden;
}

.step::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--red), var(--gold));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s ease;
}

.step:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.step:hover::after {
  transform: scaleY(1);
}

.step:last-child {
  margin-bottom: 0;
}

.step-num {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  border: 2px solid;
  transition: transform .3s ease;
}

.step:hover .step-num {
  transform: scale(1.12);
  animation: wiggle .4s ease;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-body p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
}

.step-body strong {
  color: var(--dark-2);
}

.step-body em {
  color: var(--red);
  font-style: normal;
  font-weight: 600;
}

/* ── ROLES ── */
.roles {
  padding: 100px 0;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.role-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1.5px solid var(--border);
  transition: all .4s cubic-bezier(.22, 1, .36, 1);
  position: relative;
  overflow: hidden;
}

.role-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transition: transform .4s ease;
  transform-origin: left;
}

.role-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.role-card:hover::before {
  transform: scaleX(1);
}

.role-card.featured {
  border-color: #FECDD3;
  background: linear-gradient(145deg, #FFFBFB, #FFF5F6);
  box-shadow: 0 8px 30px rgba(225, 29, 72, .06);
}

.role-emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
  animation: float 3s ease-in-out infinite;
}

.role-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.role-card li {
  font-size: 1rem;
  color: var(--muted);
  padding: 5px 0;
  border-bottom: 1px solid #F9FAFB;
}

.role-card li:last-child {
  border-bottom: none;
}

.role-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
}

.role-link:hover {
  transform: translateX(6px);
  gap: 10px;
}

/* ── FEATURES STRIP ── */
.features {
  padding: 80px 0;
  background: var(--dark);
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.feature-item {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 36px 24px;
  text-align: center;
  transition: all .3s ease;
  border-radius: 4px;
}

.feature-item:hover {
  background: rgba(225, 29, 72, .1);
  border-color: rgba(225, 29, 72, .3);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.feature-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.6;
}

/* ── DOWNLOAD ── */
.download {
  padding: 100px 0;
  background: linear-gradient(-45deg, #E11D48, #BE123C, #F43F5E, #9F1239);
  background-size: 400% 400%;
  animation: gradShift 8s ease infinite;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.download-inner {
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.download h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.download p {
  color: rgba(255, 255, 255, .85);
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all .4s cubic-bezier(.22, 1, .36, 1);
  min-width: 180px;
}

.store-btn:hover {
  background: rgba(255, 255, 255, .22);
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
  border-color: rgba(255, 255, 255, .5);
}

.store-btn small {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: left;
}

.store-btn strong {
  display: block;
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
  text-align: left;
}

/* ── CONTACT ── */
.contact {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  transition: .3s ease;
}

.info-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: transparent;
}

.info-item .material-icons-outlined {
  font-size: 1.5rem;
  margin-top: 0;
}

.info-item strong {
  display: block;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 3px;
}

.info-item div {
  font-size: 1rem;
  color: var(--muted);
}

.info-item a {
  color: var(--red);
  font-weight: 600;
}

.info-item a:hover {
  text-decoration: underline;
}

.social-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1.5px solid var(--border);
  transition: all .3s cubic-bezier(.22, 1, .36, 1);
}

.social-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.social-card i {
  font-size: 1.4rem;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-card strong {
  display: block;
  font-size: 1rem;
  color: var(--dark);
}

.social-card span {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Social brand colors */
.social-card.ig i {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.social-card.fb i {
  background: #1877F2;
  color: #fff;
}

.social-card.tw i {
  background: #000;
  color: #fff;
}

.social-card.tk i {
  background: #000;
  color: #fff;
}

.social-card.wa i {
  background: #25D366;
  color: #fff;
}

.social-card.yt i {
  background: #FF0000;
  color: #fff;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .6);
  padding: 52px 0 28px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 1rem;
  color: rgba(255, 255, 255, .5);
  transition: .3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, .5);
  transition: all .3s ease;
}

.footer-social a:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-3px);
}

.copyright {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, .35);
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .roles-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar .container {
    gap: 32px;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 36px 40px;
    box-shadow: -8px 0 40px rgba(0, 0, 0, .12);
    transition: right .4s cubic-bezier(.22, 1, .36, 1);
    gap: 10px;
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.15rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .nav-links a:last-child {
    border: none;
  }

  .nav-cta {
    margin-top: 10px;
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 20px !important;
    border-radius: 14px !important;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .hero {
    padding: 120px 20px 80px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 8vw, 3.2rem);
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .btn {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .stat-number {
    font-size: 2rem;
  }

  .step {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }

  .social-cards {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .download h2 {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .section-header h2 {
    font-size: clamp(1.7rem, 5vw, 2.2rem);
  }
}

@media (max-width: 480px) {
  .stats-bar .container {
    flex-direction: column;
    gap: 20px;
  }

  .store-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-btn {
    width: 100%;
    max-width: 260px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}