/* style.css */
:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --text: #1b1b1f;
  --text-secondary: #4a4a52;
  --muted: #6b7280;
  --line: rgba(20, 20, 40, 0.08);

  --grad-hero: linear-gradient(135deg, #ff7aa9 0%, #7ee7d8 55%, #ffe07a 100%);
  --grad-hero-reverse: linear-gradient(135deg, #ffe07a 0%, #7ee7d8 45%, #ff7aa9 100%);
  --grad-top: linear-gradient(180deg, #7a5cff 0%, #4f83ff 100%);
  --grad-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);

  --pink: #ff6fa8;
  --pink-light: #ffb3d0;
  --mint: #5fe0d3;
  --mint-light: #a8f0e8;
  --yellow: #ffd84a;
  --yellow-light: #ffecaa;
  --violet: #7a5cff;
  --blue: #4f83ff;
  --green: #46d58a;

  --shadow: 0 18px 40px rgba(30, 25, 60, 0.14);
  --shadow-soft: 0 10px 26px rgba(30, 25, 60, 0.10);
  --shadow-glow: 0 0 60px rgba(255, 111, 168, 0.3), 0 0 100px rgba(95, 224, 211, 0.2);
  --shadow-card: 0 4px 20px rgba(30, 25, 60, 0.08);

  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --container: 1140px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1400px 700px at 20% -5%, rgba(255, 111, 168, 0.18), transparent 60%),
              radial-gradient(1200px 600px at 80% 5%, rgba(95, 224, 211, 0.15), transparent 55%),
              radial-gradient(800px 400px at 50% 30%, rgba(255, 216, 74, 0.08), transparent 50%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
}

.skip:focus {
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.announcement-bar {
  background: var(--grad-hero);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(10, 10, 14, 0.9);
}

.announcement-icon {
  font-size: 16px;
}

.announcement-badge {
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(246, 247, 251, 0.85);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-name {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 14px;
}

.nav-links a {
  color: var(--muted);
  transition: var(--transition);
  position: relative;
}

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

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  border: none;
  background: var(--grad-hero);
  color: rgba(10, 10, 14, 0.9);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.btn-ghost-dark {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(10px);
}

.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-small {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 12px;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 16px;
}

.btn-xl {
  padding: 20px 40px;
  font-size: 18px;
  border-radius: 18px;
}

.btn-glow {
  position: relative;
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--grad-hero);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: var(--transition);
}

.btn-glow:hover::before {
  opacity: 0.6;
}

.icon-apple {
  flex-shrink: 0;
}

.hero {
  padding: 60px 0 40px;
}

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

.hero-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.badge-rating {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.badge-rating .stars {
  color: #ffc107;
  letter-spacing: 1px;
}

.badge-new {
  background: var(--grad-hero);
  color: rgba(10, 10, 14, 0.9);
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.gradient-text {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatars {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  margin-left: -12px;
  box-shadow: var(--shadow-card);
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-more {
  background: var(--text) !important;
  font-size: 16px;
}

.social-text {
  font-size: 14px;
  color: var(--muted);
}

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

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

.phone-mockup {
  position: relative;
  z-index: 2;
}

.phone-frame {
  width: 300px;
  background: #1a1a2e;
  border-radius: 48px;
  padding: 14px;
  box-shadow: 
    var(--shadow),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 50px 100px -20px rgba(26, 26, 46, 0.5);
  position: relative;
}

.phone-notch {
  width: 130px;
  height: 32px;
  background: #1a1a2e;
  border-radius: 0 0 20px 20px;
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-notch::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: #0a0a14;
  border-radius: 3px;
}

.phone-screen {
  border-radius: 36px;
  overflow: hidden;
  background: #f8f9fc;
  position: relative;
}

.phone-screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 36px;
}

.floating-card {
  position: absolute;
  background: var(--surface);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  animation: float 3s ease-in-out infinite;
  z-index: 3;
}

.floating-icon {
  font-size: 18px;
}

.card-left {
  left: -40px;
  top: 25%;
  animation-delay: 0s;
}

.card-right {
  right: -40px;
  top: 55%;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.trust-section {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.trust-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  font-size: 24px;
}

.trust-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header-light {
  color: white;
}

.section-header-light h2 {
  color: white;
}

.section-header-light .section-eyebrow {
  color: var(--mint);
}

.section-eyebrow {
  display: inline-block;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-lead {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.7;
}

.section-gradient {
  background: linear-gradient(180deg, rgba(255, 111, 168, 0.08) 0%, rgba(95, 224, 211, 0.08) 100%);
}

.section-dark {
  background: #0d1117;
  color: white;
}

.section-dark-alt {
  background: #161b22;
  color: white;
}

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

.benefit-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  transition: var(--transition);
}

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

.benefit-icon {
  margin-bottom: 20px;
}

.icon-bg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  font-size: 28px;
}

.icon-pink { background: rgba(255, 111, 168, 0.15); }
.icon-mint { background: rgba(95, 224, 211, 0.15); }
.icon-yellow { background: rgba(255, 216, 74, 0.15); }

.benefit-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.benefit-stat {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 900;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

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

.steps-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card-new {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: var(--transition);
}

.step-card-new:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.step-number-new {
  width: 36px;
  height: 36px;
  background: var(--grad-top);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.step-title-new {
  font-size: 18px;
  font-weight: 700;
  color: var(--mint);
  margin-bottom: 10px;
}

.step-desc-new {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

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

.community-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: white;
}

.community-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 28px;
}

.community-features {
  list-style: none;
  margin-bottom: 32px;
}

.community-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.feature-emoji {
  font-size: 20px;
}

.community-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.leaderboard-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.leaderboard-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.leaderboard-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.leaderboard-card-you {
  border: 1px dashed rgba(255, 122, 169, 0.5);
  background: rgba(255, 122, 169, 0.05);
}

.leaderboard-rank {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  min-width: 28px;
}

.rank-1 {
  color: #ffd84a;
}

.rank-2 {
  color: #c0c0c0;
}

.rank-you {
  color: var(--pink);
}

.leaderboard-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}

.leaderboard-info {
  flex: 1;
  min-width: 0;
}

.leaderboard-name {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: white;
  margin-bottom: 2px;
}

.leaderboard-stats {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.leaderboard-follow {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.leaderboard-follow:hover {
  background: rgba(255, 255, 255, 0.15);
}

.leaderboard-join {
  background: var(--grad-hero);
  border: none;
  color: rgba(10, 10, 14, 0.9);
}

.leaderboard-join:hover {
  filter: brightness(1.05);
}

.cta-box {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 16px;
}

.rating-overview {
  margin-top: 32px;
}

.rating-big {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface);
  padding: 24px 48px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}

.rating-number {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rating-stars {
  font-size: 28px;
  color: #ffc107;
  letter-spacing: 4px;
  margin: 8px 0;
}

.rating-source {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

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

.review-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  transition: var(--transition);
}

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

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
  min-width: 0;
}

.review-name {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}

.review-location {
  font-size: 12px;
  color: var(--muted);
}

.review-rating {
  color: #ffc107;
  font-size: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.review-date {
  color: var(--muted);
}

.review-verified {
  color: var(--green);
  font-weight: 600;
}

.reviews-cta {
  text-align: center;
  margin-top: 40px;
}

.reviews-note {
  font-size: 13px;
  color: var(--muted);
}

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

.feature-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.feature-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

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

.faq-item {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-card);
}

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

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

.faq-question {
  flex: 1;
  padding-right: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: #f0f1f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--muted);
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.section-final {
  padding: 100px 0;
}

.final-cta-box {
  position: relative;
  background: var(--surface);
  border-radius: 32px;
  padding: 80px 48px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  overflow: hidden;
}

.final-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: var(--grad-hero);
  filter: blur(100px);
  opacity: 0.3;
  pointer-events: none;
}

.final-content {
  position: relative;
  z-index: 1;
}

.final-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 16px;
}

.final-lead {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 32px;
}

.final-buttons {
  margin-bottom: 32px;
}

.final-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-badge {
  background: #f0f1f5;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-brand .brand-name {
  font-size: 18px;
}

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

.footer-links a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  transition: var(--transition);
}

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

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

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

  .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .social-proof {
    justify-content: center;
  }

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

  .steps-grid-new {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .community-features {
    display: inline-block;
    text-align: left;
  }

  .community-ctas {
    justify-content: center;
  }

  .leaderboard-preview {
    max-width: 400px;
    margin: 0 auto;
  }

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

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

  .floating-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .announcement-bar {
    font-size: 12px;
    padding: 8px 16px;
  }

  .hero {
    padding: 40px 0 32px;
  }

  .section {
    padding: 60px 0;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
  }

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

  .trust-grid {
    gap: 24px;
  }

  .trust-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .final-cta-box {
    padding: 48px 24px;
  }

  .phone-frame {
    width: 260px;
    border-radius: 40px;
    padding: 12px;
  }

  .phone-notch {
    width: 110px;
    height: 28px;
    top: 12px;
  }

  .phone-screen {
    border-radius: 30px;
  }

  .phone-screenshot {
    border-radius: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 32px);
  }

  .hero h1 {
    font-size: 28px;
  }

  .lead {
    font-size: 16px;
  }

  .btn-large {
    padding: 14px 24px;
    font-size: 15px;
  }

  .btn-xl {
    padding: 16px 28px;
    font-size: 16px;
  }

  .phone-frame {
    width: 220px;
    border-radius: 36px;
    padding: 10px;
  }

  .phone-notch {
    width: 90px;
    height: 24px;
    top: 10px;
  }

  .phone-notch::before {
    top: 8px;
    width: 50px;
    height: 5px;
  }

  .phone-screen {
    border-radius: 28px;
  }

  .phone-screenshot {
    border-radius: 28px;
  }

  .leaderboard-card {
    padding: 12px 16px;
    gap: 12px;
  }

  .leaderboard-follow {
    padding: 6px 12px;
    font-size: 12px;
  }
}
