/* ═══════════════════════════════════════════════════════════════════
   Di.Cuciin Landing Page — Design System & Styles
   Brand Colors:
     Orange:    #FD6A01
     Water Blue: #0360DA
     Turquoise: #05DCF3
     Black:     #272526
     Natural:   #FFFFFA
   ═══════════════════════════════════════════════════════════════════ */

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

:root {
  --orange: #fd6a01;
  --blue: #0360da;
  --turquoise: #05dcf3;
  --black: #272526;
  --natural: #fffffa;
  --gray-50: #f8f9fc;
  --gray-100: #f1f3f7;
  --gray-200: #e2e6ed;
  --gray-400: #9ca3b5;
  --gray-600: #5a6178;
  --gray-800: #2d3142;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(39, 37, 38, 0.06), 0 1px 2px rgba(39, 37, 38, 0.04);
  --shadow-md: 0 4px 16px rgba(39, 37, 38, 0.08), 0 2px 4px rgba(39, 37, 38, 0.04);
  --shadow-lg: 0 12px 40px rgba(39, 37, 38, 0.12), 0 4px 12px rgba(39, 37, 38, 0.06);
  --shadow-xl: 0 24px 60px rgba(39, 37, 38, 0.16);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family:
    "Plus Jakarta Sans",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--gray-800);
  background: var(--natural);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.gradient-text {
  background: linear-gradient(135deg, var(--orange), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--orange), #e55d00);
  color: white;
  box-shadow: 0 4px 16px rgba(253, 106, 1, 0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(253, 106, 1, 0.4);
}
.btn--outline {
  border-color: var(--gray-200);
  color: var(--gray-800);
  background: white;
}
.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.btn--sm {
  padding: 8px 20px;
  font-size: 13px;
}
.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* ─── Section Shared ───────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(253, 106, 1, 0.08), rgba(3, 96, 218, 0.08));
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.section-badge--light {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 540px;
  margin: 0 auto;
}

/* ─── Reveal animation ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.feature-card:nth-child(2) {
  transition-delay: 0.08s;
}
.feature-card:nth-child(3) {
  transition-delay: 0.16s;
}
.feature-card:nth-child(4) {
  transition-delay: 0.24s;
}
.feature-card:nth-child(5) {
  transition-delay: 0.32s;
}
.feature-card:nth-child(6) {
  transition-delay: 0.4s;
}
.step:nth-child(3) {
  transition-delay: 0.15s;
}
.step:nth-child(5) {
  transition-delay: 0.3s;
}

/* ─── Floating animation ──────────────────────────────────────── */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
.floating {
  animation: float 4s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: var(--transition);
}
.nav--scrolled {
  background: rgba(255, 255, 250, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo img {
  height: 40px;
}
.nav__links {
  display: flex;
  gap: 32px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__links a:hover {
  color: var(--orange);
}
.nav__links a:hover::after {
  width: 100%;
}
.nav__cta {
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px;
  background: white;
  border-top: 1px solid var(--gray-200);
}
.nav__mobile.open {
  display: flex;
}
.nav__mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
}
.nav__mobile a:hover {
  color: var(--orange);
}

/* ═══════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f0f6ff 0%, #fef7f0 50%, #f0fcff 100%);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__bg-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.blob--1 {
  width: 500px;
  height: 500px;
  background: var(--turquoise);
  top: -100px;
  right: -100px;
}
.blob--2 {
  width: 400px;
  height: 400px;
  background: var(--orange);
  bottom: -50px;
  left: -100px;
  opacity: 0.2;
}
.blob--3 {
  width: 300px;
  height: 300px;
  background: var(--blue);
  top: 50%;
  left: 30%;
  opacity: 0.15;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__badge {
  display: inline-block;
  padding: 8px 18px;
  background: white;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--black);
  margin-bottom: 20px;
}
.hero__subtitle {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat__num {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--black);
}
.stat__label {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
}
.stat__divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
}

/* Phone mockup */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__phone {
  position: relative;
}
.phone-mockup {
  width: 280px;
  background: var(--black);
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    var(--shadow-xl),
    0 0 0 1px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}
.phone-mockup::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: var(--black);
  border-radius: 0 0 16px 16px;
  z-index: 10;
}
.phone-mockup__screen {
  background: white;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 9/17.5;
}
.app-screen {
  padding: 40px 16px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(180deg, #f0f6ff 0%, white 40%);
}
.app-screen__header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
}
.app-screen__logo {
  height: 22px;
}
.app-screen__balance {
  background: linear-gradient(135deg, var(--blue), var(--turquoise));
  border-radius: 14px;
  padding: 16px;
  color: white;
}
.app-screen__balance-label {
  font-size: 11px;
  opacity: 0.8;
}
.app-screen__balance-amount {
  font-size: 22px;
  font-weight: 800;
}
.app-screen__actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  text-align: center;
}
.app-screen__action-item {
  font-size: 10px;
  font-weight: 500;
  color: var(--gray-600);
}
.app-screen__action-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin: 0 auto 4px;
}
.app-screen__promo-card {
  background: linear-gradient(135deg, #fff5ec, #fff0e6);
  border: 1px solid rgba(253, 106, 1, 0.15);
  border-radius: 12px;
  padding: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  gap: 8px;
}
.app-screen__promo-tag {
  background: var(--orange);
  color: white;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.hero__mascot {
  position: absolute;
  width: 160px;
  right: -50px;
  bottom: 20px;
  z-index: 3;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.1));
}

.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
}
.hero__wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════════════════ */
.features {
  padding: 100px 0;
  background: white;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--turquoise));
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-card--accent {
  background: linear-gradient(135deg, var(--orange), #e55d00);
  border: none;
  color: white;
}
.feature-card--accent::before {
  display: none;
}
.feature-card--accent .feature-card__title {
  color: white;
}
.feature-card--accent .feature-card__desc {
  color: rgba(255, 255, 255, 0.85);
}
.feature-card__icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.feature-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.feature-card__desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════ */
.how-it-works {
  padding: 100px 0;
  background: var(--gray-50);
}
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}
.step {
  text-align: center;
  flex: 1;
  max-width: 280px;
}
.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #e55d00);
  color: white;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(253, 106, 1, 0.3);
}
.step__visual {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__img {
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}
.step__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.step__desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}
.step__connector {
  display: flex;
  align-items: center;
  padding-top: 80px;
}

/* ═══════════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════════ */
.services {
  padding: 100px 0;
  background: white;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card__icon {
  font-size: 40px;
  margin-bottom: 12px;
}
.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-card__price {
  display: inline-block;
  padding: 4px 14px;
  background: linear-gradient(135deg, rgba(253, 106, 1, 0.08), rgba(253, 106, 1, 0.04));
  border: 1px solid rgba(253, 106, 1, 0.15);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
}

/* ═══════════════════════════════════════════════════════════════════
   SOCIAL PROOF
   ═══════════════════════════════════════════════════════════════════ */
.social-proof {
  padding: 32px 0 0;
  background: linear-gradient(180deg, white 0%, var(--gray-50) 100%);
}
.social-proof__bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.social-proof__item {
  text-align: center;
  padding: 10px 8px;
}
.social-proof__item strong {
  display: block;
  font-size: 20px;
  color: var(--black);
  margin-bottom: 4px;
}
.social-proof__item span {
  font-size: 13px;
  color: var(--gray-600);
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.testimonial-card p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 16px;
}
.testimonial-card__person strong {
  display: block;
  font-size: 14px;
  color: var(--black);
}
.testimonial-card__person span {
  font-size: 12px;
  color: var(--gray-400);
}

/* ═══════════════════════════════════════════════════════════════════
   PAYMENT SECTION
   ═══════════════════════════════════════════════════════════════════ */
.payment-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue), #0250b8);
  color: white;
  position: relative;
  overflow: hidden;
}
.payment-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(5, 220, 243, 0.15);
  top: -200px;
  right: -200px;
  filter: blur(60px);
}
.payment-section__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.payment-section__title {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.payment-section__desc {
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 32px;
}
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.payment-method {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.payment-method:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(6px);
}
.payment-method__icon {
  font-size: 28px;
  flex-shrink: 0;
}
.payment-method strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}
.payment-method span {
  font-size: 13px;
  opacity: 0.7;
}
.payment-section__visual {
  text-align: center;
}
.payment-section__mascot {
  max-height: 400px;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.2));
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════════ */
.contact-section {
  padding: 100px 0 60px;
  background: #f9fbff;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.contact-card {
  background: white;
  border: 1px solid rgba(3, 96, 218, 0.08);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(3, 96, 218, 0.12), rgba(5, 220, 243, 0.18));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.contact-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--black);
}
.contact-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray-600);
}
.contact-card a {
  color: var(--blue);
  font-weight: 600;
}
.contact-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 1px 4px;
}
.contact-actions__text {
  flex: 1 1 320px;
  font-size: 15px;
  color: var(--gray-600);
  max-width: 700px;
}
.contact-actions__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ═══════════════════════════════════════════════════════════════════
   DOWNLOAD CTA
   ═══════════════════════════════════════════════════════════════════ */
.download {
  padding: 100px 0;
  background: var(--gray-50);
}
.download__inner {
  background: linear-gradient(135deg, #fff5ec, #fff0e6, #fef7f0);
  border-radius: var(--radius-xl);
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(253, 106, 1, 0.1);
}
.download__inner::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(253, 106, 1, 0.06);
  bottom: -100px;
  right: -50px;
  filter: blur(40px);
}
.download__mascot {
  width: 220px;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.08));
  position: relative;
  z-index: 2;
}
.download__content {
  position: relative;
  z-index: 2;
}
.download__title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.2;
}
.download__desc {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 28px;
  line-height: 1.6;
}
.download__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--black);
  color: white;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.store-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.store-badge small {
  display: block;
  font-size: 10px;
  opacity: 0.7;
}
.store-badge strong {
  display: block;
  font-size: 15px;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.footer__links h4 {
  color: white;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer__links a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer__links a:hover {
  color: var(--turquoise);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  transition: var(--transition);
}
.footer__legal a:hover {
  color: var(--turquoise);
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials {
    grid-template-columns: 1fr;
  }
  .social-proof__bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero__subtitle {
    margin: 0 auto 32px;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__stats {
    justify-content: center;
  }
  .phone-mockup {
    width: 240px;
  }
  .hero__mascot {
    width: 120px;
    right: -30px;
    bottom: 10px;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }
  .step__connector {
    padding: 0;
    transform: rotate(90deg);
    margin: 10px 0;
  }

  .payment-section__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .payment-section__visual {
    order: -1;
  }
  .payment-section__mascot {
    max-height: 240px;
  }
  .payment-methods {
    align-items: center;
  }

  .download__inner {
    flex-direction: column;
    padding: 40px 28px;
    text-align: center;
  }
  .download__mascot {
    width: 160px;
  }
  .download__buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .hero__stats {
    flex-direction: column;
    gap: 12px;
  }
  .stat__divider {
    width: 40px;
    height: 1px;
  }
  .social-proof__bar {
    grid-template-columns: 1fr 1fr;
    padding: 20px;
  }
  .btn--lg {
    padding: 14px 28px;
    font-size: 15px;
  }
}
