:root {
  --navy-950: #07152c;
  --navy-900: #0b1f43;
  --navy-800: #112b59;
  --navy-700: #183b76;
  --blue-500: #2d6cdf;
  --sky-100: #eaf2ff;
  --paper: #f7f8fb;
  --white: #ffffff;
  --ink: #101624;
  --muted: #637085;
  --line: #dfe5ee;
  --accent: #b9d866;
  --accent-dark: #8eb237;
  --shadow: 0 24px 70px rgba(7, 21, 44, .14);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--accent); color: var(--navy-950); }

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: 110px 0; }
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  color: #dce8ff;
}
.eyebrow.dark { color: var(--navy-700); }
.eyebrow.light { color: var(--accent); }

h1, h2, h3 {
  font-family: "Libre Franklin", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 0;
}
h1 { font-size: clamp(48px, 6.4vw, 82px); max-width: 900px; }
h2 { font-size: clamp(36px, 4.6vw, 58px); }
h3 { font-size: 24px; }
p { margin: 0 0 16px; color: var(--muted); }
.skip-link {
  position: fixed; left: 20px; top: -60px; z-index: 1000;
  padding: 12px 16px; background: var(--white); color: var(--navy-900);
  border-radius: 10px; transition: .2s;
}
.skip-link:focus { top: 20px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy-800); color: var(--white); }
.btn-primary:hover { background: var(--navy-700); }
.btn-accent { background: var(--accent); color: var(--navy-950); }
.btn-accent:hover { background: #c8e477; box-shadow: 0 12px 30px rgba(185, 216, 102, .24); }
.btn-light { background: var(--white); color: var(--navy-900); }
.btn-ghost-light { border-color: rgba(255,255,255,.28); color: var(--white); background: rgba(255,255,255,.05); }
.btn-ghost-light:hover { background: rgba(255,255,255,.1); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0; left: 0; width: 100%;
  transition: .28s ease;
  color: var(--white);
}
.site-header.scrolled {
  background: rgba(255,255,255,.94);
  color: var(--navy-950);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(7,21,44,.08);
}
.nav-wrap {
  height: 92px;
  display: flex;
  align-items: center;
  gap: 28px;
  transition: .28s ease;
}
.site-header.scrolled .nav-wrap { height: 72px; }
.brand img { width: 190px; height: auto; color: currentColor; }
.site-header:not(.scrolled) .brand img { filter: brightness(0) invert(1); }
.main-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.main-nav a { font-size: 14px; font-weight: 600; opacity: .9; }
.main-nav a:hover { opacity: 1; }
.nav-cta { min-height: 44px; padding: 0 18px; font-size: 14px; }
.site-header:not(.scrolled) .nav-cta { background: var(--white); color: var(--navy-900); }
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border: 0; background: transparent;
}
.menu-toggle span { display:block; width:24px; height:2px; margin:5px auto; background:currentColor; transition:.2s; }

.hero {
  position: relative;
  min-height: 880px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(45,108,223,.24), transparent 34%),
    linear-gradient(125deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}
.hero::before {
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-bg {
  position:absolute; width:640px; height:640px; border-radius:50%;
  right:-250px; top:70px;
  border:1px solid rgba(255,255,255,.1);
  box-shadow: 0 0 0 80px rgba(255,255,255,.02), 0 0 0 160px rgba(255,255,255,.015);
}
.hero-grid {
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 70px;
  align-items:center;
  padding-top:110px;
}
.hero-copy p {
  max-width: 670px;
  margin: 26px 0 32px;
  font-size: 19px;
  color: #cbd7eb;
}
.hero-copy h1 em { color: var(--accent); font-style: normal; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; }
.hero-trust { display:flex; gap:28px; margin-top:40px; flex-wrap:wrap; color:#d4deed; font-size:13px; }
.hero-trust span::before { content:"✓"; color:var(--accent); margin-right:8px; font-weight:800; }

.hero-visual { position:relative; min-height:560px; }
.hero-photo-card {
  position:absolute; right:0; top:0;
  width:min(100%, 430px);
  border-radius: var(--radius-xl);
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.12);
}
.hero-photo-card::after {
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 50%, rgba(7,21,44,.42));
}
.hero-photo-card img { width:100%; height:570px; object-fit:cover; object-position:center top; }
.floating-stat {
  position:absolute;
  z-index:3;
  display:flex; align-items:center; gap:12px;
  max-width:220px;
  padding:16px 18px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(8,25,52,.78);
  backdrop-filter: blur(14px);
  border-radius:18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}
.floating-stat strong { font-size:28px; color:var(--accent); }
.floating-stat span { font-size:13px; line-height:1.25; color:#e7effc; }
.stat-one { left:-24px; top:84px; }
.stat-two { right:-36px; bottom:44px; }
.scroll-indicator {
  position:absolute; left:50%; bottom:28px; z-index:3;
  width:42px; height:42px; display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.22); border-radius:50%; color:var(--white);
}

.proof-strip {
  position:relative;
  z-index:5;
  margin-top:-26px;
}
.proof-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:var(--white);
  border-radius:20px;
  box-shadow:0 20px 60px rgba(7,21,44,.12);
  overflow:hidden;
}
.proof-grid article { padding:26px 28px; border-right:1px solid var(--line); }
.proof-grid article:last-child { border-right:0; }
.proof-grid strong { display:block; font-size:18px; color:var(--navy-800); }
.proof-grid span { font-size:13px; color:var(--muted); }

.about-grid, .profile-grid, .contact-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:center; }
.about-media { position:relative; }
.about-media img { border-radius:var(--radius-xl); width:100%; min-height:520px; object-fit:cover; box-shadow:var(--shadow); }
.about-tag {
  position:absolute; right:-28px; bottom:28px; max-width:260px;
  padding:20px; background:var(--navy-800); color:var(--white);
  border-radius:16px; font-weight:700;
}
.section-copy h2 { margin-bottom:26px; }
.section-copy p { max-width:720px; font-size:17px; }
.signature-quote {
  margin-top:30px; padding-top:26px; border-top:1px solid var(--line);
  display:flex; gap:14px;
}
.signature-quote > span { font-size:52px; color:var(--navy-700); line-height:.8; }
.signature-quote p { color:var(--navy-900); font-weight:700; }

.services { background:var(--paper); }
.section-heading { display:flex; justify-content:space-between; gap:60px; align-items:end; margin-bottom:52px; }
.section-heading > div { max-width:760px; }
.section-heading > p { max-width:380px; margin-bottom:5px; }
.service-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.service-card {
  position:relative;
  min-height:420px;
  padding:34px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  transition:.28s ease;
  overflow:hidden;
}
.service-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); border-color:transparent; }
.service-number { position:absolute; right:26px; top:26px; font-size:13px; font-weight:800; color:#95a0b1; }
.icon-box {
  width:52px; height:52px; display:grid; place-items:center;
  border-radius:15px; background:var(--sky-100); color:var(--navy-700);
  font-size:24px; margin-bottom:30px;
}
.service-card h3 { color:var(--navy-900); margin-bottom:13px; }
.service-card p { max-width:510px; }
.service-card ul { padding:0; margin:22px 0 28px; list-style:none; display:grid; gap:8px; }
.service-card li { color:#4e5b70; font-size:14px; }
.service-card li::before { content:"•"; color:var(--accent-dark); margin-right:9px; }
.service-card a { color:var(--navy-700); font-size:14px; font-weight:800; }

.consultive {
  background:
    radial-gradient(circle at 78% 15%, rgba(45,108,223,.22), transparent 30%),
    var(--navy-950);
  color:var(--white);
}
.consultive-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:80px; align-items:start; }
.consultive-copy h2 { max-width:760px; margin-bottom:24px; }
.consultive-copy p { color:#c8d4e7; font-size:17px; max-width:660px; margin-bottom:30px; }
.consultive-list { display:grid; }
.consultive-list article { display:grid; grid-template-columns:56px 1fr; gap:20px; padding:26px 0; border-bottom:1px solid rgba(255,255,255,.12); }
.consultive-list span { width:44px; height:44px; border-radius:50%; display:grid; place-items:center; border:1px solid rgba(255,255,255,.18); color:var(--accent); font-weight:800; }
.consultive-list h3 { font-size:20px; margin-bottom:8px; }
.consultive-list p { color:#aebbd1; margin:0; font-size:14px; }

.person { background:var(--white); }
.person-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:70px; align-items:start; }
.person-intro h2 { margin-bottom:22px; }
.person-intro p { font-size:17px; }
.text-link { color:var(--navy-700); font-weight:800; }
.person-services { display:grid; grid-template-columns:repeat(2,1fr); border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; }
.person-services > div { padding:28px; min-height:150px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); }
.person-services > div:nth-child(2n) { border-right:0; }
.person-services > div:nth-last-child(-n+2) { border-bottom:0; }
.person-services span { display:block; font-size:11px; font-weight:800; color:var(--blue-500); margin-bottom:12px; }
.person-services strong { display:block; color:var(--navy-900); font-size:18px; }
.person-services small { color:var(--muted); }

.clients { background:var(--paper); overflow:hidden; }
.logo-marquee { overflow:hidden; padding:20px 0; mask-image:linear-gradient(to right,transparent,#000 10%,#000 90%,transparent); }
.logo-track { display:flex; width:max-content; gap:18px; animation:marquee 30s linear infinite; }
.logo-track:hover { animation-play-state:paused; }
.logo-track figure {
  width:220px; height:130px; margin:0;
  display:grid; place-items:center;
  padding:24px;
  border-radius:18px;
  background:var(--white);
  border:1px solid var(--line);
}
.logo-track img { max-width:100%; max-height:72px; object-fit:contain; }
@keyframes marquee { to { transform:translateX(calc(-50% - 9px)); } }

.profile { background:#0d0f13; color:var(--white); }
.profile-photo img { width:100%; max-height:690px; object-fit:cover; object-position:center top; border-radius:var(--radius-xl); }
.profile-copy h2 { margin-bottom:24px; }
.profile-copy p { color:#c8cbd2; font-size:16px; }
.profile-facts { display:flex; flex-wrap:wrap; gap:10px; margin-top:30px; }
.profile-facts span { padding:10px 14px; border-radius:999px; background:#181b22; border:1px solid #292e38; color:#e6e9ef; font-size:13px; }

.content-hub { background:var(--white); }
.article-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.article-card { min-height:310px; padding:30px; border-radius:var(--radius-lg); border:1px solid var(--line); display:flex; flex-direction:column; transition:.25s; }
.article-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.article-card > span { color:var(--blue-500); font-size:11px; font-weight:800; letter-spacing:.14em; margin-bottom:18px; }
.article-card h3 { margin-bottom:18px; font-size:23px; }
.article-card a { margin-top:auto; color:var(--navy-700); font-weight:800; font-size:14px; }

.resource-center { background:var(--paper); }
.resource-layout { background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); padding:22px; }
.tabs { display:flex; gap:8px; flex-wrap:wrap; padding-bottom:18px; border-bottom:1px solid var(--line); }
.tab { border:0; padding:11px 16px; border-radius:999px; background:#edf1f7; color:#536176; font-weight:700; }
.tab.active { background:var(--navy-800); color:var(--white); }
.tab-panels { padding-top:18px; }
.tab-panel { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; }
.tab-panel a { display:flex; justify-content:space-between; align-items:center; padding:17px 18px; border-radius:14px; background:#f7f9fc; color:var(--navy-900); font-weight:700; transition:.2s; }
.tab-panel a:hover { background:var(--sky-100); transform:translateX(2px); }

.faq-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:80px; }
.faq-intro h2 { margin-bottom:20px; }
.faq-item { border-bottom:1px solid var(--line); }
.faq-item button { width:100%; display:flex; justify-content:space-between; gap:20px; align-items:center; padding:22px 0; border:0; background:none; color:var(--navy-900); text-align:left; font-weight:800; }
.faq-item button b { font-size:22px; font-weight:500; transition:.2s; }
.faq-item.open button b { transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-answer p { padding:0 42px 22px 0; margin:0; }

.contact-section {
  padding:100px 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(45,108,223,.2), transparent 30%),
    var(--navy-900);
  color:var(--white);
}
.contact-grid { grid-template-columns:.85fr 1.15fr; }
.contact-photo img { width:100%; max-height:650px; object-fit:cover; object-position:center top; border-radius:var(--radius-xl); }
.contact-copy h2 { margin-bottom:20px; }
.contact-copy > p { color:#c9d6e9; font-size:17px; max-width:650px; }
.contact-actions { display:flex; gap:12px; flex-wrap:wrap; margin:28px 0 42px; }
.contact-info { display:grid; grid-template-columns:repeat(2,1fr); gap:22px 30px; font-style:normal; }
.contact-info small { display:block; color:#93a7c5; margin-bottom:6px; }
.contact-info strong { color:var(--white); font-size:14px; }
.contact-info a:hover { color:var(--accent); }

.site-footer { background:#061126; color:#c2ccdc; padding:70px 0 26px; }
.footer-grid { display:grid; grid-template-columns:1.5fr .7fr .8fr 1fr; gap:50px; }
.footer-grid > div { display:flex; flex-direction:column; gap:10px; align-items:flex-start; }
.footer-grid strong { color:var(--white); margin-bottom:7px; }
.footer-grid a:hover { color:var(--white); }
.footer-brand img { filter:brightness(0) invert(1); width:180px; }
.footer-grid p { color:#8fa0b9; font-size:14px; max-width:320px; }
.footer-bottom { margin-top:50px; padding-top:22px; border-top:1px solid rgba(255,255,255,.09); display:flex; justify-content:space-between; gap:20px; font-size:13px; }

.whatsapp-float {
  position:fixed; z-index:90; right:22px; bottom:22px;
  display:flex; align-items:center; gap:9px;
  padding:14px 16px; border-radius:999px;
  background:var(--accent); color:var(--navy-950); font-weight:800;
  box-shadow:0 12px 35px rgba(7,21,44,.24);
  transition:.25s;
}
.whatsapp-float:hover { transform:translateY(-3px); }

.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 1040px) {
  .main-nav { display:none; }
  .menu-toggle { display:block; order:2; }
  .nav-cta { order:3; }
  .main-nav.open {
    display:flex;
    position:absolute;
    top:82px; left:20px; right:20px;
    flex-direction:column; align-items:stretch;
    padding:18px;
    border-radius:18px;
    background:var(--white);
    color:var(--navy-900);
    box-shadow:var(--shadow);
  }
  .site-header.scrolled .main-nav.open { top:66px; }
  .hero-grid { grid-template-columns:1fr .75fr; gap:35px; }
  .hero-photo-card img { height:510px; }
  .stat-two { right:-10px; }
  .about-grid, .profile-grid, .contact-grid { gap:45px; }
  .consultive-grid, .person-grid, .faq-grid { gap:50px; }
}

@media (max-width: 820px) {
  .section { padding:82px 0; }
  .hero { min-height:auto; padding:120px 0 80px; }
  .hero-grid, .about-grid, .consultive-grid, .person-grid, .profile-grid, .faq-grid, .contact-grid { grid-template-columns:1fr; }
  .hero-visual { min-height:580px; }
  .hero-photo-card { left:0; right:auto; width:min(88%,430px); }
  .stat-one { left:auto; right:0; }
  .proof-grid { grid-template-columns:repeat(2,1fr); }
  .proof-grid article:nth-child(2) { border-right:0; }
  .proof-grid article:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .section-heading { align-items:start; flex-direction:column; gap:20px; }
  .service-grid, .article-grid { grid-template-columns:1fr; }
  .person-services { order:2; }
  .footer-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 620px) {
  .container { width:min(calc(100% - 28px), var(--container)); }
  .site-header .nav-wrap { height:72px; }
  .brand img { width:158px; }
  .nav-cta { display:none; }
  .main-nav.open { top:66px; }
  h1 { font-size:clamp(42px,12vw,58px); }
  h2 { font-size:clamp(34px,10vw,46px); }
  .hero-copy p { font-size:17px; }
  .hero-actions .btn { width:100%; }
  .hero-trust { gap:12px 18px; }
  .hero-visual { min-height:500px; }
  .hero-photo-card img { height:470px; }
  .floating-stat { max-width:180px; padding:13px 14px; }
  .floating-stat strong { font-size:24px; }
  .stat-one { top:52px; }
  .stat-two { bottom:20px; }
  .proof-grid { grid-template-columns:1fr; }
  .proof-grid article { border-right:0; border-bottom:1px solid var(--line); }
  .proof-grid article:last-child { border-bottom:0; }
  .about-tag { right:14px; bottom:14px; max-width:230px; }
  .about-media img { min-height:420px; }
  .service-card { padding:26px; min-height:auto; }
  .person-services { grid-template-columns:1fr; }
  .person-services > div { border-right:0; border-bottom:1px solid var(--line) !important; }
  .person-services > div:last-child { border-bottom:0 !important; }
  .tab-panel { grid-template-columns:1fr; }
  .contact-info { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:30px; }
  .footer-bottom { flex-direction:column; }
  .whatsapp-float span { display:none; }
  .whatsapp-float { width:52px; height:52px; padding:0; justify-content:center; }
}
