/* Design tokens from Figma */
:root {
  --red: #ea2a42;
  --red-bright: #f42941;
  --navy: #051c2c;
  --navy-mid: #102747;
  --white: #ffffff;
  --gray-bg: #f5f5f5;
  --gray-light: #f1f2f4;
  --gray-input: #f5f5f5;
  --gray-text: #919191;
  --gray-border: #d9d9d9;
  --font-body: 'Albert Sans', sans-serif;
  --font-display: 'Albert Sans', sans-serif;
  --site-width: 1440px;
  --container: 1440px;
  --gutter: clamp(24px, 8.333vw, 120px);
  --radius: 6px;
  --radius-lg: 17px;
  --radius-xl: 20px;
  --shadow: 0 4px 37.6px rgba(0, 0, 0, 0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-clearance, 120px); }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--gray-bg);
  line-height: 1.26;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container {
  width: 100%;
  max-width: var(--site-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.text-red { color: var(--red); }

/* Typography */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.125; letter-spacing: -0.04em; }
h1 { font-size: clamp(28px, 4vw, 40px); }
h2 { font-size: clamp(26px, 3.5vw, 40px); }
h3 { font-size: 26px; font-weight: 700; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); opacity: 0.92; }
.btn:active { transform: translateY(0); }
.btn-red { background: var(--red); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-outline-red {
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}
.btn-rounded { border-radius: 20px; }
.btn-sm { font-size: 16px; padding: 7px 12px; }
.btn-full { width: 100%; }

/* Header — Figma node 2273:3386 */
.site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1191px;
  z-index: 1000;
}

.header-card {
  background: var(--navy);
  border-radius: 20px;
  box-shadow: 0 4px 37.6px rgba(0, 0, 0, 0.15);
  min-height: 136px;
  display: flex;
  flex-direction: column;
  padding: 0 10px 10px;
  overflow: hidden;
}

.nav-top {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 24px 36px 8px 49px;
}

/* Desktop: drawer children participate in nav-top flex row */
.nav-drawer {
  display: contents;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 159px;
  height: 40px;
  gap: 0;
}

.logo-icon-part {
  width: 150px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin-left: -20px;
  margin-top: -12px;
}

.nav-main {
  flex: 1;
  min-width: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 1.8vw, 28px);
  flex-wrap: nowrap;
}

.nav-links a {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.18;
  white-space: nowrap;
  transition: color 0.2s, opacity 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  opacity: 0.85;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 0.895;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav-phone:hover {
  opacity: 0.9;
}

.phone-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* Red info bar — nested inside header card */
.nav-sub {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--red-bright);
  border-radius: 20px;
  height: 55px;
  padding: 0 20px 0 24px;
  margin: 0;
  flex-wrap: nowrap;
}

.nav-sub-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f6f7f8;
  font-size: 14px;
  line-height: 0.99;
  flex-shrink: 0;
}

.nav-sub-address {
  max-width: 260px;
}

.nav-sub-email:hover {
  opacity: 0.9;
}

.sub-icon {
  flex-shrink: 0;
  object-fit: contain;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  margin-right: 12px;
}

.nav-social a {
  display: flex;
  line-height: 0;
}

.nav-social a:hover {
  opacity: 0.8;
}

.btn-consultation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.26;
  padding: 7px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-consultation:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* Hero — Figma 2273:3356 / 2273:3357 */
.hero {
  position: relative;
  background: #f1f2f4;
  overflow: hidden;
  width: 100%;
  min-height: 90vh;
  top: -30px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
  z-index: 0;
}

.hero-stage {
  position: relative;
  width: 100%;
  max-width: var(--site-width);
  height: 806px;
  margin: 0 auto;
  z-index: 1;
}

.hero-content {
  position: absolute;
  left: var(--gutter);
  top: 313px;
  width: 423px;
  max-width: min(423px, calc(100% - var(--gutter) * 2 - 360px));
  z-index: 2;
}

.hero-sub {
  color: var(--red);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 40px;
  line-height: 45px;
  letter-spacing: -0.04em;
  text-transform: capitalize;
  color: var(--navy);
  margin-bottom: 18px;
  max-width: 423px;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.26;
  color: var(--navy);
  max-width: 387px;
  margin-bottom: 28px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* Quote form — Figma 2273:3367–3385 */
.quote-form {
  position: absolute;
  right: var(--gutter);
  top: 276px;
  width: 332px;
  min-height: 408px;
  height: auto;
  background: rgba(255, 255, 255, 0.23);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 17px;
  padding: 20px 26px 26px;
  z-index: 3;
  display: flex;
  flex-direction: column;
}

.quote-form h2 {
  color: var(--white);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  margin: 0 0 18px;
  flex-shrink: 0;
}

.quote-form .field {
  display: block;
  margin: 0 0 15px;
}

.quote-form .field-message {
  margin-bottom: 22px;
}

.quote-form .field-label {
  display: block;
  color: var(--white);
  font-size: 11px;
  line-height: 1;
  margin-bottom: 8px;
}

.quote-form .field input,
.quote-form .field textarea {
  width: 100%;
  background: #f5f5f5;
  border: none;
  border-radius: 9px;
  padding: 10px 16px;
  font-size: 11px;
  line-height: 1.35;
  font-family: var(--font-body);
  color: var(--navy);
  box-sizing: border-box;
}

.quote-form .field input {
  height: 38px;
  padding-top: 0;
  padding-bottom: 0;
}

.quote-form .field textarea {
  height: 88px;
  padding: 12px 16px;
  resize: none;
  display: block;
}

.quote-form .field input::placeholder,
.quote-form .field textarea::placeholder {
  color: #919191;
}

.btn-quote-submit {
  align-self: center;
  margin-top: 0;
  min-width: 120px;
  flex-shrink: 0;
}

/* Stats */
.stats { background: var(--gray-bg); padding: 50px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px;
  border-radius: 11px;
  background: color-mix(in srgb, var(--navy-mid) 15%, transparent);
  min-height: 100px;
}
.stat-num { font-size: 40px; font-weight: 700; color: var(--red); letter-spacing: -0.04em; line-height: 1; }
.stat-small { font-size: 26px; font-weight: 700; color: var(--navy); }
.stat-card p { font-size: 18px; }
.stat-years { justify-content: center; text-align: center; }

/* Financial Freedom — Figma 2273:3635 */
.freedom {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--navy);
}

.freedom-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(181deg, rgba(16, 39, 71, 0.3) 56%, var(--navy) 55%),
    url('../images/freedom-bg-pattern.png') center / cover no-repeat;
}

.freedom-visual {
  position: absolute;
  left: 0;
  top: 5px;
  width: 100%;
  height: calc(100% - 5px);
  min-height: auto;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  pointer-events: none;
}

.freedom-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  padding: 80px 0;
  width: 100%;
}
.freedom-content {
  max-width: 520px;
  color: var(--white);
  margin-left: auto;
}
.freedom-content h2 { margin-bottom: 20px; }
.freedom-content p { font-size: 18px; margin-bottom: 28px; }

/* Section headers */
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-sub { font-size: 18px; font-weight: 600; margin-top: 8px; }
.section-label { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--navy); }

/* Services — Figma 2273:3462 */
.services {
  background: #f5f5f5;
  padding: 80px 0 90px;
}

.services-wrap {
  max-width: var(--site-width);
}

.services-header {
  text-align: center;
  margin-bottom: 56px;
}

.services-header h2 {
  font-size: 40px;
  line-height: 45px;
  letter-spacing: -0.04em;
  text-transform: capitalize;
  color: var(--navy);
  margin-bottom: 20px;
}

.services-sub {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.18;
  color: var(--navy);
}

.services-carousel {
  overflow: hidden;
  padding-bottom: 8px;
}

.services-track {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  transition: transform 0.45s ease;
  width: max-content;
  margin: 0 auto;
}

.service-card {
  position: relative;
  flex: 0 0 389px;
  width: 389px;
  max-width: 100%;
  height: 438px;
  background: transparent;
}

.service-shape {
  position: absolute;
  inset: 0;
  clip-path: url(#service-clip);
  -webkit-clip-path: url(#service-clip);
  background: #101c26;
}

.service-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.service-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-img--protection {
  object-position: 60% center;
}

.service-img--commercial {
  object-position: center top;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(16, 28, 38, 0.05) 0%,
    rgba(5, 28, 44, 0.25) 38%,
    rgba(5, 28, 44, 0.72) 58%,
    rgba(5, 28, 44, 0.94) 72%,
    #051c2c 88%,
    #101c26 100%
  );
  z-index: 1;
}

.service-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 25px 27px 60px 32px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  color: var(--white);
  pointer-events: auto;
  box-sizing: border-box;
}

.service-label {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.18;
}

.service-body h3 {
  font-size: 26px;
  line-height: 1.25;
  font-weight: 700;
}

.service-body p {
  font-size: 11px;
  line-height: 1.35;
  text-align: justify;
  width: 100%;
  max-width: 279px;
  min-height: 100px;
}

.service-body .btn {
  align-self: flex-start;
  margin-top: auto;
}

.services-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}

.services-nav-btn {
  width: 49px;
  height: 49px;
  padding: 0;
  border: 1px solid var(--navy);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  flex-shrink: 0;
}

.services-nav-btn::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--navy);
  border-left: 2px solid var(--navy);
}

#servicesPrev::before {
  transform: translate(-35%, -50%) rotate(45deg);
}

#servicesNext::before {
  transform: translate(-65%, -50%) rotate(-135deg);
}

.services-nav-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


/* Why Us — Figma 2273:3505 */
.why-us {
  background: #f5f5f5;
  padding: 80px 0 90px;
}

.why-header {
  display: grid;
  grid-template-columns: minmax(280px, 442px) 1fr;
  gap: 24px 80px;
  margin-bottom: 48px;
  align-items: start;
}

.why-eyebrow {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 12px;
}

.why-header-left h2 {
  font-size: 40px;
  line-height: 45px;
  letter-spacing: -0.04em;
  text-transform: capitalize;
  color: var(--navy);
}

.why-intro {
  font-size: 18px;
  line-height: 1.26;
  color: var(--navy);
  text-align: justify;
  max-width: 482px;
  margin-left: auto;
  padding-top: 18px;
}

.why-panel {
  position: relative;
  width: 100%;
  max-width: 1288px;
  margin: 0 auto;
  border-radius: 29px;
  overflow: hidden;
  min-height: 450px;
}

.why-panel-bg {
  position: absolute;
  inset: 0;
  /* background:
    linear-gradient(181deg, rgba(16, 39, 71, 0.3) 56%, rgba(5, 28, 44, 0.98) 55%),
    url('../images/why-grid-bg.svg') center / cover no-repeat; */
    background-image: url('../images/why-grid.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  z-index: 0;
}

.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  min-height: 450px;
}

.why-grid::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: rgba(255, 255, 255, 0.35);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.why-item {
  position: relative;
  z-index: 1;
  padding: 0 48px 0 100px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 100%;
}

.why-item:nth-child(1),
.why-item:nth-child(2) {
  align-self: start;
  padding-top: 72px;
}

.why-item:nth-child(3),
.why-item:nth-child(4) {
  align-self: end;
  padding-bottom: 72px;
}

.why-item:nth-child(2),
.why-item:nth-child(4) {
  padding-left: 150px;
  padding-right: 64px;
}

.why-item h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.18;
  max-width: 279px;
}

.why-item p {
  font-size: 11px;
  line-height: 1.35;
  text-align: justify;
  max-width: 279px;
}

/* How It Works */
.how-it-works { background: var(--gray-bg); padding: 80px 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-xl);
  padding: 53px 40px 35px;
  text-align: center;
  position: relative;
  margin-top: 30px;
}
.step-badge {
  position: absolute;
  top: -26px;
  left: -10px;
  width: 91px;
  height: 91px;
}
.step-badge img { width: 100%; height: 100%; }
.step-badge span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.step-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 16px; }
.step-card p { font-size: 18px; }

/* Gadgets — Handy tools and calculators (Figma) */
.gadgets {
  background: #f5f5f5;
  padding: 80px 0 90px;
}

.gadgets-header,
.gadgets-grid {
  width: 100%;
  max-width: 1288px;
  margin-left: auto;
  margin-right: auto;
}

.gadgets-header {
  display: grid;
  grid-template-columns: minmax(280px, 442px) 1fr;
  gap: 24px 80px;
  margin-bottom: 48px;
  align-items: start;
}

.gadgets-eyebrow {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 12px;
}

.gadgets-header-left h2 {
  font-size: 40px;
  line-height: 45px;
  letter-spacing: -0.04em;
  text-transform: capitalize;
  color: var(--navy);
}

.gadgets-intro {
  font-size: 18px;
  line-height: 1.26;
  color: var(--navy);
  text-align: justify;
  max-width: 482px;
  margin-left: auto;
  padding-top: 18px;
}

.gadgets-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.gadget-card {
  position: relative;
  border-radius: 17px;
  overflow: hidden;
  height: 500px;
  background: var(--red);
}

.gadget-panel-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/calculator-bg.png');
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  z-index: 0;
}

.gadget-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gadget-content {
  flex: 0 0 auto;
  padding: 40px 40px 0;
  color: var(--white);
  max-width: 360px;
}

.gadget-content h3 {
  font-size: 40px;
  line-height: 45px;
  letter-spacing: -0.04em;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.gadget-content p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 20px;
}

.gadget-content .btn {
  font-size: 16px;
  font-weight: 400;
  padding: 7px 12px;
  border-radius: 20px;
}

.gadget-visual {
  flex: 1 1 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 0;
  padding: 0 8px;
  pointer-events: none;
}

.gadget-photo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.gadget-photo--mortgage {
  max-height: 325px;
}

.gadget-photo--insurance {
  max-height: 120%;
  max-width: 100%;
}

/* Testimonials — Hear from advisers (Figma) */
.testimonials {
  background: #f5f5f5;
  padding: 80px 0 90px;
}

.testimonials-layout {
  display: grid;
  grid-template-columns: minmax(0, 632px) minmax(0, 1fr);
  gap: 24px 56px;
  max-width: 1288px;
  margin: 0 auto;
  align-items: center;
}

.testimonials-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.trusted-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 210px;
  color: var(--white);
}

.trusted-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/trusted-banner-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.trusted-banner-inner {
  position: relative;
  z-index: 1;
  padding: 32px 40px 40px;
}

.adviser-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.adviser-avatars .avatar {
  width: 91px;
  height: 91px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2px solid var(--white);
  margin-right: -22px;
  flex-shrink: 0;
  background: var(--red);
}

.adviser-avatars .avatar:last-child {
  margin-right: 0;
}

.trusted-banner h3 {
  font-size: 40px;
  line-height: 45px;
  letter-spacing: -0.04em;
  text-transform: capitalize;
  max-width: 420px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  min-height: 391px;
}

.testimonial-track {
  position: relative;
  min-height: 300px;
  padding-bottom: 8px;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.4s ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.testimonial-slide p {
  font-size: 18px;
  line-height: 1.26;
  margin-bottom: 32px;
  text-align: justify;
  color: var(--navy);
}

.testimonial-slide footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 128px;
  min-height: 77px;
}

.testimonial-slide footer img {
  width: 77px;
  height: 77px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  background: #e5e5e5;
  filter: grayscale(100%);
}

.testimonial-slide cite {
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.18;
  display: block;
  color: var(--navy);
}

.testimonial-slide span {
  font-size: 18px;
  line-height: 1.26;
  color: var(--navy);
}

.testimonial-nav {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.testimonial-nav-btn {
  width: 49px;
  height: 49px;
  padding: 0;
  border: 1px solid var(--navy);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  flex-shrink: 0;
}

.testimonial-nav-btn::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--navy);
  border-left: 2px solid var(--navy);
}

#testimonialPrev::before {
  transform: translate(-35%, -50%) rotate(45deg);
}

#testimonialNext::before {
  transform: translate(-65%, -50%) rotate(-135deg);
}

.testimonial-nav-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonials-right {
  position: relative;
  min-height: 625px;
  display: flex;
  align-items: center;
}

.uk-map {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: min(105%, 552px);
  height: auto;
  pointer-events: none;
  user-select: none;
}

.hear-content {
  position: relative;
  z-index: 1;
  max-width: 482px;
  padding-right: 24px;
}

.hear-eyebrow {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 12px;
}

.hear-content h2 {
  font-size: 40px;
  line-height: 45px;
  letter-spacing: -0.04em;
  text-transform: capitalize;
  color: var(--navy);
  margin-bottom: 16px;
}

.hear-subtext {
  font-size: 18px;
  line-height: 1.4;
  color: rgba(5, 28, 44, 0.75);
  margin: 0 0 24px;
  max-width: 420px;
}

.hear-content .btn {
  font-size: 18px;
  padding: 7px 12px;
  border-radius: 20px;
}

/* CTA Banner (Figma) */
.cta-banner {
  background: #f5f5f5;
  padding: 48px 0 72px;
  overflow: visible;
}

.cta-banner .container {
  overflow: visible;
  z-index: 999;
  position: relative;
}

.cta-panel {
  position: relative;
  width: 100%;
  max-width: 1288px;
  margin: 0 auto;
  min-height: 217px;
  border-radius: 20px;
  overflow: visible;
}

.cta-panel-bg {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--red) url('../images/calculator-bg.png') center / cover no-repeat;
  z-index: 0;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 217px;
  padding: 44px 48px;
  padding-right: min(42%, 520px);
}

.cta-content {
  max-width: 640px;
  color: var(--white);
}

.cta-content h2 {
  font-size: 40px;
  line-height: 45px;
  letter-spacing: -0.04em;
  text-transform: capitalize;
  margin-bottom: 24px;
}

.cta-content .btn-white {
  font-size: 18px;
  font-weight: 400;
  color: var(--navy);
  background: var(--white);
  padding: 7px 12px;
  border-radius: 20px;
}

.cta-person {
  position: absolute;
  right: clamp(16px, 4vw, 48px);
  bottom: 0;
  height: clamp(300px, 38vw, 420px);
  width: auto;
  max-width: 42%;
  object-fit: contain;
  object-position: bottom right;
  z-index: 2;
  pointer-events: none;
}

/* Footer (Figma) */
.site-footer {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 260px 0 70px;
  overflow: hidden;
  margin-top: -200px;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/footer-pattern.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(180px, 247px) 1fr;
  gap: 40px 60px;
  align-items: start;
  max-width: 1288px;
  margin: 0 auto 56px;
}

.footer-logo-link {
  display: inline-block;
}

.footer-logo {
  display: block;
  width: 247px;
  max-width: 100%;
  height: auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(48px, 10vw, 120px);
  padding-top: 8px;
}

.footer-col a {
  display: block;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.26;
  margin-bottom: 16px;
  color: var(--white);
  transition: color 0.2s;
}

.footer-col a:last-child {
  margin-bottom: 0;
}

.footer-col a:hover {
  color: var(--red);
}

.footer-contact-bar {
  background: var(--navy-mid);
  border-radius: 12px;
  max-width: 782px;
  margin: 0 auto 32px;
  padding: 28px 40px;
}

.contact-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.26;
  margin-bottom: 6px;
}

.contact-item p {
  font-size: 11px;
  line-height: 1.35;
  color: var(--white);
  margin: 0;
}

.contact-link {
  font-size: 11px;
  line-height: 1.35;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-link--phone {
  font-size: 18px;
  line-height: 1.26;
  text-decoration: underline;
}

.contact-link:hover {
  opacity: 0.9;
}

.footer-copy {
  text-align: center;
  font-size: 18px;
  line-height: 1.26;
  padding: 8px 0 24px;
  margin: 0;
}

/* About page — Figma 2295:771 */
.about-page {
  padding-top: 0;
}

.about-poly-bg {
  background-color: var(--navy);
  background-image:
    linear-gradient(180deg, rgba(16, 39, 71, 0.35) 0%, rgba(5, 28, 44, 0.92) 100%),
    url('../images/freedom-bg-pattern.png');
  background-size: cover;
  background-position: center;
}

.about-hero {
  position: relative;
  overflow: hidden;
  margin-top: -30px;
  min-height: clamp(480px, 52vw, 680px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-clearance, 120px) + 32px) 0 72px;
  color: var(--white);
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  pointer-events: none;
  z-index: 0;
}

.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(5, 28, 44, 0.72) 0%,
    rgba(5, 28, 44, 0.45) 38%,
    rgba(5, 28, 44, 0.08) 62%,
    transparent 100%
  );
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--site-width);
  width: 100%;
}

.about-hero-content {
  max-width: 520px;
}

.about-hero-eyebrow {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  opacity: 0.95;
}

.about-hero-content h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  color: var(--white);
}

.about-hero-lead {
  font-size: 18px;
  line-height: 1.4;
  max-width: 480px;
  margin-bottom: 28px;
  opacity: 0.95;
}

.about-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.about-who {
  position: relative;
  background-color: var(--white);
  background-image: url('../images/about-who-we-are.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
  overflow: hidden;
  min-height: clamp(580px, 50vw, 760px);
}

.about-who::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 44%,
    rgba(255, 255, 255, 0.5) 54%,
    rgba(255, 255, 255, 0.94) 62%,
    var(--white) 72%
  );
  z-index: 0;
}

.about-who-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  min-height: clamp(580px, 50vw, 760px);
  max-width: var(--site-width);
  padding: clamp(56px, 6vw, 96px) 0;
}

.about-who-col--visual {
  min-height: 1px;
}

.about-who-img {
  display: none;
}

.about-who-content {
  padding: clamp(8px, 2vw, 24px) 0 clamp(8px, 2vw, 24px) clamp(12px, 2vw, 32px);
}

.about-who-content h2 {
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 16px;
}

.about-who-sub {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 20px;
}

.about-who-content p:last-child {
  font-size: 18px;
  line-height: 1.4;
  color: var(--navy);
  margin: 0;
  text-align: justify;
}

.about-values {
  background: #f5f5f5;
  padding: 80px 0 90px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 389px));
  gap: 24px;
  justify-content: center;
  width: 100%;
  max-width: 1221px;
  margin: 0 auto;
}

.about-values .service-card {
  flex: none;
  width: 100%;
}

.about-values .service-body p {
  min-height: 72px;
}

.about-mission {
  background: #f5f5f5;
  padding: 80px 0 90px;
}

.about-mission-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 40px;
  max-width: 1200px;
}

.about-mission-eyebrow {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.about-mission-intro-left h2 {
  font-size: 40px;
  line-height: 1.12;
  color: var(--navy);
}

.about-mission-intro-text {
  font-size: 18px;
  line-height: 1.4;
  color: var(--navy);
  margin: 0;
  padding-top: 30px;
}

.about-mission-panel {
  border-radius: 24px;
  overflow: hidden;
  padding: 52px clamp(28px, 5vw, 64px) 56px;
  min-height: 300px;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
}

.about-mission-card {
  position: relative;
  padding: 8px clamp(20px, 3vw, 40px) 12px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: transparent;
}

.about-mission-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.14);
}

.about-mission-icon {
  width: 132px;
  height: 132px;
  margin-bottom: 22px;
  flex-shrink: 0;
  display: block;
}

.about-mission-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.about-mission-card h3 {
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 14px;
}

.about-mission-card p {
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
  max-width: 320px;
}

.about-team {
  padding: 80px 0 90px;
  color: var(--white);
  overflow: hidden;
}

.about-section-head {
  text-align: center;
  margin-bottom: 48px;
}

.about-section-head h2 {
  font-size: 40px;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 8px;
}

.about-section-head--light h2,
.about-section-head--light .about-section-sub {
  color: var(--white);
}

.about-section-sub {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}

.about-section-head--light .about-section-sub {
  color: rgba(255, 255, 255, 0.92);
}

.about-team-slider {
  max-width: 1200px;
  margin: 0 auto;
}

.about-team-track {
  position: relative;
  min-height: 300px;
}

.about-team-slide {
  display: none;
  animation: aboutFadeIn 0.45s ease;
}

.about-team-slide.active {
  display: block;
}

@keyframes aboutFadeIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: none; }
}

.about-team-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  border-radius: 24px;
  padding: clamp(32px, 4vw, 44px) clamp(36px, 5vw, 56px);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.about-team-card-bg {
  position: absolute;
  inset: 0;
  background: var(--red-bright) url('../images/calculator-bg.png') center / cover no-repeat;
  background-blend-mode: multiply;
  z-index: 0;
}

.about-team-photo-wrap,
.about-team-bio {
  position: relative;
  z-index: 1;
}

.about-team-photo-wrap {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-team-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.about-team-photo-wrap--round {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.about-team-photo-wrap--round .about-team-photo {
  object-fit: cover;
  object-position: top center;
}

.about-team-bio h3 {
  font-size: clamp(28px, 3.5vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 10px;
}

.about-team-role {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
  color: var(--white);
  opacity: 0.95;
}

.about-team-bio p:last-child {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
}

.about-team-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.about-team-nav-btn {
  width: 49px;
  height: 49px;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s, background 0.2s;
}

.about-team-nav-btn::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
}

#teamPrev::before {
  transform: translate(-35%, -50%) rotate(45deg);
}

#teamNext::before {
  transform: translate(-65%, -50%) rotate(-135deg);
}

.about-team-nav-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.06);
}

.about-cta .cta-content > p {
  font-size: 18px;
  line-height: 1.4;
  max-width: 560px;
  margin: 0 0 24px;
  opacity: 0.95;
}

.about-cta .cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

/* Contact page — Figma 2273:2011 */
.contact-page {
  padding-top: 0;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  margin-top: -30px;
  min-height: clamp(480px, 52vw, 680px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--header-clearance, 120px) + clamp(32px, 5vw, 56px)) var(--gutter) 72px;
  color: var(--white);
  text-align: center;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  pointer-events: none;
  z-index: 0;
}

/* Image includes navy polygon + red loop — keep overlay minimal */
.contact-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(5, 28, 44, 0.2) 0%,
    transparent 28%,
    transparent 72%,
    rgba(5, 28, 44, 0.08) 100%
  );
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--site-width);
  display: flex;
  justify-content: center;
}

.contact-hero-content {
  max-width: 640px;
  margin: 0 auto;
  text-shadow: 0 1px 12px rgba(5, 28, 44, 0.35);
}

.contact-hero-eyebrow {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 12px;
  opacity: 0.95;
}

.contact-hero-content h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  color: var(--white);
}

.contact-hero-lead {
  font-size: 18px;
  line-height: 1.4;
  max-width: 520px;
  margin: 0 auto;
  opacity: 0.95;
}

@media (min-width: 1200px) {
  .about-hero,
  .contact-hero {
    min-height: calc(100vh + 30px);
    min-height: calc(100dvh + 30px);
  }
}

.contact-needs {
  background: #f5f5f5;
  padding: 72px 0 80px;
}

.contact-needs-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.contact-needs-head h2 {
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-needs-head p {
  font-size: 18px;
  line-height: 1.4;
  color: var(--navy);
}

.contact-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.contact-filter {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  background: var(--red);
  color: var(--white);
}

.contact-filter:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.contact-filter.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.contact-filter:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

.contact-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1221px;
  margin: 0 auto;
}

.contact-service-card {
  cursor: pointer;
  border: none;
  border-radius: 0;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-service-card:hover {
  transform: translateY(-4px);
}

.contact-service-card:hover .service-shape {
  filter: drop-shadow(0 14px 28px rgba(5, 28, 44, 0.22));
}

.contact-service-card.is-selected .service-shape {
  filter: drop-shadow(0 0 0 2px var(--red)) drop-shadow(0 12px 28px rgba(5, 28, 44, 0.2));
}

.contact-service-card .service-card,
.contact-service-card .service-card:hover {
  transform: none;
  box-shadow: none;
}

.contact-service-card .service-shape {
  transition: filter 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-service-card .service-card {
  height: 400px;
  width: 100%;
  pointer-events: none;
}

.contact-service-card .service-body p {
  min-height: 72px;
}

.contact-form-section {
  background: #f5f5f5;
  padding: 0 0 80px;
}

.contact-form-panel {
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 24px;
  padding: 48px clamp(28px, 5vw, 56px) 52px;
  box-shadow: 0 4px 24px rgba(5, 28, 44, 0.06);
}

.contact-form-panel h2 {
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  text-align: center;
  color: var(--navy);
  margin-bottom: 32px;
}

.contact-enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-form-row {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form-row--2 {
  grid-template-columns: 1fr 1fr;
}

.contact-field {
  display: block;
}

.contact-field-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-field-label .req {
  color: var(--red);
}

.contact-field-label .optional {
  font-weight: 400;
  color: rgba(5, 28, 44, 0.55);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  background: #f5f5f5;
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--navy);
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(5, 28, 44, 0.12);
}

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

.contact-time-fieldset {
  border: none;
  margin: 8px 0 24px;
  padding: 0;
}

.contact-time-fieldset .contact-field-label {
  margin-bottom: 12px;
}

.contact-time-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-time-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid var(--gray-border);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.contact-time-btn:hover {
  border-color: var(--navy);
}

.contact-time-btn.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.contact-time-btn:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 28px;
  cursor: pointer;
}

.contact-consent input {
  margin-top: 4px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.contact-consent a {
  color: var(--red);
  text-decoration: underline;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.contact-form-actions .btn {
  min-width: min(100%, 260px);
  justify-content: center;
}

.contact-process {
  background: var(--gray-bg);
  padding: 80px 0 90px;
}

.contact-cta .cta-content > p {
  font-size: 18px;
  line-height: 1.4;
  max-width: 520px;
  margin: 0 0 24px;
  opacity: 0.95;
}

.contact-cta .cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Career Hub — Figma 2309:1110 */
.career-page {
  padding-top: 0;
}

.career-hero {
  position: relative;
  overflow: hidden;
  margin-top: -30px;
  min-height: clamp(480px, 52vw, 680px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-clearance, 120px) + 40px) 0 72px;
  color: var(--white);
}

.career-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
  pointer-events: none;
  z-index: 0;
}

/* Image includes navy polygon + red loop on the right */
.career-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(5, 28, 44, 0.28) 0%,
    rgba(5, 28, 44, 0.08) 38%,
    transparent 58%,
    transparent 100%
  );
}

.career-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--site-width);
}

.career-hero-content {
  max-width: 560px;
}

.career-hero-eyebrow {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  opacity: 0.95;
}

.career-hero-content h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 1px 10px rgba(5, 28, 44, 0.4);
}

.career-hero-lead {
  font-size: 18px;
  line-height: 1.4;
  max-width: 480px;
  margin-bottom: 28px;
  opacity: 0.95;
}

.career-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (min-width: 1200px) {
  .career-hero {
    min-height: calc(100vh + 30px);
    min-height: calc(100dvh + 30px);
  }
}

.career-network {
  background: #f5f5f5;
  padding: 80px 0 90px;
}

.career-network-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 389px));
  gap: 24px;
  justify-content: center;
  max-width: 1221px;
  margin: 0 auto;
}

.career-network-grid .service-card {
  flex: none;
  width: 100%;
  height: 438px;
}

.career-network-grid .service-card,
.career-network-grid .service-card:hover {
  transform: none;
  box-shadow: none;
}

.career-network-grid .service-card:hover .service-shape {
  filter: drop-shadow(0 14px 28px rgba(5, 28, 44, 0.22));
}

.career-network-grid .service-shape {
  transition: filter 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.career-network-grid .service-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.career-why .why-grid::after {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.career-why .why-header-left h2 {
  font-size: 40px;
  line-height: 1.12;
}

.career-page .testimonials {
  background: #f5f5f5;
}

.career-page .hear-eyebrow:empty {
  display: none;
}

.career-page .hear-content h2 {
  font-size: 40px;
  line-height: 1.12;
}

/* Full-width composite slide (logo + photo + teal bar in image) */
.career-showcase {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.career-showcase-viewport {
  width: 100%;
  overflow: hidden;
}

.career-showcase-track {
  position: relative;
  margin: 0;
  padding: 0;
}

.career-showcase-slide {
  display: none;
  margin: 0;
  line-height: 0;
}

.career-showcase-slide.active {
  display: block;
  animation: careerShowcaseFade 0.45s ease;
}

@keyframes careerShowcaseFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.career-showcase-slide img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

/* Figma: arrows on teal bar — left / right, vertically centred on footer strip */
.career-showcase-nav {
  position: absolute;
  z-index: 2;
  bottom: clamp(28px, 4.2vw, 52px);
  width: 49px;
  height: 49px;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: rgba(5, 28, 44, 0.12);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.15s ease;
}

.career-showcase-nav::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
}

.career-showcase-nav--prev {
  left: clamp(12px, 2.8vw, 48px);
}

.career-showcase-nav--prev::before {
  transform: translate(-35%, -50%) rotate(45deg);
}

.career-showcase-nav--next {
  right: clamp(12px, 2.8vw, 48px);
}

.career-showcase-nav--next::before {
  transform: translate(-65%, -50%) rotate(-135deg);
}

.career-showcase-nav:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.06);
}

.career-news {
  padding: 80px 0 48px;
  color: var(--white);
}

.career-news-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.career-news-head h2 {
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 12px;
}

.career-news-head p {
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.career-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  max-width: 1288px;
  margin: 0 auto;
  align-items: start;
}

.career-news-feature-link {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.career-news-feature-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.career-news-feature-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.career-news-feature-body {
  padding: 24px 28px 28px;
}

.career-news-feature-body h3 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--white);
}

.career-news-feature-body p {
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 20px;
}

.career-news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.career-news-item-link {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.career-news-item-link:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.career-news-item-link img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
}

.career-news-item h4 {
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 6px;
  color: var(--white);
}

.career-news-item p {
  font-size: 14px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.career-cta .cta-content > p {
  font-size: 18px;
  line-height: 1.4;
  max-width: 520px;
  margin: 0 0 24px;
  opacity: 0.95;
}

.cta-banner.career-cta {
  background-color: var(--navy);
  background-image:
    linear-gradient(180deg, rgba(16, 39, 71, 0.35) 0%, rgba(5, 28, 44, 0.92) 100%),
    url('../images/freedom-bg-pattern.png');
  background-size: cover;
  background-position: center;
  padding-top: 0;
  padding-bottom: clamp(48px, 6vw, 72px);
}

.career-cta .cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Toast */
/* Introducer page — Figma 2309:2212 */
.introducer-page {
  padding-top: 0;
}

.introducer-hero {
  position: relative;
  overflow: hidden;
  margin-top: -30px;
  min-height: clamp(480px, 52vw, 680px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-clearance, 120px) + 40px) 0 64px;
  color: var(--navy);
  background: #f5f5f5;
}

.introducer-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  pointer-events: none;
  z-index: 0;
}

/* Image: white left + handshake & red loop on the right — minimal overlay */
.introducer-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.15) 42%,
    transparent 58%,
    transparent 100%
  );
}

.introducer-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--site-width);
}

.introducer-hero-content {
  max-width: 560px;
}

.introducer-hero-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.introducer-hero-content h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  color: var(--navy);
}

.introducer-hero-lead {
  font-size: 18px;
  line-height: 1.4;
  max-width: 500px;
  margin-bottom: 28px;
  color: rgba(5, 28, 44, 0.88);
}

.introducer-hero-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.introducer-hero-btns .btn {
  min-width: 180px;
  justify-content: center;
  text-align: center;
}

.introducer-strip {
  background: var(--red);
  color: var(--white);
  padding: clamp(24px, 3vw, 36px) 0;
}

.introducer-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.introducer-strip p {
  margin: 0;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  line-height: 1.35;
  max-width: 820px;
  flex: 1;
}

.introducer-strip .btn-white {
  color: var(--red);
  flex-shrink: 0;
}

.introducer-earn {
  background: var(--white);
  padding: clamp(56px, 6vw, 80px) 0 clamp(72px, 8vw, 96px);
}

.introducer-earn-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 56px);
}

.introducer-earn-banner {
  position: relative;
  line-height: 0;
  filter: drop-shadow(0 8px 24px rgba(5, 28, 44, 0.12));
}

.introducer-earn-banner > img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

.introducer-earn-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: clamp(24px, 4vw, 48px) clamp(28px, 5vw, 56px);
  background: transparent;
  pointer-events: none;
  line-height: normal;
}

.introducer-earn-banner-overlay h2 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--white);
  max-width: min(720px, 58%);
  margin: 0;
  font-weight: 700;
  pointer-events: auto;
  text-shadow: 0 1px 12px rgba(5, 28, 44, 0.35);
}

.introducer-earn-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.introducer-earn-copy {
  max-width: 620px;
}

.introducer-earn-copy h3 {
  font-size: clamp(32px, 3.5vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin: 0 0 24px;
  font-weight: 700;
}

.introducer-earn-copy p {
  font-size: 18px;
  line-height: 1.45;
  color: rgba(5, 28, 44, 0.88);
  margin: 0 0 18px;
}

.introducer-earn-copy .btn {
  margin-top: 8px;
}

.introducer-audience {
  background: #f5f5f5;
  border-radius: 20px;
  padding: clamp(32px, 4vw, 40px) clamp(28px, 3.5vw, 36px);
  box-shadow: none;
  border: none;
}

.introducer-audience h3 {
  font-size: clamp(22px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 24px;
  letter-spacing: -0.03em;
}

.introducer-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.introducer-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(5, 28, 44, 0.1);
}

.introducer-checklist li:first-child {
  padding-top: 0;
}

.introducer-checklist li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.introducer-checklist strong {
  display: block;
  font-size: 16px;
  line-height: 1.35;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
}

.introducer-checklist li p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(5, 28, 44, 0.65);
  font-weight: 400;
}

.introducer-why {
  padding-top: 80px;
}

.introducer-why-head {
  margin-bottom: 48px;
}

.introducer-why-head h2 {
  font-size: clamp(32px, 4vw, 40px);
  letter-spacing: -0.04em;
}

.introducer-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  position: relative;
  margin-top: 4px;
}

.introducer-check::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.introducer-why-grid::after {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.introducer-steps {
  background: #f5f5f5;
  padding: 80px 0 90px;
}

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

.introducer-steps .step-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.introducer-steps .step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(5, 28, 44, 0.12);
}

.introducer-register {
  background: #f5f5f5;
  padding: clamp(64px, 7vw, 88px) 0 clamp(48px, 6vw, 72px);
  overflow: visible;
}

.introducer-register .container {
  overflow: visible;
}

.introducer-register-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
  gap: clamp(16px, 3vw, 32px);
  align-items: end;
  max-width: 1288px;
  margin: 0 auto;
  position: relative;
}

.introducer-form-head {
  text-align: center;
  margin-bottom: 32px;
}

.introducer-form-head h2 {
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin: 0 0 12px;
}

.introducer-form-head p {
  font-size: 18px;
  line-height: 1.4;
  color: rgba(5, 28, 44, 0.75);
  max-width: 560px;
  margin: 0 auto;
}

.introducer-form-panel {
  max-width: none;
  width: 100%;
  margin: 0;
  text-align: left;
  border-radius: 20px;
  border: 1px solid var(--gray-border);
  box-shadow: 0 8px 32px rgba(5, 28, 44, 0.06);
  padding: clamp(36px, 4vw, 48px) clamp(28px, 4vw, 56px) clamp(40px, 4vw, 52px);
  background: var(--white);
  position: relative;
  z-index: 1;
}

.introducer-form-panel h2 {
  display: block;
}

.introducer-form-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
  min-height: 100%;
  pointer-events: none;
}

.introducer-form-person {
  width: 100%;
  max-width: 400px;
  height: auto;
  max-height: clamp(340px, 42vw, 480px);
  object-fit: contain;
  object-position: bottom center;
  margin-bottom: clamp(-24px, -3vw, -48px);
  filter: drop-shadow(0 12px 28px rgba(5, 28, 44, 0.12));
}

.introducer-select {
  width: 100%;
  background: #f5f5f5;
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--navy);
  box-sizing: border-box;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23051c2c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.introducer-select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.15);
}

.introducer-register .contact-form-actions {
  justify-content: flex-start;
}

@media (min-width: 1200px) {
  .introducer-hero {
    min-height: calc(100vh + 30px);
    min-height: calc(100dvh + 30px);
  }

  .introducer-register-layout {
    grid-template-columns: minmax(0, 820px) minmax(300px, 420px);
    gap: 0;
  }

  .introducer-form-visual {
    margin-left: clamp(-48px, -4vw, -24px);
  }
}

.introducer-cta .cta-content > p {
  font-size: 18px;
  line-height: 1.4;
  max-width: 520px;
  margin: 0 0 24px;
  opacity: 0.95;
}

.introducer-cta .cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.introducer-page .testimonials {
  background: var(--white);
}

.introducer-page .hear-eyebrow:empty {
  display: none;
}

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 16px;
  transform: translateY(100px);
  opacity: 0;
  transition: 0.3s;
  z-index: 9999;
}
.toast.show { transform: translateY(0); opacity: 1; }
