:root {
  --exp-blue: #0054A6;
  --exp-navy: #021B3B;
  --exp-orange: #F58320;
  --exp-light: #F5F7FA;
  --exp-grey: #8A94A6;
  --text-main: #111827;
  --text-light: #E5E7EB;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.25);
  --shadow-glow: 0 0 60px rgba(245, 131, 32, 0.2);
  --gradient-premium: linear-gradient(135deg, #0054A6 0%, #021B3B 50%, #0a1628 100%);
  --gradient-gold: linear-gradient(135deg, #F58320 0%, #FFB800 100%);
}

/* ===== ANIMATIONS ===== */

html {
  scroll-behavior: smooth;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

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

/* Scroll-triggered animation classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Hero animations */
.hero-animate {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-animate.delay-1 { animation-delay: 0.1s; }
.hero-animate.delay-2 { animation-delay: 0.3s; }
.hero-animate.delay-3 { animation-delay: 0.5s; }
.hero-animate.delay-4 { animation-delay: 0.7s; }

/* Slide animations */
.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-left.visible,
.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale animation */
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Button hover enhancements */
.btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.btn:active {
  transform: translateY(-1px);
}

/* Card hover effects */
.feature-card,
.reason-card,
.leader-card,
.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.reason-card:hover,
.leader-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Profile card animation */
.profile-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Nav link underline animation */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--exp-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ===== LANG SWITCH (FIXED) ===== */

.i18n-fr {
  display: block !important;
}

.i18n-en {
  display: none !important;
}

nav .i18n-fr,
.footer-text .i18n-fr,
.footer-whatsapp-link .i18n-fr,
.toggle-label-fr {
  display: inline !important;
}

html.lang-en .i18n-fr {
  display: none !important;
}

html.lang-en .i18n-en {
  display: block !important;
}

html.lang-en nav .i18n-en,
html.lang-en .footer-text .i18n-en,
html.lang-en .footer-whatsapp-link .i18n-en,
html.lang-en .toggle-label-en {
  display: inline !important;
}

.toggle-label-en {
  display: none !important;
}

html.lang-en .toggle-label-fr {
  display: none !important;
}

html.lang-en .toggle-label-en {
  display: inline !important;
}

/* ===== GLOBAL ===== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
  line-height: 1.6;
}

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

.section {
  padding: 100px 0;
}

.section-light {
  background-color: var(--exp-light);
}

.section-dark {
  background: radial-gradient(circle at top left, #063b7a, var(--exp-navy));
  color: var(--text-light);
}

.section-gradient {
  background: var(--gradient-premium);
  color: #ffffff;
}

.section-cta {
  background: linear-gradient(135deg, var(--exp-blue), var(--exp-navy));
  color: #ffffff;
  padding: 72px 0;
}

/* Section Eyebrow */
.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--exp-orange);
  margin-bottom: 12px;
}

.section-eyebrow.light {
  color: rgba(255, 255, 255, 0.7);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin: 0 0 16px;
  font-weight: 700;
}

.section-title-large {
  font-size: 2.8rem;
  line-height: 1.2;
}

.section-title-xl {
  font-size: 3.2rem;
  line-height: 1.15;
}

.section-intro {
  max-width: 680px;
  margin: 0 0 48px;
  color: inherit;
  font-size: 1.1rem;
}

.section-intro-large {
  font-size: 1.15rem;
  font-weight: 400;
}

/* Glass Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
}

.glass-card-dark {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  background: linear-gradient(to bottom, rgba(0, 11, 40, 0.95), rgba(0, 11, 40, 0.85));
  backdrop-filter: blur(12px);
  color: #ffffff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo-image {
  height: 32px;
  display: block;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-link {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link-cta {
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--exp-orange);
  color: #111827 !important;
  font-weight: 500;
  border: none;
}

.nav-link-cta:hover {
  background: #ff9a3c;
}

.nav-link-cta::after {
  display: none;
}

/* LANG TOGGLE BUTTON */

.lang-toggle {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lang-toggle.small {
  padding: 4px 10px;
  font-size: 0.75rem;
}

/* TOP BANNER */

.top-banner {
  position: relative;
  margin-top: 70px;
  padding: 40px 0;
  background-color: #020617;
  overflow: hidden;
}

.top-banner-blur {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(25px);
  opacity: 0.5;
  transform: scale(1.1);
  z-index: 0;
}

.top-banner-inner {
  position: relative;
  max-width: 55%;
  margin: 0 auto;
  z-index: 1;
}

.top-banner-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

/* HERO */

.hero {
  position: relative;
  padding-top: 50px;
  padding-bottom: 80px;
  color: #ffffff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/bgblue.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(245, 131, 32, 0.2);
  color: var(--exp-orange);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 16px;
  border: 1px solid rgba(245, 131, 32, 0.3);
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  margin: 0 0 20px;
  line-height: 1.15;
}

.hero-text h1 .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  margin: 0 0 28px;
  max-width: 560px;
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-note {
  font-size: 0.9rem;
  opacity: 0.8;
  max-width: 500px;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn.primary {
  background: var(--gradient-gold);
  color: #111827;
  box-shadow: 0 14px 35px rgba(245, 131, 32, 0.35);
}

.btn.primary:hover {
  box-shadow: 0 18px 45px rgba(245, 131, 32, 0.45);
}

.btn.ghost {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn.ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn.large {
  padding: 14px 32px;
  font-size: 1.05rem;
}

/* WHATSAPP BUTTON */

.btn.whatsapp {
  background-color: #25D366;
  color: #042f1a;
  border-color: #1ebe5a;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

.btn.whatsapp:hover {
  background-color: #1ebe5a;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45);
}

/* HERO ASIDE */

.hero-aside {
  display: flex;
  justify-content: flex-end;
}

.profile-card {
  background: rgba(15, 23, 42, 0.85);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-photo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(245, 131, 32, 0.5);
}

.profile-name {
  font-weight: 600;
  margin: 0;
  font-size: 1.1rem;
}

.profile-role {
  margin: 4px 0;
  font-size: 0.85rem;
  color: #cbd5f5;
}

.profile-tagline {
  margin: 0;
  font-size: 0.85rem;
  color: var(--exp-orange);
}

/* STATS SECTION */

.stats-section {
  background: linear-gradient(180deg, #020617 0%, var(--exp-navy) 100%);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

/* GRIDS */

.grid {
  display: grid;
  gap: 24px;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* FEATURE CARDS */

.feature-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.section-dark .feature-card {
  background: rgba(15, 23, 42, 0.85);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 131, 32, 0.1);
  color: var(--exp-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin: 0 0 10px;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--exp-grey);
  line-height: 1.6;
}

/* COMMISSION SECTION */

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

.commission-content p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.commission-breakdown {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.commission-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.commission-step:hover {
  background: rgba(255, 255, 255, 0.12);
}

.commission-step.highlight-step {
  background: rgba(245, 131, 32, 0.15);
  border-color: rgba(245, 131, 32, 0.3);
}

.step-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.step-badge.gold {
  background: var(--gradient-gold);
  color: #111827;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step-content strong {
  font-size: 1.05rem;
}

.step-content span {
  font-size: 0.9rem;
  opacity: 0.8;
}

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

.commission-image {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* DIGITAL SECTION */

.section-digital {
  position: relative;
  padding: 120px 0;
  color: #ffffff;
  overflow: hidden;
}

.digital-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.digital-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.digital-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 27, 59, 0.9) 0%, rgba(0, 84, 166, 0.7) 100%);
}

.digital-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.digital-text p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.digital-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.digital-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-icon {
  color: var(--exp-orange);
  font-size: 1.2rem;
}

.digital-lifestyle {
  position: relative;
}

.lifestyle-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.lifestyle-caption {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  padding: 16px 20px;
  text-align: center;
}

.lifestyle-caption p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.lifestyle-caption-text {
  color: var(--exp-navy) !important;
  font-weight: 600 !important;
}

/* CHECKLIST */

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 1rem;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.9rem;
  color: var(--exp-orange);
}

/* TWO COLUMNS */

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}

/* LEADER CARD */

.leader-card {
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-soft);
}

.leader-photo {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid rgba(245, 131, 32, 0.5);
}

.leader-name {
  margin: 0;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.leader-role {
  margin: 6px 0;
  font-size: 0.9rem;
  color: var(--exp-orange);
  font-weight: 500;
}

.leader-text {
  margin: 0 0 8px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.leader-contact {
  font-size: 0.9rem;
  color: var(--exp-orange);
  text-decoration: none;
}

.leader-contact:hover {
  text-decoration: underline;
}

/* REASON CARDS */

.reason-card {
  padding: 28px 24px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.15);
}

.reason-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.reason-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.reason-card p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
}

/* TESTIMONIALS */

.testimonials-grid {
  align-items: stretch;
}

.testimonial-card {
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.testimonial-quote-mark {
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  color: var(--exp-orange);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 24px 0 20px;
  position: relative;
  z-index: 1;
}

.testimonial-name {
  margin: 0;
  font-size: 0.9rem;
  color: var(--exp-grey);
  font-weight: 500;
}

/* VIDEO */

.video-section {
  padding: 80px 0;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.video-placeholder-empty {
  border-radius: var(--radius-md);
  border: 2px dashed rgba(148, 163, 184, 0.4);
  color: rgba(255, 255, 255, 0.5);
  background: rgba(15, 23, 42, 0.5);
  padding: 60px 40px;
  text-align: center;
  font-size: 1rem;
}

/* BOOK A CALL CTA */

.section-cta-premium {
  background: var(--gradient-premium);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-cta-premium::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 131, 32, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-premium-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-premium-content {
  color: #ffffff;
}

.cta-description {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 580px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.cta-note {
  font-size: 0.9rem;
  opacity: 0.7;
}

.mini-profile-card {
  padding: 28px;
  text-align: center;
  background: linear-gradient(135deg, var(--exp-navy) 0%, #0a1628 100%);
  border: 1px solid rgba(245, 131, 32, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mini-profile-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(245, 131, 32, 0.6);
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.mini-profile-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.mini-profile-title {
  font-size: 0.95rem;
  color: var(--exp-orange);
  margin: 0 0 16px;
  font-weight: 500;
}

.mini-profile-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-contact-link {
  color: var(--exp-orange);
  text-decoration: none;
  font-size: 0.9rem;
}

.mini-contact-link:hover {
  text-decoration: underline;
}

/* FOOTER */

.site-footer {
  background-color: #020617;
  color: #9ca3af;
  padding: 28px 0;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo {
  height: 32px;
  display: block;
  margin-bottom: 8px;
}

.footer-text {
  margin: 0;
}

.footer-name {
  font-weight: 500;
  color: #e5e7eb;
}

.footer-location {
  color: #d1d5db;
}

.footer-contact a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-legal {
  margin: 0 0 8px;
}

.footer-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e5e7eb;
  text-decoration: none;
}

.footer-whatsapp-link:hover {
  text-decoration: underline;
}

.footer-whatsapp-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .commission-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .digital-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cta-premium-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .hero-aside {
    justify-content: flex-start;
    margin-top: 20px;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .two-columns {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .header-inner {
    gap: 14px;
  }
  
  .top-banner-inner {
    max-width: 85%;
  }
  
  .section-title-large {
    font-size: 2.2rem;
  }
  
  .section-title-xl {
    font-size: 2.5rem;
  }
  
  .hero-text h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 720px) {
  .main-nav {
    display: none;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero {
    padding-top: 30px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .grid-4,
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .stat-card {
    padding: 20px 16px;
  }
  
  .section-title-large {
    font-size: 1.9rem;
  }
  
  .section-title-xl {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .lifestyle-caption {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 16px;
  }
}

/* ===== AGENT CUBE CAROUSEL ===== */

.agent-cube-wrapper {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
}

.agent-cube-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.03em;
}

.cube-scene {
  width: 100px;
  height: 100px;
  perspective: 600px;
}

.cube-spinner {
  width: 100px;
  height: 100px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1s ease-in-out;
}

.cube-face {
  position: absolute;
  width: 100px;
  height: 100px;
  object-fit: cover;
  backface-visibility: hidden;
  border-radius: 8px;
}