/* ============================================================
   LAREMAY EXCHANGE — Main Stylesheet
   Brand: #2535D4 (primary blue) | #071138 (dark navy) | #FFFFFF
   ============================================================ */

:root {
  --primary: #2535D4;
  --primary-dark: #1a27b8;
  --primary-light: #3d50e8;
  --navy: #071138;
  --navy-mid: #0d1f5c;
  --navy-light: #1a2f7a;
  --white: #ffffff;
  --off-white: #f4f6ff;
  --gray-100: #f0f3ff;
  --gray-200: #e2e8f8;
  --gray-400: #8896c8;
  --gray-600: #4a5680;
  --gray-800: #1e2640;
  --green: #22c55e;
  --gold: #f5a623;
  --shadow-sm: 0 2px 8px rgba(37,53,212,0.08);
  --shadow-md: 0 8px 32px rgba(37,53,212,0.14);
  --shadow-lg: 0 20px 60px rgba(7,17,56,0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.25s ease;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, select, textarea { font-family: var(--font); }

/* ========== CONTAINER ========== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,53,212,0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,53,212,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ========== SECTION LABELS / HEADINGS ========== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(37,53,212,0.08);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  margin-bottom: 48px;
}

.highlight {
  position: relative;
  color: var(--primary);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

/* backdrop-filter is on ::before so it doesn't create a containing block
   for position:fixed children (which would trap the mobile nav overlay) */
.navbar.scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: -1;
}

.navbar.scrolled .nav-logo .logo-text strong,
.navbar.scrolled .logo-tm { color: var(--navy); }
.navbar.scrolled .nav-logo .logo-sub { color: var(--gray-600); }
.navbar.scrolled .nav-link { color: var(--gray-800); }
.navbar.scrolled .nav-link:hover { color: var(--primary); }
.navbar.scrolled .nav-toggle span { background: var(--navy); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 44px;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-img--footer {
  height: 50px;
}

.why-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: var(--white);
  transition: color var(--transition);
}

.logo-sub {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.logo-tm {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.6);
  align-self: flex-start;
  margin-top: 2px;
  transition: color var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 12px;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ========== HERO ========== */
.hero {
  min-height: auto;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 40%, var(--primary) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 70% 40%, rgba(37,53,212,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(37,53,212,0.2) 0%, transparent 50%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q15 20 30 30 Q45 40 60 30' stroke='rgba(255,255,255,0.04)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: #7b8fff;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-values {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.value-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 7px 14px;
  border-radius: 50px;
}

.value-tag svg {
  width: 14px;
  height: 14px;
  fill: #7b8fff;
  display: inline;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll-indicator span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

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

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

.stats-section .section-title,
.stats-section .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.stats-section .section-label {
  display: block;
  text-align: center;
  margin: 0 auto 16px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.stat-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.stat-card--primary {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.stat-card--primary .stat-label,
.stat-card--primary .stat-note { color: rgba(255,255,255,0.8); }

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  background: rgba(37,53,212,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card--primary .stat-icon {
  background: rgba(255,255,255,0.15);
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.stat-card--primary .stat-icon svg { stroke: var(--white); }

.stat-value {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card--primary .stat-value { color: var(--white); }

.stat-label {
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.stat-note {
  font-size: 0.78rem;
  color: var(--gray-600);
}

.stats-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.stats-cta p { font-size: 1.1rem; opacity: 0.9; }
.stats-cta strong { color: var(--white); }

/* ========== ABOUT ========== */
.about-section {
  padding: 100px 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-visual {
  position: relative;
  height: 380px;
}

.about-card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-card--back {
  width: 85%;
  height: 85%;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy-mid) 100%);
  transform: rotate(3deg);
}

.about-card--front {
  width: 85%;
  height: 85%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.about-logo-img {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.about-card-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  text-align: center;
  font-style: italic;
  font-weight: 500;
}

.about-card-since {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.about-wave-art {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-wave-art svg { width: 80%; height: 80%; }

.about-body {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.value-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.value-dot--blue { background: var(--primary); }
.value-dot--navy { background: var(--navy); }
.value-dot--light { background: var(--primary-light); }

.value-item strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.value-item p { font-size: 0.9rem; color: var(--gray-600); margin: 0; }

/* Milestones */
.milestones { padding-top: 40px; }
.milestones-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 40px;
  margin-top: 12px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gray-200);
}

.timeline-item {
  position: relative;
  padding-top: 44px;
  padding-right: 20px;
}

.timeline-dot {
  position: absolute;
  top: 12px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gray-200);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gray-200);
  z-index: 1;
}

.timeline-item--active .timeline-dot {
  background: var(--primary);
  box-shadow: 0 0 0 2px var(--primary), 0 0 0 4px rgba(37,53,212,0.2);
}

.timeline-year {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.timeline-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ========== HOW IT WORKS ========== */
.how-section {
  padding: 100px 0;
  background: var(--white);
}

.how-section .section-title { text-align: center; }
.how-section .section-sub { text-align: center; margin: 0 auto 48px; }
.how-section .section-label { display: block; text-align: center; margin: 0 auto 16px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
}

.step-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  background: var(--white);
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.step-icon {
  width: 48px;
  height: 48px;
  background: rgba(37,53,212,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.how-cta { text-align: center; }

/* ========== SERVICES ========== */
.services-section {
  padding: 100px 0;
  background: var(--off-white);
}

.services-section .section-label { display: block; text-align: center; margin: 0 auto 16px; }
.services-section .section-title { text-align: center; }
.services-section .section-sub { text-align: center; margin: 0 auto 48px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-card--featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
  border-color: transparent;
  color: var(--white);
}

.service-card--featured:hover { border-color: transparent; }

.service-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(37,53,212,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-card--featured .service-icon {
  background: rgba(255,255,255,0.15);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
}

.service-card--featured .service-icon svg { stroke: var(--white); }

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card--featured h3 { color: var(--white); }

.service-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card--featured p { color: rgba(255,255,255,0.8); }

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 0.85rem;
  color: var(--gray-600);
  padding-left: 20px;
  position: relative;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.service-card--featured .service-features li { color: rgba(255,255,255,0.8); }
.service-card--featured .service-features li::before { color: rgba(255,255,255,0.9); }

/* ========== WHY LAREMAY ========== */
.why-section {
  padding: 100px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-check svg {
  width: 14px;
  height: 14px;
  fill: var(--white);
  display: inline;
}

.why-item strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.why-item p { font-size: 0.9rem; color: var(--gray-600); margin: 0; }

.why-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: var(--white);
}

.why-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 1.1rem;
}

.why-logo {
  width: 40px;
  height: 48px;
}

.why-stat-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.why-stat {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.why-stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.why-stat-label {
  font-size: 0.78rem;
  opacity: 0.75;
}

.why-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.why-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 12px;
  border-radius: 50px;
}

/* ========== REVIEWS ========== */
.reviews-section {
  padding: 100px 0;
  background: var(--off-white);
}

.reviews-section .section-label { display: block; text-align: center; margin: 0 auto 16px; }
.reviews-section .section-title { text-align: center; }
.reviews-section .section-sub { text-align: center; margin: 0 auto 48px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.review-card--featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent;
  color: var(--white);
}

.review-stars {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.review-card--featured .review-text { color: rgba(255,255,255,0.8); }

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card--featured .review-avatar {
  background: rgba(255,255,255,0.2);
}

.review-author strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.review-card--featured .review-author strong { color: var(--white); }

.review-author span {
  font-size: 0.78rem;
  color: var(--gray-400);
}

.review-card--featured .review-author span { color: rgba(255,255,255,0.6); }

/* ========== PROOF CAROUSEL ========== */
.proof-carousel-wrap {
  margin-top: 72px;
  text-align: center;
}

.proof-carousel-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

/* Full-width cinematic filmstrip */
.proof-stage {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  padding: 32px 0 40px;
  overflow: hidden;
}

.proof-carousel {
  position: relative;
  overflow: visible;
}

.proof-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
}

.proof-slide {
  min-width: 300px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  opacity: 0.35;
  transform: scale(0.82);
  filter: grayscale(0.4) brightness(0.6);
  transition: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.proof-slide.active {
  opacity: 1;
  transform: scale(1);
  filter: none;
  box-shadow: 0 24px 70px rgba(0,0,0,0.5);
}

.proof-slide img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Cinematic edge fades */
.proof-edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18%;
  z-index: 3;
  pointer-events: none;
}
.proof-edge--left  { left: 0;  background: linear-gradient(90deg, var(--off-white), transparent); }
.proof-edge--right { right: 0; background: linear-gradient(270deg, var(--off-white), transparent); }

.proof-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  z-index: 5;
  box-shadow: 0 6px 20px rgba(37,53,212,0.4);
}

.proof-btn:hover { background: var(--navy); transform: translateY(-50%) scale(1.1); }
.proof-btn--prev { left: 24px; }
.proof-btn--next { right: 24px; }

.proof-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.proof-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* Dark mode */
html[data-theme="dark"] .proof-carousel-title { color: var(--white); }
html[data-theme="dark"] .proof-dot { background: rgba(255,255,255,0.2); }
html[data-theme="dark"] .proof-dot.active { background: var(--primary); }
html[data-theme="dark"] .proof-edge--left  { background: linear-gradient(90deg, var(--dm-bg, #071138), transparent); }
html[data-theme="dark"] .proof-edge--right { background: linear-gradient(270deg, var(--dm-bg, #071138), transparent); }

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-body {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 40px;
  line-height: 1.8;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: 2px solid var(--gray-200);
  color: var(--gray-800);
}

.social-link:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.social-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.social-link--whatsapp { border-color: #25D366; }
.social-link--whatsapp:hover { background: #25D366; color: white; }
.social-link--whatsapp svg { fill: #25D366; }
.social-link--whatsapp:hover svg { fill: white; }

.social-link--instagram { border-color: #E1306C; }
.social-link--instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.social-link--instagram svg { fill: #E1306C; }
.social-link--instagram:hover svg { fill: white; }

.social-link--x { border-color: #000; }
.social-link--x:hover { background: #000; color: white; }
.social-link--x svg { fill: #000; }
.social-link--x:hover svg { fill: white; }

.social-link--tiktok { border-color: #010101; }
.social-link--tiktok:hover { background: #010101; color: white; }
.social-link--tiktok svg { fill: #010101; }
.social-link--tiktok:hover svg { fill: white; }

/* Contact Form */
.contact-form-wrap {
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--gray-200);
}

.contact-form h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  background: var(--white);
  color: var(--gray-800);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,53,212,0.1);
}

.form-group textarea { resize: vertical; }

.form-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 12px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo .logo-text strong { color: var(--white); }
.footer-logo .logo-sub { color: rgba(255,255,255,0.5); }
.footer-logo .logo-tm { color: rgba(255,255,255,0.4); }

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 24px;
  opacity: 0.7;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

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

.footer-socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.8);
}

.footer-nav h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  padding-right: 185px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.82rem; opacity: 0.5; }

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--white); }

/* ========== FLOATING WHATSAPP ========== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  padding: 14px 20px 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
  flex-shrink: 0;
}

/* ========== FORM SUCCESS STATE ========== */
.form-success {
  text-align: center;
  padding: 48px 32px;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
  stroke-width: 3;
  fill: none;
}

.form-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  /* Layout */
  .about-grid    { grid-template-columns: 1fr; }
  .about-visual  { height: 300px; width: 400px; max-width: 100%; margin: 0 auto; }
  .why-grid      { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }

  /* ── Hamburger nav on tablet ── */
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 999;
  }
  .nav-links.open          { display: flex; }
  .nav-link                { font-size: 1.2rem; color: rgba(255,255,255,0.85); }
  .nav-cta                 { margin-top: 8px; }
  .nav-toggle              { display: flex; z-index: 1000; }
  .theme-toggle            { margin-left: auto; margin-right: 8px; }

  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg)  translate(5px,  5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

@media (max-width: 768px) {
  /* Tighten all section paddings on mobile */
  .hero           { padding: 90px 0 40px; }
  .stats-section,
  .about-section,
  .how-section,
  .services-section,
  .why-section,
  .reviews-section { padding: 40px 0; }
  .hero-scroll-indicator { display: none; }
  .milestones { padding-top: 16px; }
  .section-sub { margin-bottom: 28px; }
  .stats-grid  { margin-bottom: 28px; }

  /* Fix Why section overflow on mobile */
  .why-grid        { grid-template-columns: 1fr; gap: 32px; }
  .why-content     { overflow: hidden; }
  .section-title   { overflow-wrap: break-word; word-break: break-word; }
  .why-item p      { overflow-wrap: break-word; }
  .why-item strong { overflow-wrap: break-word; }
  .btn-white       { width: 100%; justify-content: center; }

  /* Fix footer bottom links wrapping */
  .footer-bottom   { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
  .footer-legal    { justify-content: center; }

  /* Reduce contact gap before footer */
  .contact-section { padding: 40px 0; }

  /* Nav rules already applied at 1024px above */

  .stats-cta {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .about-visual { display: none; margin: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 0; }

  .timeline { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .timeline-item { padding-top: 0; padding-left: 32px; padding-bottom: 24px; }
  .timeline-dot { top: 0; }

  .why-card { margin-top: 32px; }

  .contact-section { padding: 60px 0; }
  .footer { padding: 48px 0 24px; }

  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }

  /* Force single column on small screens */
  .stats-grid,
  .steps-grid,
  .services-grid,
  .reviews-grid   { grid-template-columns: 1fr; gap: 16px; }

  /* Tighter card padding */
  .stat-card      { padding: 24px 20px; }
  .step-card      { padding: 24px 20px; }
  .service-card   { padding: 28px 20px; }
  .review-card    { padding: 24px 20px; }

  .contact-form-wrap  { padding: 20px 16px; }
  .stats-cta          { padding: 24px 20px; }
  .why-card           { padding: 28px 20px; }

  /* Smaller stat numbers on mobile */
  .stat-value { font-size: 2rem; }
}

/* ========== THEME TOGGLE BUTTON ========== */
html { transition: background-color 0.3s ease, color 0.3s ease; }

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
  margin-right: 4px;
}

.theme-toggle:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  transition: all var(--transition);
}

/* Show sun in dark mode, moon in light mode */
html[data-theme="light"] .icon-moon { display: block; }
html[data-theme="light"] .icon-sun  { display: none;  }
html[data-theme="dark"]  .icon-sun  { display: block; }
html[data-theme="dark"]  .icon-moon { display: none;  }

/* Scrolled navbar adjustments */
.navbar.scrolled .theme-toggle {
  border-color: var(--gray-200);
  background: var(--gray-100);
}
.navbar.scrolled .theme-toggle svg { stroke: var(--navy); }
.navbar.scrolled .theme-toggle:hover { background: var(--gray-200); }

/* ========== DARK MODE ========== */
html[data-theme="dark"] {
  --dm-bg:       #080e1f;
  --dm-bg2:      #0d1535;
  --dm-card:     #111827;
  --dm-border:   rgba(255,255,255,0.07);
  --dm-text:     #e2e8f8;
  --dm-muted:    #7a89b8;
  --dm-heading:  #ffffff;
}

html[data-theme="dark"] body {
  background: var(--dm-bg);
  color: var(--dm-text);
}

/* Sections */
html[data-theme="dark"] .stats-section,
html[data-theme="dark"] .how-section,
html[data-theme="dark"] .why-section,
html[data-theme="dark"] .contact-section {
  background: var(--dm-bg);
}

html[data-theme="dark"] .about-section,
html[data-theme="dark"] .services-section,
html[data-theme="dark"] .reviews-section {
  background: var(--dm-bg2);
}

/* Navbar */
html[data-theme="dark"] .navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
html[data-theme="dark"] .navbar.scrolled::before {
  background: rgba(8,14,31,0.97);
}
html[data-theme="dark"] .navbar.scrolled .logo-text strong { color: var(--white); }
html[data-theme="dark"] .navbar.scrolled .logo-sub         { color: rgba(255,255,255,0.5); }
html[data-theme="dark"] .navbar.scrolled .logo-tm          { color: rgba(255,255,255,0.3); }
html[data-theme="dark"] .navbar.scrolled .nav-link         { color: var(--dm-text); }
html[data-theme="dark"] .navbar.scrolled .nav-link:hover   { color: var(--white); }
html[data-theme="dark"] .navbar.scrolled .nav-toggle span  { background: var(--white); }
html[data-theme="dark"] .navbar.scrolled .theme-toggle     { border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); }
html[data-theme="dark"] .navbar.scrolled .theme-toggle svg { stroke: var(--white); }
html[data-theme="dark"] .navbar.scrolled .theme-toggle:hover { background: rgba(255,255,255,0.12); }

/* Mobile menu */
html[data-theme="dark"] .nav-links { background: #080e1f; }

/* Section labels & titles */
html[data-theme="dark"] .section-title  { color: var(--dm-heading); }
html[data-theme="dark"] .section-sub    { color: var(--dm-muted); }
html[data-theme="dark"] .milestones-title { color: var(--dm-heading); }

/* Cards */
html[data-theme="dark"] .stat-card {
  background: var(--dm-card);
  border-color: var(--dm-border);
}
html[data-theme="dark"] .stat-card:hover  { border-color: var(--primary); }
html[data-theme="dark"] .stat-label       { color: var(--dm-text); }
html[data-theme="dark"] .stat-note        { color: var(--dm-muted); }
html[data-theme="dark"] .stat-value       { color: var(--white); }
html[data-theme="dark"] .stat-icon        { background: rgba(37,53,212,0.2); }

html[data-theme="dark"] .step-card {
  background: var(--dm-card);
  border-color: var(--dm-border);
}
html[data-theme="dark"] .step-card h3  { color: var(--dm-heading); }
html[data-theme="dark"] .step-card p   { color: var(--dm-muted); }
html[data-theme="dark"] .step-card:hover { background: var(--dm-card); border-color: var(--primary); }

html[data-theme="dark"] .service-card {
  background: var(--dm-card);
  border-color: var(--dm-border);
}
html[data-theme="dark"] .service-card h3 { color: var(--dm-heading); }
html[data-theme="dark"] .service-card p  { color: var(--dm-muted); }
html[data-theme="dark"] .service-features li { color: var(--dm-muted); }

html[data-theme="dark"] .review-card {
  background: var(--dm-card);
  border-color: var(--dm-border);
}
html[data-theme="dark"] .review-text           { color: var(--dm-muted); }
html[data-theme="dark"] .review-author strong  { color: var(--dm-heading); }

/* About */
html[data-theme="dark"] .about-body      { color: var(--dm-muted); }
html[data-theme="dark"] .value-item p    { color: var(--dm-muted); }
html[data-theme="dark"] .value-item strong { color: var(--dm-heading); }
html[data-theme="dark"] .timeline-content h4 { color: var(--dm-heading); }
html[data-theme="dark"] .timeline-content p  { color: var(--dm-muted); }
html[data-theme="dark"] .timeline::before    { background: var(--dm-border); }
html[data-theme="dark"] .timeline-dot        { background: var(--dm-border); border-color: var(--dm-bg2); }

/* Why section */
html[data-theme="dark"] .why-item strong { color: var(--dm-heading); }
html[data-theme="dark"] .why-item p      { color: var(--dm-muted); }

/* Contact */
html[data-theme="dark"] .contact-body { color: var(--dm-muted); }
html[data-theme="dark"] .social-link  { border-color: var(--dm-border); color: var(--dm-text); background: var(--dm-card); }

html[data-theme="dark"] .contact-form-wrap { background: var(--dm-card); border-color: var(--dm-border); }
html[data-theme="dark"] .contact-form h3   { color: var(--dm-heading); }
html[data-theme="dark"] .form-subtitle     { color: var(--dm-muted); }
html[data-theme="dark"] .form-group label  { color: var(--dm-text); }
html[data-theme="dark"] .form-group input,
html[data-theme="dark"] .form-group select,
html[data-theme="dark"] .form-group textarea {
  background: var(--dm-bg2);
  border-color: var(--dm-border);
  color: var(--dm-text);
}
html[data-theme="dark"] .form-group input::placeholder,
html[data-theme="dark"] .form-group textarea::placeholder { color: var(--dm-muted); }
html[data-theme="dark"] .form-note { color: var(--dm-muted); }

/* Stats CTA banner */
html[data-theme="dark"] .stats-cta { background: linear-gradient(135deg, #0d1535 0%, #111827 100%); }

/* Legal pages */
html[data-theme="dark"] .legal-body         { background: var(--dm-bg); }
html[data-theme="dark"] .legal-notice       { background: rgba(37,53,212,0.12); color: var(--dm-text); }
html[data-theme="dark"] .legal-notice strong { color: var(--white); }
html[data-theme="dark"] .legal-section h2   { color: var(--dm-heading); border-color: var(--dm-border); }
html[data-theme="dark"] .legal-section h3   { color: var(--dm-heading); }
html[data-theme="dark"] .legal-section p    { color: var(--dm-muted); }
html[data-theme="dark"] .legal-section ul li { color: var(--dm-muted); }
html[data-theme="dark"] .legal-section      { border-color: var(--dm-border); }

/* Footer always stays dark — no override needed */

/* Fix navy dot invisible in dark mode */
html[data-theme="dark"] .value-dot--navy { background: var(--primary-light); }
