/* ============================================
   CURLIFY LANDING PAGE
   ============================================ */

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

/* --- TOKENS --- */
:root {
  --bg: #fdfbf9;
  --surface: #ffffff;
  --text: #1a1a1a;
  --text-secondary: #3d3d3d;
  --dimmed: #6b6b6b;
  --tint: #407df2;
  --active-tint: #2f6ae0;
  --accent-green: #61d18d;
  --accent-purple: #8459eb;
  --accent-yellow: #f7cf7c;
  --accent-orange: #f79c5a;
  --accent-red: #ef4444;
  --card-border: rgba(138, 138, 138, 0.08);
  --card-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
  --card-shadow-hover: 0 4px 16px rgba(0,0,0,0.08), 0 8px 32px rgba(0,0,0,0.04);
  --radius: 20px;
  --radius-sm: 14px;
  --radius-xs: 10px;
  --nav-blur: rgba(253, 251, 249, 0.82);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color-scheme: light dark;
}

[data-theme="dark"] {
  --bg: #141414;
  --surface: #1e1e1e;
  --text: #f5f5f5;
  --text-secondary: #c0c0c0;
  --dimmed: #a3a3a3;
  --tint: #6b9bff;
  --active-tint: #5a8af0;
  --card-border: rgba(255, 255, 255, 0.06);
  --card-shadow: 0 1px 3px rgba(0,0,0,0.2), 0 4px 12px rgba(0,0,0,0.15);
  --card-shadow-hover: 0 4px 16px rgba(0,0,0,0.3), 0 8px 32px rgba(0,0,0,0.2);
  --nav-blur: rgba(20, 20, 20, 0.82);
}

/* --- BASE --- */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- SCROLL REVEAL --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--tint);
  color: #fff;
}
.btn-primary:hover { background: var(--active-tint); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--card-border);
}
.btn-outline:hover {
  border-color: var(--tint);
  color: var(--tint);
}

.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

/* --- NAV --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-blur);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--card-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 32px;
}

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

.nav-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
}

.nav-wordmark {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--dimmed);
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--tint);
  border-radius: 1px;
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

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

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background: var(--surface);
  cursor: pointer;
  color: var(--dimmed);
  transition: color var(--transition), border-color var(--transition);
}

.theme-toggle:hover { color: var(--text); border-color: var(--dimmed); }
.icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: block; }

/* --- HERO --- */
.hero {
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--text);
  color: var(--bg);
  border-radius: 14px;
  font-size: 0.85rem;
  transition: opacity var(--transition), transform var(--transition);
}

[data-theme="dark"] .store-btn {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--card-border);
}

.store-btn:hover { opacity: 0.88; transform: translateY(-2px); }
.store-btn small { display: block; font-weight: 400; opacity: 0.8; font-size: 0.7rem; }
.store-btn strong { display: block; font-weight: 600; font-size: 0.95rem; }

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb-1 {
  width: 360px;
  height: 360px;
  background: var(--accent-purple);
  opacity: 0.15;
  top: -40px;
  right: -60px;
}

.hero-orb-2 {
  width: 280px;
  height: 280px;
  background: var(--accent-green);
  opacity: 0.12;
  bottom: -30px;
  left: -40px;
}

[data-theme="dark"] .hero-orb-1 { opacity: 0.08; }
[data-theme="dark"] .hero-orb-2 { opacity: 0.06; }

/* --- PHONE FRAME --- */
.phone-frame {
  width: 280px;
  height: 606px;
  border-radius: 40px;
  border: 6px solid var(--text);
  background: var(--surface);
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
  transform: rotate(2deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] .phone-frame {
  border-color: #444;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.3);
}

.phone-frame:hover { transform: rotate(0deg) scale(1.02); }

.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-frame-sm {
  width: 200px;
  height: 433px;
  border-radius: 30px;
  border-width: 5px;
  transform: rotate(0deg);
}

/* --- SOCIAL PROOF --- */
.social-proof {
  padding: 32px 0 0;
}

.landing-links {
  padding: 56px 0 0;
}

.landing-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--dimmed);
}

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

.stars {
  display: flex;
  gap: 2px;
  color: var(--accent-yellow);
}

.proof-divider {
  width: 1px;
  height: 20px;
  background: var(--card-border);
}

/* --- SECTION HEADERS --- */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- FEATURES --- */
.features {
  padding: 100px 0;
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--card-shadow);
}

.feature-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.feature-card-link {
  display: block;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: color-mix(in srgb, var(--icon-color) 12%, transparent);
  color: var(--icon-color);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- HOW IT WORKS --- */
.how-it-works {
  padding: 100px 0;
  background: color-mix(in srgb, var(--tint) 3%, var(--bg));
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--tint);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 400px;
}

/* --- INSIGHTS --- */
.insights {
  padding: 100px 0;
}

.insights-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.insights-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.insights-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
}

.insights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.insights-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

.insights-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.insights-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.insight-card {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.insight-card-chart {
  padding: 24px 24px 16px;
}

.insight-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.insight-label {
  font-weight: 600;
  font-size: 0.95rem;
}

.insight-badge {
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}

.insight-badge-up {
  background: color-mix(in srgb, var(--accent-green) 14%, transparent);
  color: var(--accent-green);
}

.chart-svg {
  width: 100%;
  height: auto;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.72rem;
  color: var(--dimmed);
  font-weight: 500;
}

.insight-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.insight-card-mini {
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.insight-mini-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.insight-card-mini strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.insight-card-mini small {
  font-size: 0.78rem;
  color: var(--dimmed);
}

/* --- PRICING --- */
.pricing {
  padding: 100px 0;
  background: color-mix(in srgb, var(--accent-purple) 2%, var(--bg));
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card-premium {
  border-color: var(--tint);
  box-shadow: 0 0 0 1px var(--tint), var(--card-shadow-hover);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tint);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: 28px;
}

.pricing-card-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dimmed);
  margin-bottom: 8px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.period {
  font-size: 0.95rem;
  color: var(--dimmed);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.pricing-features li svg { flex-shrink: 0; }

.pricing-card .btn { width: 100%; text-align: center; }

/* --- TESTIMONIALS --- */
.testimonials {
  padding: 100px 0;
}

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

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--accent-yellow);
}

.testimonial-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--avatar-color) 16%, transparent);
  color: var(--avatar-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
}

.testimonial-author small {
  font-size: 0.78rem;
  color: var(--dimmed);
}

/* --- FAQ --- */
.faq {
  padding: 100px 0;
  background: color-mix(in srgb, var(--tint) 3%, var(--bg));
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dimmed);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover { color: var(--tint); }

.faq-answer {
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- CTA --- */
.cta {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: color-mix(in srgb, var(--tint) 4%, var(--bg));
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.cta-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--tint);
  opacity: 0.08;
  top: -100px;
  left: -100px;
}

.cta-orb-2 {
  width: 350px;
  height: 350px;
  background: var(--accent-purple);
  opacity: 0.06;
  bottom: -100px;
  right: -80px;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.cta-inner p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

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

/* --- FOOTER --- */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--card-border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand .nav-logo,
.footer-brand .nav-wordmark {
  display: inline-flex;
}

.footer-brand > :first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--dimmed);
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h3 {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dimmed);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--tint); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--card-border);
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--dimmed);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--tint) 10%, transparent);
  color: var(--tint);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.landing-hero {
  padding-bottom: 72px;
}

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

.landing-panel {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--card-shadow);
}

.landing-panel h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.landing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landing-list li {
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.landing-list li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tint);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 899px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-sub { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }

  .hero-visual { order: -1; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }

  .step {
    grid-template-columns: auto 1fr;
  }
  .step-visual { display: none; }

  .insights-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .insights-text { text-align: center; }
  .insights-list { align-items: center; }

  .pricing-grid { max-width: 500px; grid-template-columns: 1fr; }

  .testimonial-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .landing-grid { grid-template-columns: 1fr; }
  .landing-links-grid { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    align-items: center;
  }
  .footer-brand { align-items: center; }
  .footer-brand > :first-child { justify-content: center; }
  .footer-links { justify-content: center; gap: 40px; }
  .footer-bottom { text-align: center; }
}

@media (max-width: 599px) {
  .container { padding: 0 18px; }

  .nav-links { display: none; }

  .hero { padding: 48px 0 24px; }

  .hero-content h1 { font-size: 2rem; }

  .phone-frame {
    width: 220px;
    height: 448px;
    border-radius: 32px;
  }

  .phone-frame::before { width: 80px; height: 24px; }

  .feature-grid { grid-template-columns: 1fr; }

  .features, .how-it-works, .insights, .pricing, .testimonials, .cta {
    padding: 72px 0;
  }

  .step {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }
  .step-number { margin: 0 auto; }

  .insight-cards-row { grid-template-columns: 1fr; }

  .store-btn { width: 100%; justify-content: center; }

  .footer-links { flex-direction: column; gap: 28px; }
}
