/* ============================================
   FINNWISE — Waitlist Landing Page Styles
   Modern, youthful, clean design
   ============================================ */

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

:root {
  /* Primary palette */
  --primary: #6C63FF;
  --primary-dark: #5A52D5;
  --primary-light: #8B83FF;
  --secondary: #3B82F6;
  --accent: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;

  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #6C63FF 0%, #3B82F6 100%);
  --gradient-hero: linear-gradient(135deg, #0F0C29 0%, #1A1A3E 50%, #24243E 100%);
  --gradient-card: linear-gradient(145deg, rgba(108, 99, 255, 0.05), rgba(59, 130, 246, 0.05));

  /* Spacing */
  --section-py: clamp(4rem, 8vw, 7rem);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;

  /* Misc */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 60px rgba(108, 99, 255, 0.2);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

/* ---------- LEGAL PAGES ---------- */
.legal-page[data-lang="es"] [data-lang="en"],
.legal-page[data-lang="en"] [data-lang="es"] {
  display: none !important;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 1rem;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.lang-toggle__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.45rem 0.75rem;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.lang-toggle__btn[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.92);
  color: var(--gray-900);
}

.lang-toggle__btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 2px;
}

.legal-page .navbar__logo {
  color: var(--white);
}

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

.legal-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.legal-updated,
.legal-contact {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.legal-contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content {
  padding: var(--section-py) 0;
  background: var(--white);
}

.legal-container {
  max-width: 920px;
}

.legal-section {
  scroll-margin-top: 110px;
}

.legal-section + .legal-section {
  margin-top: 3.5rem;
}

.legal-section__header {
  margin-bottom: 1.25rem;
}

.legal-lang {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.25rem;
}

.legal-lang h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.legal-lang h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.legal-lang p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-top: 0.6rem;
}

.legal-lang p:first-of-type {
  margin-top: 0;
}

.legal-lang ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: 0.75rem;
}

.legal-lang li {
  color: var(--gray-600);
  margin: 0.45rem 0;
  line-height: 1.75;
}

.legal-lang a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-divider {
  border: 0;
  border-top: 1px solid var(--gray-200);
  margin: 1.25rem 0;
}

.legal-back {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

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

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

ul {
  list-style: none;
}

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

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

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(108, 99, 255, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: rgba(108, 99, 255, 0.35);
}

.btn--outline:hover {
  color: var(--primary-dark);
  border-color: rgba(108, 99, 255, 0.55);
  transform: translateY(-1px);
}

.hero--legal .btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero--legal .btn--outline:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn--nav {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}
.btn--nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  background: transparent;
}

.navbar--scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  padding: 0.7rem 0;
}

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

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

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

.navbar__menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  position: relative;
}
.navbar__menu a:not(.btn):hover {
  color: var(--white);
}
.navbar__menu a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
  border-radius: 1px;
}
.navbar__menu a:not(.btn):hover::after {
  width: 100%;
}

.navbar--scrolled .navbar__menu a:not(.btn) {
  color: var(--gray-600);
}
.navbar--scrolled .navbar__menu a:not(.btn):hover {
  color: var(--primary);
}

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

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

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.shape--1 {
  width: 600px;
  height: 600px;
  background: #6C63FF;
  top: -200px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}
.shape--2 {
  width: 400px;
  height: 400px;
  background: #3B82F6;
  bottom: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}
.shape--3 {
  width: 300px;
  height: 300px;
  background: #10B981;
  top: 40%;
  left: 40%;
  animation: float 12s ease-in-out infinite;
}

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

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

.hero__badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(108, 99, 255, 0.15);
  border: 1px solid rgba(108, 99, 255, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero__title .gradient-text {
  background: linear-gradient(135deg, #A78BFA 0%, #60A5FA 50%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero__subtitle--mobile { display: none; }

/* ---------- WAITLIST FORM ---------- */
.hero__waitlist-form--mobile { display: none; }

.waitlist-form__group {
  display: flex;
  gap: 0.75rem;
  max-width: 520px;
}

.waitlist-form__input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
  min-width: 0;
}
.waitlist-form__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.waitlist-form__input:focus {
  border-color: var(--primary-light);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.15);
}

.waitlist-form__btn {
  flex-shrink: 0;
}

.waitlist-form__note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.waitlist-form__message {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  min-height: 1.4em;
}
.waitlist-form__message--success {
  color: #34D399;
}
.waitlist-form__message--error {
  color: #F87171;
}

/* CTA section form overrides */
.waitlist-form--cta .waitlist-form__group {
  max-width: 560px;
  margin: 0 auto;
}

.waitlist-form--cta .waitlist-form__group--center {
  justify-content: center;
}

/* Phone Mockup */
.hero__visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  perspective: 1000px;
}

.phone-mockup__frame {
  width: 280px;
  background: var(--gray-900);
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    var(--shadow-glow),
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.1);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  animation: phoneFloat 6s ease-in-out infinite;
}
.phone-mockup__frame:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

@keyframes phoneFloat {
  0%, 100% { transform: rotateY(-5deg) rotateX(2deg) translateY(0); }
  50% { transform: rotateY(-5deg) rotateX(2deg) translateY(-12px); }
}

.phone-mockup__screen {
  border-radius: 26px;
  overflow: hidden;
  background: var(--gray-800);
}

.phone-mockup__img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- TRUST SECTION ---------- */
.trust {
  padding: 2.5rem 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

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

.trust__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-400);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.trust__item:hover {
  color: var(--gray-600);
}
.trust__item svg {
  opacity: 0.5;
}

/* ---------- SECTION HEADER ---------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(108, 99, 255, 0.08);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ---------- FEATURES ---------- */
.features {
  padding: var(--section-py) 0;
  background: var(--white);
}

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

.feature-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(108, 99, 255, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(108, 99, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--accent, var(--primary));
}
.feature-card__icon svg {
  color: var(--accent);
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.7rem;
}

.feature-card__desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ---------- SCREENSHOTS ---------- */
.screenshots {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.screenshots__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  justify-items: center;
}

.screenshots__item {
  width: 100%;
}

.screenshots__phone {
  background: var(--gray-900);
  border-radius: 28px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  overflow: hidden;
}
.screenshots__phone:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.screenshots__phone img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* ---------- HOW IT WORKS ---------- */
.how-it-works {
  padding: var(--section-py) 0;
  background: var(--white);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: var(--gray-200);
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
}

.step__number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.step__content {
  padding-top: 0.5rem;
}

.step__content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.4rem;
}

.step__content p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ---------- BENEFITS ---------- */
.benefits {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.benefits__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.benefits__visual {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.benefits__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.benefits__card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(108, 99, 255, 0.2);
}

.benefits__card-icon {
  font-size: 2rem;
}

.benefits__card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.benefits__stat {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
}

.benefits__content .section-tag {
  text-align: left;
}

.benefits__content .section-title {
  text-align: left;
}

.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefits__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefits__list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.benefits__list li strong {
  display: block;
  font-size: 1rem;
  color: var(--gray-800);
  margin-bottom: 0.2rem;
}

.benefits__list li p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}

/* ---------- FAQ ---------- */
.faq {
  padding: var(--section-py) 0;
  background: var(--white);
}

.faq__list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq__item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq__item:hover {
  border-color: rgba(108, 99, 255, 0.3);
}
.faq__item[open] {
  border-color: rgba(108, 99, 255, 0.3);
  box-shadow: 0 2px 12px rgba(108, 99, 255, 0.08);
}

.faq__item summary {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-800);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq__item[open] summary::after {
  content: '−';
}

.faq__item summary:hover {
  color: var(--primary);
}

.faq__item p {
  padding: 0 1.5rem 1.2rem;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ---------- CTA / WAITLIST ---------- */
.cta {
  padding: var(--section-py) 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: rgba(108, 99, 255, 0.15);
  border-radius: 50%;
  filter: blur(100px);
}

.cta__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta__highlight {
  background: linear-gradient(135deg, #A78BFA, #60A5FA, #34D399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta__desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta__note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 4rem 0 0;
  background: var(--gray-900);
  color: var(--gray-400);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gray-700);
}

.footer__brand {
  max-width: 300px;
}
.footer__brand .navbar__logo {
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links {
  display: flex;
  gap: 2.5rem;
  justify-content: flex-end;
  align-items: flex-start;
}

.footer__col a {
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: var(--transition);
}
.footer__col a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.footer__bottom p {
  font-size: 0.85rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gray-400);
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- ANIMATIONS ---------- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate="fade-left"] {
  transform: translateX(40px);
}
[data-animate="fade-right"] {
  transform: translateX(-40px);
}
[data-animate].visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__visual {
    order: -1;
  }
  .phone-mockup__frame {
    width: 250px;
  }
  .waitlist-form__group {
    max-width: 100%;
    justify-content: center;
  }
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .screenshots__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .benefits__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .navbar__toggle {
    display: flex;
  }
  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: var(--white);
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 999;
  }
  .navbar__menu.active {
    right: 0;
  }
  .navbar__menu a {
    color: var(--gray-700) !important;
    font-size: 1rem;
  }
  .navbar__menu a.btn--nav {
    color: var(--white) !important;
  }
  .navbar__menu a:hover {
    color: var(--primary) !important;
  }
  .navbar__toggle.active span {
    background: var(--gray-900);
  }

  /* Mobile hero reorder */
  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .hero__content {
    display: contents;
  }
  .hero__badge { order: 1; margin-bottom: 0.5rem; }
  .hero__title { order: 2; margin-bottom: 0.5rem; }
  .hero__visual { order: 3; margin: 0.5rem 0; justify-content: center; }
  .hero__subtitle { display: none; }
  .hero__subtitle--mobile { display: block; order: 4; color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 1rem; text-align: center; }
  .hero__waitlist-form { display: none; }
  .hero__waitlist-form--mobile { display: block; order: 5; text-align: center; }
  .hero__waitlist-form--mobile .waitlist-form__group {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }
  .hero__waitlist-form--mobile .waitlist-form__btn {
    justify-content: center;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }
  .screenshots__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .screenshots__phone {
    border-radius: 20px;
    padding: 6px;
  }
  .screenshots__phone img {
    border-radius: 15px;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 5rem 0 2.5rem;
  }
  .hero__title {
    font-size: 1.75rem;
  }
  .waitlist-form__group {
    flex-direction: column;
    align-items: stretch;
  }
  .waitlist-form__btn {
    justify-content: center;
  }
  .waitlist-form--cta .waitlist-form__group {
    flex-direction: column;
  }
  .screenshots__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .screenshots__phone {
    border-radius: 16px;
    padding: 5px;
  }
  .screenshots__phone img {
    border-radius: 12px;
  }
  .trust__logos {
    gap: 1.5rem;
  }
  .trust__item {
    font-size: 0.8rem;
  }
  .steps::before {
    left: 22px;
  }
  .step__number {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

/* ---------- PRINT ---------- */
@media print {
  .navbar, .hero__bg-shapes, .cta, .footer__social { display: none; }
  body { color: #000; background: #fff; }
  a { color: #000; }
}
