:root {
  --navy: #0b1f3a;
  --navy-2: #102a4e;
  --navy-3: #15365f;
  --gold: #c6831d;
  --gold-soft: #ead8b5;
  --cream: #f8f5ef;
  --soft: #f4f6f8;
  --line: #dfe5eb;
  --text: #152033;
  --muted: #667085;
  --white: #ffffff;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 60px rgba(12, 31, 58, 0.12);
  --shadow-soft: 0 14px 40px rgba(12, 31, 58, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: "Popins", sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  width: 100%;
}

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 12px 16px;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 112px 0;
}

.section-soft {
  background: var(--soft);
}

.section-navy {
  background: var(--navy);
  color: #fff;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 223, 230, .8);
  transition: .3s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(10, 28, 52, .08);
  background: rgba(255, 255, 255, .96);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transition: min-height .3s ease;
}

.site-header.scrolled .header-inner {
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 10px;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  line-height: 1.03;
  letter-spacing: -.02em;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 18px;
}

.brand-copy span {
  color: #738093;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-top: 4px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  color: #344054;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  width: 100%;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border-radius: 11px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(212, 176, 106, .45);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 22px rgba(11, 31, 58, .16);
}

.btn-primary:hover {
  background: var(--navy-2);
  box-shadow: 0 14px 28px rgba(11, 31, 58, .22);
}

.btn-secondary {
  background: #fff;
  border-color: #cfd8e2;
  color: var(--navy);
}

.btn-secondary:hover {
  border-color: #aeb9c5;
  box-shadow: var(--shadow-soft);
}

.btn-lg {
  min-height: 56px;
  padding: 0 26px;
  font-size: 15px;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: #dfbf7f;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--soft);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy);
  transition: .25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  transition: max-height .3s ease, opacity .25s ease;
}

.mobile-menu.open {
  max-height: 520px;
  opacity: 1;
}

.mobile-menu-inner {
  padding: 20px 0 28px;
  display: grid;
  gap: 2px;
}

.mobile-menu-inner>a:not(.btn) {
  padding: 13px 4px;
  font-weight: 600;
  border-bottom: 1px solid #edf0f3;
}

.mobile-menu-inner .btn {
  margin-top: 12px;
}

.hero-section {
  min-height: 100vh;
  padding: 154px 0 92px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(120deg, #fff 0%, #fff 56%, #f4f1e9 56%, #f4f1e9 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 72px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #526174;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.eyebrow>span {
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.eyebrow-light {
  color: #c9d2dc;
}

.justify-center {
  justify-content: center;
}

.hero-copy h1,
.section-heading h2,
.final-cta h2,
.contact-panel h2 {
  font-family: "Playfair Display", serif;
  letter-spacing: -.035em;
}

.hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(48px, 5vw, 78px);
  line-height: 1.02;
  color: var(--navy);
}

.hero-lead {
  max-width: 670px;
  margin: 26px 0 0;
  color: #5c6879;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.proof-avatar-group {
  display: flex;
}

.proof-avatar-group span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -9px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 12px rgba(10, 28, 52, .12);
}

.proof-avatar-group span:first-child {
  margin-left: 0;
}

.hero-proof p {
  margin: 0;
  color: #6d7785;
  font-size: 13px;
  line-height: 1.45;
}

.hero-proof strong {
  color: var(--navy);
}

.hero-visual {
  position: relative;
  padding: 18px 0 30px 14px;
}

.hero-image-frame {
  overflow: hidden;
  border-radius: 80px 12px 80px 12px;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-image-frame img {
  aspect-ratio: .9;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8, 25, 46, .22));
  pointer-events: none;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(214, 221, 228, .9);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(11, 31, 58, .16);
  backdrop-filter: blur(12px);
}

.floating-card strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.2;
}

.floating-card span {
  display: block;
  color: #7a8595;
  font-size: 11px;
  margin-top: 3px;
}

.stat-card-one {
  top: 13%;
  left: 25px;
}

.stat-card-two {
  bottom: 16%;
  right: 16px;
}

.stat-card-three {
  bottom: 6px;
  left: 10%;
}

.stat-icon,
.team-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #eef2e7;
  color: #516638;
  font-weight: 800;
}

.team-icon {
  background: #f4ead8;
  color: #92713b;
  font-size: 11px;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4ca279;
  box-shadow: 0 0 0 7px rgba(76, 162, 121, .13);
  margin: 0 7px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb-one {
  width: 360px;
  height: 360px;
  border: 1px solid rgba(212, 176, 106, .25);
  right: -180px;
  top: 100px;
}

.hero-orb-two {
  width: 200px;
  height: 200px;
  border: 1px solid rgba(11, 31, 58, .08);
  left: -100px;
  bottom: 40px;
}

.scroll-indicator {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #738093;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.scroll-indicator i {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    transform: scaleY(.45);
    transform-origin: top
  }

  50% {
    transform: scaleY(1)
  }
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading.compact {
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
}

.section-heading p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

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

.section-heading.light p {
  color: #b9c5d1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #dde3e9;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.metric-card {
  padding: 32px;
  position: relative;
}

.cv-upload {
  width: 100%;
  margin-top: 25px;
  margin-bottom: 20px;
}

.cv-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #24334d;
}

.cv-label span {
  color: #e53935;
}

.cv-dropzone {
  position: relative;
  width: 100%;
  min-height: 165px;
  box-sizing: border-box;

  border: 2px dashed #cbd5e1;
  border-radius: 12px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  cursor: pointer;

  background: #fff;

  padding: 25px;

  transition: all 0.2s ease;
}

.cv-dropzone:hover,
.cv-dropzone.dragover {
  border-color: #c6831d;
  background: #faf7ff;
}

.cv-dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  font-size: 0;
  z-index: 2;
}

.upload-icon {
  width: 44px;
  height: 44px;
  color: #c6831d;
  margin-bottom: 10px;
}

.upload-icon svg {
  width: 100%;
  height: 100%;
}

.upload-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.upload-text strong {
  font-size: 15px;
  font-weight: 500;
  color: #52627a;
}

.upload-text span {
  font-size: 14px;
  color: #9aa8bd;
}

.selected-file {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #c6831d;
}

.metric-card+.metric-card {
  border-left: 1px solid #e5e9ee;
}

.form-grid .full-width {
  grid-column: 1 / -1;
}

.metric-card strong {
  font-family: "Popins", serif;
  color: var(--navy);
  font-size: 42px;
  letter-spacing: -.04em;
}

.metric-card span {
  display: block;
  margin-top: 1px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.metric-card p {
  margin: 10px 0 0;
  color: #687586;
  font-size: 14px;
}

.logo-strip {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: center;
}

.logo-strip span {
  min-height: 58px;
  display: grid;
  place-items: center;
  color: #8a94a2;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  border: 1px dashed #cfd6dd;
  background: rgba(255, 255, 255, .45);
}

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

.problem-card {
  padding: 30px 26px 32px;
  border-top: 1px solid var(--line);
  transition: .25s ease;
}

.problem-card:hover {
  background: var(--soft);
  transform: translateY(-5px);
  border-top-color: var(--gold);
}

.icon-box {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #f4f1e9;
  color: #92713b;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 24px;
}

.problem-card h3,
.solution-list h3,
.expertise-card h3,
.benefit-list h3,
.process-step h3,
.form-heading h3 {
  color: var(--navy);
  margin: 0;
  font-size: 19px;
}

.problem-card p,
.solution-list p,
.expertise-card p,
.benefit-list p,
.process-step p {
  margin: 11px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.solution-section {
  background: var(--cream);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 78px;
  align-items: center;
}

.solution-list {
  display: grid;
  gap: 0;
}

.solution-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(152, 140, 116, .18);
}

.solution-list article>span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--navy);
  font-weight: 800;
  border-bottom: 1px solid rgba(11, 31, 58, .25);
  padding-bottom: 5px;
}

.text-link span {
  transition: .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.solution-visual {
  position: relative;
}

.solution-visual img {
  aspect-ratio: .86;
  object-fit: cover;
  border-radius: 12px 90px 12px 12px;
  box-shadow: var(--shadow);
}

.site-logo {
  width: 220px;
}

.solution-badge {
  position: absolute;
  left: 24px;
  bottom: 30px;
  width: 230px;
  padding: 20px;
  background: var(--gold);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.solution-badge strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 22px;
}

.solution-badge span {
  display: block;
  color: #fff;
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.55;
}

.expertise-section {
  position: relative;
  overflow: hidden;
}

.expertise-section::after {
  content: "";
  width: 480px;
  height: 480px;
  position: absolute;
  border: 1px solid rgba(212, 176, 106, .13);
  border-radius: 50%;
  right: -220px;
  top: -160px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
}

.expertise-card {
  min-height: 290px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .11);
  background: rgba(255, 255, 255, .045);
  display: flex;
  flex-direction: column;
  transition: .25s ease;
}

.expertise-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .075);
  border-color: rgba(212, 176, 106, .38);
}

.expertise-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  color: #71849b;
  font-size: 11px;
}

.sector-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 176, 106, .45);
  color: var(--gold);
  border-radius: 50%;
  font-size: 17px;
}

.expertise-card h3 {
  color: #fff;
  font-size: 20px;
}

.expertise-card p {
  color: #aebbc9;
}

.expertise-card a {
  margin-top: auto;
  padding-top: 22px;
  color: #e5c98e;
  font-size: 13px;
  font-weight: 700;
}

.expertise-card a span {
  float: right;
}

.why-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 76px;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-visual img {
  aspect-ratio: .86;
  object-fit: cover;
  border-radius: 70px 10px 10px 10px;
  box-shadow: var(--shadow);
}

.why-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px 20px;
  background: rgba(11, 31, 58, .9);
  backdrop-filter: blur(8px);
  color: #fff;
}

.why-caption span {
  display: block;
  color: #b8c4d2;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.why-caption strong {
  display: block;
  margin-top: 6px;
  font-family: "Playfair Display", serif;
  font-size: 21px;
}

.benefit-list {
  display: grid;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.benefit-list article>div {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f4f1e9;
  color: #99783c;
  font-weight: 900;
  font-size: 12px;
}

.benefit-list p {
  margin-top: 5px;
}

.highlight-box {
  margin-top: 26px;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: var(--soft);
  border-left: 3px solid var(--gold);
}

.highlight-box span {
  display: block;
  color: #7a8696;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
}

.highlight-box strong {
  display: block;
  margin-top: 5px;
  color: var(--navy);
}

.testimonial-track {
  display: flex;
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e0e5ea;
  padding: 30px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(14, 34, 60, .045);
}

.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.stars {
  color: #bc9349;
  font-size: 13px;
  letter-spacing: 2px;
}

.quote-mark {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  line-height: .6;
  color: #e5d4b2;
}

.testimonial-card blockquote {
  margin: 32px 0;
  color: #344054;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  line-height: 1.55;
}

.testimonial-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid #edf0f2;
}

.author-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.testimonial-author strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
}

.testimonial-author span {
  display: block;
  color: #8993a0;
  font-size: 11px;
  margin-top: 3px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 22px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: #bec6cf;
  padding: 0;
}

.slider-dots button.active {
  width: 24px;
  border-radius: 10px;
  background: var(--navy);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-top: 56px;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d2d9e0 12%, #d2d9e0 88%, transparent);
}

.process-step {
  position: relative;
  text-align: center;
  padding: 0 20px;
  z-index: 2;
}

.process-number {
  display: block;
  color: #b08b4a;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .16em;
  margin-bottom: 17px;
}

.process-dot {
  width: 18px;
  height: 18px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: var(--navy);
  border: 5px solid #fff;
  /* box-shadow: 0 0 0 7px #fff; */
}

.process-section {
  background: var(--navy);
}

.process-section .section-heading h2 {
  color: #fff;
}

.field label,
.field select,
.field input {
    font-family: "DM Sans", sans-serif;
}

.field label {
    font-size: 14px;
    font-weight: 500;
}

.field select,
.field input {
    font-size: 14px;
    font-weight: 400;
}

.field select {
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
}

.field select option {
    font-family: inherit;
    font-size: 14px;
}

.process-section .section-heading p, .process-section .process-step p {
  color: #b9c5d1;
}

.process-step h3 {
  font-size: 18px;
  color: #fff;
}

.center-cta {
  text-align: center;
  margin-top: 48px;
}

.contact-section {
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 64px;
  align-items: start;
  padding: 70px;
  border-radius: 80px 12px 80px 12px;
  border: 2px solid #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: var(--navy);
  color: #fff;
}

.contact-panel {
  position: sticky;
  top: 110px;
}

.contact-panel h2 {
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.08;
  margin: 0;
}

.contact-panel>p {
  color: #b9c5d1;
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
  margin: 20px 0 0;
}

.contact-details {
  margin-top: 44px;
  display: grid;
  gap: 22px;
}

.contact-details div {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.contact-details span {
  display: block;
  color: #8395a9;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
}

.contact-details a,
.contact-details strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 16px;
}

.contact-note {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(212, 176, 106, .25);
  background: rgba(212, 176, 106, .07);
}

.contact-note>span {
  color: var(--gold);
  font-weight: 900;
}

.contact-note p {
  margin: 0;
  color: #aebbc9;
  font-size: 13px;
  line-height: 1.55;
}

.contact-note strong {
  color: #fff;
}

.form-wrap {
  background: #fff;
  color: var(--text);
  padding: 38px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .2);
  border-radius: 4px;
}

.form-heading {
  padding-bottom: 24px;
  border-bottom: 1px solid #e3e7eb;
  margin-bottom: 24px;
}

.form-heading span {
  color: #c6831d;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
}

.form-heading h3 {
  margin-top: 6px;
  font-family: "Playfair Display", serif;
  font-size: 29px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

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

.field-full {
  grid-column: 1/-1;
}

.field label {
  color: #475467;
  font-size: 12px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #ccd5de;
  border-radius: 8px;
  background: #fff;
  min-height: 48px;
  padding: 10px 12px;
  color: #172033;
  transition: border-color .2s, box-shadow .2s;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #9b7a42;
  box-shadow: 0 0 0 3px rgba(212, 176, 106, .12);
  outline: none;
}

.field [aria-invalid="true"] {
  border-color: #c33f3f;
  box-shadow: 0 0 0 3px rgba(195, 63, 63, .08);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  color: #667085;
  font-size: 12px;
}

.checkbox-row input {
  margin-top: 2px;
  accent-color: var(--navy);
}

.checkbox-row a {
  text-decoration: underline;
  color: var(--navy);
}

.form-submit {
  width: 100%;
}

.form-submit:disabled {
  opacity: .7;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 700;
}

.form-status.success {
  color: #34785c;
}

.form-status.error {
  color: #b42318;
}

.faq-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
  align-items: start;
}

.faq-layout .section-heading {
  position: sticky;
  top: 115px;
}

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

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  background: none;
  border: 0;
  text-align: left;
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
}

.faq-question i {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  position: relative;
  border: 1px solid #cfd6dd;
  border-radius: 50%;
}

.faq-question i::before,
.faq-question i::after {
  content: "";
  position: absolute;
  background: var(--navy);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: .25s ease;
}

.faq-question i::before {
  width: 9px;
  height: 1px;
}

.faq-question i::after {
  width: 1px;
  height: 9px;
}

.faq-item.active .faq-question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s ease;
}

.faq-answer>p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer>p {
  padding: 0 42px 22px 0;
}

.final-cta-section {
  padding: 0 0 92px;
  background: #fff;
}

.final-cta {
  min-height: 350px;
  background: var(--navy-2);
  padding: 54px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.final-cta>*:not(.final-cta-pattern) {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.08;
}

.final-cta p {
  max-width: 650px;
  margin: 18px 0 0;
  color: #b8c4d2;
  line-height: 1.7;
}

.final-cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.final-cta-pattern {
  position: absolute;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(212, 176, 106, .22);
  border-radius: 50%;
  right: -190px;
  top: -210px;
}

.final-cta-pattern::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  left: -95px;
  bottom: -185px;
}

.site-footer {
  background: #08172b;
  color: #c0cad5;
  padding-top: 74px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .7fr .85fr 1.1fr;
  gap: 54px;
  padding-bottom: 58px;
}

.brand-light .brand-mark {
  background: #fff;
}

.brand-light .brand-copy strong {
  color: #fff;
}

.footer-brand p {
  max-width: 280px;
  line-height: 1.65;
  font-size: 13px;
  margin: 20px 0;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  color: #fff;
  transition: .2s;
}

.socials a svg {
  width: 15px;
  height: 15px;
  display: block;
}

.socials a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.footer-grid h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 13px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-grid li,
.footer-grid a,
.footer-grid p {
  color: #97a6b6;
  font-size: 12px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-contact li {
  display: grid;
  gap: 4px;
}

.footer-contact span {
  color: #64788f;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.footer-contact p {
  margin: 0;
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.footer-bottom p,
.footer-bottom a {
  color: #6f8296;
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.image-reveal {
  clip-path: inset(0 0 16% 0);
  transition: opacity .8s ease, transform .8s ease, clip-path 1s cubic-bezier(.2, .7, .2, 1);
}

.image-reveal.visible {
  clip-path: inset(0 0 0 0);
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .image-reveal {
    clip-path: none;
  }
}

@media (max-width: 1100px) {
  .site-container {
    width: min(100% - 40px, 1240px);
  }

  .desktop-nav {
    gap: 18px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .solution-grid,
  .why-grid {
    gap: 46px;
  }

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

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

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

  .metric-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #e5e9ee;
  }

  .metric-card:nth-child(4) {
    border-top: 1px solid #e5e9ee;
  }

  .logo-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-layout {
    grid-template-columns: .7fr 1.3fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr .8fr .8fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 88px 0;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero-section {
    min-height: auto;
    padding: 140px 0 88px;
    background: linear-gradient(180deg, #fff 0%, #fff 61%, #f4f1e9 61%, #f4f1e9 100%);
  }

  .hero-grid,
  .solution-grid,
  .why-grid,
  .contact-layout,
  .faq-layout,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 54px;
  }

  .hero-copy h1 {
    max-width: 820px;
    font-size: clamp(48px, 8vw, 68px);
  }

  .hero-visual {
    width: min(660px, 88%);
    justify-self: center;
  }

  .stat-card-one {
    left: -34px;
  }

  .stat-card-two {
    right: -34px;
  }

  .scroll-indicator {
    display: none;
  }

  .solution-visual,
  .why-visual {
    width: min(680px, 92%);
    justify-self: center;
  }

  .solution-grid,
  .why-grid {
    gap: 56px;
  }

  .slider-dots {
    display: flex;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 10px;
  }

  .process-grid::before {
    display: none;
  }

  .contact-panel,
  .faq-layout .section-heading {
    position: static;
  }

  .contact-panel {
    padding-bottom: 10px;
  }

  .final-cta {
    padding: 48px;
  }

  .final-cta-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 640px) {
  .site-container {
    width: calc(100% - 30px);
  }

  .site-logo {
    width: 180px;
  }

  .section {
    padding: 72px 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .site-header.scrolled .header-inner {
    min-height: 66px;
  }

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

  .brand-copy strong {
    font-size: 16px;
  }

  .header-cta {
    display: none;
  }

  .hero-section {
    padding-top: 118px;
    background: linear-gradient(180deg, #fff 0%, #fff 67%, #f4f1e9 67%, #f4f1e9 100%);
  }

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

  .hero-lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn,
  .mobile-menu-inner .btn {
    width: 100%;
  }

  .hero-proof {
    align-items: flex-start;
  }

  .hero-visual {
    width: 100%;
    padding-left: 0;
  }

  .hero-image-frame {
    border-radius: 48px 10px 48px 10px;
  }

  .stat-card-one {
    top: 10%;
    left: -6px;
  }

  .stat-card-two {
    right: -5px;
    bottom: 11%;
  }

  .stat-card-three {
    left: 20px;
    bottom: -14px;
  }

  .floating-card {
    transform: scale(.9);
    transform-origin: left center;
  }

  .stat-card-two {
    transform-origin: right center;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .stats-grid,
  .problem-grid,
  .expertise-grid,
  .logo-strip,
  .form-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metric-card+.metric-card {
    border-left: 0;
    border-top: 1px solid #e5e9ee;
  }

  .problem-card {
    padding-left: 0;
    padding-right: 0;
  }

  .expertise-card {
    min-height: 245px;
  }

  .solution-badge {
    left: 24px;
    bottom: 14px;
    width: 220px;
  }

  .highlight-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .highlight-box .btn {
    width: 100%;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-card blockquote {
    font-size: 18px;
  }

  .process-step {
    padding: 0 10px 24px;
    border-bottom: 1px solid var(--line);
  }

  .process-dot {
    margin-bottom: 18px;
  }

  .form-wrap {
    padding: 24px 18px;
    margin-left: -1px;
    margin-right: -1px;
  }

  .field-full {
    grid-column: auto;
  }

  .faq-question {
    font-size: 15px;
    padding: 20px 0;
  }

  .faq-item.active .faq-answer>p {
    padding-right: 0;
  }

  .final-cta-section {
    padding-bottom: 60px;
  }

  .final-cta {
    padding: 34px 24px;
    min-height: 0;
  }

  .final-cta-actions {
    display: grid;
    width: 100%;
  }

  .final-cta-actions .btn {
    width: 100%;
  }

  .footer-grid {
    gap: 36px;
  }

  .footer-bottom {
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom div {
    gap: 14px;
    flex-wrap: wrap;
  }
}

/* =========================
   Testimonials Slider
========================= */

.testimonial-slider {
  position: relative;
  width: 100%;
}

.testimonial-carousel {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  min-height: 330px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

/* Top */
.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.stars {
  color: #f5b301;
  font-size: 18px;
  letter-spacing: 2px;
}

.quote-mark {
  font-size: 60px;
  line-height: 40px;
  color: #ddd;
  font-family: Georgia, serif;
}

/* Testimonial text */
.testimonial-card blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  flex: 1;
}

/* Author */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 25px;
}

.author-mark {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #eeeeee;
  color: #333;
  font-weight: 700;
  font-size: 15px;
}

.author-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.testimonial-author span {
  display: block;
  font-size: 13px;
  color: #777;
}

/* =========================
   Slider Navigation
========================= */

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.slider-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(12, 31, 58, 0.08);
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}

.slider-arrow:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.slider-arrow:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d5d5d5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots button.active {
  width: 26px;
  border-radius: 10px;
  background: var(--navy);
}

/* =========================
   Tablet
========================= */

@media (max-width: 991px) {

  .testimonial-track {
    gap: 20px;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .testimonial-card {
    padding: 24px;
  }

}

/* =========================
   Mobile
========================= */

@media (max-width: 767px) {

  .testimonial-carousel {
    gap: 8px;
  }

  .testimonial-track {
    gap: 0;
  }

  .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    padding: 22px;
  }

  .testimonial-card blockquote {
    font-size: 15px;
    line-height: 1.65;
  }

  .testimonial-top {
    margin-bottom: 15px;
  }

  .stars {
    font-size: 16px;
  }

  .quote-mark {
    font-size: 50px;
  }

  .testimonial-author {
    margin-top: 20px;
  }

  .author-mark {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
  }

}

/* Small mobile */
@media (max-width: 480px) {

  .testimonial-card {
    padding: 20px;
    border-radius: 12px;
  }

  .testimonial-card blockquote {
    font-size: 14px;
  }

}

.red {
  color: red;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: visible;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.32),
    0 4px 12px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float::before,
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  pointer-events: none;
  animation: whatsapp-wave 2.4s ease-out infinite;
}

.whatsapp-float::after {
  animation-delay: 1.2s;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.38),
    0 6px 16px rgba(37, 211, 102, 0.58);
}

@keyframes whatsapp-wave {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.05);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

body.lead-magnet-open {
  overflow: hidden;
}

.lead-magnet {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.lead-magnet.is-open {
  display: flex;
}

.lead-magnet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 32, 0.62);
}

.lead-magnet-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: calc(100vh - 32px);
  overflow: auto;
  background: #0b1f3a;
  border-radius: 12px;
  padding: 22px 24px 26px;
  box-shadow: 0 30px 80px rgba(8, 18, 32, 0.4);
}

.lead-magnet-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: grid;
  place-items: center;
}

.lead-magnet-close svg {
  width: 16px;
  height: 16px;
}

.lead-magnet-close:hover {
  background: rgba(255, 255, 255, 0.16);
}

.lead-magnet-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.lead-magnet-mark {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: #14a6a0;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #04342c;
  letter-spacing: .5px;
}

.lead-magnet-brand-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.2px;
  line-height: 1.1;
}

.lead-magnet-brand-sub {
  font-size: 9px;
  font-weight: 400;
  color: #8fa6c0;
  letter-spacing: 3px;
  line-height: 1.1;
}

.lead-magnet-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: start;
}

.lead-magnet-badge {
  display: inline-block;
  background: rgba(20, 166, 160, 0.14);
  border: 1px solid rgba(20, 166, 160, 0.45);
  color: #5dcaa5;
  font-size: 10px;
  letter-spacing: 1.4px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.lead-magnet-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 27px);
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
}

.lead-magnet-copy>p {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.6;
  color: #b9cadc;
}

.lead-magnet-ticks {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.lead-magnet-ticks li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #eaf1f8;
}

.lead-magnet-ticks span {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #14a6a0;
  color: #04342c;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.lead-magnet-ticks svg {
  width: 12px;
  height: 12px;
}

.lead-magnet-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 12px;
  display: flex;
  gap: 16px;
}

.lead-magnet-stats strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.lead-magnet-stats span {
  display: block;
  font-size: 10px;
  color: #8fa6c0;
}

.lead-magnet-form {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
}

.lead-magnet-form h3 {
  margin: 0 0 3px;
  font-size: 15px;
  font-weight: 700;
  color: #0b1f3a;
}

.lead-magnet-form-intro {
  margin: 0 0 14px;
  font-size: 11px;
  color: #6b7c90;
}

.lead-magnet-form label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #0b1f3a;
  margin-bottom: 5px;
}

.lead-magnet-form input,
.lead-magnet-form select {
  width: 100%;
  height: 34px;
  margin-bottom: 10px;
  border: 1px solid #d8e0e9;
  background: #f7fafc;
  border-radius: 8px;
  padding: 0 11px;
  font-size: 12px;
  color: #0b1f3a;
}

.lead-magnet-form input::placeholder {
  color: #95a5b8;
}

.lead-magnet-form select {
  color: #6b7c90;
  margin-bottom: 14px;
}

.lead-magnet-form select:valid {
  color: #0b1f3a;
}

.lead-magnet-form [aria-invalid="true"] {
  border-color: #e53935;
  background: #fff7f7;
}

.lead-magnet-submit {
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: #14a6a0;
  color: #04342c;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

.lead-magnet-submit svg {
  width: 15px;
  height: 15px;
}

.lead-magnet-submit:hover {
  background: #11958f;
}

.lead-magnet-submit:disabled {
  opacity: .7;
  cursor: wait;
}

.lead-magnet-status {
  min-height: 16px;
  margin: 8px 0 0;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.lead-magnet-status.error {
  color: #e53935;
}

.lead-magnet-status.success {
  color: #0f8a4b;
}

.lead-magnet-legal {
  margin: 9px 0 0;
  font-size: 9.5px;
  line-height: 1.5;
  color: #95a5b8;
  text-align: center;
}

.lead-magnet-legal a {
  color: #0b1f3a;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .lead-magnet-dialog {
    padding: 18px 16px 20px;
  }

  .lead-magnet-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .lead-magnet-stats {
    gap: 12px;
  }
}