/* ============================================
   2ème Jour — Design System v2
   Dark navy dominant, warm accents
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Playfair+Display:ital,wght@0,500;0,700;1,500&display=swap');

:root {
  --navy: #2B1E5C;
  --navy-mid: #352768;
  --navy-light: #3F3075;
  --navy-surface: #1E1443;
  --navy-deep: #150E33;
  --red-orange: #E8523F;
  --orange: #F28C3E;
  --yellow: #F7CE46;
  --yellow-soft: #FBDF78;
  --sky: #B8E4F0;
  --aqua: #5DC3E0;
  --blue: #2C8FBF;
  --deep-blue: #1B6FA0;
  --white: #FFFFFF;
  --off-white: #F8F6F3;
  --warm-gray: #E8E3DD;
  --text-on-dark: rgba(255,255,255,0.85);
  --text-muted-dark: rgba(255,255,255,0.55);
  --text-dark: #2B1E5C;
  --text-light: #6B6185;
  --glass-light: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.1);
  --glass-hover: rgba(255,255,255,0.1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.2);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.25);
  --section-pad: clamp(5rem, 10vw, 9rem);
  --section-pad-sm: clamp(3rem, 6vw, 5rem);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-on-dark);
  background: var(--navy-deep);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

h1, h2, h3, h4 { font-family: 'Nunito', sans-serif; font-weight: 900; line-height: 1.15; color: var(--white); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.accent-text { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500; }

.section-label {
  display: inline-block; font-size: 0.8rem; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1rem;
}
.section-label.orange { color: var(--orange); }
.section-label.blue { color: var(--aqua); }

.section-header { text-align: center; max-width: 650px; margin: 0 auto 4rem; }
.section-header p { color: var(--text-muted-dark); font-size: 1.1rem; margin-top: 1rem; }

/* ---- NAV ---- */
.nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 0.8rem 0; background: #2b1e48; transition: all 0.4s cubic-bezier(0.22,1,0.36,1); }
.nav.scrolled { box-shadow: 0 1px 0 rgba(255,255,255,0.06); padding: 0.6rem 0; background: #2b1e48; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.nav-logo img { height: 40px; transition: height 0.3s ease; }
.nav.scrolled .nav-logo img { height: 36px; }

/* Mobile-first: links hidden, hamburger visible */
.nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy-deep); flex-direction: column; align-items: center; justify-content: center; gap: 2rem; z-index: 1000; }
.nav-links.open { display: flex; }
.nav-links.open a { font-size: 1.2rem; }
.nav-links a { font-weight: 700; font-size: 0.9rem; color: var(--text-on-dark); transition: color 0.3s ease; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--orange); transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--orange) !important; color: var(--white) !important; padding: 0.6rem 1.5rem; border-radius: 50px; font-weight: 800 !important; transition: all 0.3s ease !important; box-shadow: 0 4px 15px rgba(242,140,62,0.3); }
.nav-cta:hover { background: var(--red-orange) !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,82,63,0.4); }
.nav-cta::after { display: none !important; }
.nav-mobile-cta { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: var(--white); box-shadow: 0 4px 15px rgba(242,140,62,0.35); transition: all 0.3s ease; z-index: 1001; }
.nav-mobile-cta:hover { background: var(--red-orange); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,82,63,0.4); }

/* Desktop: show links, hide mobile CTA */
@media (min-width: 1100px) {
  .nav-links { display: flex; position: static; background: none; flex-direction: row; align-items: center; gap: 2rem; }
  .nav-links a { font-size: 0.9rem; }
  .nav-mobile-cta { display: none; }
  .nav-logo img { height: 48px; }
  .nav.scrolled .nav-logo img { height: 38px; }
}

/* ---- HERO ---- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--navy-deep); overflow: hidden; padding-top: 90px; padding-bottom: 2rem; }
.hero::before { content: ''; position: absolute; top: -20%; right: -15%; width: 70vw; height: 70vw; max-width: 900px; max-height: 900px; border-radius: 50%; background: radial-gradient(circle at 40% 40%, var(--yellow) 0%, var(--orange) 30%, var(--red-orange) 55%, transparent 70%); opacity: 0.08; filter: blur(80px); animation: heroGlow 10s ease-in-out infinite alternate; }
.hero::after { content: ''; position: absolute; bottom: -20%; left: -15%; width: 50vw; height: 50vw; max-width: 600px; max-height: 600px; border-radius: 50%; background: radial-gradient(circle, var(--aqua) 0%, var(--blue) 40%, transparent 70%); opacity: 0.06; filter: blur(80px); animation: heroGlow 12s ease-in-out infinite alternate-reverse; }
@keyframes heroGlow { from { transform: scale(1) translate(0, 0); } to { transform: scale(1.1) translate(15px, -10px); } }
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-content h1 { margin-bottom: 1.5rem; }
.hero-content h1 span { display: block; background: linear-gradient(135deg, var(--yellow), var(--orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--text-muted-dark); margin-bottom: 2.5rem; max-width: 560px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-sunrise { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); z-index: 1; opacity: 0.2; width: clamp(220px, 30vw, 440px); }

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2rem; border-radius: 50px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem; border: none; cursor: pointer; transition: all 0.35s cubic-bezier(0.22,1,0.36,1); }
.btn-primary { background: linear-gradient(135deg, var(--orange), var(--red-orange)); color: var(--white); box-shadow: 0 6px 25px rgba(242,140,62,0.35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(232,82,63,0.4); }
.btn-secondary { background: var(--glass-light); color: var(--white); border: 2px solid var(--glass-border); backdrop-filter: blur(10px); }
.btn-secondary:hover { background: var(--glass-hover); border-color: rgba(255,255,255,0.25); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: var(--white); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { background: #1FB855; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.4); }
.btn-email-dark { background: var(--white); color: var(--navy); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-email-dark:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

/* ---- STATS ---- */
.stats-bar { background: var(--navy-surface); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.stat-item { padding: 1rem; }
.stat-number { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 900; line-height: 1; margin-bottom: 0.5rem; }
.stat-number.orange { color: var(--orange); }
.stat-number.red { color: var(--red-orange); }
.stat-number.blue { color: var(--aqua); }
.stat-label { font-size: 0.95rem; color: var(--text-muted-dark); font-weight: 600; }
.stat-source { text-align: center; margin-top: 1rem; font-size: 0.8rem; color: var(--text-muted-dark); }

/* ---- ENTERPRISE SECTION ---- */
.section-enterprise { padding: var(--section-pad) 0; background: var(--navy-deep); position: relative; }
.section-enterprise::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--orange), transparent); opacity: 0.3; }
.enterprise-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

.glass-card { background: var(--glass-light); border: 1px solid var(--glass-border); border-radius: 24px; padding: 2.5rem 2rem; transition: all 0.4s cubic-bezier(0.22,1,0.36,1); position: relative; overflow: hidden; }
.glass-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.glass-card:hover { background: var(--glass-hover); border-color: rgba(255,255,255,0.15); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.glass-card.orange-accent::before { background: linear-gradient(90deg, var(--orange), var(--red-orange)); }
.glass-card.yellow-accent::before { background: linear-gradient(90deg, var(--yellow), var(--orange)); }
.glass-card.blue-accent::before { background: linear-gradient(90deg, var(--aqua), var(--blue)); }

.card-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.card-icon.orange { background: rgba(242,140,62,0.15); color: var(--orange); }
.card-icon.yellow { background: rgba(247,206,70,0.15); color: var(--yellow); }
.card-icon.blue { background: rgba(93,195,224,0.15); color: var(--aqua); }

.card-tag { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 50px; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.8rem; }
.card-tag.orange { background: rgba(242,140,62,0.15); color: var(--orange); }
.card-tag.yellow { background: rgba(247,206,70,0.15); color: var(--yellow-soft); }
.card-tag.blue { background: rgba(93,195,224,0.12); color: var(--aqua); }

.glass-card p.card-desc { color: var(--text-muted-dark); font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.7; }

.feature-list li { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.35rem 0; font-size: 0.9rem; color: var(--text-on-dark); }
.feature-list li .check { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 900; margin-top: 2px; }
.check.orange { background: rgba(242,140,62,0.15); color: var(--orange); }
.check.yellow { background: rgba(247,206,70,0.15); color: var(--yellow); }
.check.blue { background: rgba(93,195,224,0.12); color: var(--aqua); }

.card-format { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; padding: 0.75rem 1rem; background: rgba(255,255,255,0.04); border-radius: 12px; font-size: 0.85rem; color: var(--text-muted-dark); font-weight: 600; border: 1px solid rgba(255,255,255,0.06); }
.card-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.5rem; font-weight: 800; font-size: 0.9rem; transition: gap 0.3s ease; cursor: pointer; }
.card-link.orange { color: var(--orange); }
.card-link.yellow { color: var(--yellow); }
.card-link.blue { color: var(--aqua); }
.card-link:hover { gap: 0.8rem; }

/* ---- ASSOS SECTION ---- */
.section-assos { padding: var(--section-pad) 0; background: var(--navy); position: relative; }
.section-assos::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--aqua), transparent); opacity: 0.3; }
.assos-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.assos-text p { color: var(--text-muted-dark); font-size: 1.05rem; margin-bottom: 1rem; }

.assos-situations { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 2rem; }
.situation-chip { display: flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1rem; background: rgba(93,195,224,0.06); border: 1px solid rgba(93,195,224,0.12); border-radius: 12px; font-size: 0.85rem; color: var(--text-on-dark); font-weight: 600; }
.situation-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--aqua); flex-shrink: 0; }

.assos-experience { background: var(--glass-light); border: 1px solid var(--glass-border); border-radius: 20px; padding: 2rem; }
.assos-experience h4 { font-size: 0.85rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--aqua); margin-bottom: 1rem; }
.exp-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.6rem 0; font-size: 0.9rem; color: var(--text-on-dark); border-bottom: 1px solid rgba(255,255,255,0.04); }
.exp-item:last-child { border: none; }
.exp-item .exp-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(93,195,224,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.9rem; }
.exp-item span { color: var(--text-muted-dark); font-size: 0.85rem; }

.assos-result { background: var(--glass-light); border: 1px solid var(--glass-border); border-radius: 20px; padding: 2rem; margin-top: 1.5rem; }

/* ---- HOW IT WORKS ---- */
.how-it-works { padding: var(--section-pad) 0; background: var(--navy-deep); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 32px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--orange), var(--yellow), var(--aqua), var(--blue)); opacity: 0.2; }
.step { text-align: center; position: relative; }
.step-number { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.2rem; margin: 0 auto 1.5rem; position: relative; z-index: 2; }
.step:nth-child(1) .step-number { background: var(--orange); color: var(--white); }
.step:nth-child(2) .step-number { background: var(--yellow); color: var(--navy); }
.step:nth-child(3) .step-number { background: var(--aqua); color: var(--navy); }
.step:nth-child(4) .step-number { background: var(--blue); color: var(--white); }
.step h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.step p { color: var(--text-muted-dark); font-size: 0.9rem; }

/* ---- ABOUT ---- */
.about { padding: var(--section-pad) 0; background: var(--navy-surface); }

/* Profile: photo + text */
.about-profile {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.about-profile::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange), transparent 70%);
  opacity: 0.1;
}

.about-photo {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-photo-placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange), var(--red-orange));
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 900;
  border-radius: 20px;
}
/* If image loads, hide placeholder */
.about-photo img + .about-photo-placeholder { display: none; }

.about-profile-text { position: relative; z-index: 1; }
.about-profile-text h3 { font-size: 1.6rem; margin-bottom: 0.25rem; }
.about-role {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.about-profile-text > p:last-child {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* Stats row — horizontal */
.about-stats-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.about-stat-compact {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 1.2rem 0.75rem;
  background: var(--glass-light);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}
.about-stat-compact strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.about-stat-compact span {
  font-size: 0.75rem;
  color: var(--text-muted-dark);
  line-height: 1.3;
}

/* Approach */
.about-approach > p {
  color: var(--text-muted-dark);
  font-size: 1.05rem;
  max-width: 700px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.value-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem; background: var(--glass-light); border: 1px solid var(--glass-border); border-radius: 16px; }
.value-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(242,140,62,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.value-item h4 { font-size: 0.85rem; margin-bottom: 0.2rem; }
.value-item p { font-size: 0.8rem; color: var(--text-muted-dark); }

/* About mobile */
@media (max-width: 600px) {
  .about-profile { flex-direction: column; align-items: center; text-align: center; padding: 2rem 1.5rem; }
  .about-photo { width: 100px; height: 100px; }
  .about-stats-row { display: grid; grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .about-approach > p { text-align: center; }
}

/* ---- TESTIMONIALS ---- */
.testimonials { padding: var(--section-pad) 0; background: var(--navy-deep); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.testimonial-card { background: var(--glass-light); border: 1px solid var(--glass-border); border-radius: 20px; padding: 2rem; transition: all 0.3s ease; }
.testimonial-card:hover { background: var(--glass-hover); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.05rem; color: var(--text-on-dark); margin-bottom: 1.5rem; padding-left: 1.5rem; border-left: 3px solid var(--orange); line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1rem; color: var(--white); }
.testimonial-card:nth-child(1) .testimonial-avatar { background: var(--orange); }
.testimonial-card:nth-child(2) .testimonial-avatar { background: var(--blue); }
.testimonial-card:nth-child(3) .testimonial-avatar { background: var(--red-orange); }
.testimonial-card:nth-child(4) .testimonial-avatar { background: var(--aqua); }
.testimonial-name { font-weight: 800; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted-dark); }

/* ---- EXTRAS / PROLONGEMENTS ---- */
.extras { padding: var(--section-pad-sm) 0; background: var(--navy-surface); }
.extras-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.extra-chip { display: flex; align-items: center; gap: 0.75rem; padding: 1.2rem 1.5rem; background: var(--glass-light); border: 1px solid var(--glass-border); border-radius: 16px; transition: all 0.3s ease; }
.extra-chip:hover { background: var(--glass-hover); border-color: rgba(255,255,255,0.15); transform: translateY(-3px); }
.extra-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(242,140,62,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.extra-chip h4 { font-size: 0.9rem; color: var(--white); }
.extra-chip p { font-size: 0.75rem; color: var(--text-muted-dark); margin-top: 0.15rem; }

/* ---- CTA ---- */
.cta-section { padding: var(--section-pad) 0; background: var(--navy-deep); }
.cta-box { background: linear-gradient(135deg, var(--navy-light), var(--navy)); border: 1px solid var(--glass-border); border-radius: 32px; padding: clamp(3rem, 6vw, 5rem); text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -80px; right: -80px; width: 350px; height: 350px; border-radius: 50%; background: radial-gradient(circle, var(--orange), transparent 70%); opacity: 0.1; }
.cta-box::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 250px; height: 250px; border-radius: 50%; background: radial-gradient(circle, var(--aqua), transparent 70%); opacity: 0.08; }
.cta-box h2 { position: relative; z-index: 2; margin-bottom: 1rem; }
.cta-box p { color: var(--text-muted-dark); font-size: 1.1rem; max-width: 550px; margin: 0 auto 2.5rem; position: relative; z-index: 2; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* ---- FOOTER ---- */
.footer { background: var(--navy-deep); border-top: 1px solid var(--glass-border); padding: 3rem 0 1.5rem; color: var(--text-muted-dark); }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; }
.footer-logo img { height: 40px; margin-bottom: 0.5rem; }
.footer-info p { font-size: 0.85rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.85rem; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; font-size: 0.8rem; }

/* ---- MODAL ---- */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(21,14,51,0.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.4s cubic-bezier(0.22,1,0.36,1); padding: 1rem; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal { background: var(--white); border-radius: 28px; padding: 3rem; max-width: 480px; width: 100%; transform: translateY(30px) scale(0.95); transition: all 0.4s cubic-bezier(0.22,1,0.36,1); position: relative; }
.modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal h3 { color: var(--navy) !important; font-size: 1.5rem; margin-bottom: 0.5rem; }
.modal p { color: var(--text-light) !important; margin-bottom: 2rem; font-size: 0.95rem; }
.modal-close { position: absolute; top: 1.2rem; right: 1.2rem; width: 36px; height: 36px; border-radius: 50%; border: none; background: var(--off-white); color: var(--text-light); font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.modal-close:hover { background: var(--warm-gray); color: var(--navy); }
.modal-options { display: flex; flex-direction: column; gap: 1rem; }
.modal-option { display: flex; align-items: center; gap: 1rem; padding: 1.2rem 1.5rem; border-radius: 16px; border: 2px solid var(--warm-gray); transition: all 0.3s ease; cursor: pointer; }
.modal-option:hover { transform: translateY(-2px); }
.modal-option.whatsapp:hover { border-color: #25D366; box-shadow: 0 4px 15px rgba(37,211,102,0.15); }
.modal-option.email:hover { border-color: var(--navy); box-shadow: 0 4px 15px rgba(43,30,92,0.1); }
.modal-option.phone:hover { border-color: var(--orange); box-shadow: 0 4px 15px rgba(242,140,62,0.15); }
.modal-option-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.modal-option.whatsapp .modal-option-icon { background: rgba(37,211,102,0.1); color: #25D366; }
.modal-option.email .modal-option-icon { background: rgba(43,30,92,0.08); color: var(--navy); }
.modal-option.phone .modal-option-icon { background: rgba(242,140,62,0.1); color: var(--orange); }
.modal-option-text h4 { color: var(--navy) !important; font-size: 1rem; margin-bottom: 0.15rem; }
.modal-option-text span { font-size: 0.85rem; color: var(--text-light); }

/* ---- ANIMATIONS ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .enterprise-cards { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .assos-layout { grid-template-columns: 1fr; }
  .hero-sunrise { display: none; }
}

@media (max-width: 768px) {
  .hero { padding-top: 80px; }
  .stats-grid { grid-template-columns: 1fr; gap: 1rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .assos-situations { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { justify-content: center; }
  .footer-content { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .modal { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .cta-buttons, .extras-grid { flex-direction: column; }
  .cta-buttons .btn { justify-content: center; }
  .extras-grid { grid-template-columns: 1fr; }
}
