
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0A1628;
  --navy-light: #142240;
  --navy-mid: #1A2F52;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #F5EDD5;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --gray-light: #F1EFE8;
  --gray-mid: #E8E5DC;
  --gray-text: #6B6860;
  --gray-dark: #3A3830;
  --green-deep: #0D4A2F;
  --green-mid: #1A6B44;
  --green-light: #E3F0E9;
  --text-primary: #0A1628;
  --text-secondary: #4A4A4A;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow-sm: 0 2px 12px rgba(10,22,40,0.08);
  --shadow-md: 0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.18);
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:var(--font-body); color:var(--text-primary); background:var(--white); overflow-x:hidden; line-height:1.7; }

/* ===== NAV ===== */
nav#mainNav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:var(--navy);
  border-bottom:1px solid rgba(201,168,76,0.15);
  transition:var(--transition);
}
nav#mainNav.scrolled {
  background:rgba(10,22,40,0.97);
  backdrop-filter:blur(12px);
  box-shadow:var(--shadow-md);
}
.nav-inner { position:relative;
  max-width:1280px; margin:0 auto; padding:0 2rem;
  display:flex; align-items:center; justify-content:space-between; height:72px;
}
.logo { display:flex; align-items:center; gap:12px; text-decoration:none; }
.logo-icon {
  width:42px; height:42px;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-head); font-weight:800; font-size:15px; color:var(--navy);
  flex-shrink:0;
}
.logo-text { display:flex; flex-direction:column; }
.logo-name { font-family:var(--font-head); font-weight:700; font-size:14px; color:var(--white); letter-spacing:0.5px; line-height:1.1; }
.logo-sub { font-size:10px; color:var(--gold); letter-spacing:2px; text-transform:uppercase; line-height:1; }

.nav-links { display:flex; align-items:center; gap:0; list-style:none; }
.nav-links a {
  font-family:var(--font-head); font-size:12px; font-weight:600; letter-spacing:0.8px;
  text-transform:uppercase; color:rgba(255,255,255,0.75); text-decoration:none;
  padding:8px 13px; border-radius:var(--radius); transition:var(--transition); white-space:nowrap;
}
.nav-links a:hover, .nav-links a.active-page { color:var(--gold); }
.nav-links a.nav-cta {
  background:var(--gold); color:var(--navy) !important;
  padding:6px 14px; border-radius:3px; font-weight:700;
}
.nav-links a.nav-cta:hover { background:var(--gold-light); }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; background:none; border:none; }
.hamburger span { width:24px; height:2px; background:var(--white); display:block; transition:var(--transition); }

.mobile-menu {
  display:none; background:var(--navy-light);
  border-top:1px solid rgba(201,168,76,0.2); padding:1rem 0;
}
.mobile-menu.open { display:block; }
.mobile-menu a {
  display:block; padding:12px 2rem;
  font-family:var(--font-head); font-size:13px; font-weight:600; letter-spacing:0.5px;
  color:rgba(255,255,255,0.8); text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,0.05);
}
.mobile-menu a.mob-cta {
  background:var(--gold); color:var(--navy); margin:1rem 2rem 0;
  border-radius:var(--radius); text-align:center; font-weight:700; border:none;
}

/* ===== PAGE HERO (pages internes) ===== */
.page-hero {
  background:var(--navy); padding:100px 0 40px;
  position:relative; overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 70% 60% at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
             radial-gradient(ellipse 40% 80% at 10% 30%, rgba(13,74,47,0.08) 0%, transparent 50%);
}
.page-hero-inner { position:relative; max-width:1280px; margin:0 auto; padding:0 2rem; }
.page-hero-tag {
  display:inline-block; font-family:var(--font-head); font-size:11px; font-weight:700;
  letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:14px;
}
.page-hero h1 {
  font-family:var(--font-head); font-size:clamp(1.6rem,3vw,2.4rem); font-weight:800;
  color:var(--white); line-height:1.1; letter-spacing:-0.3px; margin-bottom:18px;
}
.page-hero h1 span { color:var(--gold); }
.page-hero p {
  font-size:1.05rem; color:rgba(255,255,255,0.65); max-width:580px; line-height:1.8; margin-bottom:32px;
}
.breadcrumb {
  display:flex; align-items:center; gap:8px;
  font-size:13px; color:rgba(255,255,255,0.4);
  font-family:var(--font-head); font-weight:600; letter-spacing:0.3px;
}
.breadcrumb a { color:rgba(255,255,255,0.4); text-decoration:none; transition:var(--transition); }
.breadcrumb a:hover { color:var(--gold); }
.breadcrumb span { color:var(--gold); }

/* ===== LAYOUT ===== */
.container { max-width:1280px; margin:0 auto; padding:0 2rem; }
section { padding:55px 0; }
.section-tag {
  display:inline-block; font-family:var(--font-head); font-size:11px; font-weight:700;
  letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:12px;
}
.section-title {
  font-family:var(--font-head); font-size:clamp(1.5rem,2.5vw,2.2rem); font-weight:800;
  color:var(--navy); line-height:1.15; letter-spacing:-0.3px; margin-bottom:16px;
}
.section-title span { color:var(--gold); }
.section-subtitle { font-size:1.05rem; color:var(--text-secondary); max-width:600px; line-height:1.8; }
.section-header { margin-bottom:36px; }
.section-header.centered { text-align:center; }
.section-header.centered .section-subtitle { margin:0 auto; }

/* ===== BUTTONS ===== */
.btn-primary {
  background:var(--gold); color:var(--navy); font-family:var(--font-head);
  font-size:13px; font-weight:700; letter-spacing:0.5px; padding:16px 32px;
  border:none; border-radius:var(--radius); cursor:pointer; text-decoration:none;
  display:inline-flex; align-items:center; gap:8px; transition:var(--transition);
}
.btn-primary:hover { background:var(--gold-light); transform:translateY(-2px); box-shadow:0 8px 24px rgba(201,168,76,0.35); }
.btn-secondary {
  background:transparent; color:var(--navy); font-family:var(--font-head);
  font-size:13px; font-weight:600; letter-spacing:0.5px; padding:15px 32px;
  border:1.5px solid var(--navy); border-radius:var(--radius); cursor:pointer; text-decoration:none;
  display:inline-flex; align-items:center; gap:8px; transition:var(--transition);
}
.btn-secondary:hover { border-color:var(--gold); color:var(--gold); transform:translateY(-2px); }
.btn-secondary-white {
  background:transparent; color:var(--white); font-family:var(--font-head);
  font-size:13px; font-weight:600; padding:15px 32px;
  border:1.5px solid rgba(255,255,255,0.3); border-radius:var(--radius);
  cursor:pointer; text-decoration:none; display:inline-flex; align-items:center; gap:8px; transition:var(--transition);
}
.btn-secondary-white:hover { border-color:var(--gold); color:var(--gold); transform:translateY(-2px); }
.btn-sm {
  font-family:var(--font-head); font-size:12px; font-weight:700; letter-spacing:0.5px;
  padding:10px 20px; background:var(--gold); color:var(--navy);
  border:none; border-radius:var(--radius); cursor:pointer; text-decoration:none;
  display:inline-flex; align-items:center; gap:6px; transition:var(--transition);
}
.btn-sm:hover { background:var(--gold-light); transform:translateY(-1px); }
.btn-sm-outline {
  font-family:var(--font-head); font-size:12px; font-weight:700;
  padding:9px 18px; background:var(--gray-light); color:var(--navy);
  border:1px solid var(--gray-mid); border-radius:var(--radius);
  cursor:pointer; text-decoration:none; display:inline-flex; align-items:center; gap:6px; transition:var(--transition);
}
.btn-sm-outline:hover { border-color:var(--gold); color:var(--gold); }

/* ===== CARDS ===== */
.card {
  background:var(--white); border:1px solid var(--gray-mid);
  border-radius:var(--radius-lg); padding:24px; transition:var(--transition);
}
.card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }

/* ===== FORM ===== */
.form-group { margin-bottom:10px; }
.form-label { display:block; font-family:var(--font-head); font-size:11px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--gray-text); margin-bottom:6px; }
.form-input {
  width:100%; padding:12px 14px; border:1px solid var(--gray-mid); border-radius:var(--radius);
  font-family:var(--font-body); font-size:14px; color:var(--navy); outline:none;
  transition:var(--transition); background:var(--off-white);
}
.form-input:focus { border-color:var(--gold); background:var(--white); box-shadow:0 0 0 3px rgba(201,168,76,0.1); }
textarea.form-input { min-height:110px; resize:vertical; }

/* ===== CTA SECTION ===== */
.cta-section { background:var(--gold); padding:48px 0; text-align:center; }
.cta-section h2 { font-family:var(--font-head); font-size:clamp(1.8rem,3vw,2.6rem); font-weight:800; color:var(--navy); margin-bottom:12px; }
.cta-section p { font-size:1.05rem; color:rgba(10,22,40,0.7); max-width:500px; margin:0 auto 36px; line-height:1.7; }
.cta-section .btn-primary { background:var(--navy); color:var(--white); }
.cta-section .btn-primary:hover { background:var(--navy-light); box-shadow:0 8px 24px rgba(10,22,40,0.3); }

/* ===== FOOTER ===== */
footer { background:var(--navy); color:rgba(255,255,255,0.7); padding:48px 0 28px; }
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:32px; margin-bottom:36px; }
.footer-tagline { font-size:13.5px; line-height:1.8; color:rgba(255,255,255,0.55); margin-bottom:24px; margin-top:16px; }
.footer-social { display:flex; gap:10px; }
.social-btn {
  width:36px; height:36px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1);
  border-radius:var(--radius); display:flex; align-items:center; justify-content:center;
  font-size:13px; color:rgba(255,255,255,0.6); text-decoration:none; font-weight:700; transition:var(--transition);
}
.social-btn:hover { background:rgba(201,168,76,0.15); border-color:rgba(201,168,76,0.3); color:var(--gold); }
.footer-col-title { font-family:var(--font-head); font-size:12px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:20px; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-links a { font-size:13.5px; color:rgba(255,255,255,0.55); text-decoration:none; transition:var(--transition); }
.footer-links a:hover { color:var(--gold); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); padding-top:32px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; }
.footer-copy { font-size:12.5px; color:rgba(255,255,255,0.35); }
.footer-bottom-links { display:flex; gap:20px; }
.footer-bottom-links a { font-size:12.5px; color:rgba(255,255,255,0.35); text-decoration:none; transition:var(--transition); }
.footer-bottom-links a:hover { color:var(--white); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.revealed { 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) {
  .footer-grid { grid-template-columns:1fr 1fr; gap:36px; }
}
@media(max-width:768px) {
  section { padding:40px 0; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .footer-grid { grid-template-columns:1fr; }
  .page-hero { padding:80px 0 30px; }
}

/* === home === */

/* ===== HERO ===== */
#hero {
  min-height:auto; background:var(--navy); position:relative;
  display:flex; align-items:center; overflow:hidden; padding:90px 0 48px;
}
.hero-bg {
  position:absolute; inset:0;
  background:radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
             radial-gradient(ellipse 50% 80% at 10% 30%, rgba(13,74,47,0.08) 0%, transparent 50%);
}
.hero-grid {
  position:absolute; inset:0;
  background-image:linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
                   linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size:80px 80px;
}
.hero-inner {
  position:relative; max-width:1280px; margin:0 auto;
  padding:95px 2rem 48px;
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; width:100%;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(201,168,76,0.12); border:1px solid rgba(201,168,76,0.3);
  border-radius:100px; padding:6px 16px; margin-bottom:24px;
  font-family:var(--font-head); font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--gold);
}
.hero-badge::before { content:''; width:6px; height:6px; background:var(--gold); border-radius:50%; animation:pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero-h1 { font-family:var(--font-head); font-size:clamp(1.8rem,3vw,2.6rem); font-weight:800; color:var(--white); line-height:1.1; letter-spacing:-0.5px; margin-bottom:24px; }
.hero-h1 em { font-style:normal; color:var(--gold); display:block; }
.hero-p { font-size:1.05rem; color:rgba(255,255,255,0.7); margin-bottom:40px; max-width:500px; line-height:1.8; }
.hero-btns { display:flex; gap:16px; flex-wrap:wrap; }

.hero-visual { position:relative; display:flex; justify-content:center; align-items:center; }
.hero-photo-wrap { position:relative; width:320px; height:380px; }
.hero-photo-frame {
  position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(201,168,76,0.15),rgba(13,74,47,0.15));
  border:1px solid rgba(201,168,76,0.25); border-radius:var(--radius-lg);
  transform:rotate(3deg);
}
.hero-photo {
  position:relative; z-index:2; width:100%; height:100%;
  border-radius:var(--radius-lg); overflow:hidden;
  border:1px solid rgba(201,168,76,0.3);
}
.hero-photo img { width:100%; height:100%; object-fit:cover; object-position:top center; display:block; }
.hero-initials {
  width:100px; height:100px; background:rgba(201,168,76,0.12);
  border:2px solid rgba(201,168,76,0.35); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-head); font-size:32px; font-weight:800; color:var(--gold);
}
.hero-name-plate { font-family:var(--font-head); font-size:22px; font-weight:700; color:var(--white); }
.hero-title-plate { font-size:12px; letter-spacing:2px; text-transform:uppercase; color:var(--gold); }
.hero-float {
  position:absolute; background:rgba(255,255,255,0.07);
  backdrop-filter:blur(10px); border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--radius-md); padding:14px 18px; z-index:4;
}
.hero-float.f1 { bottom:40px; left:-40px; }
.hero-float.f2 { top:60px; right:-30px; }
.float-num { font-family:var(--font-head); font-size:22px; font-weight:800; color:var(--gold); line-height:1; }
.float-label { font-size:11px; color:rgba(255,255,255,0.6); margin-top:4px; }

/* ===== CRED BAND ===== */
.cred-band { background:var(--gold); padding:16px 0; }
.cred-inner { max-width:1280px; margin:0 auto; padding:0 2rem; display:flex; align-items:center; justify-content:center; flex-wrap:wrap; }
.cred-item { display:flex; align-items:center; gap:10px; padding:6px 28px; border-right:1px solid rgba(10,22,40,0.15); }
.cred-item:last-child { border-right:none; }
.cred-num { font-family:var(--font-head); font-size:20px; font-weight:800; color:var(--navy); line-height:1; }
.cred-label { font-family:var(--font-head); font-size:11px; font-weight:600; color:rgba(10,22,40,0.65); line-height:1.3; }

/* ===== PROBLEMS ===== */
#problems { background:var(--off-white); }
.problems-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1.5rem; }
.problem-card {
  background:var(--white); border:1px solid var(--gray-mid); border-radius:var(--radius-md);
  padding:20px 18px; position:relative; transition:var(--transition); overflow:hidden;
}
.problem-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:var(--navy); transform:scaleX(0); transform-origin:left; transition:var(--transition);
}
.problem-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.problem-card:hover::before { transform:scaleX(1); }
.problem-icon { font-size:28px; margin-bottom:14px; display:block; }
.problem-title { font-family:var(--font-head); font-size:15px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.problem-desc { font-size:13.5px; color:var(--text-secondary); line-height:1.65; }

/* ===== SOLUTIONS ===== */
#solutions { background:var(--white); }
.solutions-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:2rem; }
.sol-card { border:1px solid var(--gray-mid); border-radius:var(--radius-lg); padding:28px 24px; transition:var(--transition); position:relative; background:var(--white); }
.sol-card.featured { background:var(--navy); border-color:var(--navy); }
.sol-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.sol-num { font-family:var(--font-head); font-size:11px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:16px; display:block; }
.sol-title { font-family:var(--font-head); font-size:22px; font-weight:800; color:var(--navy); margin-bottom:12px; }
.sol-card.featured .sol-title { color:var(--white); }
.sol-desc { font-size:14px; color:var(--text-secondary); line-height:1.75; margin-bottom:24px; }
.sol-card.featured .sol-desc { color:rgba(255,255,255,0.7); }
.sol-features { list-style:none; display:flex; flex-direction:column; gap:8px; margin-bottom:28px; }
.sol-features li { font-size:13.5px; color:var(--text-secondary); display:flex; align-items:center; gap:8px; }
.sol-card.featured .sol-features li { color:rgba(255,255,255,0.8); }
.sol-features li::before { content:''; width:6px; height:6px; background:var(--gold); border-radius:50%; flex-shrink:0; }

/* ===== RESULTS ===== */
#results { background:var(--navy); }
#results .section-title { color:var(--white); }
#results .section-subtitle { color:rgba(255,255,255,0.6); }
.results-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.08); border-radius:var(--radius-lg); overflow:hidden; margin-bottom:64px; }
.result-stat { background:var(--navy); padding:24px 20px; text-align:center; }
.result-num { font-family:var(--font-head); font-size:2.2rem; font-weight:900; color:var(--gold); line-height:1; display:block; margin-bottom:8px; }
.result-label { font-size:14px; color:rgba(255,255,255,0.6); line-height:1.4; }
.testimonials-mini { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:1.5rem; }
.testi-card { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); border-radius:var(--radius-lg); padding:22px; transition:var(--transition); position:relative; }
.testi-card::before { content:'"'; position:absolute; top:20px; right:24px; font-family:var(--font-head); font-size:64px; font-weight:800; color:rgba(201,168,76,0.15); line-height:1; }
.testi-card:hover { background:rgba(255,255,255,0.07); }
.stars { display:flex; gap:3px; margin-bottom:14px; }
.star { color:var(--gold); font-size:13px; }
.testi-text { font-size:14px; color:rgba(255,255,255,0.8); line-height:1.8; margin-bottom:20px; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar { width:40px; height:40px; border-radius:50%; background:rgba(201,168,76,0.15); display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-size:13px; font-weight:700; color:var(--gold); flex-shrink:0; }
.testi-name { font-family:var(--font-head); font-size:14px; font-weight:700; color:var(--white); }
.testi-role { font-size:12px; color:rgba(255,255,255,0.5); }

/* ===== SERVICES OVERVIEW ===== */
#services-overview { background:var(--off-white); }
.services-cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1.5rem; }
.service-mini {
  background:var(--white); border:1px solid var(--gray-mid); border-radius:var(--radius-lg);
  padding:22px; transition:var(--transition); text-decoration:none; color:inherit; display:block;
}
.service-mini:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--gold); }
.service-mini-icon { font-size:28px; margin-bottom:16px; display:block; }
.service-mini-title { font-family:var(--font-head); font-size:16px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.service-mini-desc { font-size:13px; color:var(--text-secondary); line-height:1.65; margin-bottom:16px; }
.service-mini-link { font-family:var(--font-head); font-size:12px; font-weight:700; color:var(--gold); display:flex; align-items:center; gap:4px; }

/* RESPONSIVE */
@media(max-width:1024px) {
  .hero-inner { grid-template-columns:1fr; gap:48px; }
  .hero-visual { order:-1; }
  .hero-photo-wrap { max-width:300px; height:380px; margin:0 auto; }
  .hero-float.f1 { left:0; } .hero-float.f2 { right:0; }
  .results-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:768px) {
  .hero-inner { padding:100px 1.5rem 60px; }
  .hero-h1 { font-size:2rem; }
  .hero-btns { flex-direction:column; }
  .btn-primary,.btn-secondary-white { width:100%; justify-content:center; }
  .cred-item { padding:6px 14px; }
  .results-grid { grid-template-columns:1fr 1fr; }
}

/* === about === */

.about-grid { display:grid; grid-template-columns:1fr 1.6fr; gap:80px; align-items:start; }
.about-photo-col { position:sticky; top:100px; }
.about-photo-frame {
  background:var(--navy); border-radius:var(--radius-lg); overflow:hidden;
  aspect-ratio:4/5; position:relative; display:flex; align-items:center; justify-content:center;
}
.about-photo-overlay { position:absolute; inset:0; background:linear-gradient(180deg,transparent 55%,rgba(10,22,40,0.92) 100%); z-index:2; }
.about-photo-caption { position:absolute; bottom:0; z-index:3; padding:24px; width:100%; }
.about-caption-name { font-family:var(--font-head); font-size:20px; font-weight:800; color:var(--white); margin-bottom:4px; }
.about-caption-title { font-size:12px; letter-spacing:2px; text-transform:uppercase; color:var(--gold); }
.about-photo-bg {
  width:100%; height:100%; background:linear-gradient(160deg,var(--navy-mid),var(--navy));
  display:flex; align-items:center; justify-content:center; flex-direction:column; gap:12px;
}
.about-initials { width:90px; height:90px; border:2px solid rgba(201,168,76,0.4); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-size:28px; font-weight:800; color:var(--gold); }

.about-text { font-size:15px; color:var(--text-secondary); line-height:1.9; margin-bottom:20px; }
.about-quote { border-left:3px solid var(--gold); padding:16px 24px; background:rgba(201,168,76,0.05); border-radius:0 var(--radius) var(--radius) 0; margin:32px 0; font-family:var(--font-head); font-size:16px; font-weight:600; color:var(--navy); font-style:italic; line-height:1.6; }
.about-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; margin:36px 0; }
.about-stat { text-align:center; padding:14px 10px; background:var(--white); border-radius:var(--radius-md); border:1px solid var(--gray-mid); }
.about-stat-num { font-family:var(--font-head); font-size:28px; font-weight:800; color:var(--gold); line-height:1; display:block; margin-bottom:4px; }
.about-stat-label { font-size:12px; color:var(--text-secondary); font-weight:500; }

.timeline { position:relative; padding-left:32px; }
.timeline::before { content:''; position:absolute; left:8px; top:8px; bottom:8px; width:2px; background:linear-gradient(180deg,var(--gold),var(--green-mid)); }
.timeline-item { position:relative; margin-bottom:20px; }
.timeline-item::before { content:''; position:absolute; left:-28px; top:6px; width:12px; height:12px; border-radius:50%; background:var(--gold); border:2px solid var(--white); box-shadow:0 0 0 2px var(--gold); }
.timeline-year { font-family:var(--font-head); font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:4px; }
.timeline-title { font-family:var(--font-head); font-size:15px; font-weight:700; color:var(--navy); margin-bottom:4px; }
.timeline-desc { font-size:13.5px; color:var(--text-secondary); line-height:1.65; }

.certs-section { background:var(--off-white); }
.certs-grid-full { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1.5rem; }
.cert-card { background:var(--white); border:1px solid var(--gray-mid); border-radius:var(--radius-md); padding:16px; transition:var(--transition); }
.cert-card:hover { border-color:var(--gold); transform:translateY(-2px); }
.cert-icon { font-size:28px; margin-bottom:12px; display:block; }
.cert-name { font-family:var(--font-head); font-size:14px; font-weight:700; color:var(--navy); margin-bottom:6px; }
.cert-desc { font-size:13px; color:var(--text-secondary); line-height:1.6; }

.methods-section { background:var(--white); }
.methods-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:2rem; }
.method-card { background:var(--navy); border-radius:var(--radius-lg); padding:24px; }
.method-icon { font-size:32px; margin-bottom:16px; display:block; }
.method-title { font-family:var(--font-head); font-size:20px; font-weight:800; color:var(--white); margin-bottom:12px; }
.method-desc { font-size:14px; color:rgba(255,255,255,0.65); line-height:1.8; }
.method-link { display:inline-flex; align-items:center; gap:6px; font-family:var(--font-head); font-size:12px; font-weight:700; color:var(--gold); text-decoration:none; margin-top:20px; }
.method-link:hover { opacity:0.8; }

@media(max-width:1024px) {
  .about-grid { grid-template-columns:1fr; }
  .about-photo-col { position:static; }
  .about-photo-frame { max-width:320px; aspect-ratio:4/3; }
  .about-stats { grid-template-columns:repeat(3,1fr); }
}
@media(max-width:768px) {
  .about-stats { grid-template-columns:1fr 1fr; }
}

/* === services === */

.services-nav { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:56px; }
.srv-tab { font-family:var(--font-head); font-size:12px; font-weight:700; letter-spacing:0.5px; padding:10px 20px; border:1.5px solid var(--gray-mid); border-radius:100px; cursor:pointer; color:var(--text-secondary); background:var(--white); transition:var(--transition); }
.srv-tab.active, .srv-tab:hover { border-color:var(--navy); color:var(--navy); background:var(--off-white); }
.srv-tab.active { background:var(--navy); color:var(--white); border-color:var(--navy); }

.service-detail { display:none; }
.service-detail.active { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }

.service-detail-left h2 { font-family:var(--font-head); font-size:2rem; font-weight:800; color:var(--navy); margin-bottom:16px; line-height:1.15; }
.service-detail-left h2 span { color:var(--gold); }
.service-detail-left .desc { font-size:15px; color:var(--text-secondary); line-height:1.9; margin-bottom:32px; }
.service-problem { background:rgba(201,168,76,0.07); border:1px solid rgba(201,168,76,0.2); border-radius:var(--radius-md); padding:24px; margin-bottom:24px; }
.service-problem-label { font-family:var(--font-head); font-size:10px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:10px; }
.service-problem p { font-size:14px; color:var(--text-secondary); line-height:1.75; }
.service-method { background:var(--navy); border-radius:var(--radius-md); padding:24px; margin-bottom:24px; }
.service-method-label { font-family:var(--font-head); font-size:10px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:10px; }
.service-method p { font-size:14px; color:rgba(255,255,255,0.75); line-height:1.75; }

.service-detail-right {}
.results-list { list-style:none; display:flex; flex-direction:column; gap:12px; margin-bottom:32px; }
.results-list li { display:flex; align-items:flex-start; gap:12px; padding:14px 16px; background:var(--off-white); border-radius:var(--radius); }
.results-list li::before { content:'✓'; font-weight:700; color:var(--green-mid); font-size:14px; flex-shrink:0; margin-top:1px; }
.results-list li span { font-size:14px; color:var(--text-secondary); line-height:1.6; }

.pricing-box { border:1.5px solid var(--gold); border-radius:var(--radius-lg); padding:32px; }
.pricing-box-label { font-family:var(--font-head); font-size:10px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:8px; }
.pricing-price { font-family:var(--font-head); font-size:2rem; font-weight:900; color:var(--navy); margin-bottom:4px; }
.pricing-note { font-size:13px; color:var(--text-secondary); margin-bottom:20px; }
.pricing-includes { list-style:none; display:flex; flex-direction:column; gap:8px; margin-bottom:24px; }
.pricing-includes li { font-size:13.5px; color:var(--text-secondary); display:flex; align-items:center; gap:8px; }
.pricing-includes li::before { content:''; width:6px; height:6px; background:var(--gold); border-radius:50%; flex-shrink:0; }

.other-services { background:var(--off-white); }
.other-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1.5rem; }
.other-card { background:var(--white); border:1px solid var(--gray-mid); border-radius:var(--radius-lg); padding:28px; text-decoration:none; color:inherit; display:block; transition:var(--transition); cursor:pointer; }
.other-card:hover { border-color:var(--gold); transform:translateY(-3px); box-shadow:var(--shadow-sm); }
.other-card-icon { font-size:24px; margin-bottom:12px; display:block; }
.other-card-title { font-family:var(--font-head); font-size:15px; font-weight:700; color:var(--navy); margin-bottom:6px; }
.other-card-desc { font-size:13px; color:var(--text-secondary); line-height:1.6; }

@media(max-width:1024px) { .service-detail.active { grid-template-columns:1fr; gap:40px; } }

/* === pulse === */

/* PULSE premium page */
.pulse-origin { background:var(--navy); padding:55px 0; }
.pulse-origin-inner { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.pulse-origin h2 { font-family:var(--font-head); font-size:2.2rem; font-weight:800; color:var(--white); margin-bottom:20px; }
.pulse-origin h2 span { color:var(--gold); }
.pulse-origin p { font-size:15px; color:rgba(255,255,255,0.65); line-height:1.9; margin-bottom:20px; }
.pulse-acronym { display:grid; grid-template-columns:1fr; gap:0; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); border-radius:var(--radius-lg); overflow:hidden; }
.pulse-letter-row { display:flex; align-items:center; gap:16px; padding:14px 20px; border-bottom:1px solid rgba(255,255,255,0.06); transition:var(--transition); }
.pulse-letter-row:last-child { border-bottom:none; }
.pulse-letter-row:hover { background:rgba(201,168,76,0.06); }
.pulse-letter { font-family:var(--font-head); font-size:2.5rem; font-weight:900; color:var(--gold); width:48px; text-align:center; flex-shrink:0; }
.pulse-letter-content {}
.pulse-letter-word { font-family:var(--font-head); font-size:15px; font-weight:700; color:var(--white); margin-bottom:2px; }
.pulse-letter-desc { font-size:13px; color:rgba(255,255,255,0.5); line-height:1.4; }

.dimensions-section { background:var(--off-white); }
.dims-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.dim-card {
  background:var(--white); border:1px solid var(--gray-mid); border-radius:var(--radius-lg);
  padding:18px; transition:var(--transition); cursor:pointer; position:relative; overflow:hidden;
}
.dim-card::after { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:var(--transition); }
.dim-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.dim-card:hover::after { transform:scaleX(1); }
.dim-num { font-family:var(--font-head); font-size:10px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:10px; }
.dim-icon { font-size:28px; margin-bottom:12px; display:block; }
.dim-title { font-family:var(--font-head); font-size:15px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.dim-desc { font-size:13px; color:var(--text-secondary); line-height:1.65; margin-bottom:16px; }
.dim-questions { list-style:none; display:flex; flex-direction:column; gap:6px; }
.dim-questions li { font-size:12px; color:var(--gold); display:flex; align-items:flex-start; gap:6px; }
.dim-questions li::before { content:'→'; flex-shrink:0; }

.applications-section { background:var(--white); }
.apps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.app-card { background:var(--navy); border-radius:var(--radius-lg); padding:22px; }
.app-icon { font-size:32px; margin-bottom:16px; display:block; }
.app-title { font-family:var(--font-head); font-size:18px; font-weight:700; color:var(--white); margin-bottom:12px; }
.app-desc { font-size:14px; color:rgba(255,255,255,0.65); line-height:1.8; margin-bottom:20px; }
.app-link { font-family:var(--font-head); font-size:12px; font-weight:700; color:var(--gold); text-decoration:none; display:flex; align-items:center; gap:4px; }
.app-link:hover { opacity:0.8; }

.cert-section { background:var(--off-white); }
.cert-levels { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; margin-bottom:60px; }
.cert-level-card { background:var(--white); border:1px solid var(--gray-mid); border-radius:var(--radius-lg); padding:22px; text-align:center; transition:var(--transition); position:relative; overflow:hidden; }
.cert-level-card.highlight { background:var(--navy); border-color:var(--navy); }
.cert-level-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.cert-level-badge { width:64px; height:64px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-size:22px; font-weight:900; margin:0 auto 16px; }
.cert-level-card:not(.highlight) .cert-level-badge { background:var(--gold-pale); color:var(--navy); }
.cert-level-card.highlight .cert-level-badge { background:rgba(201,168,76,0.2); color:var(--gold); }
.cert-level-name { font-family:var(--font-head); font-size:16px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.cert-level-card.highlight .cert-level-name { color:var(--white); }
.cert-level-desc { font-size:13px; color:var(--text-secondary); line-height:1.65; margin-bottom:16px; }
.cert-level-card.highlight .cert-level-desc { color:rgba(255,255,255,0.65); }
.cert-level-price { font-family:var(--font-head); font-size:18px; font-weight:800; color:var(--gold); }

.results-pulse { background:var(--navy); padding:55px 0; }
.results-pulse .section-title { color:var(--white); }
.results-pulse .section-subtitle { color:rgba(255,255,255,0.6); }
.pulse-results-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:48px; }
.pulse-result-card { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); border-radius:var(--radius-lg); padding:32px; }
.pulse-result-icon { font-size:32px; margin-bottom:16px; display:block; }
.pulse-result-title { font-family:var(--font-head); font-size:16px; font-weight:700; color:var(--white); margin-bottom:10px; }
.pulse-result-desc { font-size:13.5px; color:rgba(255,255,255,0.65); line-height:1.75; }

@media(max-width:1024px) {
  .pulse-origin-inner { grid-template-columns:1fr; }
  .dims-grid { grid-template-columns:repeat(2,1fr); }
  .apps-grid { grid-template-columns:1fr; }
  .cert-levels { grid-template-columns:repeat(2,1fr); }
  .pulse-results-grid { grid-template-columns:1fr; }
}
@media(max-width:768px) {
  .dims-grid { grid-template-columns:1fr; }
  .cert-levels { grid-template-columns:1fr 1fr; }
}

/* === ai === */

.ai-hero-band { background:var(--gold); padding:12px 0; text-align:center; }
.ai-hero-band p { font-family:var(--font-head); font-size:12px; font-weight:700; letter-spacing:1px; color:var(--navy); }
.workflow-section { background:var(--navy); padding:55px 0; }
.workflow-section .section-title { color:var(--white); }
.workflow-section .section-subtitle { color:rgba(255,255,255,0.6); }
.workflow-steps { display:grid; grid-template-columns:repeat(5,1fr); gap:0; position:relative; margin-top:56px; }
.workflow-steps::before { content:''; position:absolute; top:32px; left:10%; right:10%; height:2px; background:linear-gradient(90deg,var(--gold),var(--green-mid)); z-index:0; }
.workflow-step { text-align:center; position:relative; z-index:1; }
.workflow-step-num { width:64px; height:64px; border-radius:50%; background:var(--gold); display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-size:18px; font-weight:900; color:var(--navy); margin:0 auto 16px; border:3px solid var(--navy); }
.workflow-step-title { font-family:var(--font-head); font-size:13px; font-weight:700; color:var(--white); margin-bottom:6px; }
.workflow-step-desc { font-size:12px; color:rgba(255,255,255,0.5); line-height:1.5; padding:0 8px; }

.industries-section { background:var(--off-white); }
.industry-detail { background:var(--white); border:1px solid var(--gray-mid); border-radius:var(--radius-lg); padding:28px; margin-bottom:20px; display:grid; grid-template-columns:1.4fr 1fr; gap:60px; align-items:start; transition:var(--transition); }
.industry-detail:hover { box-shadow:var(--shadow-md); }
.industry-detail-icon { font-size:48px; margin-bottom:20px; display:block; }
.industry-detail-title { font-family:var(--font-head); font-size:24px; font-weight:800; color:var(--navy); margin-bottom:12px; }
.industry-detail-problem { font-size:14px; color:var(--text-secondary); line-height:1.8; margin-bottom:24px; }
.industry-tools { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:24px; }
.tool-tag { font-family:var(--font-head); font-size:11px; font-weight:700; padding:6px 12px; background:var(--navy); color:rgba(255,255,255,0.85); border-radius:100px; letter-spacing:0.3px; }
.roi-box { background:var(--green-light); border:1px solid rgba(13,74,47,0.2); border-radius:var(--radius-md); padding:20px; }
.roi-label { font-family:var(--font-head); font-size:10px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--green-mid); margin-bottom:8px; }
.roi-value { font-family:var(--font-head); font-size:2rem; font-weight:900; color:var(--green-deep); }
.roi-desc { font-size:13px; color:var(--green-deep); margin-top:4px; }
.workflow-box { background:var(--off-white); border-radius:var(--radius-md); padding:24px; }
.workflow-box-label { font-family:var(--font-head); font-size:10px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:12px; }
.workflow-list { list-style:none; display:flex; flex-direction:column; gap:8px; }
.workflow-list li { font-size:13.5px; color:var(--text-secondary); display:flex; align-items:center; gap:8px; }
.workflow-list li::before { content:'→'; color:var(--gold); font-weight:700; flex-shrink:0; }

.stack-section { background:var(--white); }
.stack-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:1.5rem; }
.stack-card { border:1px solid var(--gray-mid); border-radius:var(--radius-md); padding:28px 20px; text-align:center; transition:var(--transition); }
.stack-card:hover { border-color:var(--gold); transform:translateY(-3px); }
.stack-icon { font-size:32px; margin-bottom:12px; display:block; }
.stack-name { font-family:var(--font-head); font-size:15px; font-weight:700; color:var(--navy); margin-bottom:6px; }
.stack-role { font-size:12.5px; color:var(--text-secondary); line-height:1.5; }

@media(max-width:1024px) {
  .workflow-steps { grid-template-columns:1fr 1fr; gap:32px; }
  .workflow-steps::before { display:none; }
  .industry-detail { grid-template-columns:1fr; gap:32px; }
}
@media(max-width:768px) { .workflow-steps { grid-template-columns:1fr; } }

/* === books === */

.books-section { background:var(--off-white); }
.book-full { display:grid; grid-template-columns:260px 1fr; gap:36px; align-items:start; background:var(--white); border:1px solid var(--gray-mid); border-radius:var(--radius-lg); padding:28px; margin-bottom:20px; transition:var(--transition); }
.book-full:hover { box-shadow:var(--shadow-md); }
.book-cover-tall { border-radius:var(--radius-md); height:280px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:16px; padding:32px; text-align:center; flex-shrink:0; }
.book-cover-tall.c1 { background:linear-gradient(160deg,#0A1628 0%,#1A3A6B 100%); }
.book-cover-tall.c2 { background:linear-gradient(160deg,#0D4A2F 0%,#1A6B44 100%); }
.book-cover-tall.c3 { background:linear-gradient(160deg,#4A1628 0%,#8B2E5A 100%); }
.book-cover-tall.c4 { background:linear-gradient(160deg,#2A1A05 0%,#7A5A22 100%); }
.book-cover-icon { font-size:56px; }
.book-cover-title-text { font-family:var(--font-head); font-size:16px; font-weight:800; color:var(--white); line-height:1.3; }
.book-cover-author { font-size:12px; color:rgba(255,255,255,0.6); letter-spacing:0.5px; margin-top:4px; }
.book-cat-badge { display:inline-block; font-family:var(--font-head); font-size:10px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:12px; }
.book-title { font-family:var(--font-head); font-size:1.8rem; font-weight:800; color:var(--navy); margin-bottom:6px; line-height:1.2; }
.book-subtitle { font-family:var(--font-head); font-size:14px; font-weight:600; color:var(--gray-text); margin-bottom:20px; }
.book-desc { font-size:14.5px; color:var(--text-secondary); line-height:1.9; margin-bottom:24px; }
.book-details { display:flex; flex-wrap:wrap; gap:16px; margin-bottom:28px; }
.book-detail-item { display:flex; flex-direction:column; gap:2px; }
.book-detail-label { font-family:var(--font-head); font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--gray-text); }
.book-detail-value { font-family:var(--font-head); font-size:14px; font-weight:600; color:var(--navy); }
.book-actions { display:flex; gap:12px; flex-wrap:wrap; }

.coauthor-section { background:var(--navy); padding:48px 0; }
.coauthor-inner { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.coauthor-inner h2 { font-family:var(--font-head); font-size:2rem; font-weight:800; color:var(--white); margin-bottom:16px; }
.coauthor-inner p { font-size:14.5px; color:rgba(255,255,255,0.65); line-height:1.9; margin-bottom:16px; }
.coauthor-card { background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:var(--radius-lg); padding:32px; display:flex; gap:20px; align-items:center; }
.coauthor-avatar { width:72px; height:72px; border-radius:50%; background:rgba(201,168,76,0.15); border:2px solid rgba(201,168,76,0.3); display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-size:20px; font-weight:800; color:var(--gold); flex-shrink:0; }
.coauthor-name { font-family:var(--font-head); font-size:18px; font-weight:800; color:var(--white); margin-bottom:4px; }
.coauthor-title { font-size:13px; color:rgba(255,255,255,0.55); margin-bottom:8px; }
.coauthor-bio { font-size:13px; color:rgba(255,255,255,0.6); line-height:1.65; }

@media(max-width:1024px) {
  .book-full { grid-template-columns:1fr; }
  .book-cover-tall { height:240px; max-width:300px; }
  .coauthor-inner { grid-template-columns:1fr; }
}

/* === speaking === */

.speaking-intro { background:var(--off-white); }
.speaking-intro-inner { display:grid; grid-template-columns:1.3fr 1fr; gap:80px; align-items:start; }
.speaking-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; margin:32px 0; }
.spk-stat { background:var(--white); border:1px solid var(--gray-mid); border-radius:var(--radius-md); padding:20px 16px; text-align:center; }
.spk-stat-num { font-family:var(--font-head); font-size:2rem; font-weight:900; color:var(--gold); line-height:1; display:block; margin-bottom:6px; }
.spk-stat-label { font-size:12px; color:var(--text-secondary); }
.booking-card { background:var(--navy); border-radius:var(--radius-lg); padding:28px; position:sticky; top:90px; }
.booking-card h3 { font-family:var(--font-head); font-size:20px; font-weight:800; color:var(--white); margin-bottom:6px; }
.booking-card p { font-size:13.5px; color:rgba(255,255,255,0.6); margin-bottom:24px; line-height:1.7; }
.booking-card .form-input { background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,0.15); color:var(--white); }
.booking-card .form-input:focus { border-color:var(--gold); background:rgba(255,255,255,0.12); }
.booking-card .form-input::placeholder { color:rgba(255,255,255,0.4); }
.booking-card .form-label { color:rgba(255,255,255,0.5); }

.topics-section { background:var(--white); }
.topics-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:2rem; }
.topic-card { border:1px solid var(--gray-mid); border-radius:var(--radius-lg); padding:22px; display:grid; grid-template-columns:64px 1fr; gap:24px; align-items:start; transition:var(--transition); }
.topic-card:hover { border-color:var(--gold); transform:translateY(-3px); box-shadow:var(--shadow-sm); }
.topic-icon-box { width:64px; height:64px; background:var(--gold-pale); border-radius:var(--radius-md); display:flex; align-items:center; justify-content:center; font-size:28px; flex-shrink:0; }
.topic-title { font-family:var(--font-head); font-size:17px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.topic-desc { font-size:13.5px; color:var(--text-secondary); line-height:1.75; margin-bottom:14px; }
.topic-keynote-tag { display:inline-block; font-family:var(--font-head); font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; padding:4px 12px; background:var(--navy); color:rgba(255,255,255,0.8); border-radius:100px; }
.topic-audience { font-size:12px; color:var(--gray-text); margin-top:8px; }

.formats-section { background:var(--navy); padding:55px 0; }
.formats-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:48px; }
.format-card { background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08); border-radius:var(--radius-lg); padding:22px; }
.format-icon { font-size:32px; margin-bottom:16px; display:block; }
.format-title { font-family:var(--font-head); font-size:18px; font-weight:700; color:var(--white); margin-bottom:10px; }
.format-desc { font-size:13.5px; color:rgba(255,255,255,0.6); line-height:1.75; margin-bottom:16px; }
.format-details { display:flex; flex-direction:column; gap:6px; }
.format-detail { font-size:12.5px; color:rgba(255,255,255,0.5); display:flex; align-items:center; gap:6px; }
.format-detail::before { content:'·'; color:var(--gold); }

@media(max-width:1024px) {
  .speaking-intro-inner { grid-template-columns:1fr; }
  .booking-card { position:static; }
  .topics-grid { grid-template-columns:1fr; }
  .formats-grid { grid-template-columns:1fr; }
}

/* === blog === */

.blog-layout { background:var(--off-white); }
.blog-inner { display:grid; grid-template-columns:1fr 300px; gap:48px; align-items:start; }
.blog-main {}
.blog-sidebar { position:sticky; top:100px; }
.cat-filter { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:40px; }
.cat-btn { font-family:var(--font-head); font-size:11px; font-weight:700; letter-spacing:0.5px; padding:8px 16px; border:1.5px solid var(--gray-mid); border-radius:100px; cursor:pointer; color:var(--text-secondary); background:var(--white); transition:var(--transition); }
.cat-btn.active, .cat-btn:hover { border-color:var(--navy); background:var(--navy); color:var(--white); }
.blog-posts { display:flex; flex-direction:column; gap:1.5rem; }
.blog-post-card { background:var(--white); border:1px solid var(--gray-mid); border-radius:var(--radius-lg); overflow:hidden; display:grid; grid-template-columns:240px 1fr; transition:var(--transition); }
.blog-post-card:hover { box-shadow:var(--shadow-md); transform:translateY(-2px); }
.blog-post-img { display:flex; align-items:center; justify-content:center; font-size:48px; height:100%; min-height:180px; }
.bpi-1 { background:linear-gradient(135deg,#0A1628,#1A3A6B); }
.bpi-2 { background:linear-gradient(135deg,#0D4A2F,#1A6B44); }
.bpi-3 { background:linear-gradient(135deg,#2A1A05,#7A5A22); }
.bpi-4 { background:linear-gradient(135deg,#1A0A28,#5A22AA); }
.bpi-5 { background:linear-gradient(135deg,#1A0A10,#AA2244); }
.bpi-6 { background:linear-gradient(135deg,#0A1A1A,#226688); }
.blog-post-body { padding:28px; }
.blog-post-cat { font-family:var(--font-head); font-size:10px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:8px; display:block; }
.blog-post-title { font-family:var(--font-head); font-size:17px; font-weight:700; color:var(--navy); margin-bottom:10px; line-height:1.4; }
.blog-post-excerpt { font-size:13.5px; color:var(--text-secondary); line-height:1.7; margin-bottom:16px; }
.blog-post-meta { display:flex; align-items:center; gap:12px; font-size:12px; color:var(--gray-text); margin-bottom:12px; }
.blog-read-link { font-family:var(--font-head); font-size:12px; font-weight:700; color:var(--navy); text-decoration:none; display:inline-flex; align-items:center; gap:4px; }
.blog-read-link:hover { color:var(--gold); }
.blog-read-link::after { content:'→'; }

.sidebar-widget { background:var(--white); border:1px solid var(--gray-mid); border-radius:var(--radius-lg); padding:18px; margin-bottom:16px; }
.widget-title { font-family:var(--font-head); font-size:13px; font-weight:700; letter-spacing:1px; color:var(--navy); margin-bottom:16px; text-transform:uppercase; }
.widget-cats { list-style:none; display:flex; flex-direction:column; gap:8px; }
.widget-cats li { display:flex; justify-content:space-between; align-items:center; }
.widget-cats a { font-size:13.5px; color:var(--text-secondary); text-decoration:none; transition:var(--transition); }
.widget-cats a:hover { color:var(--gold); }
.widget-cats span { font-family:var(--font-head); font-size:11px; font-weight:700; background:var(--gray-light); color:var(--gray-text); padding:2px 8px; border-radius:100px; }
.widget-cta { background:var(--navy); border-radius:var(--radius-lg); padding:18px; text-align:center; margin-bottom:16px; }
.widget-cta h4 { font-family:var(--font-head); font-size:15px; font-weight:700; color:var(--white); margin-bottom:8px; }
.widget-cta p { font-size:12.5px; color:rgba(255,255,255,0.6); margin-bottom:16px; line-height:1.6; }
.widget-popular { list-style:none; display:flex; flex-direction:column; gap:12px; }
.widget-popular li { display:flex; gap:12px; align-items:flex-start; }
.wp-num { font-family:var(--font-head); font-size:20px; font-weight:900; color:var(--gold-pale); line-height:1; flex-shrink:0; width:24px; }
.wp-title { font-size:13px; color:var(--navy); line-height:1.5; font-weight:500; cursor:pointer; }
.wp-title:hover { color:var(--gold); }

@media(max-width:1024px) { .blog-inner { grid-template-columns:1fr; } .blog-sidebar { position:static; } .blog-post-card { grid-template-columns:1fr; } .blog-post-img { min-height:160px; } }

/* === contact === */

.contact-layout { background:var(--off-white); }
.contact-inner { display:grid; grid-template-columns:1fr 1.5fr; gap:60px; align-items:start; }
.booking-priority { background:var(--navy); border-radius:var(--radius-lg); padding:24px; margin-bottom:18px; text-align:center; }
.booking-priority h3 { font-family:var(--font-head); font-size:22px; font-weight:800; color:var(--white); margin-bottom:10px; }
.booking-priority p { font-size:14px; color:rgba(255,255,255,0.65); margin-bottom:24px; line-height:1.7; }
.booking-steps { display:flex; flex-direction:column; gap:0; border:1px solid var(--gray-mid); border-radius:var(--radius-lg); overflow:hidden; margin-bottom:28px; }
.booking-step { display:flex; align-items:center; gap:16px; padding:18px 20px; background:var(--white); border-bottom:1px solid var(--gray-mid); transition:var(--transition); }
.booking-step:last-child { border-bottom:none; }
.booking-step:hover { background:var(--gold-pale); }
.bs-num { width:32px; height:32px; border-radius:50%; background:var(--gold); display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-size:13px; font-weight:800; color:var(--navy); flex-shrink:0; }
.bs-content {}
.bs-title { font-family:var(--font-head); font-size:13px; font-weight:700; color:var(--navy); margin-bottom:2px; }
.bs-desc { font-size:12.5px; color:var(--text-secondary); }
.contact-details-box { background:var(--white); border:1px solid var(--gray-mid); border-radius:var(--radius-lg); padding:28px; }
.contact-detail-row { display:flex; align-items:center; gap:14px; padding:12px 0; border-bottom:1px solid var(--gray-light); }
.contact-detail-row:last-child { border-bottom:none; }
.contact-detail-icon { width:40px; height:40px; background:var(--gold-pale); border-radius:var(--radius); display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0; }
.contact-detail-label { font-family:var(--font-head); font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--gray-text); margin-bottom:2px; }
.contact-detail-value { font-size:14px; color:var(--navy); font-weight:500; }
.contact-form-card { background:var(--white); border:1px solid var(--gray-mid); border-radius:var(--radius-lg); padding:28px; }
.contact-form-title { font-family:var(--font-head); font-size:26px; font-weight:800; color:var(--navy); margin-bottom:8px; }
.contact-form-sub { font-size:14.5px; color:var(--text-secondary); margin-bottom:32px; line-height:1.7; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.success-msg { background:var(--green-light); border:1px solid rgba(13,74,47,0.2); border-radius:var(--radius); padding:16px 20px; font-family:var(--font-head); font-size:14px; font-weight:600; color:var(--green-deep); display:none; margin-bottom:16px; }

.faq-section { background:var(--white); }
.faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
.faq-item { background:var(--off-white); border-radius:var(--radius-md); padding:18px; }
.faq-q { font-family:var(--font-head); font-size:15px; font-weight:700; color:var(--navy); margin-bottom:10px; }
.faq-a { font-size:13.5px; color:var(--text-secondary); line-height:1.75; }

@media(max-width:1024px) { .contact-inner { grid-template-columns:1fr; } .faq-grid { grid-template-columns:1fr; } .form-row { grid-template-columns:1fr; } }


/* SPA */
.spa-page { display:none; }
.spa-page.active { display:block; }
.nav-links button {
  font-family:var(--font-head); font-size:12px; font-weight:600; letter-spacing:0.8px;
  text-transform:uppercase; color:rgba(255,255,255,0.75); text-decoration:none;
  padding:8px 13px; border-radius:var(--radius); transition:var(--transition); white-space:nowrap;
  background:none; border:none; cursor:pointer;
}
.nav-links button:hover, .nav-links button.active-page { color:var(--gold); }
.nav-links button.nav-cta {
  background:var(--gold); color:var(--navy) !important;
  padding:6px 14px; border-radius:3px; font-weight:700;
}
.nav-links button.nav-cta:hover { background:var(--gold-light); }
.mob-link {
  display:block; width:100%; text-align:left; padding:12px 2rem;
  font-family:var(--font-head); font-size:13px; font-weight:600; letter-spacing:0.5px;
  color:rgba(255,255,255,0.8); background:none; border:none; border-bottom:1px solid rgba(255,255,255,0.05); cursor:pointer;
}
.mob-link:hover { color:var(--gold); }
.ftr-link {
  font-size:13.5px; color:rgba(255,255,255,0.55); background:none; border:none;
  cursor:pointer; padding:0; text-align:left; transition:var(--transition);
}
.ftr-link:hover { color:var(--gold); }


<style id="gallery-css">
.gal-filters { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:48px; }
.gal-filter-btn {
  font-family:var(--font-head); font-size:12px; font-weight:700; letter-spacing:0.5px;
  padding:10px 20px; border:1.5px solid var(--gray-mid); border-radius:100px;
  cursor:pointer; background:var(--white); color:var(--text-secondary); transition:var(--transition);
}
.gal-filter-btn:hover, .gal-filter-btn.active {
  background:var(--navy); border-color:var(--navy); color:var(--white);
}
.gallery-grid {
  display:grid; grid-template-columns:repeat(auto-fill, minmax(280px,1fr)); gap:1.5rem;
}
.gallery-card { border-radius:var(--radius-lg); overflow:hidden; background:var(--white); border:1px solid var(--gray-mid); transition:var(--transition); }
.gallery-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.gallery-card[style*="display:none"] { display:none !important; }
.gallery-img-wrap { position:relative; aspect-ratio:4/3; overflow:hidden; cursor:pointer; }
.gallery-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s ease; display:block; }
.gallery-card:hover .gallery-img-wrap img { transform:scale(1.05); }
.gallery-overlay {
  position:absolute; inset:0; background:rgba(10,22,40,0); display:flex;
  align-items:center; justify-content:center; transition:var(--transition);
}
.gallery-card:hover .gallery-overlay { background:rgba(10,22,40,0.35); }
.gallery-zoom {
  width:48px; height:48px; background:rgba(201,168,76,0.9); border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-size:20px; color:var(--navy);
  opacity:0; transform:scale(0.7); transition:var(--transition);
}
.gallery-card:hover .gallery-zoom { opacity:1; transform:scale(1); }
.gallery-caption {
  padding:12px 16px; font-family:var(--font-head); font-size:12px; font-weight:600;
  letter-spacing:0.5px; color:var(--text-secondary); text-align:center;
}
#lightbox { display:none; }
#lightbox.open { display:flex !important; }
@media(max-width:768px) { .gallery-grid { grid-template-columns:repeat(2,1fr); gap:1rem; } }
@media(max-width:480px) { .gallery-grid { grid-template-columns:1fr; } }

/* === DROPDOWN NAV === */
.nav-links .has-dropdown { position: relative; }
.nav-links .dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: #1a1a2e; border-radius: 8px; min-width: 180px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3); z-index: 1000;
  list-style: none; padding: 8px 0; margin: 0;
}
.nav-links .has-dropdown:hover .dropdown-menu { display: block; }
.nav-links .dropdown-menu li a {
  display: block; padding: 10px 18px; color: #e0e0e0;
  text-decoration: none; font-size: 0.9rem; white-space: nowrap;
}
.nav-links .dropdown-menu li a:hover { background: rgba(255,255,255,0.1); color: #00d4ff; }

/* ═══ FR/EN Lang Toggle ═══ */
.lang-switcher{display:flex;align-items:center;gap:6px;margin-left:8px;flex-shrink:0}
.lang-btn{font-size:12px;font-weight:700;padding:4px 8px;border-radius:4px;text-decoration:none;color:rgba(255,255,255,0.6);background:transparent;border:1.5px solid rgba(255,255,255,0.32);cursor:pointer;transition:all .2s;display:inline-block}
.lang-btn.active,.lang-btn.lang-active,.lang-btn:hover{background:var(--gold);border-color:var(--gold);color:var(--navy)}
.mobile-menu .lang-switcher{margin:0;padding:10px 20px;border-top:1px solid rgba(255,255,255,0.1)}
@media(max-width:768px){.nav-inner>.lang-switcher{display:none!important}}

/* === Page Hero Background Images === */
.page-hero {
  min-height: 320px;
  background-attachment: fixed;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .page-hero { background-attachment: scroll; min-height: 220px; }
}

.lang-active{color:#fff!important;border-color:rgba(255,255,255,0.9)!important;}