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

:root {
  --bg: #0a0a0a;
  --bg2: #080808;
  --pink: #FF2D78;
  --pink-dim: rgba(255,45,120,0.15);
  --white: #ffffff;
  --muted: rgba(255,255,255,0.4);
  --border: rgba(255,255,255,0.07);
  --font: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--pink); color: #fff; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 2px; }

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

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.logo-dot { color: var(--pink); font-size: 1.6rem; line-height: 1; margin-top: -4px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

.nav-cta {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.nav-cta:hover { background: #e0265f; transform: scale(1.04); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 64px; left: 0; right: 0;
  z-index: 99;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateY(-110%);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--pink); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}

.reveal.from-left { transform: translateX(-60px); }
.reveal.from-right { transform: translateX(60px); }

.reveal.visible {
  opacity: 1;
  transform: translate(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,45,120,0.3);
  background: rgba(255,45,120,0.1);
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(255,45,120,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image:
    linear-gradient(rgba(255,255,255,0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text { display: flex; flex-direction: column; gap: 1.5rem; }

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.hero-title .accent { color: var(--pink); position: relative; display: inline-block; }

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
}

.hero-sub strong { color: rgba(255,255,255,0.8); font-weight: 600; }

.hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.btn-primary {
  padding: 1rem 2rem;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: #e0265f; transform: scale(1.03); }

.btn-outline {
  padding: 1rem 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover { border-color: rgba(255,255,255,0.4); color: #fff; }

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 0.5rem;
}

.hero-stat-value {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  margin-top: 2px;
}

/* Phone mockup */
.hero-phone-wrap {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.phone-glow {
  position: absolute;
  inset: -20px;
  background: rgba(255,45,120,0.15);
  border-radius: 3rem;
  filter: blur(40px);
  pointer-events: none;
}

.phone {
  position: relative;
  width: 280px;
  height: 580px;
  background: #111;
  border-radius: 2.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #000;
  border-radius: 999px;
  z-index: 10;
}

.phone-screen {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #1a0a10 0%, #0f0f0f 50%, #0a0a0a 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.phone-tags {
  position: absolute;
  top: 52px;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
}

.phone-tag {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}

.phone-tag.active { background: var(--pink); color: #fff; }

.phone-item-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
}

.phone-emoji-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.phone-emoji-shirt {
  width: 110px;
  height: 120px;
  background: linear-gradient(160deg, rgba(255,45,120,0.25), rgba(255,45,120,0.08));
  border-radius: 16px;
  border: 1px solid rgba(255,45,120,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.phone-emoji-pants {
  width: 110px;
  height: 90px;
  background: linear-gradient(160deg, rgba(60,60,60,0.5), rgba(30,30,30,0.4));
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
}

.phone-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 100%);
  padding: 1rem;
  padding-bottom: 0.5rem;
}

.phone-brand { font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.12em; }
.phone-name { font-size: 1rem; font-weight: 800; color: #fff; margin: 2px 0; }
.phone-price { font-size: 1.15rem; font-weight: 900; color: var(--pink); }

.phone-size-badge {
  display: inline-block;
  margin-top: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,45,120,0.4);
  background: rgba(255,45,120,0.15);
  color: var(--pink);
  font-size: 0.65rem;
  font-weight: 700;
}

.phone-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(0,0,0,0.8);
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 1.2rem;
}

.phone-nav span { opacity: 0.3; }
.phone-nav span:first-child { opacity: 1; }

.float-badge {
  position: absolute;
  background: var(--pink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(255,45,120,0.35);
  animation: float 3s ease-in-out infinite;
}

.float-badge-2 {
  position: absolute;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  animation: float2 3.5s ease-in-out infinite;
}

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

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

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.3;
  animation: fade-in 1s 1.5s ease both;
}

.scroll-indicator span { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; }

.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scroll-pulse 1.5s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

@keyframes fade-in {
  from { opacity: 0; } to { opacity: 0.3; }
}

/* ===== HOW IT WORKS ===== */
#how-it-works {
  padding: 8rem 2rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-top: 1rem;
}

.steps-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }
.step.reverse { direction: rtl; }
.step.reverse > * { direction: ltr; }

.step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.step-icon-wrap {
  position: relative;
  width: 130px;
  height: 130px;
}

.step-icon {
  width: 130px;
  height: 130px;
  border-radius: 2rem;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: border-color 0.3s;
}

.step-icon-wrap:hover .step-icon { border-color: rgba(255,45,120,0.4); }

.step-num {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(255,45,120,0.4);
}

.step-watermark {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  user-select: none;
}

.step-content {}
.step-title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.step-desc {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 340px;
}

/* ===== FEATURES ===== */
#features {
  padding: 8rem 0 8rem;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

#features .section-header { padding: 0 2rem; }

.features-track-wrap {
  position: relative;
  margin-top: 3rem;
}

.features-track-fade-left,
.features-track-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.features-track-fade-left { left: 0; background: linear-gradient(to right, var(--bg2), transparent); }
.features-track-fade-right { right: 0; background: linear-gradient(to left, var(--bg2), transparent); }

.features-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 2rem 2rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
}

.features-track:active { cursor: grabbing; }
.features-track::-webkit-scrollbar { display: none; }

.feature-card {
  flex-shrink: 0;
  width: 280px;
  scroll-snap-align: start;
  padding: 2rem;
  border-radius: 1.25rem;
  background: #111;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: rgba(255,45,120,0.3);
  transform: translateY(-4px);
}

.feature-icon { font-size: 2.5rem; }

.feature-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.feature-bar {
  height: 2px;
  width: 2rem;
  background: rgba(255,45,120,0.4);
  border-radius: 999px;
  margin-top: auto;
  transition: width 0.3s;
}

.feature-card:hover .feature-bar { width: 4rem; background: var(--pink); }

.features-hint {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.2);
  margin-top: 0;
  padding: 0 2rem;
}

.features-cta {
  margin: 4rem 2rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 2.5rem 3rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(255,45,120,0.1), #111);
  border: 1px solid rgba(255,45,120,0.2);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.features-cta-emoji { font-size: 3.5rem; flex-shrink: 0; }

.features-cta-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.features-cta-sub { color: var(--muted); font-size: 0.95rem; }

.features-cta .btn-primary { margin-left: auto; flex-shrink: 0; white-space: nowrap; }

/* ===== BRANDS ===== */
#brands {
  padding: 8rem 0;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

#brands::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
}

#brands .section-header { padding: 0 2rem; margin-bottom: 4rem; }

.brands-marquee-wrap {
  position: relative;
  margin-bottom: 1rem;
  overflow: hidden;
}

.brands-marquee-fade-left,
.brands-marquee-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.brands-marquee-fade-left { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.brands-marquee-fade-right { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.brands-marquee {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee-left 28s linear infinite;
}

.brands-marquee-rev {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee-right 34s linear infinite;
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.brand-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 1rem 2rem;
  border-radius: 1rem;
  background: #111;
  border: 1px solid var(--border);
  cursor: default;
  transition: border-color 0.2s;
}

.brand-pill:hover { border-color: rgba(255,45,120,0.3); }

.brand-name {
  font-weight: 900;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}

.brand-pill:hover .brand-name { color: var(--pink); }

.brand-cat {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  margin-top: 2px;
}

.brand-pill-dim {
  background: #0f0f0f;
  border-color: rgba(255,255,255,0.04);
}

.brand-pill-dim .brand-name { color: rgba(255,255,255,0.5); }

.brands-partner-box {
  max-width: 1100px;
  margin: 4rem auto 0;
  padding: 0 2rem;
}

.brands-partner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  border-radius: 1.25rem;
  background: #111;
  border: 1px solid var(--border);
  flex-wrap: wrap;
}

.brands-partner-text h3 { font-size: 1.2rem; font-weight: 900; margin-bottom: 0.2rem; }
.brands-partner-text p { color: var(--muted); font-size: 0.9rem; }

.btn-outline-pink {
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: 1px solid var(--pink);
  color: var(--pink);
  background: transparent;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-outline-pink:hover { background: var(--pink); color: #fff; }

/* ===== FOOTER ===== */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,45,120,0.4), transparent);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo { font-size: 1.5rem; margin-bottom: 1rem; }

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 240px;
  margin-bottom: 1.5rem;
}

.app-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.app-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: border-color 0.2s;
}

.app-badge:hover { border-color: rgba(255,255,255,0.2); }

.app-badge-icon { font-size: 1.1rem; }

.app-badge-text p:first-child {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  line-height: 1;
}

.app-badge-text p:last-child {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.footer-col a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-newsletter {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-newsletter h3 { font-size: 1.1rem; font-weight: 900; margin-bottom: 0.25rem; }
.footer-newsletter p { color: var(--muted); font-size: 0.875rem; }

.newsletter-form { display: flex; gap: 0.5rem; }

.newsletter-form input {
  width: 260px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.25); }
.newsletter-form input:focus { border-color: rgba(255,45,120,0.5); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

.footer-socials { display: flex; gap: 1.25rem; }
.footer-socials button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-socials button:hover { color: #fff; }

.footer-love { font-size: 0.75rem; color: rgba(255,255,255,0.2); }
.footer-love span { color: var(--pink); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-phone-wrap { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-sub { margin: 0 auto; }

  .step { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .step.reverse { direction: ltr; }
  .step-visual { align-items: center; }
  .step-desc { margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-cta { flex-direction: column; text-align: center; }
  .features-cta .btn-primary { margin-left: 0; }
}

@media (max-width: 600px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .step { padding: 3rem 0; gap: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-newsletter { flex-direction: column; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-title { font-size: 2.8rem; }
  .section-title { font-size: 2.2rem; }
}
