:root {
  --bg: #f8faf7;
  --ink: #1d2930;
  --muted: #66747b;
  --line: #e1e8e2;
  --card: #ffffff;
  --green: #376b4f;
  --green-dark: #244936;
  --sage: #edf4eb;
  --blue: #315f8f;
  --rust: #9b6a28;
  --gold: #c9a45c;
  --shadow: 0 16px 42px rgba(29, 41, 48, 0.09);
}

html {
  scroll-padding-top: 92px;
}

body.executive-profile {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
}

.executive-profile h1,
.executive-profile h2,
.executive-profile h3,
.executive-profile h4 {
  font-family: "Manrope", "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

.executive-profile a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 1000;
  left: 24px;
  right: 24px;
  top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 60px;
  padding: 9px 11px 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(29, 41, 48, 0.08);
  backdrop-filter: blur(18px);
}

.brand-mark,
.header-cta,
.site-nav,
.hero-actions,
.linkedin-proof,
.cred-row,
.expertise-tabs,
.contact-methods,
.footer-links {
  display: flex;
  align-items: center;
}

.brand-mark {
  gap: 12px;
}

.brand-mark span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 7px;
  color: #fff;
  background: var(--ink);
  font-weight: 900;
}

.brand-mark strong {
  max-width: 230px;
  font-size: 14px;
  line-height: 1.1;
}

.site-nav {
  gap: 6px;
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 7px;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  transition: 0.22s ease;
}

.site-nav a:hover {
  color: #fff;
  background: var(--green);
}

.header-cta {
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 7px;
  color: #fff;
  background: #0a66c2;
  font-weight: 900;
}

.mobile-menu-toggle {
  display: none;
  position: fixed;
  z-index: 1002;
  right: 18px;
  top: 20px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  font-size: 24px;
}

.executive-hero {
  position: relative;
  min-height: auto;
  padding: 118px 0 52px;
  overflow: hidden;
  background: linear-gradient(135deg, #fbfcf9 0%, #f1f6ee 58%, #e7f0e4 100%);
}

.executive-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(55, 107, 79, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 107, 79, 0.065) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.executive-hero:after {
  content: "";
  position: absolute;
  right: 7%;
  top: 14%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(201, 164, 92, 0.24), transparent 68%);
  animation: soft-pulse 6s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(290px, 0.66fr);
  gap: 40px;
  align-items: center;
}

.eyebrow,
.section-heading span,
.split-heading span,
.credentials-grid span,
.contact-grid > div > span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--rust);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 650px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 3.4vw, 36px);
  font-weight: 900;
  line-height: 1.12;
}

.hero-lead {
  max-width: 610px;
  margin: 16px 0 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.7;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.primary-action,
.secondary-action,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-action {
  color: #fff !important;
  background: var(--green);
  box-shadow: 0 18px 40px rgba(15, 118, 110, 0.25);
}

.secondary-action {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.primary-action:hover,
.secondary-action:hover,
.contact-form button:hover {
  transform: translateY(-3px);
}

.linkedin-proof {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.linkedin-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #314154;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 24, 39, 0.08);
  font-size: 11px;
  font-weight: 800;
}

.hero-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #eef5f4;
  border: 1px solid rgba(13, 122, 112, 0.14);
  box-shadow: 0 18px 44px rgba(29, 41, 48, 0.12);
  transform: translateY(0);
  animation: float-card 7s ease-in-out infinite;
}

.hero-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center top;
  opacity: 0.96;
}

.hero-card-body {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 15px;
  border-radius: 8px;
  color: #fff;
  background: rgba(17, 24, 39, 0.84);
  backdrop-filter: blur(12px);
}

.hero-card-body span,
.work-card span,
.timeline span {
  display: inline-block;
  margin-bottom: 8px;
  color: #9ee7df;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-card-body h2 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.32;
}

.cred-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.cred-row div {
  min-height: 98px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.055);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.cred-row div:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 122, 112, 0.28);
}

.cred-row strong {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 900;
}

.cred-row span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.section-block {
  padding: 64px 0;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading h2,
.split-heading h2,
.credentials-grid h2,
.contact-grid h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  line-height: 1.12;
}

.section-heading p,
.split-heading p,
.credentials-grid p,
.contact-grid p,
.value-card p,
.work-card p,
.timeline p,
.expertise-panel p {
  color: var(--muted);
  line-height: 1.72;
}

.section-heading p,
.split-heading p {
  margin-top: 12px;
  font-size: 14px;
}

.value-card {
  height: 100%;
  padding: 22px;
  border-radius: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.value-card:hover,
.work-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.value-card i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 15px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 19px;
}

.value-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 900;
}

.expertise-section,
.journey-section {
  background: var(--sage);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 26px;
}

.expertise-tabs {
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.expertise-tab {
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 999px;
  background: #fff;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--ink);
  font-weight: 900;
  transition: 0.22s ease;
}

.expertise-tab.active,
.expertise-tab:hover {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.expertise-panel {
  display: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: 36px;
  align-items: center;
  min-height: 230px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 55px rgba(17, 24, 39, 0.07);
}

.expertise-panel.active {
  display: grid;
}

.expertise-panel h3 {
  margin-bottom: 14px;
  font-size: clamp(19px, 1.9vw, 24px);
  font-weight: 900;
}

.expertise-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.expertise-panel li {
  position: relative;
  padding: 11px 0 11px 26px;
  border-bottom: 1px solid #eef2f2;
  color: #334155;
  font-weight: 800;
}

.expertise-panel li:before {
  content: "\F26E";
  position: absolute;
  left: 0;
  top: 13px;
  color: var(--green);
  font-family: "bootstrap-icons";
}

.proof-section {
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), #183126);
}

.section-heading.light h2,
.section-heading.light p {
  color: #fff;
}

.section-heading.light p {
  color: rgba(255, 255, 255, 0.72);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.proof-grid article {
  min-height: 125px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
  font-size: 12px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.work-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(29, 41, 48, 0.075);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.work-card img {
  width: 100%;
  height: 178px;
  object-fit: cover;
}

.work-card div {
  padding: 18px;
}

.work-card span,
.timeline span {
  color: var(--green);
}

.work-card h3 {
  min-height: 46px;
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 900;
}

.work-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green);
  font-weight: 900;
  font-size: 12px;
}

.work-card-feature {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #ffffff, #f2f7ef);
}

.work-card-feature:before {
  content: "";
  position: absolute;
  right: -52px;
  top: -52px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(201, 164, 92, 0.18);
  transition: transform 0.3s ease;
}

.work-card-feature:hover:before {
  transform: scale(1.15);
}

.work-card-feature div {
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}

.work-card-feature a {
  margin-top: auto;
}

.timeline {
  display: grid;
  gap: 14px;
  max-width: 940px;
  margin: 0 auto;
}

.timeline article {
  position: relative;
  padding: 20px 20px 20px 34px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 45px rgba(17, 24, 39, 0.06);
}

.timeline article:before {
  content: "";
  position: absolute;
  left: 18px;
  top: 28px;
  bottom: 28px;
  width: 4px;
  border-radius: 999px;
  background: var(--green);
}

.timeline h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 900;
}

.credentials-section {
  background: #fff;
}

.credentials-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: 46px;
  align-items: start;
}

.credential-list {
  display: grid;
  gap: 12px;
}

.credential-list p {
  margin: 0;
  padding: 11px 14px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-weight: 800;
}

.foundation-metrics {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.foundation-metrics div {
  padding: 15px;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff, #f4f8ff);
  box-shadow: 0 12px 26px rgba(30, 64, 175, 0.06);
}

.foundation-metrics strong,
.foundation-metrics span {
  display: block;
}

.foundation-metrics strong {
  color: #1d4ed8;
  font-size: 14px;
  margin-bottom: 5px;
}

.foundation-metrics span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.foundation-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.foundation-tags span {
  padding: 7px 10px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  color: #1e40af;
  background: #eff6ff;
  font-size: 11px;
  font-weight: 900;
}

.contact-section {
  color: #fff;
  background: linear-gradient(120deg, #20352a, var(--green-dark));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.85fr);
  gap: 46px;
  align-items: start;
}

.contact-grid h2,
.contact-grid p {
  color: #fff;
}

.contact-grid p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.contact-methods {
  align-items: stretch;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  font-weight: 800;
}

.contact-form {
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  margin: 16px 0 7px;
  color: var(--ink);
  font-weight: 900;
}

.contact-form .row label {
  margin-top: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fbfcfb;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

.contact-form button {
  width: 100%;
  margin-top: 18px;
  border: 0;
  color: #fff;
  background: var(--green);
}

.form-error {
  margin: 6px 0 0;
  color: #b91c1c;
  font-weight: 800;
}

.form-success {
  margin: 12px 0 0;
  color: var(--green);
  font-weight: 900;
}

.site-footer {
  padding: 34px 0;
  color: #fff;
  background: #080d13;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.site-footer p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  gap: 9px;
}

.footer-links a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 18px;
  transition: 0.22s ease;
}

.footer-links a:hover {
  background: var(--green);
  transform: translateY(-3px);
}

.executive-profile .back-to-top {
  position: fixed;
  display: grid !important;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  right: 44px;
  bottom: 124px;
  z-index: 1000;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(191, 219, 254, 0.9);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 16px 34px rgba(30, 64, 175, 0.28);
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.executive-profile .back-to-top.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.executive-profile .back-to-top i {
  color: #fff;
  font-size: 28px;
}

.executive-profile .back-to-top:hover {
  color: #fff;
  background: linear-gradient(135deg, #1d4ed8, #0f172a);
  box-shadow: 0 20px 44px rgba(30, 64, 175, 0.36);
  transform: translateY(-4px);
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes soft-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

.executive-profile #header,
.executive-profile .mobile-nav-toggle,
.executive-profile #footer,
.executive-profile #preloader {
  display: none !important;
}

@media (max-width: 1199px) {
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }

  .mobile-menu-toggle {
    display: grid;
    place-items: center;
  }

  .site-header {
    right: 82px;
  }

  .executive-hero {
    padding-top: 104px;
  }

  .hero-grid,
  .split-heading,
  .expertise-panel,
  .credentials-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cred-row,
  .proof-grid,
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }

  .site-header {
    left: 12px;
    right: 72px;
    top: 12px;
    min-height: 54px;
    padding: 8px;
  }

  .header-cta {
    display: none;
  }

  .brand-mark {
    gap: 9px;
    min-width: 0;
  }

  .brand-mark strong {
    display: block;
    max-width: 170px;
    overflow: hidden;
    color: var(--ink);
    font-size: 12px;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark span {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .mobile-menu-toggle {
    top: 16px;
    right: 14px;
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .executive-hero {
    padding-top: 92px;
    padding-bottom: 42px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: 28px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-card img {
    height: 300px;
  }

  .hero-card-body {
    position: static;
    background: var(--green-dark);
    border-radius: 0;
  }

  .hero-card-body h2 {
    font-size: 14px;
  }

  .cred-row div,
  .proof-grid article,
  .value-card,
  .work-card div,
  .timeline article {
    padding: 16px;
  }

  .timeline article {
    padding-top: 20px;
  }

  .timeline article:before {
    left: 16px;
    right: 16px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 4px;
  }

  .work-card-feature div {
    min-height: 190px;
  }

  .expertise-panel {
    gap: 18px;
    min-height: 0;
    padding: 20px;
  }

  .expertise-panel li {
    font-size: 13px;
  }

  .contact-grid {
    gap: 28px;
  }

  .cred-row,
  .proof-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .section-block {
    padding: 62px 0;
  }

  .site-footer .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-actions a,
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: 26px;
  }

  .hero-card img {
    height: 260px;
  }

  .linkedin-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .linkedin-proof span {
    width: 100%;
  }

  .expertise-panel {
    padding: 18px;
  }

  .contact-form {
    padding: 18px;
  }
}

@media (max-width: 340px) {
  .hero-copy h1 {
    font-size: 24px;
  }

  .hero-lead,
  .section-heading p,
  .split-heading p {
    font-size: 13px;
  }

  .hero-card img {
    height: 230px;
  }
}

/* Blue-white advisory redesign */
:root {
  --bg: #f5f8ff;
  --ink: #172033;
  --muted: #607089;
  --line: #d9e4f5;
  --card: #ffffff;
  --green: #1d4ed8;
  --green-dark: #153e90;
  --sage: #edf4ff;
  --blue: #1d4ed8;
  --rust: #2f6fd6;
  --gold: #38bdf8;
  --shadow: 0 18px 48px rgba(29, 78, 216, 0.12);
}

body.executive-profile {
  background:
    linear-gradient(180deg, rgba(245, 248, 255, 0.98), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 12% 8%, rgba(56, 189, 248, 0.16), transparent 34%);
}

.site-header {
  border: 1px solid rgba(214, 226, 246, 0.9);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.08);
}

.brand-mark span {
  background: linear-gradient(135deg, #1d4ed8, #0f172a);
  box-shadow: 0 10px 22px rgba(29, 78, 216, 0.22);
}

.site-nav a:hover {
  background: #e8f0ff;
  color: #1d4ed8;
}

.header-cta,
.primary-action,
.contact-form button {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
}

.secondary-action {
  border-color: #cfe0fb;
  color: #1e3a8a;
  background: #fff;
}

.executive-hero {
  padding: 126px 0 62px;
  background:
    radial-gradient(circle at 84% 16%, rgba(56, 189, 248, 0.2), transparent 24%),
    radial-gradient(circle at 8% 28%, rgba(29, 78, 216, 0.11), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f3f7ff 52%, #eaf2ff 100%);
}

.executive-hero:before {
  background-image:
    linear-gradient(rgba(29, 78, 216, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 78, 216, 0.055) 1px, transparent 1px);
}

.executive-hero:after {
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18), transparent 68%);
}

.hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(410px, 0.92fr);
  gap: 46px;
}

.eyebrow,
.section-heading span,
.split-heading span,
.credentials-grid span,
.contact-grid > div > span {
  color: #1d4ed8;
}

.hero-copy h1 {
  max-width: 700px;
  font-size: clamp(34px, 3.9vw, 50px);
  line-height: 1.04;
}

.hero-lead {
  max-width: 660px;
  color: #475569;
  font-size: 16px;
}

.linkedin-proof span {
  border-color: #dbeafe;
  color: #334155;
  background: rgba(255, 255, 255, 0.86);
}

.hero-command {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 11px;
  padding: 13px;
  border: 1px solid rgba(191, 219, 254, 0.92);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.92)),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.18), transparent 40%);
  box-shadow: 0 26px 70px rgba(30, 64, 175, 0.16);
  animation: float-card 7s ease-in-out infinite;
}

.hero-command:before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: -1;
  border-radius: 14px;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

.command-top,
.command-footer,
.panel-heading,
.profile-chip,
.signal-grid,
.focus-cloud {
  display: flex;
  align-items: center;
}

.command-top {
  justify-content: space-between;
  gap: 12px;
}

.profile-chip {
  gap: 12px;
  min-width: 0;
}

.profile-chip img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 14px;
  object-fit: cover;
  object-position: center top;
  border: 3px solid #fff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.16);
}

.profile-chip strong,
.profile-chip span {
  display: block;
}

.profile-chip strong {
  color: var(--ink);
  font-size: 15px;
}

.profile-chip span {
  color: var(--muted);
  font-size: 12px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 8px 10px;
  border-radius: 999px;
  color: #0f766e;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  font-size: 11px;
  font-weight: 900;
}

.command-panel {
  padding: 14px;
  border-radius: 13px;
  background: #0f172a;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.panel-heading {
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.panel-heading span {
  color: #93c5fd;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-heading strong {
  font-size: 11px;
  line-height: 1.25;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 12px;
}

.signal-grid div {
  min-width: 0;
  padding: 9px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-grid span,
.signal-grid strong {
  display: block;
}

.signal-grid span {
  color: #bfdbfe;
  font-size: 8.5px;
  font-weight: 800;
}

.signal-grid strong {
  margin-top: 3px;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
}

.bar-stack {
  display: grid;
  gap: 6px;
  margin: 11px 0 12px;
}

.bar-stack span {
  display: block;
  width: var(--bar);
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, #2563eb);
  animation: grow-bar 1.5s ease both;
}

.focus-cloud {
  flex-wrap: wrap;
  gap: 6px;
}

.focus-cloud span {
  padding: 5px 7px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.18);
  font-size: 12px;
  font-weight: 800;
}

.command-footer {
  gap: 9px;
  padding: 9px 11px;
  border-radius: 13px;
  color: #334155;
  background: #eff6ff;
  border: 1px solid #dbeafe;
}

.command-footer i {
  color: #2563eb;
  font-size: 18px;
}

.command-footer p {
  margin: 0;
  color: #475569;
  font-size: 10.5px;
  line-height: 1.42;
}

.cred-row div,
.value-card,
.work-card,
.timeline article,
.contact-form,
.expertise-panel {
  border-color: #dbeafe;
  box-shadow: 0 14px 36px rgba(30, 64, 175, 0.08);
}

.cred-row div:hover,
.value-card:hover,
.work-card:hover {
  transform: translateY(-6px);
  border-color: #93c5fd;
  box-shadow: 0 20px 48px rgba(30, 64, 175, 0.14);
}

.value-card i {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}

.expertise-section,
.journey-section {
  background: #f2f7ff;
}

.expertise-tab.active,
.expertise-tab:hover {
  background: #2563eb;
  border-color: #2563eb;
}

.proof-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(56, 189, 248, 0.18), transparent 26%),
    linear-gradient(135deg, #0f172a, #1e3a8a);
}

.work-card-feature {
  background: linear-gradient(140deg, #ffffff, #eff6ff);
}

.work-card-feature:before {
  background: rgba(56, 189, 248, 0.18);
}

.work-card span,
.timeline span {
  color: #2563eb;
}

.timeline article:before {
  background: #2563eb;
}

.contact-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(56, 189, 248, 0.22), transparent 26%),
    linear-gradient(135deg, #0f172a, #1d4ed8);
}

@keyframes grow-bar {
  from {
    width: 0;
  }
}

@media (max-width: 1199px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-command {
    max-width: 760px;
  }
}

@media (max-width: 767px) {
  .executive-hero {
    padding-top: 96px;
  }

  .hero-copy h1 {
    font-size: 16px;
    line-height: 1.12;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-command {
    padding: 12px;
    border-radius: 14px;
  }

  .command-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .status-pill {
    white-space: normal;
  }

  .signal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 24px;
  }

  .profile-chip img {
    width: 50px;
    height: 50px;
  }

  .command-panel {
    padding: 14px;
  }
}

.hero-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.hero-specialties span {
  padding: 8px 11px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  color: #1e40af;
  background: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 900;
}

.hero-visual-split {
  display: grid;
  grid-template-columns: minmax(238px, 1.05fr) minmax(0, 0.95fr);
  gap: 12px;
  align-items: stretch;
}

.hero-photo-panel {
  position: relative;
  min-height: 378px;
  overflow: hidden;
  border-radius: 16px;
  background: #dbeafe;
  border: 1px solid #bfdbfe;
}

.hero-photo-panel:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, 0.78));
  pointer-events: none;
}

.hero-photo-panel img {
  width: 100%;
  height: 100%;
  min-height: 378px;
  display: block;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
  transition: transform 0.4s ease;
}

.hero-command:hover .hero-photo-panel img {
  transform: scale(1.06);
}

.photo-caption {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: #fff;
}

.photo-caption strong,
.photo-caption span {
  display: block;
}

.photo-caption strong {
  font-size: 16px;
  line-height: 1.15;
}

.photo-caption span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1.45;
}

.hero-impact-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.hero-impact-panel .command-panel {
  flex: 1;
}

.hero-impact-panel .command-top {
  justify-content: flex-end;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 182px;
  z-index: 1001;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 16px 34px rgba(18, 140, 126, 0.32);
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-float i {
  font-size: 21px;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(18, 140, 126, 0.38);
}

@media (min-width: 1200px) {
  .hero-command {
    min-width: 620px;
  }
}

@media (max-width: 1199px) {
  .hero-visual-split {
    grid-template-columns: minmax(230px, 0.9fr) minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .hero-specialties {
    gap: 7px;
  }

  .hero-specialties span {
    padding: 7px 9px;
    font-size: 10px;
  }

  .hero-visual-split {
    grid-template-columns: 1fr;
  }

  .hero-photo-panel,
  .hero-photo-panel img {
    min-height: 330px;
  }

  .hero-impact-panel .command-top {
    justify-content: flex-start;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 170px;
    min-height: 44px;
    padding: 0 13px;
  }

  .executive-profile .back-to-top {
    right: 14px;
    bottom: 116px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .hero-photo-panel,
  .hero-photo-panel img {
    min-height: 285px;
  }

  .photo-caption strong {
    font-size: 16px;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    width: 48px;
    justify-content: center;
    padding: 0;
  }

  .brand-mark strong {
    max-width: 150px;
    font-size: 11px;
  }
}
