  :root {
    --navy: #0F1F3D;
    --navy-80: rgba(15, 31, 61, 0.8);
    --navy-60: rgba(15, 31, 61, 0.6);
    --navy-40: rgba(15, 31, 61, 0.4);
    --navy-15: rgba(15, 31, 61, 0.15);
    --navy-08: rgba(15, 31, 61, 0.08);
    --gray-soft: #FAFAFA;
    --white: #FFFFFF;
    --accent: #B8985A;
    --sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --max: 1240px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    color: var(--navy);
    background: var(--white);
    line-height: 1.55;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  a { color: inherit; text-decoration: none; }

  .container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ---------- NAV ---------- */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #F6F7F9;
    border-bottom: 1px solid var(--navy-08);
  }
  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    max-width: var(--max);
    margin: 0 auto;
  }
  .nav-logo {
    font-family: var(--sans);
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1;
  }
  .nav-logo-row {
    font-weight: 700;
    font-size: 26px;
    letter-spacing: -0.8px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .nav-logo-row span {
    font-weight: 400;
    font-size: 22px;
  }
  .nav-logo-row .divider {
    width: 1px;
    height: 24px;
    background: var(--navy);
    display: inline-block;
  }
  .nav-logo-tagline {
    font-size: 10px !important;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--navy-60);
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
  }
  .nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
  }
  .nav-links a {
    color: var(--navy-80);
    transition: color 0.2s ease;
  }
  .nav-links a:hover { color: var(--navy); }
  .nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 2px;
    font-weight: 500;
    transition: background 0.2s ease;
  }
  .nav-cta:hover { background: #1a2d52; }

  .nav-links a.nav-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0A66C2;
    width: 36px;
    height: 36px;
    transition: opacity 0.2s ease;
  }
  .nav-links a.nav-linkedin:hover {
    color: #0A66C2;
    opacity: 0.75;
  }

  @media (max-width: 720px) {
    .nav-links a:not(.nav-cta):not(.nav-linkedin) { display: none; }
  }

  /* ---------- HERO ---------- */
  .hero {
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(15, 31, 61, 0.03) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
  }
  .eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy-60);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--navy-40);
  }
  h1 {
    font-family: var(--sans);
    font-weight: 500;
    font-size: clamp(40px, 5.5vw, 68px);
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 32px;
    max-width: 900px;
  }
  h1 .accent-word {
    font-weight: 300;
    color: var(--navy-80);
  }
  .hero-lead {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.5;
    color: var(--navy-80);
    max-width: 680px;
    font-weight: 300;
    margin-bottom: 48px;
  }
  .hero-ctas {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 2px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid var(--navy);
    font-family: var(--sans);
  }
  .btn-primary {
    background: var(--navy);
    color: var(--white);
  }
  .btn-primary:hover {
    background: #1a2d52;
    transform: translateY(-1px);
  }
  .btn-secondary {
    background: transparent;
    color: var(--navy);
  }
  .btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
  }

  /* ---------- SECTIONS ---------- */
  section { padding: 120px 0; }
  .section-head {
    max-width: 800px;
    margin-bottom: 80px;
  }
  h2 {
    font-family: var(--sans);
    font-weight: 500;
    font-size: clamp(30px, 3.6vw, 46px);
    line-height: 1.15;
    letter-spacing: -1.2px;
    margin-bottom: 24px;
  }
  h2 .accent-word {
    font-weight: 300;
    color: var(--navy-80);
  }
  .section-lead {
    font-size: 18px;
    line-height: 1.55;
    color: var(--navy-80);
    font-weight: 300;
  }

  /* ---------- SERVICES ---------- */
  .services {
    background: var(--gray-soft);
    position: relative;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--navy-15);
    border: 1px solid var(--navy-15);
  }
  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 720px) {
    .services-grid { grid-template-columns: 1fr; }
  }
  .service {
    background: var(--gray-soft);
    padding: 48px 40px;
    position: relative;
    transition: background 0.3s ease;
  }
  .service:hover {
    background: var(--white);
  }
  .service-num {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy-40);
    margin-bottom: 20px;
  }
  .service h3 {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }
  .service p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--navy-80);
    font-weight: 400;
  }

  /* ---------- ABOUT ---------- */
  .about {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .about::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 152, 90, 0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .about .container { position: relative; z-index: 1; }
  .about h2 { color: var(--white); }
  .about h2 .accent-word { color: rgba(255, 255, 255, 0.7); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
  }
  @media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
  }
  .about-name {
    font-family: var(--sans);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .about-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
  }
  .about-linkedin:hover { color: var(--white); }
  .about-title {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
  }
  .about-body p {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    font-weight: 300;
  }
  .about-body p strong {
    font-weight: 500;
    color: var(--white);
  }
  .expertise-list {
    list-style: none;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .expertise-list li {
    padding: 14px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: baseline;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .expertise-list li:last-child { border-bottom: none; }
  .expertise-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    transform: translateY(-2px);
  }

  /* ---------- OUTCOMES ---------- */
  .outcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
  }
  @media (max-width: 720px) {
    .outcomes-grid { grid-template-columns: 1fr; }
  }
  .outcome {
    padding: 32px 0;
    border-top: 1px solid var(--navy-15);
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }
  .outcome-arrow {
    font-size: 22px;
    color: var(--accent);
    font-weight: 400;
    line-height: 1.2;
    flex-shrink: 0;
  }
  .outcome h4 {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
  }
  .outcome p {
    font-size: 15px;
    color: var(--navy-80);
    line-height: 1.55;
    font-weight: 400;
  }

  /* ---------- EXPERIENCE ---------- */
  .experience {
    background: var(--gray-soft);
    text-align: center;
    padding: 100px 0;
  }
  .experience-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy-60);
    margin-bottom: 32px;
  }
  .experience-company {
    font-family: var(--sans);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 500;
    letter-spacing: -1.2px;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .experience-role {
    font-size: 16px;
    color: var(--navy-80);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.55;
  }

  /* ---------- CONTACT ---------- */
  .contact {
    padding: 120px 0;
  }
  .contact-center {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
  }
  .contact-info p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--navy-80);
    font-weight: 300;
    margin-bottom: 32px;
  }
  .contact-email {
    display: inline-block;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.3px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--navy-40);
    transition: border-color 0.2s ease;
  }
  .contact-email:hover { border-color: var(--navy); }
  .contact-locations {
    margin-top: 40px;
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--navy-60);
    font-weight: 500;
  }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 40px;
  }
  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-logo {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 18px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .footer-logo .divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.5);
  }
  .footer-logo span {
    font-weight: 300;
    font-size: 16px;
  }
  .footer-address {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    letter-spacing: 0.3px;
  }
  .footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    width: 100%;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer-copy a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.2);
    margin-left: 16px;
    transition: color 0.2s ease;
  }
  .footer-copy a:hover {
    color: rgba(255, 255, 255, 0.8);
  }

  /* ---------- ANIMATIONS ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ---------- DROPDOWN MENU (services) ---------- */
  .nav-dropdown {
    position: relative;
  }
  .nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    color: var(--navy-80);
    transition: color 0.2s ease;
  }
  .nav-dropdown-toggle:hover { color: var(--navy); }
  .nav-dropdown-toggle .chev {
    width: 10px;
    height: 10px;
    transition: transform 0.2s ease;
  }
  .nav-dropdown.open .nav-dropdown-toggle .chev {
    transform: rotate(180deg);
  }
  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: -16px;
    min-width: 280px;
    background: #FFFFFF;
    border: 1px solid var(--navy-08);
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(15, 31, 61, 0.08);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }
  .nav-dropdown.open .nav-dropdown-menu,
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-dropdown-menu a {
    display: block;
    padding: 11px 14px;
    font-size: 14px;
    color: var(--navy-80);
    border-radius: 3px;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .nav-dropdown-menu a:hover {
    background: #F6F7F9;
    color: var(--navy);
  }
  .nav-dropdown-menu .dd-line {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    font-weight: 500;
    color: var(--navy);
  }
  .nav-dropdown-menu .dd-num {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--navy-40);
  }
  @media (max-width: 720px) {
    .nav-dropdown { display: none; }
  }

  /* Make services tiles clickable */
  .service-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .service-link .service {
    height: 100%;
    cursor: pointer;
  }
  .service-cta {
    margin-top: 24px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .service-cta-arrow {
    transition: transform 0.2s ease;
  }
  .service-link:hover .service-cta-arrow {
    transform: translateX(4px);
  }

  /* ---------- SUB-PAGE LAYOUTS ---------- */
  .page-hero {
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--navy-08);
  }
  .page-hero .breadcrumb {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy-60);
    margin-bottom: 28px;
  }
  .page-hero .breadcrumb a {
    color: var(--navy-60);
    transition: color 0.2s ease;
  }
  .page-hero .breadcrumb a:hover { color: var(--navy); }
  .page-hero .breadcrumb .sep {
    margin: 0 10px;
    color: var(--navy-40);
  }
  .page-hero h1 {
    font-family: var(--sans);
    font-weight: 500;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.1;
    letter-spacing: -1.8px;
    margin-bottom: 24px;
    max-width: 900px;
  }
  .page-hero h1 .accent-word {
    font-weight: 300;
    color: var(--navy-80);
  }
  .page-hero .lead {
    font-size: clamp(18px, 1.8vw, 21px);
    line-height: 1.55;
    color: var(--navy-80);
    max-width: 720px;
    font-weight: 300;
  }

  .page-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--navy-08);
  }
  .page-section:last-of-type {
    border-bottom: none;
  }
  .page-section-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
  }
  @media (max-width: 900px) {
    .page-section-grid { grid-template-columns: 1fr; gap: 24px; }
  }
  .page-section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy-60);
    padding-top: 8px;
  }
  .page-section-body p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--navy-80);
    margin-bottom: 18px;
    font-weight: 400;
  }
  .page-section-body p:last-child {
    margin-bottom: 0;
  }
  .page-section-body strong {
    font-weight: 500;
    color: var(--navy);
  }
  .page-section-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .page-section-body ul li {
    padding: 16px 0;
    font-size: 16px;
    line-height: 1.55;
    color: var(--navy-80);
    border-bottom: 1px solid var(--navy-08);
    display: flex;
    gap: 16px;
    align-items: baseline;
  }
  .page-section-body ul li:first-child { padding-top: 0; }
  .page-section-body ul li:last-child { border-bottom: none; }
  .page-section-body ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    transform: translateY(-2px);
  }
  .page-section-body ul li strong {
    display: block;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 4px;
    font-size: 17px;
  }

  /* CTA block at bottom of sub-pages */
  .page-cta {
    background: var(--navy);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
  }
  .page-cta h2 {
    font-family: var(--sans);
    font-weight: 500;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 20px;
  }
  .page-cta p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.55;
  }
  .page-cta .btn-primary {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
  }
  .page-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
  }

  /* ---------- RECRUITMENT PAGE: ROLES LIST ---------- */
  .role-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--navy-15);
  }
  .role-list li {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 22px;
    color: var(--navy);
    letter-spacing: -0.4px;
    padding: 22px 0;
    border-bottom: 1px solid var(--navy-08);
    display: flex;
    align-items: baseline;
    gap: 24px;
  }
  .role-list li::before {
    content: counter(role-counter, decimal-leading-zero);
    counter-increment: role-counter;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--navy-40);
    flex-shrink: 0;
    width: 28px;
  }
  .role-list { counter-reset: role-counter; }
  .role-list li:last-child { border-bottom: none; }

  /* ---------- RECRUITMENT PAGE: PROCESS STEPS ---------- */
  .process-steps {
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 48px;
    margin-top: 8px;
  }
  @media (max-width: 720px) {
    .process-steps { grid-template-columns: 1fr; gap: 28px; }
  }
  .process-step {
    counter-increment: step;
    position: relative;
    padding-left: 0;
  }
  .process-step::before {
    content: "0" counter(step);
    display: block;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
  }
  .process-step h4 {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.3px;
    color: var(--navy);
    margin-bottom: 10px;
  }
  .process-step p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--navy-80);
    font-weight: 400;
    margin: 0;
  }

  /* ---------- KLARO CONSENT BANNER (custom theme) ---------- */
  .klaro {
    font-family: var(--sans);
    color: var(--navy);
  }
  .klaro .cookie-notice {
    background: var(--navy) !important;
    color: var(--white) !important;
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(15, 31, 61, 0.25);
    padding: 24px 28px !important;
    max-width: 460px !important;
    border: none !important;
    font-family: var(--sans);
  }
  .klaro .cookie-notice .cn-body {
    margin: 0 !important;
    padding: 0 !important;
  }
  .klaro .cookie-notice h1,
  .klaro .cookie-notice .title {
    font-family: var(--sans) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: var(--white) !important;
    margin-bottom: 10px !important;
    letter-spacing: -0.2px !important;
  }
  .klaro .cookie-notice p,
  .klaro .cookie-notice .description {
    font-size: 13px !important;
    line-height: 1.55 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 300 !important;
    margin-bottom: 16px !important;
  }
  .klaro .cookie-notice p a,
  .klaro .cookie-notice .description a {
    color: var(--white) !important;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 2px;
  }
  .klaro .cookie-notice p a:hover,
  .klaro .cookie-notice .description a:hover {
    text-decoration-color: var(--white);
  }
  .klaro .cookie-notice .cn-ok {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px !important;
    align-items: center;
    margin-top: 4px;
  }
  .klaro .cookie-notice button.cm-btn {
    font-family: var(--sans) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.2px !important;
    padding: 9px 18px !important;
    border-radius: 2px !important;
    border: 1px solid transparent !important;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: none !important;
  }
  .klaro .cookie-notice button.cm-btn-success,
  .klaro .cookie-notice button.cm-btn-accept-all {
    background: var(--white) !important;
    color: var(--navy) !important;
    border-color: var(--white) !important;
  }
  .klaro .cookie-notice button.cm-btn-success:hover,
  .klaro .cookie-notice button.cm-btn-accept-all:hover {
    background: rgba(255, 255, 255, 0.9) !important;
  }
  .klaro .cookie-notice button.cm-btn-danger,
  .klaro .cookie-notice button.cm-btn-decline {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.85) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .klaro .cookie-notice button.cm-btn-danger:hover,
  .klaro .cookie-notice button.cm-btn-decline:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: var(--white) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .klaro .cookie-notice button.cm-btn-info,
  .klaro .cookie-notice button.cm-btn-learn-more {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.7) !important;
    border-color: transparent !important;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    padding: 9px 8px !important;
  }
  .klaro .cookie-notice button.cm-btn-info:hover,
  .klaro .cookie-notice button.cm-btn-learn-more:hover {
    color: var(--white) !important;
  }
  .klaro .cookie-notice .cn-powered-by {
    display: none !important;
  }

  /* Modal (when user clicks "Customise") */
  .klaro .cookie-modal .cm-modal {
    background: var(--white) !important;
    color: var(--navy) !important;
    font-family: var(--sans) !important;
    border-radius: 4px !important;
  }
  .klaro .cookie-modal .cm-modal h1,
  .klaro .cookie-modal .cm-modal h2 {
    font-family: var(--sans) !important;
    color: var(--navy) !important;
    font-weight: 500 !important;
  }
  .klaro .cookie-modal .cm-list-title {
    color: var(--navy) !important;
    font-weight: 500 !important;
  }
  .klaro .cookie-modal .cm-list-description {
    color: var(--navy-80) !important;
    font-size: 13px;
  }
  .klaro .cookie-modal .cm-purpose {
    border-color: var(--navy-08) !important;
  }
  .klaro .cookie-modal input[type="checkbox"]:checked + .cm-list-label .slider,
  .klaro .cookie-modal input[type="checkbox"][checked] + .cm-list-label .slider {
    background: var(--navy) !important;
  }

  /* Floating "manage cookies" link in footer */
  .footer-cookie-link {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.2);
    margin-left: 16px;
    transition: color 0.2s ease;
  }
  .footer-cookie-link:hover {
    color: rgba(255, 255, 255, 0.8);
  }

  /* ---------- CONSENT BANNER ---------- */
  #fgtm-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    color: var(--white);
    padding: 22px 28px;
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.55;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(100%);
    transition: transform 0.28s ease;
  }
  #fgtm-consent-banner.fgtm-consent-visible {
    transform: translateY(0);
  }
  .fgtm-consent-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .fgtm-consent-text {
    flex: 1 1 480px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
  }
  .fgtm-consent-text strong {
    color: var(--white);
    font-weight: 500;
  }
  .fgtm-consent-text a {
    color: var(--white);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 2px;
  }
  .fgtm-consent-text a:hover {
    text-decoration-color: var(--white);
  }
  .fgtm-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
  }
  .fgtm-btn {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 10px 22px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    color: var(--white);
  }
  .fgtm-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
  }
  .fgtm-btn-accept {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
  }
  .fgtm-btn-accept:hover {
    background: rgba(255, 255, 255, 0.92);
  }
  @media (max-width: 600px) {
    #fgtm-consent-banner { padding: 20px; }
    .fgtm-consent-inner { gap: 16px; }
    .fgtm-consent-buttons { width: 100%; }
    .fgtm-btn { flex: 1; }
  }

  /* ---------- CONTACT FORM ---------- */
  .contact-form {
    margin-top: 8px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }
  @media (max-width: 720px) {
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-row .form-field { margin-bottom: 24px; }
  }
  .form-field {
    margin-bottom: 24px;
  }
  .form-field label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy-80);
    margin-bottom: 10px;
  }
  .form-required {
    color: var(--accent);
    font-weight: 500;
  }
  .form-field input[type="text"],
  .form-field input[type="email"],
  .form-field select,
  .form-field textarea {
    width: 100%;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 400;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--navy-15);
    border-radius: 2px;
    padding: 14px 16px;
    line-height: 1.5;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
  }
  .form-field select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%230F1F3D' stroke-opacity='0.6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
    padding-right: 40px;
  }
  .form-field textarea {
    resize: vertical;
    min-height: 140px;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px var(--navy-08);
  }
  .form-field input[aria-invalid="true"],
  .form-field textarea[aria-invalid="true"] {
    border-color: #B23A3A;
  }
  .form-help {
    margin-top: 8px;
    font-size: 13px;
    color: var(--navy-60);
    font-weight: 300;
  }
  .form-error {
    margin-top: 8px;
    font-size: 13px;
    color: #B23A3A;
    font-weight: 500;
  }
  .form-consent {
    margin-bottom: 32px;
    padding-top: 8px;
  }
  .form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--navy-80);
    font-weight: 400;
    line-height: 1.5;
    cursor: pointer;
  }
  .form-consent input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--navy);
    cursor: pointer;
  }
  .form-consent a {
    color: var(--navy);
    text-decoration: underline;
    text-decoration-color: var(--navy-40);
    text-underline-offset: 2px;
  }
  .form-consent a:hover {
    text-decoration-color: var(--navy);
  }
  .form-submit {
    margin-top: 8px;
  }
  .form-submit .btn {
    cursor: pointer;
  }
  /* Honeypot — visually hidden but not display:none (some bots skip those) */
  .form-honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  .form-alert {
    padding: 16px 20px;
    border-radius: 2px;
    margin-bottom: 32px;
    font-size: 14px;
    line-height: 1.5;
  }
  .form-alert-error {
    background: #FBEEEE;
    border: 1px solid #E8C7C7;
    color: #7A2222;
  }
  .form-alert-error strong {
    color: #5C1A1A;
  }
