/* ============================================
   FIND THE CAR – Main Stylesheet
   Palette: Navy #1a2f6e | Blue #2563eb | Cyan #38bdf8
   ============================================ */

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

:root {
  --navy:       #1a2f6e;
  --navy-mid:   #243584;
  --blue:       #2563eb;
  --blue-mid:   #3b82f6;
  --blue-light: #60a5fa;
  --cyan:       #38bdf8;
  --cyan-light: #bae6fd;
  --white:      #ffffff;
  --off-white:  #f8fafc;
  --gray-50:    #f0f4fa;
  --gray-100:   #e2eaf8;
  --gray-300:   #94a3b8;
  --gray-500:   #64748b;
  --gray-700:   #334155;
  --dark:       #0d1b3e;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(26,47,110,.08), 0 1px 2px rgba(26,47,110,.06);
  --shadow-md:  0 4px 16px rgba(26,47,110,.10), 0 2px 8px rgba(26,47,110,.06);
  --shadow-lg:  0 12px 40px rgba(26,47,110,.14), 0 4px 16px rgba(26,47,110,.08);
  --shadow-xl:  0 24px 64px rgba(26,47,110,.18);

  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.4s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

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

/* ---- TYPOGRAPHY ---- */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-tag.light {
  color: var(--cyan-light);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.20);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.section-title.light { color: var(--white); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,99,235,.35);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-mid), var(--navy-mid));
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,.4); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--gray-50);
}

.btn-lg { font-size: 16px; padding: 16px 32px; border-radius: var(--radius-md); }
.btn-full { width: 100%; justify-content: center; }
.btn-nav { padding: 10px 20px; font-size: 14px; }
.btn-arrow { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 84px;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 90px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover { color: var(--navy); background: var(--gray-50); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}
.lang-toggle:hover { background: var(--gray-100); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 16px; }
  .btn-nav { margin-top: 8px; justify-content: center; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 128px 0 80px;
  overflow: hidden;
  background: var(--off-white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(37,99,235,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 90% 80%, rgba(56,189,248,.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(26,47,110,.04) 0%, transparent 60%);
}

/* Decorative grid */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--gray-100) 1px, transparent 1px),
    linear-gradient(90deg, var(--gray-100) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Large hero logo — SVG, transparent background, no white box */
.hero-logo {
  width: 320px;
  max-width: 85vw;
  height: auto;
  margin: 0 auto 36px;
  display: block;
  filter: drop-shadow(0 2px 14px rgba(37,99,235,.16));
  animation: fadeInDown 0.55s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.2);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease both;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 400;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  box-shadow: var(--shadow-md);
  animation: fadeInUp 0.7s ease 0.4s both;
  flex-wrap: wrap;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  color: var(--gray-500);
  text-align: center;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-100);
}
@media (max-width: 560px) {
  .stat-divider { display: none; }
  .stat { padding: 12px 24px; }
  .hero-stats { gap: 0; }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
  padding: 100px 0;
  background: var(--white);
}
.how-section .container { text-align: center; }
.how-section .section-title { margin-bottom: 56px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

.step-card {
  position: relative;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: left;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(24px);
}
.step-card.visible { opacity: 1; transform: translateY(0); }
.step-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(37,99,235,.3);
}
.step-icon svg { width: 24px; height: 24px; color: white; }
.step-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   SELL SECTION
   ============================================ */
.sell-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}
.sell-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(56,189,248,.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 100% 20%, rgba(37,99,235,.1) 0%, transparent 60%);
}

.sell-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .sell-container { grid-template-columns: 1fr; gap: 40px; }
}

.sell-info .section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.sell-desc {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
}

.sell-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sell-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
}
.sell-features svg {
  width: 20px; height: 20px;
  color: var(--cyan);
  flex-shrink: 0;
}

/* ---- FORM CARD ---- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-xl);
}
@media (max-width: 480px) {
  .form-card { padding: 28px 20px; border-radius: var(--radius-lg); }
}

.form-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group:last-child { margin-bottom: 0; }

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--gray-700);
  background: var(--off-white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-md);
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2364748b'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 36px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-group input.error,
.form-group select.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
.form-group input::placeholder { color: var(--gray-300); }

.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 20px;
  color: var(--gray-300);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-100);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  margin-top: 4px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.form-check.error {
  background: rgba(239,68,68,.06);
  outline: 1.5px solid #ef4444;
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  outline-offset: 2px;
}
.form-check.error input[type="checkbox"] {
  outline: 2px solid #ef4444;
  border-radius: 2px;
}
.form-check label {
  font-size: 12px;
  color: var(--gray-500);
  cursor: pointer;
  line-height: 1.5;
  transition: var(--transition);
}
.form-check.error label { color: #ef4444; }
.form-check a {
  color: var(--blue);
  text-decoration: none;
}
.form-check a:hover { text-decoration: underline; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 16px;
  color: #15803d;
  font-size: 14px;
  font-weight: 500;
}
.form-success.visible { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--off-white);
  overflow: hidden;
}
.testimonials-section .container { text-align: center; }
.testimonials-section .section-title { margin-bottom: 48px; }

.testimonials-track-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  padding: 8px 4px 24px;
  will-change: transform;
  cursor: grab;
  user-select: none;
}
.testimonials-track.dragging { cursor: grabbing; }

.testimonial-card {
  min-width: 360px;
  max-width: 360px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.stars {
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.author-info span {
  font-size: 12px;
  color: var(--gray-300);
}

/* Testimonials Navigation */
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}
.nav-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.nav-arrow svg { width: 20px; height: 20px; }
.nav-arrow:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.nav-arrow:disabled { opacity: 0.35; cursor: default; pointer-events: none; }

.testimonials-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-100);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 480px) {
  .testimonial-card { min-width: 300px; max-width: 300px; padding: 28px 24px; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  padding: 100px 0;
  background: var(--white);
}

.contact-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.contact-sub {
  color: var(--gray-500);
  font-size: 15px;
  margin-top: -8px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .contact-cards { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

.contact-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.contact-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(37,99,235,.3);
}
.contact-icon svg { width: 24px; height: 24px; color: white; }

.contact-card h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.contact-value {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  margin-bottom: 8px;
  transition: var(--transition);
}
a.contact-value:hover { color: var(--blue); }
.contact-note {
  font-size: 12px;
  color: var(--gray-300);
  line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  padding: 56px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
}
.footer-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  /* Render full-color SVG but dimmed for footer elegance */
  filter: brightness(0) invert(1);
  opacity: 0.75;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}
.social-link:hover { color: var(--white); }
.social-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,.3);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50%       { opacity: 1;   transform: translateY(8px); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Netlify honeypot – oculto para usuarios, visible para bots */
.hidden { display: none; }
