:root {
  --navy-950: #111312;
  --navy-900: #1a1e1d;
  --navy-850: #202523;
  --navy-800: #292e2c;
  --blue-600: #9e5b22;
  --blue-500: #cf8747;
  --blue-400: #c07a35;
  --cyan-400: #efc08f;
  --slate-900: #202321;
  --slate-700: #4e514e;
  --slate-600: #686b67;
  --slate-500: #858780;
  --slate-300: #d2d0c9;
  --slate-200: #e7e4dd;
  --slate-100: #f5f3ef;
  --white: #ffffff;
  --green: #25d366;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 16px 40px rgba(26, 30, 29, 0.09);
  --shadow-lg: 0 32px 90px rgba(17, 19, 18, 0.24);
  --container: 1180px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--slate-900);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(239, 192, 143, 0.88);
  outline-offset: 3px;
}

section[id] {
  scroll-margin-top: 86px;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue-600);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(26, 30, 29, 0.84);
  box-shadow: inset 0 -2px 0 rgba(192, 122, 53, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(17, 19, 18, 0.97);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 164px;
}

.official-brand-symbol {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.official-brand-symbol img {
  width: 42px;
  height: auto;
}

.brand-copy {
  display: grid;
  gap: 1px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  line-height: 1;
}

.brand-copy strong {
  font-size: 12px;
  font-weight: 800;
}

.brand-copy small {
  color: #b9b9b4;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.19em;
}

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

.main-nav > a:not(.button) {
  position: relative;
  color: #d0cfca;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--blue-400);
  transition: transform 0.2s ease;
}

.main-nav > a:not(.button):hover {
  color: var(--white);
}

.main-nav > a:not(.button):hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 0;
  border-radius: 9px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.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);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button svg,
.text-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button-small {
  min-height: 43px;
  padding: 0 17px;
  font-size: 12px;
}

.button-header {
  color: var(--navy-950);
  background: var(--blue-400);
  box-shadow: 0 10px 28px rgba(192, 122, 53, 0.28);
}

.button-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--blue-400), var(--blue-500));
  box-shadow: 0 16px 36px rgba(192, 122, 53, 0.34);
}

.button-primary:hover {
  box-shadow: 0 20px 42px rgba(192, 122, 53, 0.44);
}

.button-dark {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 15px 30px rgba(26, 30, 29, 0.2);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 820px;
  padding: calc(var(--header-height) + 74px) 0 0;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(17, 19, 18, 0.99) 0%, rgba(26, 30, 29, 0.98) 54%, rgba(46, 39, 31, 0.97) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: min(34vw, 460px);
  height: min(38vw, 520px);
  opacity: 0.3;
  background: linear-gradient(150deg, var(--blue-400), var(--blue-600));
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 82% 62%);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

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

.hero-glow-one {
  top: -260px;
  right: -120px;
  width: 650px;
  height: 650px;
  opacity: 0.17;
  background: radial-gradient(circle, var(--blue-400), transparent 70%);
}

.hero-glow-two {
  bottom: -300px;
  left: -280px;
  width: 650px;
  height: 650px;
  opacity: 0.1;
  background: radial-gradient(circle, var(--cyan-400), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.82fr;
  gap: 82px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e0a367;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--blue-600);
}

.eyebrow-dot {
  position: relative;
  display: inline-block;
  width: 9px;
  height: 9px;
  border: 2px solid var(--cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(239, 192, 143, 0.13);
}

.hero h1 {
  max-width: 700px;
  margin: 22px 0 24px;
  font-size: clamp(44px, 5.1vw, 72px);
  font-weight: 760;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.hero h1 span,
.section-heading h2 span,
.services-intro h2 span,
.cta-copy h2 span {
  color: var(--blue-400);
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: #c6c5bf;
  font-size: 17px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e5e3dc;
  font-size: 13px;
  font-weight: 700;
}

.text-link:hover svg {
  transform: translateY(3px);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-trust svg {
  width: 25px;
  flex: 0 0 25px;
  fill: none;
  stroke: var(--blue-400);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-trust span {
  display: grid;
  gap: 5px;
  color: #aaa9a3;
  font-size: 10px;
}

.hero-trust strong {
  color: var(--white);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 450px;
  justify-self: end;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.79;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 220px 220px 24px 24px;
  background: #303330;
  box-shadow: var(--shadow-lg);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 210px 210px 16px 16px;
  pointer-events: none;
}

.photo-frame picture,
.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
}

.photo-frame img {
  object-fit: cover;
  object-position: 50% 48%;
}

.photo-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(17, 19, 18, 0.76), transparent 38%),
    linear-gradient(115deg, rgba(192, 122, 53, 0.12), transparent 45%);
}

.photo-accent {
  position: absolute;
  z-index: -1;
  inset: auto -26px -30px auto;
  width: 80%;
  height: 80%;
  border: 1px solid rgba(192, 122, 53, 0.48);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  background: rgba(26, 30, 29, 0.9);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.floating-card-top {
  top: 18%;
  left: -54px;
}

.floating-card-bottom {
  right: -38px;
  bottom: 13%;
}

.floating-card span:not(.floating-icon, .status-pulse) {
  display: grid;
  gap: 4px;
}

.floating-card small {
  color: #b4b2aa;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.floating-card strong {
  color: var(--white);
  font-size: 12px;
}

.floating-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 10px;
  color: #edae70;
  background: rgba(192, 122, 53, 0.17);
}

.floating-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.status-pulse {
  width: 10px;
  height: 10px;
  border: 2px solid var(--navy-800);
  border-radius: 50%;
  background: #2be18d;
  box-shadow: 0 0 0 5px rgba(43, 225, 141, 0.12);
}

.hero-strip {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 65px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-strip p {
  margin: 0;
  color: #aaa9a3;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.03em;
}

.hero-strip-items {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-strip-items span {
  color: #e1dfd8;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hero-strip-items b {
  margin-right: 6px;
  color: var(--blue-400);
  font-size: 9px;
}

.hero-strip-items i {
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 58px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2,
.services-intro h2,
.cta-copy h2 {
  margin: 18px 0 22px;
  color: var(--navy-900);
  font-size: clamp(35px, 4vw, 52px);
  font-weight: 770;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading p,
.services-intro > p,
.cta-copy > p {
  max-width: 690px;
  margin: 0 auto;
  color: var(--slate-600);
  font-size: 16px;
  line-height: 1.75;
}

.opportunity {
  background: var(--white);
}

.outcome-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1050px;
  margin: -25px auto 38px;
  padding: 0;
  list-style: none;
}

.outcome-list li {
  position: relative;
  padding: 11px 15px 11px 36px;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  color: var(--slate-700);
  background: #faf9f6;
  font-size: 11px;
  font-weight: 700;
}

.outcome-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 8px;
  height: 4px;
  transform: translateY(-70%) rotate(-45deg);
  border-bottom: 2px solid var(--blue-600);
  border-left: 2px solid var(--blue-600);
}

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

.value-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 34px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-7px);
  border-color: #d3b99f;
  box-shadow: var(--shadow-sm);
}

.value-card.featured {
  color: var(--white);
  border-color: var(--navy-800);
  background:
    radial-gradient(circle at 100% 0, rgba(192, 122, 53, 0.26), transparent 43%),
    var(--navy-850);
  box-shadow: 0 22px 55px rgba(26, 30, 29, 0.18);
}

.value-card.featured::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.value-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #dedbd4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.featured .value-number {
  color: #84684d;
}

.icon-box {
  display: grid;
  width: 53px;
  height: 53px;
  place-items: center;
  margin-bottom: 55px;
  border-radius: 13px;
  color: var(--blue-600);
  background: #fbf1e7;
}

.featured .icon-box {
  color: #efb77f;
  background: rgba(192, 122, 53, 0.17);
}

.icon-box svg,
.service-icon svg,
.large-icon svg,
.contact-mini svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  margin: 0 0 13px;
  color: var(--navy-900);
  font-size: 21px;
  letter-spacing: -0.025em;
}

.value-card.featured h3 {
  color: var(--white);
}

.value-card p {
  margin: 0;
  color: var(--slate-600);
  font-size: 13px;
  line-height: 1.7;
}

.value-card.featured p {
  color: #bebbb3;
}

.services {
  background: var(--slate-100);
}

.services-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 60px;
}

.services-intro h2 {
  margin-bottom: 0;
}

.services-intro > p {
  margin: 0 0 3px;
  font-size: 14px;
}

.service-list {
  display: grid;
  border-top: 1px solid #ddd9d2;
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 65px minmax(245px, 0.8fr) 1.2fr;
  gap: 24px;
  padding: 42px 26px 42px 8px;
  border-bottom: 1px solid #ddd9d2;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.service-row:hover {
  padding-right: 28px;
  padding-left: 25px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(26, 30, 29, 0.07);
}

.service-index {
  padding-top: 5px;
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 800;
}

.service-title {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.service-icon {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  place-items: center;
  border: 1px solid #e5d8cc;
  border-radius: 11px;
  color: var(--blue-600);
  background: #fbf1e7;
}

.service-icon svg {
  width: 22px;
}

.service-title small {
  display: block;
  margin-bottom: 7px;
  color: var(--slate-500);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-title h3 {
  max-width: 200px;
  margin: 0;
  color: var(--navy-900);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 28px;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 20px;
  color: var(--slate-700);
  font-size: 12px;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 8px;
  height: 4px;
  transform: rotate(-45deg);
  border-bottom: 1.8px solid var(--blue-600);
  border-left: 1.8px solid var(--blue-600);
}

.service-note {
  grid-column: 3;
  margin: -9px 0 0 20px;
  color: var(--slate-500);
  font-size: 9px;
  line-height: 1.5;
}

.specialist {
  position: relative;
  overflow: hidden;
  background: #f8f6f1;
}

.specialist::after {
  content: "";
  position: absolute;
  top: -170px;
  right: -140px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(192, 122, 53, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(192, 122, 53, 0.035);
  pointer-events: none;
}

.specialist-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 92px;
  align-items: center;
}

.specialist-visual {
  position: relative;
  max-width: 495px;
}

.specialist-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.83;
  border-radius: 24px 120px 24px 24px;
  background: #d8d7d2;
  box-shadow: 0 28px 68px rgba(26, 30, 29, 0.18);
}

.specialist-photo picture,
.specialist-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.specialist-photo img {
  object-fit: cover;
  object-position: 50% 64%;
}

.specialist-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(26, 30, 29, 0.55), transparent);
}

.specialist-seal {
  position: absolute;
  right: -46px;
  bottom: 42px;
  display: grid;
  gap: 5px;
  min-width: 205px;
  padding: 19px 21px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  color: var(--white);
  background: rgba(26, 30, 29, 0.91);
  box-shadow: 0 18px 48px rgba(17, 19, 18, 0.24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.specialist-seal span {
  color: #d6a170;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.specialist-seal strong {
  font-size: 12px;
}

.specialist-copy h2 {
  margin: 18px 0 24px;
  color: var(--navy-900);
  font-size: clamp(38px, 4.3vw, 56px);
  font-weight: 770;
  line-height: 1.04;
  letter-spacing: -0.048em;
}

.specialist-copy h2 span {
  color: var(--blue-600);
}

.specialist-copy > p {
  max-width: 590px;
  margin: 0;
  color: var(--slate-600);
  font-size: 15px;
  line-height: 1.78;
}

.specialist-points {
  display: grid;
  gap: 18px;
  margin: 32px 0;
  padding: 28px 0;
  border-top: 1px solid #ded9cf;
  border-bottom: 1px solid #ded9cf;
}

.specialist-points div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: start;
}

.specialist-points strong {
  color: var(--navy-900);
  font-size: 12px;
}

.specialist-points span {
  color: var(--slate-600);
  font-size: 11px;
  line-height: 1.6;
}

.differentiators {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.differentiators::before {
  content: "6S";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.018);
  font-size: 370px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.12em;
  pointer-events: none;
}

.differentiators .section-heading {
  position: relative;
}

.differentiators .section-heading h2 {
  color: var(--white);
}

.differentiator-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.differentiator-card {
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.differentiator-card:hover {
  transform: translateY(-7px);
  border-color: rgba(192, 122, 53, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.differentiator-card.highlight {
  border-color: rgba(192, 122, 53, 0.45);
  background:
    linear-gradient(145deg, rgba(192, 122, 53, 0.23), rgba(192, 122, 53, 0.06)),
    rgba(255, 255, 255, 0.035);
}

.card-tag {
  display: inline-block;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  color: #bbb8af;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.large-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 44px 0 27px;
  border-radius: 15px;
  color: #e8a96c;
  background: rgba(192, 122, 53, 0.16);
}

.differentiator-card h3 {
  margin: 0 0 13px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.differentiator-card p {
  margin: 0;
  color: #b9b6ae;
  font-size: 12px;
  line-height: 1.7;
}

.cta-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 30%, rgba(192, 122, 53, 0.22), transparent 34%),
    linear-gradient(120deg, #111312, #30271f);
}

.cta-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(rgba(255, 255, 255, 0.4) 0.65px, transparent 0.65px);
  background-size: 20px 20px;
  mask-image: linear-gradient(to right, black, transparent 60%);
}

.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 90px;
  align-items: center;
}

.cta-copy h2 {
  color: var(--white);
}

.cta-copy > p {
  margin: 0;
  color: #c3c0b8;
  font-size: 14px;
}

.contact-mini {
  display: grid;
  gap: 13px;
  margin-top: 33px;
}

.contact-mini a {
  display: flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
}

.contact-mini a > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  color: #e9aa6d;
  background: rgba(255, 255, 255, 0.05);
}

.contact-mini svg {
  width: 18px;
}

.contact-mini div {
  display: grid;
  gap: 4px;
}

.contact-mini small {
  color: #aaa79f;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-mini strong {
  font-size: 12px;
}

.lead-form {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  color: var(--slate-900);
  background: var(--white);
  box-shadow: 0 32px 75px rgba(0, 0, 0, 0.24);
}

.form-heading span {
  color: var(--blue-600);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 8px 0;
  color: var(--navy-900);
  font-size: 25px;
  letter-spacing: -0.035em;
}

.form-heading p {
  margin: 0 0 27px;
  color: var(--slate-600);
  font-size: 11px;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label span {
  color: var(--slate-700);
  font-size: 10px;
  font-weight: 700;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 0 13px;
  border: 1px solid #dedad2;
  outline: 0;
  border-radius: 9px;
  color: var(--navy-900);
  background: #faf9f6;
  font-size: 11px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-grid input {
  height: 47px;
}

.form-grid textarea {
  min-height: 98px;
  padding-top: 13px;
  resize: vertical;
  line-height: 1.55;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #9b9b95;
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--blue-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(192, 122, 53, 0.13);
}

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

.form-button {
  width: 100%;
  margin-top: 22px;
}

.form-disclaimer {
  margin: 12px 0 0;
  color: var(--slate-500);
  font-size: 8px;
  line-height: 1.45;
  text-align: center;
}

.final-conversion {
  position: relative;
  overflow: hidden;
  padding: 74px 0;
  color: var(--white);
  background: var(--navy-900);
}

.final-conversion::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 32%;
  height: 100%;
  opacity: 0.62;
  background: var(--blue-400);
  clip-path: polygon(62% 0, 100% 0, 100% 100%, 20% 100%);
}

.final-conversion-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 55px;
  align-items: center;
}

.final-conversion-inner > div {
  max-width: 760px;
}

.final-conversion-inner span {
  color: #dea267;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.final-conversion h2 {
  margin: 11px 0 13px;
  font-size: clamp(30px, 3.4vw, 45px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.final-conversion p {
  margin: 0;
  color: #c3c0b8;
  font-size: 13px;
  line-height: 1.7;
}

.site-footer {
  color: #b1afa8;
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.55fr 1fr;
  gap: 90px;
  padding-top: 65px;
  padding-bottom: 55px;
}

.brand-footer {
  color: var(--white);
}

.footer-brand p {
  max-width: 310px;
  margin: 23px 0 0;
  color: #99978f;
  font-size: 11px;
  line-height: 1.7;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: #aaa79f;
  font-size: 10px;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-contact a:last-child {
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 21px;
  padding-bottom: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: #85837d;
  font-size: 9px;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 25px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px 10px 11px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: var(--white);
  background: #16b855;
  box-shadow: 0 15px 35px rgba(15, 140, 67, 0.34);
  font-size: 11px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 19px 40px rgba(15, 140, 67, 0.42);
}

.whatsapp-float svg {
  width: 25px;
  fill: currentColor;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 19px;
  }

  .main-nav > a:not(.button) {
    font-size: 12px;
  }

  .hero-grid {
    gap: 45px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .floating-card-top {
    left: -25px;
  }

  .floating-card-bottom {
    right: -15px;
  }

  .cta-grid {
    gap: 50px;
  }

  .specialist-grid {
    gap: 58px;
  }

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

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

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 20px 24px 28px;
    transform: translateY(-130%);
    visibility: hidden;
    opacity: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(17, 19, 18, 0.99);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .main-nav > a:not(.button) {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 14px;
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .button-header {
    margin-top: 20px;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .hero h1 {
    font-size: clamp(46px, 8vw, 70px);
  }

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

  .photo-frame {
    aspect-ratio: 0.9;
  }

  .hero-strip {
    margin-top: 70px;
  }

  .value-grid,
  .differentiator-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .differentiator-card {
    min-height: auto;
  }

  .icon-box {
    margin-bottom: 38px;
  }

  .large-icon {
    margin: 38px 0 25px;
  }

  .services-intro,
  .specialist-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .services-intro {
    gap: 24px;
  }

  .services-intro > p {
    max-width: 600px;
  }

  .service-row {
    grid-template-columns: 45px 0.82fr 1.18fr;
  }

  .service-title {
    display: grid;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    gap: 55px;
  }

  .cta-copy {
    max-width: 650px;
  }

  .specialist-visual {
    width: min(86%, 520px);
    justify-self: center;
  }

  .specialist-copy {
    max-width: 700px;
  }

  .final-conversion-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .final-conversion-inner .button {
    width: fit-content;
  }
}

@media (max-width: 660px) {
  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .brand {
    min-width: auto;
  }

  .official-brand-symbol {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .official-brand-symbol img {
    width: 39px;
  }

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

  .hero::before {
    background-size: 48px 48px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(39px, 12.2vw, 55px);
    line-height: 1.02;
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 19px;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-visual {
    width: 92%;
  }

  .photo-frame {
    aspect-ratio: 0.79;
  }

  .floating-card {
    min-width: 180px;
    padding: 12px 14px;
  }

  .floating-card-top {
    top: 12%;
    left: -18px;
  }

  .floating-card-bottom {
    right: -17px;
    bottom: 9%;
  }

  .floating-icon {
    width: 35px;
    height: 35px;
  }

  .hero-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
  }

  .hero-strip-items {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-strip-items i {
    display: none;
  }

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

  .section-heading h2,
  .services-intro h2,
  .cta-copy h2 {
    font-size: 37px;
  }

  .section-heading p,
  .services-intro > p,
  .cta-copy > p {
    font-size: 14px;
  }

  .value-card {
    padding: 28px;
  }

  .outcome-list {
    display: grid;
    justify-content: stretch;
    margin-top: -18px;
  }

  .outcome-list li {
    width: 100%;
  }

  .service-row,
  .service-row:hover {
    grid-template-columns: 36px 1fr;
    gap: 18px 8px;
    padding: 32px 7px;
  }

  .service-title {
    display: flex;
  }

  .check-list {
    grid-column: 2;
    gap: 11px;
  }

  .service-note {
    grid-column: 2;
    margin-left: 19px;
  }

  .differentiators::before {
    font-size: 210px;
  }

  .specialist-visual {
    width: 95%;
  }

  .specialist-photo {
    border-radius: 20px 80px 20px 20px;
  }

  .specialist-seal {
    right: -10px;
    bottom: 24px;
    min-width: 185px;
  }

  .specialist-copy h2 {
    font-size: 38px;
  }

  .specialist-points div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .lead-form {
    padding: 27px 21px;
  }

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

  .contact-mini strong {
    font-size: 11px;
  }

  .final-conversion {
    padding: 62px 0;
  }

  .final-conversion::after {
    width: 64%;
    opacity: 0.2;
  }

  .final-conversion-inner .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float span {
    display: none;
  }
}

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

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

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