:root {
  --bg-1: #020203;
  --bg-2: #07030f;
  --bg-3: #13061f;
  --bg-4: #040406;

  --pink: #ff2f92;
  --pink-soft: #ff69b4;
  --violet: #8b5cf6;
  --violet-deep: #6d28d9;
  --white: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.76);
  --text-fade: rgba(255, 255, 255, 0.56);

  --card: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.11);
  --glass: rgba(255, 255, 255, 0.08);

  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 20px 50px rgba(0, 0, 0, 0.28);

  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;

  --container: 1180px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--white);
  background:
    radial-gradient(
      circle at 18% 16%,
      rgba(255, 47, 146, 0.23),
      transparent 24%
    ),
    radial-gradient(
      circle at 82% 14%,
      rgba(139, 92, 246, 0.28),
      transparent 28%
    ),
    radial-gradient(
      circle at 50% 78%,
      rgba(217, 70, 239, 0.18),
      transparent 24%
    ),
    linear-gradient(
      145deg,
      var(--bg-1) 0%,
      var(--bg-2) 32%,
      var(--bg-3) 68%,
      var(--bg-4) 100%
    );
  overflow-x: hidden;
  line-height: 1.5;
}

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

img {
  max-width: 100%;
  display: block;
}
section {
  padding: 16px 32px;
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
}
/* HEADER AMÉLIORÉ */
header {
  width: 100%;
  height: 70px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  backdrop-filter: blur(20px);
  background: rgba(11, 15, 22, 0);
  color: white;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 18px;
  position: relative;
  overflow: hidden;
}

.brand::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #d946ef,
    #ec4899,
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.brand:hover::after {
  transform: translateX(100%);
}

@media (min-width: 768px) {
  .brand {
    font-size: 20px;
    gap: 10px;
  }
}

.logo_2 {
  width: 100px;
  height: 70px;
  border-radius: 6px;
}

@media (min-width: 768px) {
  .logo_2 {
    width: 140px;
    height: 110px;
  }
}

.cta {
  position: relative;
  border: 0;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  background: linear-gradient(135deg, #d946ef, #ec4899);
  color: white;
  cursor: pointer;
  white-space: nowrap;
  animation:
    pulseGlow 2s infinite ease-in-out,
    slideInRight 0.6s ease-out;
  overflow: hidden;
  transition: var(--transition-bounce);
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.cta:hover {
  transform: scale(1.1) rotate(2deg);
  background: linear-gradient(135deg, #ec4899, #d946ef);
}

.cta:hover::before {
  transform: translateX(100%);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  margin-top: 80px;
  margin-bottom: 60px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.11);
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 0 12px rgba(255, 45, 191, 0.65);
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 900;
  max-width: 640px;
}

.gradient-text {
  background: linear-gradient(180deg, #d26dff 0%, #9e51ff 40%, #ff44c5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-underline {
  width: 290px;
  height: 10px;
  margin: 16px 0 30px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 45, 191, 0),
    rgba(255, 45, 191, 1),
    rgba(138, 60, 255, 0.25)
  );
  transform: skewX(-22deg);
}

.hero-subtitle {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: clamp(20px, 2.2vw, 36px);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 28px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 620px;
}

.mini-feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 700;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.1),
      transparent 35%
    ),
    linear-gradient(145deg, rgba(123, 57, 255, 0.18), rgba(255, 45, 191, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 0 24px rgba(255, 255, 255, 0.03),
    var(--glow);
}

.mini-feature p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #efebf8;
}

.mini-feature p span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  margin-top: 6px;
}

/* VISUAL + PHONE */
.hero-visual {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(176, 61, 255, 0.32) 0%,
    rgba(255, 45, 191, 0.18) 32%,
    transparent 66%
  );
  filter: blur(18px);
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
}

.earnings-card {
  position: absolute;
  top: 70px;
  left: 0px;
  z-index: 4;
  width: 240px;
  padding: 22px 20px 18px;
  border-radius: 28px;
  background: rgba(12, 8, 25, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: var(--glow);
}

.earnings-card .label {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  margin-bottom: 10px;
}

.earnings-card .amount {
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.earnings-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.16);
  color: #48f68a;
  font-weight: 900;
  display: grid;
  place-items: center;
}

.phone-wrap {
  position: relative;
  z-index: 2;
  width: 340px;
  height: 630px;
  transform: rotate(-5deg);
  filter: drop-shadow(0 0 26px rgba(234, 61, 255, 0.28));
}

.phone {
  width: 100%;
  height: 100%;
  border-radius: 48px;
  padding: 14px;
  background: linear-gradient(
    145deg,
    rgba(28, 24, 39, 0.98),
    rgba(8, 8, 16, 0.98)
  );
  border: 2px solid rgba(255, 255, 255, 0.11);
  overflow: hidden;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    var(--glow);
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  border-radius: 999px;
  background: #0a0b10;
  z-index: 3;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #15081f 0%, #32083f 30%, #15061e 100%);
}

.screen-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.24)),
    radial-gradient(
      circle at 50% 28%,
      rgba(255, 255, 255, 0.18),
      transparent 24%
    ),
    radial-gradient(
      circle at 45% 38%,
      rgba(255, 49, 201, 0.26),
      transparent 30%
    ),
    linear-gradient(180deg, #16061e 0%, #53115f 52%, #170714 100%);
}

.screen-photo::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  left: 80px;
  top: 70px;
  background: radial-gradient(
    circle at 40% 35%,
    rgba(72, 36, 20, 0.98) 0 40%,
    rgba(34, 18, 10, 0.94) 41% 100%
  );
  box-shadow: 0 0 40px rgba(255, 75, 210, 0.16);
}

.screen-photo::after {
  content: "";
  position: absolute;
  left: 65px;
  top: 190px;
  width: 200px;
  height: 250px;
  border-radius: 120px 120px 90px 90px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0) 14%
    ),
    linear-gradient(135deg, #56115d 0%, #1c0b25 36%, #7c1875 100%);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
}

.play-button::before {
  content: "";
  border-left: 18px solid white;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 5px;
}

.phone-sidebar {
  position: absolute;
  right: 14px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 3;
}

.side-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
}

.side-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  margin-bottom: 6px;
}

.audio-bar {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 24px;
  background: rgba(17, 12, 28, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 4;
}

.cover {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(145deg, #8728ff, #ff40c7);
  flex-shrink: 0;
}

.audio-meta {
  flex: 1;
}

.audio-title {
  font-weight: 700;
  font-size: 14px;
}

.audio-artist {
  font-size: 12px;
  color: var(--muted);
  margin: 4px 0 6px;
}

.wave {
  height: 20px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.3) 0px 3px,
    transparent 3px 8px
  );
  border-radius: 16px;
}

.arrow-swoosh {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -8px;
  bottom: 20px;
  border-right: 8px solid var(--pink);
  border-top: 8px solid var(--pink);
  border-radius: 0 100% 0 0;
  opacity: 0.88;
  transform: rotate(28deg);
  box-shadow: 0 0 22px rgba(255, 45, 191, 0.5);
}

.arrow-swoosh::after {
  content: "";
  position: absolute;
  top: -18px;
  right: -13px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 28px solid var(--pink);
  transform: rotate(45deg);
}

/* COMMUNITY BANNER - espacement augmenté */
.community-banner {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 28px;
  background: linear-gradient(
    180deg,
    rgba(16, 10, 29, 0.95),
    rgba(10, 8, 20, 0.92)
  );
  border: 1px solid var(--card-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  margin: 2em;
}

.banner-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 40px;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.12),
      transparent 34%
    ),
    linear-gradient(145deg, rgba(130, 53, 255, 0.26), rgba(255, 45, 191, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--glow);
}

.community-banner h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.8vw, 42px);
}

.community-banner p {
  color: var(--muted);
  font-size: 18px;
}

.community-proof {
  text-align: right;
}

.avatars {
  display: inline-flex;
  margin-bottom: 12px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, #6a2f91, #c74be6);
  border: 3px solid #14091f;
  margin-left: -12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
}
.avatar:first-child {
  margin-left: 0;
}

.count {
  font-weight: 800;
  font-size: 20px;
  display: block;
  margin-bottom: 6px;
}

.stars {
  color: #ff4bd1;
  letter-spacing: 4px;
}

/*STEPS GRID - espacement */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.step-card {
  background: linear-gradient(
    180deg,
    rgba(16, 10, 29, 0.95),
    rgba(10, 8, 20, 0.92)
  );
  border: 1px solid var(--card-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.step-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.step-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 34px;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.12),
      transparent 35%
    ),
    linear-gradient(145deg, rgba(130, 53, 255, 0.24), rgba(255, 45, 191, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.step-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--purple-soft);
  display: block;
  margin-bottom: 6px;
}

.step-card h3 {
  font-size: clamp(26px, 2.3vw, 38px);
  letter-spacing: -0.03em;
}

/* CTA BANNER - espacement */
.cta-banner {
  background: linear-gradient(
    180deg,
    rgba(16, 10, 29, 0.95),
    rgba(10, 8, 20, 0.92)
  );
  border: 1px solid var(--card-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  margin: 2em;
  height: fit-content !important;
}

.cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 0;
}

.trust-pills {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.pill {
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

.whatsapp-neon-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(
    90deg,
    rgba(138, 60, 255, 0.22),
    rgba(255, 45, 191, 0.22)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 12px rgba(168, 85, 247, 0.35),
    0 0 26px rgba(255, 45, 191, 0.22),
    inset 0 0 12px rgba(255, 255, 255, 0.04);
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.whatsapp-neon-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 18px rgba(168, 85, 247, 0.55),
    0 0 34px rgba(255, 45, 191, 0.32),
    inset 0 0 14px rgba(255, 255, 255, 0.06);
}

.cta-bottom {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.btn-primary {
  min-width: 280px;
  font-size: 18px;
  padding: 16px 32px;
}

/* LOGO STRIP */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 20px 0 48px;
  margin-top: 20px;
  opacity: 0.75;
  text-align: center;
}
.logo-item {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}

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

.section-tag {
  font-size: 15px;
  font-weight: 800;
  color: #ff9bc8;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -1.5px;
  font-weight: 900;
}

.about-text {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-soft);
  max-width: 560px;
  margin-bottom: 26px;
}

.button-secondary {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: #fff;
  box-shadow: 0 15px 30px rgba(255, 47, 146, 0.22);
  transition: var(--transition);
}

.button-secondary:hover {
  transform: translateY(-2px);
}
.campaigns {
  height: 100vh;
}
.campaigns-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.campaigns-subtext {
  color: var(--text-soft);
  max-width: 460px;
  font-size: 16px;
}

.campaigns-row {
  display: flex;
  flex-direction: row;
  height: fit-content;
  width: 100%;
  gap: 22px;
  align-items: center;
  justify-content: start;
  overflow-x: scroll;
}
.campaigns-row::-webkit-scrollbar {
  display: none;
}
.campaign-card {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.campaign-card,
.see-more-card {
  position: relative;
  width: 250px;
  height: 400px;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.absolute {
  position: absolute;
  z-index: 10;
  backdrop-filter: blur(20px);
  background: rgba(11, 15, 22, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.absolute i {
  font-size: 2em;
  color: #ff69b4;
}

.campaign-card:hover,
.see-more-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}

.campaign-image {
  height: 150px;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(255, 47, 146, 0.18),
    rgba(139, 92, 246, 0.18)
  );
}

.campaign-content {
  padding: 22px;
}

.campaign-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: fit-content;
  width: 100%;
}
.campaign-info :nth-child(1) {
  font-weight: 600;
}
.campaign-content h3 {
  font-size: 28px;
  line-height: 1.08;
  margin-bottom: 12px;
  font-weight: 800;
}

.campaign-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}
.progress {
  position: relative;
  width: 100%;
  height: 12px;
  background-color: rgba(255, 72, 160, 0.21);
  border-radius: 24px;
}
.progress-text {
  position: absolute;
  font-size: 0.7em;
  top: 0;
  right: 50%;
}
.progess-bar {
  border-radius: 50px;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(254, 0, 123, 0.665),
    rgba(39, 1, 255, 0.74)
  );
  width: 50%;
}
.campaign-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 600;
}

.see-more-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  text-align: center;
  padding: 26px 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 2px dashed rgba(255, 255, 255, 0.18);
}

.see-more-card .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.plus {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 500;
  background: linear-gradient(
    135deg,
    rgba(255, 47, 146, 0.16),
    rgba(139, 92, 246, 0.16)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}
.plus p {
  height: 20px;
}
.see-more-card strong {
  font-size: 24px;
  line-height: 1.1;
}

.see-more-card span {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 160px;
}

.footer {
  width: min(94%, var(--container));
  margin: 50px auto 28px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer h3,
.footer h4 {
  margin-bottom: 10px;
}

.footer p {
  color: var(--text-soft);
  line-height: 1.7;
}

.footer-copy {
  align-self: end;
  color: var(--text-fade);
}

@media (max-width: 1100px) {
  .hero-body,
  .about {
    grid-template-columns: 1fr;
  }

  .hero-side {
    justify-self: start;
    max-width: 100%;
  }

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

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

@media (max-width: 820px) {
  .footer {
    width: 94%;
  }

  .hero-card {
    min-height: fit-content;
    padding: 22px;
    background: none;
  }

  .hero-top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .nav {
    gap: 14px;
  }

  .hero-body {
    gap: 24px;
    margin-top: 18px;
  }

  .hero-title {
    line-height: 1.02;
    letter-spacing: -1px;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 22px;
  }

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

  .see-more-card {
    min-height: 200px;
  }

  .campaign-image {
    height: 150px;
  }

  .campaigns-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .hero {
    gap: 20px;
    margin-bottom: 48px;
  }
  .phone-wrap {
    width: 300px;
    height: 560px;
  }
  .earnings-card {
    width: 210px;
    top: 40px;
    left: -10px;
  }
  .arrow-swoosh {
    width: 280px;
    height: 280px;
    right: 0;
    bottom: 40px;
  }
  .hero-visual {
    min-height: 560px;
  }
  .hero h1 {
    font-size: clamp(40px, 6vw, 78px);
  }
  .community-banner {
    margin-bottom: 48px;
  }
  .steps-grid {
    margin-bottom: 48px;
  }
  .cta-banner {
    margin-bottom: 48px;
  }
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 48px;
  }
  .phone-wrap {
    width: 280px;
    height: 520px;
  }
  .earnings-card {
    left: -20px;
    width: 190px;
    padding: 16px;
  }
  .hero-features {
    gap: 12px;
  }
  .mini-icon {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }
  .mini-feature p {
    font-size: 15px;
  }
  .arrow-swoosh {
    width: 240px;
    height: 240px;
    bottom: 20px;
  }
}

@media (max-width: 780px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }
  .hero-visual {
    order: 2;
    min-height: 520px;
  }
  .hero-copy {
    order: 1;
  }
  .earnings-card {
    left: 5px;
    top: 20px;
    width: 190px;
  }
  .phone-wrap {
    width: 280px;
    height: 520px;
    margin: 0 auto;
  }
  .community-banner {
    grid-template-columns: 1fr;
    text-align: center;
    margin-bottom: 48px;
  }
  .community-proof {
    text-align: center;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }
  .cta-banner {
    padding: 24px;
    margin-bottom: 48px;
  }
  .logo-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-features {
    grid-template-columns: 1fr;
  }
  .mini-feature {
    flex-direction: row;
    align-items: center;
  }
  .phone-wrap {
    width: 260px;
    height: 480px;
  }
  .earnings-card {
    width: 170px;
    top: 10px;
    left: 0;
  }
  .arrow-swoosh {
    width: 180px;
    height: 180px;
    bottom: 10px;
  }
  .btn-primary {
    min-width: 100%;
  }
  .logo-strip {
    grid-template-columns: 1fr 1fr;
  }
  .community-banner {
    margin-bottom: 40px;
  }
  .steps-grid {
    margin-bottom: 40px;
  }
  .cta-banner {
    margin-bottom: 40px;
  }
}
