/* ============================================
   NEXALYS ACADEMY - Premium Stylesheet
   Couleurs : #2D3D97 (royal blue) · #4D95E2 (sky blue) · #FFFFFF
   ============================================ */

:root {
  --navy: #2D3D97;
  --navy-dark: #1E2A6B;
  --navy-light: #3A4DB8;
  --sky: #4D95E2;
  --sky-light: #6FAEEC;
  --sky-soft: #E8F1FB;
  --white: #FFFFFF;
  --offwhite: #FAFBFD;
  --grey-50: #F5F7FA;
  --grey-100: #EDF0F5;
  --grey-200: #DEE3EC;
  --grey-400: #8B95A7;
  --grey-600: #5A6478;
  --grey-800: #2A3142;
  --black: #0E1220;
  --gradient-primary: linear-gradient(135deg, #2D3D97 0%, #4D95E2 100%);
  --gradient-dark: linear-gradient(135deg, #1E2A6B 0%, #2D3D97 100%);
  --shadow-sm: 0 2px 8px rgba(45,61,151,0.06);
  --shadow-md: 0 8px 24px rgba(45,61,151,0.10);
  --shadow-lg: 0 20px 50px rgba(45,61,151,0.15);
  --shadow-xl: 0 30px 80px rgba(45,61,151,0.20);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:90px; }
body {
  font-family:'Inter', system-ui, -apple-system, sans-serif;
  font-size:16px; line-height:1.6;
  color:var(--grey-800); background:var(--white);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; transition:var(--transition); }
button { font-family:inherit; cursor:pointer; border:none; background:none; }
h1,h2,h3,h4,h5 { font-family:'Plus Jakarta Sans','Inter',sans-serif; font-weight:800; color:var(--black); line-height:1.15; letter-spacing:-0.02em; }

.container { max-width:1280px; margin:0 auto; padding:0 28px; }
.container-narrow { max-width:880px; margin:0 auto; padding:0 28px; }

/* ============ UTILITIES ============ */
.text-gradient {
  background:var(--gradient-primary);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
}
.text-gradient-light {
  background:linear-gradient(135deg, #6FAEEC 0%, #A8CEF7 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
.text-underline {
  position:relative;
  display:inline-block;
}
.text-underline::after {
  content:""; position:absolute; left:0; right:0; bottom:-6px;
  height:14px;
  background:url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 14' xmlns='http://www.w3.org/2000/svg'><path d='M2 8 Q 50 -2, 100 6 T 198 7' stroke='%234D95E2' stroke-width='4' fill='none' stroke-linecap='round'/></svg>") no-repeat center / 100% 100%;
}

/* ============ NAVBAR ============ */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:10px 0;
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(45,61,151,0.06);
  transition:var(--transition);
}
.navbar.scrolled { padding:6px 0; box-shadow:var(--shadow-sm); }
.nav-container {
  max-width:1280px; margin:0 auto; padding:0 28px;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.nav-logo img { height:110px; width:auto; transition:var(--transition); }
.navbar.scrolled .nav-logo img { height:90px; }
.nav-links { display:flex; align-items:center; gap:34px; }
.nav-links a {
  font-size:15px; font-weight:500; color:var(--grey-800);
  position:relative;
}
.nav-links a:not(.btn-nav-cta):hover { color:var(--navy); }
.nav-links a:not(.btn-nav-cta)::after {
  content:""; position:absolute; left:0; right:0; bottom:-6px;
  height:2px; background:var(--gradient-primary);
  transform:scaleX(0); transform-origin:left; transition:var(--transition);
}
.nav-links a:not(.btn-nav-cta):hover::after { transform:scaleX(1); }
.btn-nav-cta {
  background:var(--gradient-primary); color:var(--white) !important;
  padding:11px 22px; border-radius:100px; font-weight:600; font-size:14px;
  display:inline-flex; align-items:center; gap:8px;
  box-shadow:0 6px 20px rgba(77,149,226,0.35);
}
.btn-nav-cta:hover { transform:translateY(-2px); box-shadow:0 10px 28px rgba(77,149,226,0.5); }
.nav-toggle { display:none; font-size:24px; color:var(--navy); }

/* ============ BUTTONS ============ */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 30px; border-radius:100px;
  font-weight:600; font-size:15px;
  transition:var(--transition); cursor:pointer;
  white-space:nowrap;
}
.btn-primary {
  background:var(--gradient-primary); color:var(--white);
  box-shadow:0 10px 30px rgba(77,149,226,0.35);
}
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 16px 40px rgba(77,149,226,0.5); }
.btn-primary .btn-arrow { transition:var(--transition); }
.btn-primary:hover .btn-arrow { transform:translateX(6px); }
.btn-primary-large {
  background:var(--white); color:var(--navy);
  padding:20px 38px; font-size:17px; font-weight:700;
  border-radius:100px;
  box-shadow:0 20px 50px rgba(0,0,0,0.25);
}
.btn-primary-large:hover { transform:translateY(-3px); box-shadow:0 25px 60px rgba(0,0,0,0.35); }
.btn-ghost {
  background:transparent; color:var(--navy);
  border:2px solid var(--grey-200);
}
.btn-ghost:hover { border-color:var(--navy); background:var(--sky-soft); }
.btn-outline-light {
  background:transparent; color:var(--white); border:2px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background:rgba(255,255,255,0.1); border-color:white; }
.btn-light { background:var(--white); color:var(--navy); }
.btn-light:hover { transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn-whatsapp { background:#25D366; color:white; }
.btn-whatsapp:hover { background:#1eb858; transform:translateY(-2px); }
.btn-block { width:100%; }
.btn-text {
  color:var(--navy); font-weight:600; font-size:15px;
  display:inline-flex; align-items:center; gap:8px;
}
.btn-text:hover { gap:14px; color:var(--sky); }

/* ============ HERO ============ */
.hero {
  position:relative; min-height:100vh;
  padding:140px 0 80px;
  overflow:hidden;
  background:linear-gradient(180deg, #FAFBFD 0%, #F0F5FC 100%);
}
.hero-bg {
  position:absolute; inset:0; z-index:0; pointer-events:none; overflow:hidden;
}
.grad-blob {
  position:absolute; border-radius:50%; filter:blur(80px); opacity:0.35;
}
.blob-1 { width:600px; height:600px; background:var(--sky); top:-200px; right:-200px; animation:float 18s ease-in-out infinite; }
.blob-2 { width:500px; height:500px; background:var(--navy); bottom:-150px; left:-150px; animation:float 22s ease-in-out infinite reverse; }
.grid-pattern {
  position:absolute; inset:0;
  background-image: linear-gradient(rgba(45,61,151,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(45,61,151,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
@keyframes float {
  0%,100% { transform:translate(0,0) scale(1); }
  50% { transform:translate(40px,-40px) scale(1.08); }
}

.hero-inner {
  position:relative; z-index:2;
  max-width:1280px; margin:0 auto; padding:0 28px;
  display:grid; grid-template-columns:1.05fr 1fr; gap:60px; align-items:center;
}
.hero-content { animation:fadeUp 1s cubic-bezier(0.16,1,0.3,1); }
.logo-showcase {
  margin-bottom:30px;
  display:flex; align-items:center; justify-content:flex-start;
}
.logo-large {
  height:160px; width:auto;
  filter: drop-shadow(0 20px 40px rgba(45,61,151,0.18));
  animation: logoEntry 1.2s cubic-bezier(0.16,1,0.3,1);
}
@keyframes logoEntry {
  from { opacity:0; transform:scale(0.85) translateY(20px); }
  to { opacity:1; transform:scale(1) translateY(0); }
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 16px; background:var(--sky-soft); color:var(--navy);
  border-radius:100px; font-size:13px; font-weight:600;
  margin-bottom:24px;
  border:1px solid rgba(77,149,226,0.2);
}
.hero-badge i { color:var(--sky); }
.hero-title {
  font-size:clamp(2.4rem, 5.5vw, 4.4rem);
  line-height:1.05; margin-bottom:24px;
  font-weight:900;
  letter-spacing:-0.035em;
}
.hero-subtitle {
  font-size:18px; color:var(--grey-600); line-height:1.7;
  margin-bottom:36px; max-width:560px;
}
.hero-subtitle strong { color:var(--navy); font-weight:700; }
.hero-ctas { display:flex; flex-wrap:wrap; gap:14px; margin-bottom:40px; }
.hero-trust { display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
.trust-item { display:flex; align-items:center; gap:10px; font-size:14px; color:var(--grey-600); font-weight:500; }
.trust-stars { color:#FFB800; display:flex; gap:2px; }
.trust-icon { color:var(--sky); font-size:18px; }
.trust-divider { width:1px; height:24px; background:var(--grey-200); }

.hero-visual { position:relative; animation:fadeUp 1.2s 0.2s cubic-bezier(0.16,1,0.3,1) both; }
.visual-wrap { position:relative; }
.hero-image {
  width:100%; height:560px; object-fit:cover;
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow-xl);
  position:relative; z-index:2;
}
.visual-glow {
  position:absolute; inset:-30px; z-index:1;
  background:var(--gradient-primary); filter:blur(60px); opacity:0.3;
  border-radius:var(--radius-xl);
}
.floating-card {
  position:absolute; background:white; border-radius:var(--radius);
  box-shadow:var(--shadow-lg); padding:16px 20px; z-index:3;
  display:flex; align-items:center; gap:14px;
  animation:floatCard 4s ease-in-out infinite;
}
.card-stat { top:30px; left:-30px; }
.card-stat .card-icon {
  width:44px; height:44px; border-radius:12px;
  background:var(--gradient-primary); color:white;
  display:flex; align-items:center; justify-content:center; font-size:18px;
}
.card-stat strong { display:block; font-size:22px; color:var(--navy); font-weight:800; line-height:1; }
.card-stat span { font-size:12px; color:var(--grey-600); }
.card-live {
  bottom:40px; right:-30px;
  font-size:13px; font-weight:600; color:var(--navy);
  animation-delay:1.5s;
}
.pulse-dot {
  width:10px; height:10px; border-radius:50%; background:#22c55e;
  box-shadow:0 0 0 0 rgba(34,197,94,0.6);
  animation:pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow:0 0 0 0 rgba(34,197,94,0.6); }
  70% { box-shadow:0 0 0 14px rgba(34,197,94,0); }
  100% { box-shadow:0 0 0 0 rgba(34,197,94,0); }
}
@keyframes floatCard {
  0%,100% { transform:translateY(0); }
  50% { transform:translateY(-12px); }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to { opacity:1; transform:translateY(0); }
}

.hero-scroll {
  position:absolute; bottom:30px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:10px;
  color:var(--grey-400); font-size:11px; letter-spacing:0.2em; text-transform:uppercase;
  z-index:5;
}
.scroll-line {
  width:1px; height:40px; background:linear-gradient(180deg,var(--navy),transparent);
  animation:scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform:scaleY(0); transform-origin:top; }
  50% { transform:scaleY(1); transform-origin:top; }
  51% { transform-origin:bottom; }
  100% { transform:scaleY(0); transform-origin:bottom; }
}

/* ============ STATS STRIP ============ */
.stats-strip {
  background:var(--gradient-dark);
  padding:60px 0;
  position:relative;
  overflow:hidden;
}
.stats-strip::before {
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(circle at 20% 50%, rgba(77,149,226,0.2) 0%, transparent 40%),
                    radial-gradient(circle at 80% 50%, rgba(77,149,226,0.15) 0%, transparent 40%);
}
.stats-grid {
  position:relative; z-index:2;
  display:grid; grid-template-columns:repeat(4,1fr); gap:30px;
}
.stat-item {
  text-align:center; color:white;
  display:flex; flex-direction:column; align-items:center;
}
.stat-number {
  font-family:'Plus Jakarta Sans',sans-serif;
  font-size:clamp(2.5rem,5vw,3.8rem); font-weight:900;
  line-height:1; display:inline-block;
}
.stat-item span {
  font-size:clamp(1.5rem,3vw,2rem); font-weight:800; color:var(--sky-light);
  margin-left:4px;
}
.stat-item p { color:rgba(255,255,255,0.7); font-size:14px; margin-top:8px; font-weight:500; }

/* ============ SECTIONS ============ */
.section { padding:120px 0; position:relative; }
.section-light { background:var(--offwhite); }
.section-dark { background:var(--black); color:white; }
.section-dark h2, .section-dark h3, .section-dark h4 { color:white; }

.section-head { margin-bottom:70px; }
.section-head.center { text-align:center; max-width:780px; margin-left:auto; margin-right:auto; }
.section-head.between { display:flex; justify-content:space-between; align-items:end; gap:30px; flex-wrap:wrap; }
.eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 16px; background:var(--sky-soft); color:var(--navy);
  border-radius:100px; font-size:13px; font-weight:600;
  margin-bottom:20px; border:1px solid rgba(77,149,226,0.15);
}
.eyebrow.light { background:rgba(77,149,226,0.15); color:var(--sky-light); border-color:rgba(77,149,226,0.3); }
.section-title {
  font-size:clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom:20px;
  letter-spacing:-0.03em;
}
.section-title.light { color:white; }
.section-lead {
  font-size:18px; color:var(--grey-600); line-height:1.7;
  max-width:680px;
}
.section-head.center .section-lead { margin-left:auto; margin-right:auto; }
.section-lead.light { color:rgba(255,255,255,0.7); }

/* ============ APPROACH ============ */
.approach-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.approach-card {
  position:relative; background:white;
  border:1px solid var(--grey-100);
  border-radius:var(--radius-lg);
  padding:50px 36px 40px;
  transition:var(--transition);
  overflow:hidden;
}
.approach-card::before {
  content:attr(data-step);
  position:absolute; top:24px; right:30px;
  font-family:'Plus Jakarta Sans',sans-serif; font-weight:900;
  font-size:56px; color:var(--grey-100); line-height:1;
  transition:var(--transition);
}
.approach-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:var(--sky); }
.approach-card:hover::before { color:var(--sky-soft); }
.approach-card.featured {
  background:var(--gradient-primary); color:white;
  border-color:transparent;
  box-shadow:0 30px 60px rgba(45,61,151,0.25);
}
.approach-card.featured h3, .approach-card.featured p, .approach-card.featured li { color:white; }
.approach-card.featured::before { color:rgba(255,255,255,0.15); }
.approach-card.featured .approach-icon {
  background:rgba(255,255,255,0.2); color:white;
}
.approach-icon {
  width:64px; height:64px; border-radius:16px;
  background:var(--sky-soft); color:var(--navy);
  display:flex; align-items:center; justify-content:center;
  font-size:26px; margin-bottom:24px;
}
.approach-card h3 { font-size:24px; margin-bottom:14px; }
.approach-card p { color:var(--grey-600); margin-bottom:24px; line-height:1.65; }
.approach-list { list-style:none; }
.approach-list li {
  display:flex; align-items:center; gap:10px;
  padding:8px 0; color:var(--grey-800); font-size:14px; font-weight:500;
}
.approach-list i { color:var(--sky); }
.approach-card.featured .approach-list i { color:white; }

/* ============ SERVICES ============ */
.services-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:26px;
}
.service-card {
  background:#15192C;
  border:1px solid rgba(255,255,255,0.06);
  border-radius:var(--radius-lg);
  overflow:hidden;
  transition:var(--transition);
  display:flex; flex-direction:column;
}
.service-card:hover { transform:translateY(-8px); border-color:var(--sky); box-shadow:0 20px 50px rgba(77,149,226,0.2); }
.service-img { aspect-ratio:16/10; overflow:hidden; }
.service-img img { width:100%; height:100%; object-fit:cover; transition:var(--transition); }
.service-card:hover .service-img img { transform:scale(1.08); }
.service-body { padding:28px; flex:1; display:flex; flex-direction:column; }
.service-tag {
  display:inline-block; padding:5px 12px;
  background:rgba(77,149,226,0.15); color:var(--sky-light);
  border-radius:100px; font-size:12px; font-weight:600;
  margin-bottom:14px; width:fit-content;
  border:1px solid rgba(77,149,226,0.25);
}
.service-body h3 { color:white; font-size:21px; margin-bottom:12px; line-height:1.3; }
.service-body p { color:rgba(255,255,255,0.65); font-size:14px; line-height:1.65; margin-bottom:20px; flex:1; }
.service-link {
  color:var(--sky-light); font-weight:600; font-size:14px;
  display:inline-flex; align-items:center; gap:8px;
}
.service-link:hover { color:white; gap:14px; }

.service-card-cta {
  background:var(--gradient-primary);
  border-color:transparent;
  display:flex; align-items:center; justify-content:center;
}
.service-cta-body { text-align:center; padding:40px 28px; }
.service-cta-icon { font-size:48px; color:white; margin-bottom:18px; }
.service-card-cta h3 { font-size:24px; }
.service-card-cta p { color:rgba(255,255,255,0.85); }

/* ============ WHY ============ */
.why-wrapper {
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
}
.why-features { display:grid; gap:24px; margin-top:36px; }
.why-item { display:flex; gap:18px; align-items:flex-start; }
.why-icon {
  flex-shrink:0; width:54px; height:54px; border-radius:14px;
  background:var(--gradient-primary); color:white;
  display:flex; align-items:center; justify-content:center; font-size:22px;
  box-shadow:0 10px 24px rgba(45,61,151,0.2);
}
.why-item h4 { font-size:18px; margin-bottom:6px; color:var(--black); }
.why-item p { color:var(--grey-600); line-height:1.6; font-size:15px; }

.why-visual { position:relative; }
.why-visual > img {
  width:100%; height:560px; object-fit:cover;
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow-xl);
}
.why-floating {
  position:absolute; bottom:-30px; left:-30px;
  background:white; border-radius:var(--radius);
  padding:24px; max-width:300px;
  box-shadow:var(--shadow-xl);
}
.why-floating-head { display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.why-floating-avatar {
  width:48px; height:48px; border-radius:50%;
  background:var(--gradient-primary); color:white;
  display:flex; align-items:center; justify-content:center; font-size:20px;
}
.why-floating-head strong { display:block; font-size:14px; color:var(--black); }
.why-floating-head span { font-size:12px; color:var(--grey-600); }
.why-floating > p {
  font-size:14px; color:var(--grey-600); line-height:1.5;
  font-style:italic;
}

/* ============ FORMATS ============ */
.formats-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.format-card {
  position:relative; background:white;
  border:1px solid var(--grey-100);
  border-radius:var(--radius-lg);
  padding:44px 34px;
  transition:var(--transition);
}
.format-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:var(--sky); }
.format-card-highlight {
  background:var(--gradient-primary); color:white; border-color:transparent;
  box-shadow:0 30px 60px rgba(45,61,151,0.25);
}
.format-card.format-card-highlight h3,
.format-card.format-card-highlight p,
.format-card.format-card-highlight li { color:white; }
.format-card-highlight .format-icon { background:rgba(255,255,255,0.2); color:white; }
.format-badge {
  position:absolute; top:-12px; right:20px;
  background:#FFB800; color:var(--black);
  padding:5px 14px; border-radius:100px;
  font-size:12px; font-weight:700;
}
.format-icon {
  width:64px; height:64px; border-radius:16px;
  background:var(--sky-soft); color:var(--navy);
  display:flex; align-items:center; justify-content:center;
  font-size:26px; margin-bottom:22px;
}
.format-card h3 { font-size:22px; margin-bottom:12px; }
.format-card p { color:var(--grey-600); margin-bottom:22px; line-height:1.65; }
.format-card ul { list-style:none; }
.format-card ul li {
  padding:8px 0; font-size:14px; color:var(--grey-800); font-weight:500;
  border-top:1px solid var(--grey-100);
}
.format-card-highlight ul li { border-color:rgba(255,255,255,0.15); color:rgba(255,255,255,0.9); }
.format-card ul li::before { content:"→ "; color:var(--sky); font-weight:700; margin-right:4px; }
.format-card-highlight ul li::before { color:white; }

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display:grid; grid-template-columns:repeat(2,1fr); gap:28px;
}
.testimonial-card {
  background:white;
  border:1px solid var(--grey-100);
  border-radius:var(--radius-lg);
  padding:36px;
  transition:var(--transition);
  position:relative;
}
.testimonial-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.testimonial-stars { color:#FFB800; display:flex; gap:3px; margin-bottom:16px; font-size:14px; }
.testimonial-card > p {
  font-size:17px; line-height:1.7; color:var(--grey-800);
  margin-bottom:24px; font-weight:500;
}
.testimonial-author { display:flex; align-items:center; gap:14px; }
.testimonial-avatar {
  width:48px; height:48px; border-radius:50%;
  background:var(--gradient-primary); color:white;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:18px;
}
.testimonial-author strong { display:block; color:var(--black); font-size:15px; }
.testimonial-author span { font-size:13px; color:var(--grey-600); }

/* ============ CTA BANNER ============ */
.cta-banner {
  position:relative; padding:100px 0; overflow:hidden;
  background:var(--gradient-dark);
  color:white;
}
.cta-bg-blob {
  position:absolute; width:800px; height:800px; border-radius:50%;
  background:radial-gradient(circle, var(--sky) 0%, transparent 70%);
  opacity:0.3; top:-300px; right:-300px;
  animation:float 20s ease-in-out infinite;
}
.cta-content { text-align:center; max-width:780px; margin:0 auto; position:relative; z-index:2; }
.cta-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 18px; background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.2); border-radius:100px;
  font-size:13px; font-weight:600; margin-bottom:22px;
}
.cta-eyebrow i { color:#FFB800; }
.cta-content h2 { font-size:clamp(2rem,5vw,3.6rem); color:white; margin-bottom:20px; }
.cta-content > p { font-size:18px; color:rgba(255,255,255,0.75); margin-bottom:36px; line-height:1.6; }
.cta-buttons { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ============ BLOG ============ */
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.blog-card {
  background:white; border:1px solid var(--grey-100);
  border-radius:var(--radius-lg); overflow:hidden;
  transition:var(--transition); display:flex; flex-direction:column;
}
.blog-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.blog-img { aspect-ratio:16/10; overflow:hidden; }
.blog-img img { width:100%; height:100%; object-fit:cover; transition:var(--transition); }
.blog-card:hover .blog-img img { transform:scale(1.05); }
.blog-body { padding:28px; display:flex; flex-direction:column; flex:1; }
.blog-tag {
  align-self:flex-start;
  padding:5px 12px; background:var(--sky-soft); color:var(--navy);
  border-radius:100px; font-size:12px; font-weight:600;
  margin-bottom:14px;
}
.blog-body h3 { font-size:19px; line-height:1.35; margin-bottom:12px; }
.blog-body > p { color:var(--grey-600); font-size:14px; line-height:1.6; margin-bottom:18px; flex:1; }
.blog-meta { display:flex; justify-content:space-between; align-items:center; padding-top:16px; border-top:1px solid var(--grey-100); }
.blog-meta span { font-size:13px; color:var(--grey-400); }
.blog-meta a { color:var(--navy); font-weight:600; font-size:14px; display:flex; align-items:center; gap:6px; }
.blog-meta a:hover { color:var(--sky); gap:10px; }

/* ============ FAQ ============ */
.faq-list { display:flex; flex-direction:column; gap:14px; }
.faq-item {
  background:white; border:1px solid var(--grey-100);
  border-radius:var(--radius); padding:0;
  transition:var(--transition);
}
.faq-item[open] { box-shadow:var(--shadow-md); border-color:var(--sky); }
.faq-item summary {
  padding:22px 60px 22px 28px;
  font-weight:600; font-size:17px; color:var(--black);
  cursor:pointer; list-style:none;
  position:relative;
  transition:var(--transition);
}
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after {
  content:"+"; position:absolute; right:24px; top:50%; transform:translateY(-50%);
  width:32px; height:32px; border-radius:50%;
  background:var(--sky-soft); color:var(--navy);
  display:flex; align-items:center; justify-content:center;
  font-size:22px; font-weight:400; line-height:1;
  transition:var(--transition);
}
.faq-item[open] summary::after { content:"−"; background:var(--gradient-primary); color:white; transform:translateY(-50%) rotate(180deg); }
.faq-content { padding:0 28px 24px; }
.faq-content p { color:var(--grey-600); line-height:1.7; }

/* ============ CONTACT ============ */
.section-contact {
  background:var(--gradient-dark); color:white;
  padding:100px 0;
  position:relative; overflow:hidden;
}
.section-contact::before {
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(circle at 80% 20%, rgba(77,149,226,0.2) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(45,61,151,0.3) 0%, transparent 50%);
}
.contact-wrap {
  position:relative; z-index:2;
  display:grid; grid-template-columns:1fr 1.1fr; gap:80px;
}
.contact-info { display:flex; flex-direction:column; gap:24px; margin-top:30px; }
.contact-row { display:flex; gap:18px; align-items:flex-start; }
.contact-icon {
  flex-shrink:0; width:48px; height:48px; border-radius:12px;
  background:rgba(255,255,255,0.1); color:var(--sky-light);
  display:flex; align-items:center; justify-content:center; font-size:18px;
  border:1px solid rgba(255,255,255,0.1);
}
.contact-row strong { display:block; color:white; font-size:14px; margin-bottom:4px; font-weight:600; }
.contact-row p { color:rgba(255,255,255,0.7); font-size:14px; line-height:1.6; }
.contact-row a { color:rgba(255,255,255,0.85); }
.contact-row a:hover { color:var(--sky-light); }

.contact-form {
  background:white; color:var(--grey-800);
  border-radius:var(--radius-lg);
  padding:40px;
  box-shadow:0 30px 80px rgba(0,0,0,0.3);
}
.contact-form h3 { font-size:24px; margin-bottom:6px; }
.form-sub { color:var(--grey-600); font-size:14px; margin-bottom:24px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-group { margin-bottom:14px; }
.form-group label {
  display:block; font-size:13px; font-weight:600; color:var(--grey-800);
  margin-bottom:6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:13px 16px;
  border:1.5px solid var(--grey-200); border-radius:10px;
  font-family:inherit; font-size:14px; color:var(--black);
  transition:var(--transition); background:var(--offwhite);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline:none; border-color:var(--sky); background:white;
  box-shadow:0 0 0 4px rgba(77,149,226,0.12);
}
.form-or {
  text-align:center; margin:16px 0;
  color:var(--grey-400); font-size:13px; font-weight:500;
}

/* ============ FOOTER ============ */
.footer {
  background:#0B0E1E; color:rgba(255,255,255,0.7);
  padding:80px 0 30px;
}
.footer-grid {
  display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:50px;
  padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,0.08);
}
.footer-logo { height:60px; margin-bottom:20px; filter:brightness(1.1); }
.footer-brand p { font-size:14px; line-height:1.7; margin-bottom:24px; max-width:340px; }
.footer-socials { display:flex; gap:10px; }
.footer-socials a {
  width:40px; height:40px; border-radius:50%;
  background:rgba(255,255,255,0.06);
  display:flex; align-items:center; justify-content:center;
  color:white; font-size:15px;
  transition:var(--transition);
}
.footer-socials a:hover { background:var(--gradient-primary); transform:translateY(-3px); }
.footer-col h4 { color:white; font-size:15px; margin-bottom:20px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col ul li { font-size:14px; }
.footer-col ul li a:hover { color:var(--sky-light); }
.footer-col ul li i { color:var(--sky); margin-right:8px; width:14px; }
.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  padding-top:30px; flex-wrap:wrap; gap:14px;
}
.footer-bottom p { font-size:13px; color:rgba(255,255,255,0.5); }
.footer-links { display:flex; gap:24px; }
.footer-links a { font-size:13px; color:rgba(255,255,255,0.5); }
.footer-links a:hover { color:white; }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position:fixed; bottom:28px; right:28px; z-index:99;
  width:64px; height:64px; border-radius:50%;
  background:#25D366; color:white;
  display:flex; align-items:center; justify-content:center;
  font-size:30px;
  box-shadow:0 12px 30px rgba(37,211,102,0.5);
  transition:var(--transition);
}
.whatsapp-float:hover { transform:scale(1.1) rotate(8deg); box-shadow:0 20px 50px rgba(37,211,102,0.7); }
.whatsapp-pulse {
  position:absolute; inset:0; border-radius:50%;
  background:#25D366; opacity:0.5;
  animation:waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform:scale(1); opacity:0.5; }
  100% { transform:scale(1.6); opacity:0; }
}
.whatsapp-tooltip {
  position:absolute; right:calc(100% + 14px); top:50%; transform:translateY(-50%);
  background:var(--black); color:white;
  padding:10px 16px; border-radius:10px;
  font-size:14px; font-weight:500; white-space:nowrap;
  opacity:0; pointer-events:none;
  transition:var(--transition);
  box-shadow:var(--shadow-md);
}
.whatsapp-tooltip::after {
  content:""; position:absolute; left:100%; top:50%; transform:translateY(-50%);
  border:6px solid transparent; border-left-color:var(--black);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity:1; transform:translateY(-50%) translateX(-4px); }

/* ============ CONTACT CTA LINK ============ */
.contact-cta-link {
  display:inline-flex; align-items:center; gap:8px;
  margin-top:12px; padding:8px 14px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:999px;
  color:var(--sky-light); font-size:13px; font-weight:600;
  transition:var(--transition);
}
.contact-cta-link:hover {
  background:rgba(77,149,226,0.2);
  border-color:rgba(77,149,226,0.4);
  color:white;
  transform:translateY(-1px);
}

/* ============ MAP / LOCALISATION ============ */
.section-map {
  background:var(--offwhite);
  padding:100px 0;
}
.map-head {
  text-align:center;
  max-width:680px;
  margin:0 auto 50px;
}
.map-head .eyebrow {
  display:inline-flex; align-items:center; gap:6px;
  padding:7px 16px; background:var(--sky-soft); color:var(--navy);
  border-radius:999px; font-size:13px; font-weight:600;
  margin-bottom:16px;
}
.map-card {
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-xl);
  background:white;
  border:1px solid var(--grey-100);
}
.map-embed {
  position:relative;
  line-height:0;
}
.map-embed iframe {
  display:block;
  width:100%;
  height:480px;
  filter:saturate(1.05);
}
.map-overlay {
  position:absolute;
  bottom:24px; left:24px;
  max-width:380px;
  z-index:2;
  pointer-events:none;
}
.map-overlay-inner {
  pointer-events:auto;
  background:white;
  border-radius:var(--radius);
  padding:20px 22px;
  box-shadow:var(--shadow-lg);
  display:flex;
  gap:14px;
  align-items:flex-start;
  border:1px solid var(--grey-100);
}
.map-pin {
  flex-shrink:0;
  width:44px; height:44px;
  border-radius:12px;
  background:var(--gradient-primary);
  color:white;
  display:flex; align-items:center; justify-content:center;
  font-size:18px;
  box-shadow:0 8px 20px rgba(45,61,151,0.3);
}
.map-info strong {
  display:block;
  color:var(--navy);
  font-size:15px;
  font-weight:700;
  margin-bottom:4px;
  letter-spacing:0.3px;
}
.map-info p {
  color:var(--grey-600);
  font-size:13px;
  line-height:1.55;
  margin-bottom:14px;
}
.map-actions {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.btn-sm {
  padding:9px 16px !important;
  font-size:13px !important;
  border-radius:10px !important;
}
.btn-sm i { font-size:12px; }


.reveal { opacity:0; transform:translateY(40px); transition:opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width:1024px) {
  .hero-inner { grid-template-columns:1fr; gap:50px; }
  .hero-visual { order:-1; max-width:500px; margin:0 auto; }
  .hero-image { height:400px; }
  .why-wrapper { grid-template-columns:1fr; gap:50px; }
  .why-visual > img { height:400px; }
  .contact-wrap { grid-template-columns:1fr; gap:50px; }
  .map-embed iframe { height:420px; }
  .map-overlay { max-width:340px; }
  .services-grid, .blog-grid, .formats-grid { grid-template-columns:repeat(2,1fr); }
  .approach-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:40px; }
}

@media (max-width:768px) {
  .section { padding:80px 0; }
  .container { padding:0 20px; }
  .nav-links {
    position:fixed; top:0; right:-100%; bottom:0;
    width:280px; background:white; flex-direction:column;
    padding:90px 30px 30px; align-items:flex-start; gap:24px;
    box-shadow:-10px 0 40px rgba(0,0,0,0.1);
    transition:right 0.4s ease;
  }
  .nav-links.open { right:0; }
  .nav-toggle { display:block; }
  .logo-large { height:110px; }
  .hero { padding:120px 0 60px; }
  .hero-image { height:340px; }
  .floating-card { display:none; }
  .stats-grid { grid-template-columns:repeat(2,1fr); gap:40px 20px; }
  .services-grid, .blog-grid, .formats-grid, .testimonials-grid { grid-template-columns:1fr; }
  .section-head.between { flex-direction:column; align-items:flex-start; }
  .why-visual > img { height:320px; }
  .why-floating { left:10px; right:10px; max-width:none; bottom:-20px; }
  .footer-grid { grid-template-columns:1fr; gap:36px; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .contact-form { padding:28px; }
  .form-row { grid-template-columns:1fr; }
  .map-embed iframe { height:360px; }
  .map-overlay {
    position:static;
    max-width:none;
    padding:0 16px 16px;
    margin-top:-1px;
  }
  .map-overlay-inner {
    border-radius:0 0 var(--radius-lg) var(--radius-lg);
    box-shadow:none;
    border:none;
    border-top:1px solid var(--grey-100);
    padding:18px;
  }
  .map-card { box-shadow:var(--shadow-md); }
  .map-actions .btn { flex:1; justify-content:center; }
  .whatsapp-float { width:56px; height:56px; font-size:26px; bottom:20px; right:20px; }
  .hero-ctas .btn { padding:14px 24px; font-size:14px; }
}
