:root {
  --bg: #f7f3eb;
  --bg-alt: #ece8df;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --ink: #102a31;
  --ink-soft: #4d6266;
  --ink-faint: #728286;
  --navy: #0b2730;
  --navy-2: #123b43;
  --teal: #2e6f68;
  --teal-dark: #1f5550;
  --sage: #b9c9b8;
  --gold: #c9a45f;
  --gold-soft: #efe2c5;
  --danger: #9c3c3c;
  --success: #236b55;
  --border: rgba(16, 42, 49, 0.14);
  --border-strong: rgba(16, 42, 49, 0.25);
  --shadow-sm: 0 8px 24px rgba(16, 42, 49, 0.08);
  --shadow-md: 0 20px 60px rgba(16, 42, 49, 0.12);
  --shadow-lg: 0 32px 90px rgba(16, 42, 49, 0.16);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-pill: 999px;
  --container: 1180px;
  --header-height: 78px;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  color-scheme: light;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 2px;
}

img,
svg,
canvas {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

::selection {
  background: var(--gold-soft);
  color: var(--navy);
}

:focus-visible {
  outline: 3px solid rgba(201, 164, 95, 0.75);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: var(--navy);
  color: white;
  font-weight: 700;
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 860px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section--compact {
  padding: 76px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--dark {
  overflow: hidden;
  background: var(--navy);
  color: white;
}

.section--dark::before,
.section--dark::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}

.section--dark::before {
  width: 430px;
  height: 430px;
  top: -250px;
  right: -110px;
  background: rgba(46, 111, 104, 0.28);
}

.section--dark::after {
  width: 260px;
  height: 260px;
  bottom: -140px;
  left: -60px;
  background: rgba(201, 164, 95, 0.13);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  content: "";
  background: currentColor;
}

.section--dark .eyebrow {
  color: #cce0db;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-weight: 740;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 6.8vw, 5.65rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
}

h4 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: white;
}

.lead {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 2vw, 1.34rem);
  line-height: 1.62;
}

.section--dark .lead {
  color: rgba(255, 255, 255, 0.76);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 54px;
}

.section-heading > :last-child {
  justify-self: end;
  max-width: 500px;
  margin-bottom: 7px;
  color: var(--ink-soft);
}

.section-heading--single {
  display: block;
  max-width: 790px;
}

.section-heading--single > :last-child {
  max-width: 710px;
  color: var(--ink-soft);
}

.muted {
  color: var(--ink-soft);
}

.small {
  font-size: 0.86rem;
  line-height: 1.55;
}

.kicker {
  color: var(--teal-dark);
  font-weight: 760;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(247, 243, 235, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  border-color: var(--border);
  background: rgba(247, 243, 235, 0.96);
  box-shadow: 0 6px 28px rgba(16, 42, 49, 0.07);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--navy);
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: var(--navy);
  color: white;
  font-weight: 850;
  letter-spacing: -0.04em;
  box-shadow: 0 8px 22px rgba(16, 42, 49, 0.18);
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.16;
}

.brand-copy strong {
  font-size: 0.96rem;
}

.brand-copy span {
  color: var(--ink-soft);
  font-size: 0.7rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-nav > a {
  position: relative;
  padding: 9px 10px;
  border-radius: var(--radius-pill);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 690;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}

.main-nav > a:hover,
.main-nav > a.is-active {
  background: rgba(46, 111, 104, 0.09);
  color: var(--navy);
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.55);
}

.language-switcher a {
  min-width: 34px;
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.language-switcher a[aria-current="page"] {
  background: var(--navy);
  color: white;
}

.nav-contact {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: var(--navy);
  color: white;
  font-size: 0.82rem;
  font-weight: 760;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.nav-contact:hover {
  transform: translateY(-1px);
  background: var(--navy-2);
  box-shadow: 0 8px 22px rgba(16, 42, 49, 0.19);
  text-decoration: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--navy);
  content: "";
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle span {
  margin-block: 5px;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  display: none;
}

/* Buttons */
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.button:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.button--primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 12px 30px rgba(16, 42, 49, 0.19);
}

.button--primary:hover {
  background: var(--navy-2);
  box-shadow: 0 16px 35px rgba(16, 42, 49, 0.24);
}

.button--secondary {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.56);
  color: var(--navy);
}

.button--secondary:hover {
  border-color: var(--teal);
  background: var(--surface);
}

.button--light {
  background: white;
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.32);
  color: white;
}

.button--ghost-light:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.button--small {
  min-height: 40px;
  padding: 9px 15px;
  font-size: 0.83rem;
}

.button svg,
.link-arrow svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-weight: 780;
  text-decoration: none;
}

.link-arrow:hover svg {
  transform: translateX(3px);
}

.link-arrow svg {
  transition: transform var(--transition);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: calc(var(--header-height) + 76px) 0 76px;
}

.hero::before {
  position: absolute;
  z-index: -2;
  width: 720px;
  height: 720px;
  top: -245px;
  right: -240px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 40%, rgba(185, 201, 184, 0.73), rgba(185, 201, 184, 0) 68%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -2;
  width: 530px;
  height: 530px;
  bottom: -390px;
  left: -120px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(201, 164, 95, 0.22), rgba(201, 164, 95, 0) 68%);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy .lead {
  max-width: 720px;
}

.hero-highlight {
  position: relative;
  white-space: nowrap;
}

.hero-highlight::after {
  position: absolute;
  z-index: -1;
  right: -3px;
  bottom: 0.09em;
  left: -3px;
  height: 0.25em;
  border-radius: 12px;
  background: rgba(201, 164, 95, 0.38);
  content: "";
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 23px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.hero-note svg {
  width: 18px;
  flex: 0 0 auto;
  color: var(--teal);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.profile-card {
  position: relative;
  z-index: 2;
  min-height: 470px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #173e45 0%, #0d2931 58%, #0a2229 100%);
  color: white;
  box-shadow: var(--shadow-lg);
}

.profile-card::before {
  position: absolute;
  width: 250px;
  height: 250px;
  top: -105px;
  right: -75px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.profile-card::after {
  position: absolute;
  width: 160px;
  height: 160px;
  top: -40px;
  right: -20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.profile-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.monogram {
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 2rem;
  font-weight: 850;
  letter-spacing: -0.07em;
  backdrop-filter: blur(8px);
}

.profile-label {
  text-align: right;
}

.profile-label span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-label strong {
  font-size: 1rem;
}

.profile-quote {
  position: relative;
  z-index: 1;
  max-width: 330px;
  margin: 54px 0 42px;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.18rem);
  line-height: 1.28;
}

.profile-chart {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 105px;
  margin-top: 14px;
}

.profile-chart-grid line {
  stroke: rgba(255, 255, 255, 0.09);
}

.profile-chart-line {
  fill: none;
  stroke: #d7bd82;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.profile-chart-area {
  fill: url(#heroGradient);
}

.profile-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
}

.profile-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.45;
}

.profile-footer strong {
  display: block;
  color: white;
  font-size: 1.02rem;
}

.floating-badge {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 118px;
  gap: 2px;
  padding: 15px 18px;
  border: 1px solid rgba(16, 42, 49, 0.11);
  border-radius: 19px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.floating-badge strong {
  color: var(--navy);
  font-size: 1.24rem;
  letter-spacing: -0.03em;
}

.floating-badge span {
  color: var(--ink-soft);
  font-size: 0.69rem;
  font-weight: 720;
  line-height: 1.25;
  text-transform: uppercase;
}

.floating-badge--one {
  top: 76px;
  left: -42px;
}

.floating-badge--two {
  right: -35px;
  bottom: 45px;
}

.trust-strip {
  margin-top: 74px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 13px;
}

.trust-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--teal-dark);
}

.trust-icon svg {
  width: 21px;
  height: 21px;
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
  line-height: 1.3;
}

.trust-item span {
  color: var(--ink-soft);
  font-size: 0.73rem;
  line-height: 1.35;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 8px 30px rgba(16, 42, 49, 0.045);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(46, 111, 104, 0.35);
  box-shadow: var(--shadow-sm);
}

.info-card::after {
  position: absolute;
  width: 115px;
  height: 115px;
  right: -58px;
  bottom: -58px;
  border: 1px solid rgba(46, 111, 104, 0.12);
  border-radius: 50%;
  content: "";
}

.card-number {
  display: grid;
  width: 49px;
  height: 49px;
  margin-bottom: 48px;
  place-items: center;
  border-radius: 16px;
  background: rgba(46, 111, 104, 0.1);
  color: var(--teal-dark);
  font-weight: 850;
}

.card-icon {
  display: grid;
  width: 51px;
  height: 51px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 17px;
  background: rgba(46, 111, 104, 0.1);
  color: var(--teal-dark);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.info-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.08fr);
  align-items: start;
  gap: clamp(48px, 8vw, 98px);
}

.about-visual {
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.about-panel {
  position: relative;
  overflow: hidden;
  min-height: 490px;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow-md);
}

.about-panel::before {
  position: absolute;
  width: 380px;
  height: 380px;
  top: -190px;
  right: -165px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.about-panel::after {
  position: absolute;
  width: 260px;
  height: 260px;
  bottom: -150px;
  left: -90px;
  border-radius: 50%;
  background: rgba(201, 164, 95, 0.12);
  content: "";
}

.about-panel h3 {
  position: relative;
  z-index: 1;
  max-width: 330px;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  font-weight: 500;
  line-height: 1.3;
}

.stat-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 72px;
}

.stat-box {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
}

.stat-box strong {
  display: block;
  color: #e5cc92;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.stat-box span {
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.75rem;
  line-height: 1.4;
}

.about-copy > p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.pull-quote {
  margin: 32px 0 0;
  padding: 24px 0 3px 25px;
  border-left: 3px solid var(--gold);
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.48;
}

/* Experience */
.experience-list {
  display: grid;
  gap: 16px;
}

.experience-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 23px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.experience-index {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  border-radius: 17px;
  background: var(--navy);
  color: white;
  font-size: 0.86rem;
  font-weight: 850;
}

.experience-item p {
  max-width: 820px;
  margin: 0;
  color: var(--ink-soft);
}

/* Credentials */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.credential-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  overflow: hidden;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px);
}

.credential-card::before {
  position: absolute;
  width: 180px;
  height: 180px;
  top: -92px;
  right: -94px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.credential-symbol {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #e6cf9a;
}

.credential-symbol svg {
  width: 26px;
  height: 26px;
}

.credential-card h3 {
  max-width: 260px;
  margin-bottom: 10px;
  color: white;
}

.credential-number {
  margin-bottom: 16px;
  color: #e6cf9a;
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credential-card p {
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.91rem;
}

.credential-card .link-arrow {
  margin-top: auto;
  color: white;
}

.credential-note {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  text-align: center;
}

/* Approach */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.approach-step {
  position: relative;
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.approach-step + .approach-step::before {
  position: absolute;
  width: 22px;
  height: 1px;
  top: 55px;
  left: -23px;
  background: var(--border-strong);
  content: "";
}

.step-label {
  display: inline-flex;
  margin-bottom: 56px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: var(--gold-soft);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.approach-step p {
  color: var(--ink-soft);
}

.approach-closing {
  max-width: 800px;
  margin: 46px auto 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.45;
  text-align: center;
}

/* Tools */
.tool-tabs {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 24px;
}

.tool-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.tool-card-header {
  padding: 31px 34px 24px;
  border-bottom: 1px solid var(--border);
}

.tool-card-header p {
  margin: 0;
  color: var(--ink-soft);
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.82fr) minmax(320px, 1.18fr);
  gap: 30px;
  padding: 31px 34px 34px;
}

.form-grid {
  display: grid;
  gap: 17px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field label,
.field-label {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 760;
}

.field small {
  color: var(--ink-faint);
  font-size: 0.72rem;
}

.input-wrap {
  position: relative;
}

.input-wrap input,
.field select,
.field textarea,
.field > input {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: white;
  color: var(--navy);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.input-wrap input {
  padding-right: 54px;
}

.input-wrap span {
  position: absolute;
  top: 50%;
  right: 13px;
  color: var(--ink-faint);
  font-size: 0.78rem;
  font-weight: 760;
  transform: translateY(-50%);
  pointer-events: none;
}

.input-wrap input:focus,
.field select:focus,
.field textarea:focus,
.field > input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(46, 111, 104, 0.1);
}

.field textarea {
  min-height: 135px;
  resize: vertical;
}

.calculator-results {
  display: grid;
  align-content: start;
  gap: 18px;
}

.result-highlight {
  padding: 24px;
  border-radius: 19px;
  background: var(--navy);
  color: white;
}

.result-highlight span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 720;
}

.result-highlight strong {
  display: block;
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  letter-spacing: -0.05em;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.result-box {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: white;
}

.result-box span {
  display: block;
  min-height: 38px;
  color: var(--ink-faint);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.result-box strong {
  display: block;
  margin-top: 5px;
  color: var(--navy);
  font-size: 0.98rem;
}

.chart-wrap {
  position: relative;
  min-height: 230px;
  padding: 10px 8px 0;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: white;
}

.chart-wrap canvas {
  width: 100%;
  height: 220px;
}

.disclaimer-inline {
  margin: 0;
  color: var(--ink-faint);
  font-size: 0.72rem;
  line-height: 1.5;
}

.quiz-card {
  display: flex;
  flex-direction: column;
}

.quiz-body {
  display: grid;
  gap: 22px;
  padding: 29px 31px 33px;
}

.quiz-question {
  padding: 0;
  border: 0;
  margin: 0;
}

.quiz-question legend {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 780;
  line-height: 1.4;
}

.radio-stack {
  display: grid;
  gap: 7px;
}

.radio-option {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 11px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.8rem;
  line-height: 1.4;
  transition: border-color var(--transition), background var(--transition);
}

.radio-option:has(input:checked) {
  border-color: var(--teal);
  background: rgba(46, 111, 104, 0.07);
  color: var(--navy);
}

.radio-option input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--teal);
}

.quiz-result {
  padding: 17px;
  border: 1px solid rgba(46, 111, 104, 0.25);
  border-radius: 14px;
  background: rgba(46, 111, 104, 0.08);
  color: var(--navy);
  font-size: 0.83rem;
}

.quiz-result strong {
  display: block;
  margin-bottom: 5px;
}

/* Insights */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.article-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: transform var(--transition), box-shadow var(--transition);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.article-visual {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: var(--navy);
}

.article-visual::before,
.article-visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.article-visual::before {
  width: 190px;
  height: 190px;
  top: -95px;
  right: -55px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.article-visual::after {
  width: 90px;
  height: 90px;
  bottom: -45px;
  left: 26px;
  background: rgba(201, 164, 95, 0.18);
}

.article-glyph {
  position: absolute;
  z-index: 1;
  display: grid;
  width: 62px;
  height: 62px;
  top: 50%;
  left: 50%;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: #e5cc92;
  transform: translate(-50%, -50%);
}

.article-glyph svg {
  width: 28px;
  height: 28px;
}

.article-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px;
}

.article-tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 17px;
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  background: rgba(46, 111, 104, 0.1);
  color: var(--teal-dark);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.article-content h3 {
  font-size: 1.26rem;
}

.article-content p {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.article-content .link-arrow {
  margin-top: auto;
  font-size: 0.85rem;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: start;
  gap: clamp(45px, 8vw, 90px);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.faq-list {
  border-top: 1px solid var(--border-strong);
}

.faq-item {
  border-bottom: 1px solid var(--border-strong);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 23px 0;
  color: var(--navy);
  cursor: pointer;
  font-weight: 760;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-plus {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  background: var(--navy);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-width: 710px;
  padding: 0 55px 23px 0;
  color: var(--ink-soft);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Contact */
.contact-section {
  overflow: hidden;
  padding: 110px 0;
  background: var(--navy);
  color: white;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(400px, 1.05fr);
  align-items: start;
  gap: clamp(50px, 9vw, 110px);
}

.contact-copy h2 {
  color: white;
}

.contact-copy .lead {
  color: rgba(255, 255, 255, 0.72);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 35px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 13px;
  color: white;
  text-decoration: none;
}

.contact-method:hover {
  text-decoration: none;
}

.contact-method-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-method-icon svg {
  width: 20px;
  height: 20px;
}

.contact-method span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.73rem;
}

.contact-method strong {
  display: block;
  font-size: 0.91rem;
}

.contact-form {
  padding: 31px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: white;
  color: var(--navy);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.19);
}

.contact-form .field-row {
  gap: 13px;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.45;
}

.checkbox-field input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--teal);
}

.form-status {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 700;
}

.form-status.is-error {
  color: var(--danger);
}

/* Footer */
.site-footer {
  padding: 54px 0 28px;
  background: #071c22;
  color: rgba(255, 255, 255, 0.68);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 40px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-brand .brand {
  color: white;
}

.footer-brand .brand-copy strong {
  color: white;
}

.footer-brand .brand-copy span {
  color: rgba(255, 255, 255, 0.49);
}

.footer-brand p {
  max-width: 570px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.79rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 11px 24px;
  max-width: 480px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.79rem;
  font-weight: 670;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

/* Legal pages */
.page-hero {
  padding: calc(var(--header-height) + 85px) 0 66px;
  background: var(--bg-alt);
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.legal-content {
  padding: 75px 0 100px;
}

.legal-content h2 {
  margin-top: 48px;
  font-size: 1.65rem;
}

.legal-content h3 {
  margin-top: 34px;
  font-size: 1.2rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content ul {
  padding-left: 23px;
}

.legal-callout {
  padding: 24px;
  border-left: 4px solid var(--gold);
  border-radius: 0 15px 15px 0;
  background: var(--gold-soft);
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px;
  text-align: center;
}

.not-found-card {
  width: min(100%, 720px);
  padding: 50px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.not-found-code {
  color: var(--gold);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 1;
}

/* Toast */
.toast {
  position: fixed;
  z-index: 2000;
  right: 22px;
  bottom: 22px;
  max-width: 340px;
  padding: 13px 17px;
  border-radius: 13px;
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 560ms ease, transform 560ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] {
  transition-delay: 80ms;
}

[data-reveal-delay="2"] {
  transition-delay: 160ms;
}

[data-reveal-delay="3"] {
  transition-delay: 240ms;
}

/* Responsive */
@media (max-width: 1120px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-panel {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    min-height: calc(100vh - var(--header-height));
    max-height: calc(100vh - var(--header-height));
    align-content: start;
    gap: 8px;
    overflow-y: auto;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity var(--transition), transform var(--transition);
  }

  .mobile-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-panel a {
    padding: 12px 14px;
    border-radius: 13px;
    color: var(--navy);
    font-weight: 740;
    text-decoration: none;
  }

  .mobile-panel a:hover {
    background: rgba(46, 111, 104, 0.08);
  }

  .card-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-tabs {
    grid-template-columns: 1fr;
  }

  .quiz-body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quiz-body .button,
  .quiz-result {
    grid-column: 1 / -1;
  }
}

@media (max-width: 940px) {
  :root {
    --header-height: 72px;
  }

  .section {
    padding: 88px 0;
  }

  .hero {
    padding-top: calc(var(--header-height) + 58px);
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(100%, 620px);
    min-height: auto;
    margin-inline: auto;
  }

  .profile-card {
    min-height: 445px;
  }

  .floating-badge--one {
    left: -10px;
  }

  .floating-badge--two {
    right: -10px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section-heading > :last-child {
    justify-self: start;
  }

  .card-grid,
  .credentials-grid,
  .approach-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .credentials-grid > :last-child,
  .article-grid > :last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 11px);
  }

  .about-visual,
  .faq-intro {
    position: static;
  }

  .about-panel {
    min-height: 440px;
  }

  .calculator-layout {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-grid {
    gap: 45px;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .brand-copy span {
    display: none;
  }

  .nav-contact {
    display: none;
  }

  .language-switcher a {
    min-width: 31px;
    padding: 5px 7px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 45px) 0 56px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.15rem);
  }

  .hero-highlight {
    white-space: normal;
  }

  .profile-card {
    min-height: 430px;
    padding: 25px;
    border-radius: 27px;
  }

  .profile-quote {
    margin-top: 43px;
  }

  .floating-badge {
    position: relative;
    display: inline-grid;
    min-width: 0;
    margin-top: 12px;
  }

  .floating-badge--one,
  .floating-badge--two {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .hero-badge-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .trust-strip {
    margin-top: 50px;
  }

  .trust-grid,
  .card-grid,
  .card-grid--four,
  .credentials-grid,
  .approach-grid,
  .article-grid,
  .quiz-body {
    grid-template-columns: 1fr;
  }

  .credentials-grid > :last-child,
  .article-grid > :last-child {
    grid-column: auto;
    max-width: none;
  }

  .info-card {
    min-height: 0;
  }

  .card-icon,
  .card-number {
    margin-bottom: 32px;
  }

  .about-panel {
    min-height: 420px;
    padding: 28px;
  }

  .about-panel h3 {
    font-size: 1.75rem;
  }

  .stat-grid {
    margin-top: 54px;
  }

  .experience-item {
    grid-template-columns: 1fr;
  }

  .approach-step + .approach-step::before {
    display: none;
  }

  .tool-card-header,
  .calculator-layout,
  .quiz-body {
    padding-right: 22px;
    padding-left: 22px;
  }

  .field-row,
  .result-grid,
  .contact-form .field-row {
    grid-template-columns: 1fr;
  }

  .result-box span {
    min-height: 0;
  }

  .contact-section {
    padding: 78px 0;
  }

  .contact-form {
    padding: 23px;
    border-radius: 25px;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-top {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

  .not-found-card {
    padding: 34px 22px;
  }
}

@media (max-width: 430px) {
  .header-inner {
    gap: 9px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .brand-copy strong {
    max-width: 150px;
    overflow: hidden;
    font-size: 0.84rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .profile-top {
    align-items: flex-start;
  }

  .profile-label {
    font-size: 0.86rem;
  }

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

  .hero-badge-row {
    grid-template-columns: 1fr;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .mobile-panel,
  .button-row,
  .contact-section,
  .site-footer,
  .toast {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .section,
  .page-hero,
  .legal-content {
    padding: 30px 0;
  }
}

/* Standalone 404 page alignment */
.not-found-card > .brand {
  display: flex;
  width: fit-content;
  justify-content: center;
  margin: 0 auto 34px;
}

.not-found-card > .button-row {
  justify-content: center;
}

/* Prominent legal notice and header tab — update 2026-08-04 */
.important-tab {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(139, 96, 24, 0.25);
  border-radius: var(--radius-pill);
  background: #fff4d9;
  color: #705016;
  font-size: 0.76rem;
  font-weight: 830;
  letter-spacing: 0.025em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.important-tab:hover {
  border-color: rgba(139, 96, 24, 0.42);
  background: #ffedc2;
  text-decoration: none;
  transform: translateY(-1px);
}

.important-tab svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.important-notice {
  position: relative;
  z-index: 5;
  margin-top: var(--header-height);
  border-top: 1px solid rgba(215, 189, 130, 0.32);
  border-bottom: 1px solid rgba(215, 189, 130, 0.3);
  background: linear-gradient(110deg, #09252d 0%, #123a42 100%);
  color: white;
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.important-notice::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: #d7bd82;
  content: "";
}

.important-notice__inner {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(0, 2.35fr) auto;
  align-items: center;
  gap: 26px;
  padding-top: 19px;
  padding-bottom: 19px;
}

.important-notice__label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.important-notice__label > span:last-child {
  display: grid;
  gap: 2px;
}

.important-notice__label strong {
  color: white;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.important-notice__label small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.67rem;
  line-height: 1.25;
}

.important-notice__icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(215, 189, 130, 0.42);
  border-radius: 13px;
  background: rgba(215, 189, 130, 0.12);
  color: #e4cb94;
}

.important-notice__icon svg {
  width: 20px;
  height: 20px;
}

.important-notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.58;
}

.important-notice p strong {
  color: white;
  font-weight: 780;
}

.important-notice__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #e4cb94;
  font-size: 0.77rem;
  font-weight: 780;
  text-decoration: none;
  white-space: nowrap;
}

.important-notice__link:hover {
  color: white;
  text-decoration: none;
}

.important-notice__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.important-notice__link:hover svg {
  transform: translateX(3px);
}

.important-notice + .hero {
  padding-top: 72px;
}

.mobile-important-link {
  border: 1px solid rgba(139, 96, 24, 0.2);
  background: #fff4d9;
  color: #705016 !important;
}

/* Keep experience and credential cards outside the decorative chart. */
.hero-visual {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.hero-badge-row {
  display: grid;
  grid-template-columns: minmax(145px, 0.72fr) minmax(0, 1.78fr);
  gap: 12px;
  margin-top: 14px;
}

.floating-badge {
  position: static;
  z-index: auto;
  min-width: 0;
  height: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(16, 42, 49, 0.1);
  backdrop-filter: none;
}

.floating-badge--one,
.floating-badge--two {
  inset: auto;
}

.floating-badge--credential strong {
  font-size: 1rem;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.floating-badge--credential span {
  margin-top: 3px;
  font-size: 0.68rem;
  font-weight: 680;
  line-height: 1.35;
  text-transform: none;
}

@media (max-width: 1120px) {
  .important-notice__inner {
    grid-template-columns: minmax(190px, 0.72fr) minmax(0, 2fr);
    gap: 14px 22px;
  }

  .important-notice__link {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 940px) {
  .important-notice + .hero {
    padding-top: 58px;
  }
}

@media (max-width: 700px) {
  .important-tab {
    display: none;
  }

  .important-notice__inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .important-notice__link {
    grid-column: auto;
  }

  .important-notice p {
    font-size: 0.78rem;
  }

  .important-notice + .hero {
    padding: 45px 0 56px;
  }

  .hero-badge-row {
    grid-template-columns: minmax(125px, 0.66fr) minmax(0, 1.34fr);
    gap: 10px;
  }

  .floating-badge {
    margin-top: 0;
  }
}

@media (max-width: 430px) {
  .important-notice__label small {
    display: none;
  }

  .hero-badge-row {
    grid-template-columns: 1fr;
  }
}

/* === HERO CREDENTIALS V2 START === */
/* Keep all experience and qualification cards outside the decorative chart. */
.hero-visual {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.hero-badge-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.66fr) minmax(0, 1.34fr);
  gap: 12px;
  margin-top: 14px;
}

.floating-badge {
  position: static;
  z-index: auto;
  min-width: 0;
  height: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(16, 42, 49, 0.1);
  backdrop-filter: none;
}

.floating-badge--one,
.floating-badge--two,
.floating-badge--broker {
  inset: auto;
}

.floating-badge--credential strong {
  font-size: 1rem;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.floating-badge--credential span {
  margin-top: 3px;
  font-size: 0.68rem;
  font-weight: 680;
  line-height: 1.35;
  text-transform: none;
}

.floating-badge--broker {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 14px;
  border-color: rgba(201, 164, 95, 0.28);
  background: linear-gradient(110deg, rgba(255, 253, 248, 0.98), rgba(250, 244, 231, 0.98));
}

.floating-badge--broker span {
  margin-top: 0;
}

@media (max-width: 700px) {
  .hero-badge-row {
    grid-template-columns: minmax(125px, 0.65fr) minmax(0, 1.35fr);
    gap: 10px;
  }

  .floating-badge {
    margin-top: 0;
  }

  .floating-badge--broker {
    grid-template-columns: minmax(190px, 0.95fr) minmax(0, 1.25fr);
  }
}

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

  .floating-badge--broker {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 3px;
  }
}
/* === HERO CREDENTIALS V2 END === */

/* === HERO PROOF GRID V4 START === */
/* Four compact, consistent cards: experience, two KNF qualifications and CFA Level I. */
.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 15px;
}

.hero-proof-card {
  display: flex;
  min-width: 0;
  min-height: 88px;
  flex-direction: column;
  justify-content: center;
  padding: 13px 15px;
  border: 1px solid rgba(16, 42, 49, 0.1);
  border-radius: 17px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 10px 28px rgba(16, 42, 49, 0.07);
}

.hero-proof-card--experience {
  background: linear-gradient(145deg, rgba(239, 226, 197, 0.74), rgba(255, 253, 248, 0.92));
}

.hero-proof-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--teal-dark);
  font-family: inherit;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-proof-card strong {
  display: block;
  color: var(--navy);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 760;
  letter-spacing: -0.012em;
  line-height: 1.24;
}

.hero-proof-card > span:last-child {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-family: inherit;
  font-size: 0.66rem;
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.34;
  text-transform: none;
}

.stat-box--credentials strong {
  font-size: 1.12rem;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

@media (max-width: 520px) {
  .hero-proof-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-proof-card {
    min-height: 72px;
    padding: 11px 13px;
    border-radius: 15px;
  }

  .hero-proof-card strong {
    font-size: 0.85rem;
  }

  .hero-proof-card > span:last-child {
    font-size: 0.65rem;
  }
}
/* === HERO PROOF GRID V4 END === */

