/* ═══════════════════════════════════════
   HelloMamiz – Landing Page Styles v2
   Inspired by Dragonfly Africa
   ═══════════════════════════════════════ */

:root {
  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Brand Primary */
  --primary-purple: #AA8EDA;
  --accent-purple: #C595C6;
  --deep-purple: #6B4EAD;
  --primary-pink: #F89191;
  --accent-pink: #E85D75;
  --accent-green: #35A69B;

  /* Backgrounds */
  --bg-beige: #F8F6F2;
  --bg-cream: #FFFBF0;
  --bg-white: #FFFFFF;
  --bg-violet-light: rgba(170, 142, 218, 0.05);

  /* Text */
  --text-dark: #2A2D35;
  --text-grey: #6B7280;
  --text-light: #9CA3AF;

  /* Partner Colors */
  --partner-pro: #6B4EAD;
  --partner-asso: #E85D75;
  --partner-venue: #35A69B;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #AA8EDA 0%, #C595C6 40%, #F89191 100%);
  --gradient-hero: linear-gradient(135deg, #7B5EA7 0%, #AA8EDA 25%, #C595C6 50%, #F89191 75%, #FFFBF0 100%);
  --gradient-cta: linear-gradient(135deg, #6B4EAD 0%, #AA8EDA 50%, #F89191 100%);

  /* Misc */
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 8px 32px rgba(107, 78, 173, 0.12);
  --shadow-card: 0 4px 24px rgba(107, 78, 173, 0.08);
  --shadow-elevated: 0 20px 60px rgba(107, 78, 173, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --section-spacing: clamp(5rem, 10vw, 8rem);
}

/* ── Reset & Base ────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-beige);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Typography ─────────────────────── */
h1, h2 {
  font-family: var(--font-display);
}

h2 em, h1 em {
  font-style: italic;
  color: var(--deep-purple);
}

/* ── Keyframes ──────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}

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

@keyframes blob-move {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(170, 142, 218, 0.3); }
  50% { box-shadow: 0 0 0 20px rgba(170, 142, 218, 0); }
}

/* ── Reveal Animations ──────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navbar ──────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 2px 24px rgba(107, 78, 173, 0.08);
  padding: 0.7rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
  transition: color var(--transition);
}

.navbar.scrolled .navbar-logo { color: var(--deep-purple); }

.navbar-logo img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-links a {
  font-weight: 500;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition), opacity var(--transition);
  position: relative;
  letter-spacing: 0.01em;
}

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

.navbar-links a:hover::after,
.navbar-links a.active::after { width: 100%; }

.navbar.scrolled .navbar-links a { color: var(--text-dark); }
.navbar.scrolled .navbar-links a.active { color: var(--deep-purple); }

.navbar-cta {
  padding: 0.55rem 1.5rem !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: all var(--transition);
}

.navbar-cta::after { display: none !important; }

.navbar.scrolled .navbar-cta {
  background: var(--gradient-brand) !important;
  border-color: transparent;
  color: white !important;
}

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

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .mobile-menu-btn span { background: var(--text-dark); }

.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding: 8rem 0 6rem;
}

.hero-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: blob-move 18s ease-in-out infinite;
}

.hero-blob:nth-child(1) {
  width: 450px; height: 450px;
  background: #F89191;
  top: -120px; right: -80px;
  animation-delay: -2s;
}

.hero-blob:nth-child(2) {
  width: 350px; height: 350px;
  background: #C595C6;
  bottom: -100px; left: -100px;
  animation-delay: -5s;
}

.hero-blob:nth-child(3) {
  width: 250px; height: 250px;
  background: white;
  top: 40%; left: 40%;
  animation-delay: -8s;
}

/* Floating decorative elements */
.hero-floating {
  position: absolute;
  color: rgba(255, 255, 255, 0.25);
  z-index: 1;
}

.hero-float-1 {
  top: 15%;
  right: 8%;
  animation: float 7s ease-in-out infinite;
}

.hero-float-2 {
  bottom: 20%;
  left: 5%;
  animation: float-reverse 8s ease-in-out infinite;
  animation-delay: -2s;
}

.hero-float-3 {
  top: 60%;
  right: 25%;
  animation: float 9s ease-in-out infinite;
  animation-delay: -4s;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: heroFadeUp 0.7s ease-out both;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-line {
  display: block;
  overflow: hidden;
  animation: heroFadeUp 0.8s ease-out both;
}

.hero-line:nth-child(2) { animation-delay: 0.15s; }
.hero-line:nth-child(3) { animation-delay: 0.3s; }

.hero-serif {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  opacity: 0.95;
}

.hero-accent {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15em;
  display: inline-block;
}

.hero-sans {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
  font-weight: 400;
  animation: heroFadeUp 0.7s ease-out 0.45s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: heroFadeUp 0.6s ease-out 0.6s both;
}

/* Store Buttons */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.88);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-width: 190px;
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  background: rgba(0, 0, 0, 0.95);
}

.store-btn .store-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-btn .store-icon svg { width: 26px; height: 26px; }
.store-btn .store-label { font-size: 0.7rem; opacity: 0.75; display: block; line-height: 1; font-weight: 500; }
.store-btn .store-name { font-size: 1.1rem; display: block; line-height: 1.2; font-weight: 700; }

/* Phone Mockup */
.hero-phone {
  display: flex;
  justify-content: center;
  animation: heroSlideIn 1s ease-out 0.4s both;
}

.phone-frame {
  width: 280px;
  height: 580px;
  background: #1a1a2e;
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.6s var(--ease-smooth);
}

.phone-frame:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  background: var(--gradient-brand);
  overflow: hidden;
  position: relative;
}

.phone-frame-small .phone-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.phone-screen-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: white;
  text-align: center;
  padding: 2rem;
  gap: 0.8rem;
}

.phone-screen-placeholder .phone-logo {
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.phone-screen-placeholder h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.phone-screen-placeholder p {
  font-size: 0.82rem;
  opacity: 0.8;
  max-width: 200px;
}

.phone-screen-placeholder.small {
  gap: 0.5rem;
}

.phone-screen-placeholder.small span {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.8;
}

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

/* Small phone for features */
.phone-frame-small {
  width: 220px;
  height: 460px;
  background: #1a1a2e;
  border-radius: 36px;
  padding: 8px;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
}

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

/* ── Social Proof ───────────────────── */
.social-proof {
  padding: 3.5rem 0;
  background: var(--bg-white);
  border-bottom: 1px solid rgba(170, 142, 218, 0.08);
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--deep-purple);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--primary-purple);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-grey);
  font-weight: 500;
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(170, 142, 218, 0.15);
}

/* ── Features (Mamans) ──────────────── */
.features {
  padding: var(--section-spacing) 0;
  background: var(--bg-beige) url('../assets/images/bg-pattern.png') repeat;
  background-size: 600px auto;
}

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

.section-tag {
  display: inline-flex;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  background: rgba(170, 142, 218, 0.1);
  color: var(--deep-purple);
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-grey);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Feature Rows (alternating) */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.feature-row:last-of-type {
  margin-bottom: 4rem;
}

.feature-text {
  max-width: 480px;
}

.feature-row--right .feature-text {
  margin-left: auto;
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--icon-bg, rgba(170, 142, 218, 0.1));
  color: var(--icon-color, var(--primary-purple));
  transition: transform var(--transition);
}

.feature-icon-wrapper:hover {
  transform: scale(1.1) rotate(5deg);
}

.feature-text h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.feature-text p {
  font-size: 1rem;
  color: var(--text-grey);
  line-height: 1.75;
}

.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Mini features grid */
.features-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.mini-feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  border: 1px solid rgba(170, 142, 218, 0.06);
}

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

.mini-feature-card .feature-icon-wrapper {
  width: 48px;
  height: 48px;
  margin-bottom: 1.2rem;
}

.mini-feature-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.mini-feature-card p {
  font-size: 0.9rem;
  color: var(--text-grey);
  line-height: 1.65;
}

/* ── How It Works ───────────────────── */
.how-it-works {
  padding: var(--section-spacing) 0;
  background: var(--bg-white);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 1rem;
}

.steps-line {
  position: absolute;
  top: 65px;
  left: 16.66%;
  right: 16.66%;
  height: 4px;
  z-index: 0;
  color: rgba(170, 142, 218, 0.2);
}

.steps-line-svg {
  width: 100%;
  height: 100%;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: white;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(170, 142, 218, 0.3);
  animation: pulse-glow 3s ease-in-out infinite;
}

.step-item:nth-child(2) .step-number { animation-delay: 1s; }
.step-item:nth-child(3) .step-number { animation-delay: 2s; }

.step-icon {
  color: var(--primary-purple);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.step-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.step-item p {
  font-size: 0.92rem;
  color: var(--text-grey);
  line-height: 1.65;
  max-width: 260px;
  margin: 0 auto;
}

/* ── Testimonials ───────────────────── */
.testimonials {
  padding: var(--section-spacing) 0;
  background: var(--bg-violet-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  transition: all var(--transition);
  border: 1px solid rgba(170, 142, 218, 0.06);
}

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

.testimonial-quote-icon {
  color: rgba(170, 142, 218, 0.15);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.testimonial-location {
  display: block;
  font-size: 0.82rem;
  color: var(--text-grey);
}

.testimonial-stars {
  display: flex;
  gap: 0.15rem;
  color: #F5A623;
}

/* ── Partners ───────────────────────── */
.partners {
  padding: var(--section-spacing) 0;
  background: var(--bg-white);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.partner-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
}

.partner-card::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -100px;
  right: -80px;
  transition: transform 0.6s var(--ease-smooth);
}

.partner-card:hover::before {
  transform: scale(1.2);
}

.partner-card.pro { background: linear-gradient(135deg, #5A3D96, #8B6BC7); }
.partner-card.asso { background: linear-gradient(135deg, #D14D65, #F08090); }
.partner-card.venue { background: linear-gradient(135deg, #2C8F84, #4BC0B5); }

.partner-card .partner-icon {
  margin-bottom: 1.2rem;
  opacity: 0.9;
}

.partner-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.partner-card > p {
  font-size: 0.95rem;
  opacity: 0.88;
  line-height: 1.65;
}

.partner-features {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-smooth), margin 0.5s var(--ease-smooth), opacity 0.3s ease;
  opacity: 0;
  margin-top: 0;
}

.partner-card.expanded .partner-features {
  max-height: 500px;
  opacity: 1;
  margin-top: 1rem;
}

.partner-features li {
  font-size: 0.88rem;
  opacity: 0.9;
  line-height: 1.5;
  padding: 0.3rem 0;
  padding-left: 1.4rem;
  position: relative;
}

.partner-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  font-weight: 700;
  opacity: 0.8;
}

.partner-expand-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1.2rem;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.partner-expand-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.partner-expand-btn svg {
  transition: transform var(--transition);
}

.partner-card.expanded .partner-expand-btn svg {
  transform: rotate(180deg);
}

.partner-card.expanded .partner-expand-btn .expand-text::after {
  content: none;
}

.partner-cta {
  text-align: center;
  margin-top: 3.5rem;
}

.partner-cta p {
  font-size: 1.1rem;
  color: var(--text-grey);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

.partner-store-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ── CTA Download ────────────────────── */
.cta-download {
  padding: var(--section-spacing) 0;
  background: var(--gradient-cta);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-download::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -250px;
  right: -150px;
}

.cta-download::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  bottom: -200px;
  left: -100px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.cta-text {
  max-width: 520px;
}

.cta-logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-download h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-download h2 em {
  color: rgba(255, 255, 255, 0.9);
}

.cta-download p {
  font-size: 1.05rem;
  opacity: 0.88;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-phone {
  display: flex;
  justify-content: center;
}

.cta-phone .phone-frame {
  width: 240px;
  height: 500px;
  transform: perspective(800px) rotateY(8deg) rotateX(-3deg);
}

.cta-phone .phone-frame:hover {
  transform: perspective(800px) rotateY(3deg) rotateX(-1deg);
}

/* ── Footer ──────────────────────────── */
.footer {
  padding: 4rem 0 2rem;
  background: var(--text-dark);
  color: white;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

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

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.6;
  line-height: 1.65;
  margin-top: 0.8rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.4;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer a {
  font-size: 0.88rem;
  opacity: 0.65;
  transition: opacity var(--transition);
}

.footer a:hover { opacity: 1; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.82rem;
  opacity: 0.4;
}

/* ── Responsive ──────────────────────── */
@media (max-width: 1024px) {
  .features-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .mobile-menu-btn { display: flex; }

  .navbar-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .navbar-links.active a { color: var(--text-dark) !important; }
  .navbar-links.active .navbar-cta {
    background: var(--gradient-brand) !important;
    color: white !important;
    text-align: center;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle { margin: 0 auto 2.5rem; }
  .hero-buttons { justify-content: center; }
  .hero-phone { margin-top: 2rem; }

  .phone-frame {
    width: 240px;
    height: 500px;
    transform: perspective(800px) rotateY(0deg) rotateX(0deg);
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .feature-row--right { direction: ltr; }

  .feature-text {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .feature-row--right .feature-text {
    margin: 0 auto;
  }

  .feature-icon-wrapper { margin: 0 auto 1.5rem; }

  .feature-visual { order: -1; }

  .phone-frame-small {
    width: 180px;
    height: 380px;
  }

  .features-mini-grid,
  .partners-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .steps-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps-line { display: none; }

  .stats-row { gap: 1.5rem; }
  .stat-divider { width: 40px; height: 1px; }

  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-text { max-width: 100%; margin: 0 auto; }
  .cta-buttons { justify-content: center; }
  .cta-phone { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .store-btn { width: 100%; justify-content: center; }
  .stats-row { flex-direction: column; gap: 1.5rem; }
  .stat-divider { width: 40px; height: 1px; }
}

/* ── Reduced Motion ─────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
