:root {
  --navy: #0d2240;
  --gold: #c9a84c;
  --blue: #1a3a6b;
  --white: #ffffff;
  --light-blue: #e8eff7;
  --text: #1c2430;
  --font: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
/* Base */
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a, button, input, textarea, select { font-family: var(--font); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
/* Layout */
.container { width: min(1120px, 92%); margin: 0 auto; }
.section { padding: 4.2rem 0; }
h1, h2, h3 { line-height: 1.2; letter-spacing: -0.01em; }
p { margin-top: 0; }
.grid { display: grid; gap: 1rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
/* Components */
.card { background: var(--white); border: 1px solid #d9e2ef; border-radius: 14px; padding: 1.25rem; box-shadow: 0 10px 20px rgba(13, 34, 64, 0.06); }
.eyebrow { text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); font-weight: 700; font-size: 0.75rem; }
.btn { display: inline-block; border-radius: 8px; padding: 0.7rem 1rem; font-weight: 700; transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease; }
.btn-primary { background: var(--gold); color: #111; }
.btn-primary:hover { filter: brightness(0.97); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(201, 168, 76, 0.3); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.6); color: var(--white); background: transparent; }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--gold); color: var(--gold); }
.skip-link { position: absolute; left: -9999px; top: 0; background: #000; color: #fff; z-index: 2000; }
.skip-link:focus { left: 0.5rem; padding: 0.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(13, 34, 64, 0.96); backdrop-filter: blur(3px); box-shadow: 0 8px 24px rgba(4, 14, 29, 0.22); }
.navbar { min-height: 72px; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 240px; max-height: 56px; object-fit: contain; }
.nav-links { list-style: none; display: flex; gap: 1rem; margin: 0; padding: 0; }
.nav-links a { color: var(--white); padding: 0.45rem 0.2rem; font-weight: 600; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.active { border-color: var(--gold); color: var(--gold); }
.menu-toggle { display: none; border: 0; background: transparent; }
.menu-toggle-bar { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--white); }
/* Shared Page Sections */
.hero-slider { position: relative; overflow: hidden; min-height: 70vh; background: radial-gradient(circle at 14% 20%, #234a83 0%, var(--navy) 42%, #08162b 100%); color: var(--white); }
.slide { display: none; padding: 4.5rem 0; position: relative; }
.slide.active { display: block; animation: fadeIn 0.4s ease-in; }
.hero-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 2rem; }
.hero-content { background: linear-gradient(130deg, rgba(10, 30, 58, 0.78), rgba(10, 30, 58, 0.58)); border: 1px solid rgba(201,168,76,0.35); border-radius: 16px; padding: 2rem; backdrop-filter: blur(4px); box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3); }
.hero-content h1, .hero-content h2 { margin-top: 0.3rem; margin-bottom: 0.7rem; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.15; }
.hero-content p { color: #dbe8fb; }
.hero-media { position: relative; }
.hero-media::after { content: ""; position: absolute; inset: auto 0 -18px auto; width: 75%; height: 16px; background: linear-gradient(90deg, rgba(201,168,76,0.65), rgba(201,168,76,0)); border-radius: 999px; }
.hero-media img { width: 100%; height: min(62vh, 560px); object-fit: cover; border-radius: 22px; clip-path: polygon(12% 0, 100% 0, 100% 84%, 86% 100%, 0 100%, 0 16%); box-shadow: 0 24px 48px rgba(2, 10, 20, 0.45); border: 1px solid rgba(255,255,255,0.18); }
.slider-dots { display: flex; justify-content: center; gap: 0.45rem; padding-bottom: 1rem; }
.dot { width: 12px; height: 12px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.5); }
.dot.active { background: var(--gold); }
.section-head { margin-bottom: 1.1rem; }
.section-soft { background: linear-gradient(170deg, #f8fbff, #eef5ff); border-top: 1px solid #e1ebf8; border-bottom: 1px solid #e1ebf8; }
.trust-strip { background: var(--navy); color: var(--white); }
.trust-strip.section { padding: 0.9rem 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.trust-grid article { text-align: center; font-weight: 600; }
.trust-value { margin: 0; font-size: 2rem; font-weight: 700; color: var(--gold); }
.step-card { position: relative; overflow: hidden; }
.step-card::after { content: ""; position: absolute; right: -12px; top: -12px; width: 56px; height: 56px; border-radius: 50%; background: rgba(13,34,64,0.08); }
.step-no { margin: 0 0 0.4rem; font-weight: 700; color: var(--blue); }
.two-col { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 1rem; align-items: stretch; }
.industry-panel { background: #0e2950; color: var(--white); border-radius: 14px; padding: 1.3rem; box-shadow: 0 14px 28px rgba(13,34,64,0.26); }
.check-list { margin: 0.9rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.55rem; }
.check-list li { position: relative; padding-left: 1.2rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.quote-card p { font-size: 1.05rem; line-height: 1.55; }
.quote-card h3 { margin: 0.8rem 0 0; font-size: 0.95rem; color: var(--blue); }
.cta-panel { background: linear-gradient(140deg, var(--navy), var(--blue)); color: var(--white); border-radius: 16px; padding: 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1.1rem; }
.cta-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.card, .hero-content, .industry-panel, .cta-panel { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 26px rgba(13, 34, 64, 0.12); }
[data-page="home"] .media-grid { align-items: stretch; }
[data-page="home"] .media-card { padding: 0; overflow: hidden; }
[data-page="home"] .media-card img { width: 100%; height: 200px; object-fit: cover; }
[data-page="home"] .media-card-body { padding: 1.15rem 1.15rem 1.25rem; }
[data-page="home"] .media-card-body p { color: #20304a; }
[data-page="home"] .home-split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 1.4rem; align-items: center; }
[data-page="home"] .home-split-media img { width: 100%; height: 420px; object-fit: cover; object-position: center 18%; border-radius: 18px; box-shadow: 0 18px 36px rgba(2,10,20,0.22); border: 1px solid #d9e2ef; }
[data-page="home"] .home-split-content p { color: #20304a; }
[data-page="home"] .home-split-content .btn-ghost {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
[data-page="home"] .home-split-content .btn-ghost:hover {
  background: #132f59;
  border-color: #132f59;
  color: var(--white);
}
[data-page="home"] .tile-card { padding: 0; overflow: hidden; display: grid; grid-template-rows: 160px 1fr; }
[data-page="home"] .tile-media img { width: 100%; height: 160px; object-fit: cover; }
[data-page="home"] .tile-body { padding: 1.05rem 1.15rem 1.2rem; }
[data-page="home"] .tile-body p { color: #20304a; }
[data-page="home"] .resource-links { align-items: stretch; }
[data-page="home"] .resource-card { text-decoration: none; position: relative; overflow: hidden; }
[data-page="home"] .resource-card::after { content: ""; position: absolute; inset: auto -40px -40px auto; width: 120px; height: 120px; background: rgba(201,168,76,0.12); border-radius: 50%; }
[data-page="home"] .resource-card p { color: #20304a; }
[data-page="expert"] .post-card h3 { margin: 0.25rem 0 0.6rem; }
[data-page="expert"] .post-card p { color: #20304a; }
[data-page="expert"] .post-card .btn { margin-top: 0.9rem; }
.linkedin-posts { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.linkedin-all { margin: 0.6rem 0 1.2rem; }
.linkedin-note { color: #20304a; margin: 0.2rem 0 0; }
[data-animate] { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate].in-view { opacity: 1; transform: translateY(0); }
.page-hero { background: linear-gradient(170deg, var(--light-blue), #fff); border-bottom: 1px solid #dde7f4; padding: 4.2rem 0 2.7rem; }
.page-hero h1 { margin: 0 0 0.7rem; color: var(--navy); }
.page-hero p { max-width: 780px; }
.expert-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr; /* image column + text column */
  gap: 2rem;
  align-items: start; /* avoid stretching the image to match text height */
}
.expert-layout img {
  width: 100%;
  max-width: 470px;
  height: auto;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 22px 44px rgba(2, 10, 20, 0.35);
  justify-self: start;
}
.expert-layout article { max-width: none; }
.expert-layout article p { text-align: justify; }
.expert-layout article .btn-ghost {
  border-color: rgba(26, 58, 107, 0.35);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.95);
}
.expert-layout article .btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.expert-layout article h2 { margin-top: 0; }
.expert-layout article p { color: #20304a; }
.expert-layout article ul { margin: 0.8rem 0; }
.expert-layout article .check-list li { font-size: 0.98rem; }
.expert-layout article .btn { margin-top: 0.2rem; }

[data-page="insights"] .card p,
[data-page="insights"] .faq-item p,
[data-page="insights"] .page-hero p,
[data-page="insights"] .section-head p {
  text-align: justify;
}
.expert-media { display: flex; flex-direction: column; align-items: flex-start; }
.linkedin-btn { margin-top: 1rem; }
.collapsible-toggle { margin-top: 0.75rem; }
.expert-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 0.8rem; align-items: center; }
.expert-facts { margin-top: 1rem; padding: 1rem 1.1rem; width: 100%; background: rgba(255,255,255,0.92); border: 1px solid rgba(201,168,76,0.25); border-radius: 16px; }
.expert-facts h3 { margin: 0 0 0.65rem; color: var(--navy); font-size: 1.05rem; }
.fact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.7rem; }
.fact-list li {
  color: #20304a;
  flex: 1 1 220px; /* horizontal cards, wrap when needed */
  background: rgba(232, 239, 247, 0.55);
  border: 1px solid #d9e2ef;
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
}
.fact-list strong { color: var(--navy); font-weight: 800; display: block; margin-bottom: 0.1rem; }
.expert-facts--right { margin-top: 1rem; }

[data-page="about"] .icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.35rem;
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.18);
  vertical-align: -0.2rem;
}

[data-page="about"] .client-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  padding-left: 0;
}

[data-page="about"] .client-list li::before { content: none; }

[data-page="about"] .client-icon {
  min-width: 1.2rem;
  line-height: 1.2;
}
.linkedin-btn {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  color: var(--white) !important;
}
.linkedin-btn:hover {
  background: #0a1b34 !important;
  border-color: #0a1b34 !important;
  color: var(--white) !important;
}
.chips { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.chip { border: 1px solid #c7d7ec; border-radius: 999px; padding: 0.35rem 0.8rem; background: #f8fbff; }
.chip.active { border-color: var(--gold); color: var(--navy); font-weight: 700; }
.share-row { display: flex; gap: 0.8rem; color: var(--blue); font-weight: 700; }
.faq-list { display: grid; gap: 0.7rem; }
.faq-item { background: #fff; border: 1px solid #d9e2ef; border-radius: 10px; padding: 0.85rem 1rem; }
.faq-item summary { cursor: pointer; font-weight: 700; color: var(--navy); }
.faq-item p { margin: 0.7rem 0 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 1rem; }
.contact-card-logo { display: block; width: min(100%, 320px); height: auto; margin: 0 auto 1rem; object-fit: contain; }
[data-page="contact"] .contact-grid > .card:first-child h2 { text-align: center; margin-top: 0.2rem; }
[data-page="contact"] .contact-grid > .card:first-child p { margin: 0.55rem 0; }
.contact-form { display: grid; gap: 0.5rem; }
input, textarea, select { width: 100%; padding: 0.7rem; border: 1px solid #bfd0e8; border-radius: 8px; font: inherit; background: #fff; }
textarea { resize: vertical; }
.hidden-field { position: absolute; left: -9999px; }
.site-footer { background: linear-gradient(145deg, #0a1b34, #0d2240 50%, #14305b); color: var(--white); margin-top: 2.4rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 1rem; padding: 2.3rem 0; }
.footer-brand { padding-right: 0.6rem; }
.footer-logo { width: 220px; max-width: 100%; margin-bottom: 0.75rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.4rem; }
.site-footer h2 { font-size: 1rem; margin: 0 0 0.6rem; color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.2); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; padding: 0.9rem 4%; font-size: 0.9rem; }
.footer-bottom p { margin: 0; }
.footer-bottom p:first-child { justify-self: start; }
.footer-bottom p:last-child { justify-self: center; text-align: center; }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.16); display: flex; justify-content: center; gap: 1.2rem; padding: 0.75rem 4% 1rem; flex-wrap: wrap; }
.footer-legal a { color: #d7e4fb; font-size: 0.9rem; }
.footer-legal a:hover { color: var(--gold); }
.whatsapp-float { position: fixed; right: 1rem; bottom: 1rem; background: #25d366; color: #fff; border-radius: 999px; padding: 0.7rem 1rem; font-weight: 700; box-shadow: 0 10px 20px rgba(0,0,0,0.2); z-index: 1200; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 960px) {
  .grid-2, .grid-3, .grid-4, .contact-grid, .footer-grid, .expert-layout, .trust-grid, .two-col { grid-template-columns: 1fr; }
  .section { padding: 3.3rem 0; }
  .brand img { width: 190px; max-height: 48px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-content { order: 1; padding: 1.4rem; }
  .hero-media { order: 2; }
  .hero-media img { height: 260px; clip-path: polygon(8% 0, 100% 0, 100% 88%, 92% 100%, 0 100%, 0 12%); }
  [data-page="home"] .home-split { grid-template-columns: 1fr; }
  [data-page="home"] .home-split-media img { height: 320px; object-position: center 14%; }
  [data-page="home"] .media-card img { height: 180px; }
  .expert-layout { gap: 1.1rem; }
  .expert-layout article { max-width: 100%; }
  .expert-layout img { height: auto; }
  .expert-media { align-items: center; }
  .linkedin-btn { width: fit-content; }
  .expert-facts { max-width: 520px; }
  .expert-facts--right { max-width: 520px; }
  .expert-facts--right { margin-top: 1.1rem; }
  .fact-list li { flex: 1 1 100%; }
  .cta-panel { display: block; padding: 1.4rem; }
  .cta-actions { margin-top: 0.8rem; }
  .footer-logo { width: 190px; }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom p:first-child, .footer-bottom p:last-child { justify-self: center; }
  .footer-legal { display: flex; justify-content: center; gap: 0.8rem; padding-bottom: 6rem; }
  .footer-legal a { display: inline-block; }
  .menu-toggle { display: block; }
  .nav-links { position: absolute; top: 72px; left: 0; right: 0; display: none; background: var(--navy); padding: 1rem 4%; flex-direction: column; }
  .nav-links.open { display: flex; }
}