@font-face {
  font-family: "Peyda";
  src: url("assets/fonts/peyda/peydaWeb-light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Peyda";
  src: url("assets/fonts/peyda/PeydaWeb-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Peyda";
  src: url("assets/fonts/peyda/PeydaWeb-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Peyda";
  src: url("assets/fonts/peyda/PeydaWeb-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Peyda";
  src: url("assets/fonts/peyda/PeydaWeb-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Peyda";
  src: url("assets/fonts/peyda/PeydaWeb-ExtraBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Peyda";
  src: url("assets/fonts/peyda/PeydaWeb-Black.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --blue: #0d47ff;
  --blue-dark: #0635c9;
  --blue-soft: #eaf0ff;
  --orange: #ff8a00;
  --orange-soft: #fff1df;
  --navy: #07152f;
  --navy-deep: #030a19;
  --navy-soft: #0d1d3f;
  --ink: #111827;
  --muted: #687386;
  --muted-light: #aab7d2;
  --paper: #f4f5f8;
  --paper-warm: #f6f3ed;
  --surface: #ffffff;
  --line: rgba(13, 71, 255, 0.13);
  --line-dark: rgba(255, 255, 255, 0.13);
  --success: #18b77b;
  --max-width: 1280px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --shadow-sm: 0 14px 40px rgba(10, 31, 76, 0.08);
  --shadow-md: 0 26px 80px rgba(8, 26, 67, 0.14);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Peyda", Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

::selection {
  color: #fff;
  background: var(--blue);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.section {
  padding-block: clamp(84px, 9vw, 132px);
}

.skip-link {
  position: fixed;
  top: 10px;
  right: 16px;
  z-index: 9999;
  padding: 10px 16px;
  color: #fff;
  background: var(--blue);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), background 0.24s var(--ease), border-color 0.24s var(--ease);
}

.button svg,
.card-link svg,
.text-link svg,
.article-copy button svg {
  width: 19px;
  height: 19px;
  transform: rotate(180deg);
}

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

.button-large {
  min-height: 58px;
  padding-inline: 26px;
  border-radius: 17px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 16px 36px rgba(13, 71, 255, 0.24);
}

.button-primary:hover {
  box-shadow: 0 20px 48px rgba(13, 71, 255, 0.34);
}

.button-accent {
  color: #251400;
  background: linear-gradient(135deg, #ffad3d, var(--orange));
  box-shadow: 0 16px 38px rgba(255, 138, 0, 0.24);
}

.button-accent:hover {
  box-shadow: 0 20px 48px rgba(255, 138, 0, 0.34);
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.4);
}

.button-light {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.17);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(17, 24, 39, 0.16);
}

.button:focus-visible,
.nav-link:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(255, 138, 0, 0.72);
  outline-offset: 3px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.section-label span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--blue);
  border-radius: 10px;
  font-size: 0.72rem;
}

.section-label-light {
  color: #b9c9f4;
}

.section-label-light span {
  color: #2a1700;
  background: var(--orange);
}

.section-head {
  max-width: 790px;
  margin-bottom: 52px;
}

.section-head h2,
.about-intro h2,
.story-sticky h2,
.credentials-copy h2,
.team-copy h2,
.testimonial-stage h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 950;
  line-height: 1.3;
  letter-spacing: -0.055em;
}

.section-head p,
.about-intro > p,
.story-sticky > p,
.credentials-copy > p,
.team-copy > p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 2.05;
}

.section-head-split,
.section-head-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
  max-width: none;
}

.section-head-split h2,
.section-head-row h2 {
  margin: 0;
}

.section-head-row {
  grid-template-columns: 1fr auto;
}

.section-head-row .button {
  margin-bottom: 6px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  font-weight: 850;
}

.eyebrow i {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(255, 138, 0, 0.13);
}

.eyebrow-light {
  color: #c2cce2;
}

.text-link,
.card-link,
.article-copy button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: var(--blue);
  background: none;
  border: 0;
  font-weight: 900;
  cursor: pointer;
}

.text-link:hover,
.card-link:hover,
.article-copy button:hover {
  color: var(--orange);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding-top: 18px;
  pointer-events: none;
  transition: padding 0.3s var(--ease);
}

.header-shell {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.nav-main {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  min-width: 0;
  min-height: 76px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background: rgba(7, 21, 47, 0.78);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(20px);
  pointer-events: auto;
  transition: min-height 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), border-radius 0.3s var(--ease);
}

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

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand > span {
  display: grid;
  line-height: 1.1;
}

.brand strong {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 950;
}

.brand small {
  margin-top: 7px;
  color: #a9b8d6;
  font-size: 0.66rem;
  font-weight: 750;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-inline: auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 46px;
  padding-inline: 14px;
  color: #dae2f1;
  background: transparent;
  border: 0;
  border-radius: 12px;
  font-size: 0.87rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-item.is-open > .nav-link {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-item {
  position: relative;
}

.nav-item.is-open .dropdown-trigger svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  right: 50%;
  z-index: 10;
  display: grid;
  width: 390px;
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(12, 35, 87, 0.1);
  border-radius: 22px;
  box-shadow: 0 26px 80px rgba(0, 11, 46, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translate(50%, 8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s var(--ease);
}

.nav-item.is-open .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(50%, 0);
}

@media (hover: hover) and (min-width: 1051px) {
  .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(50%, 0);
  }
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -17px;
  right: 0;
  left: 0;
  height: 17px;
}

.dropdown-eyebrow {
  padding: 5px 10px 10px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  transition: background 0.2s ease, transform 0.2s var(--ease);
}

.dropdown-menu a:hover {
  background: var(--blue-soft);
  transform: translateX(-3px);
}

.dropdown-menu a > svg {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  padding: 9px;
  color: var(--blue);
  background: #eef3ff;
  border-radius: 11px;
}

.dropdown-menu a > span {
  display: grid;
  line-height: 1.5;
}

.dropdown-menu a b {
  font-size: 0.88rem;
}

.dropdown-menu a small {
  color: var(--muted);
  font-size: 0.72rem;
}

.magazine-menu {
  width: 340px;
}

.magazine-menu a {
  border-bottom: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 10px;
}

.magazine-menu a:last-child {
  border-bottom: 0;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 194px;
  padding: 0 18px;
  color: #2d1800;
  background: linear-gradient(135deg, #ffb14a, var(--orange));
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(255, 138, 0, 0.24);
  pointer-events: auto;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), border-radius 0.3s var(--ease);
}

.header-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(255, 138, 0, 0.34);
}

.header-contact svg {
  width: 25px;
  height: 25px;
}

.header-contact span {
  display: grid;
  line-height: 1.4;
}

.header-contact small {
  font-size: 0.67rem;
  font-weight: 800;
  opacity: 0.73;
}

.header-contact b {
  font-size: 0.85rem;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-right: auto;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  cursor: pointer;
}

.menu-close-icon {
  display: none;
}

.site-header.is-scrolled {
  padding-top: 8px;
}

.site-header.is-scrolled .nav-main {
  min-height: 66px;
  background: rgba(7, 21, 47, 0.95);
  border-radius: 18px;
}

.site-header.is-scrolled .header-contact {
  border-radius: 18px;
}

/* Hero */
.hero-slider {
  position: relative;
  min-height: 820px;
  color: #fff;
  background: var(--navy);
  overflow: hidden;
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
}

.hero-orb {
  position: absolute;
  z-index: -1;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(115px);
  opacity: 0.19;
  pointer-events: none;
}

.hero-orb-blue {
  top: -260px;
  right: -150px;
  background: var(--blue);
}

.hero-orb-orange {
  bottom: -370px;
  left: -150px;
  background: var(--orange);
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  align-items: center;
  padding: 130px 0 120px;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity 0.65s ease, visibility 0.65s ease, transform 0.9s var(--ease);
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.hero-copy {
  max-width: 690px;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 24px 0 22px;
  font-size: clamp(3rem, 6vw, 5.65rem);
  font-weight: 950;
  line-height: 1.14;
  letter-spacing: -0.072em;
}

.hero-copy h2 {
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
}

.hero-copy h1 em,
.hero-copy h2 em {
  color: var(--orange);
  font-style: normal;
}

.hero-copy > p {
  max-width: 640px;
  margin: 0;
  color: #bdc9de;
  font-size: 1.08rem;
  line-height: 2.05;
}

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

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
  color: #aebad0;
  font-size: 0.78rem;
  font-weight: 750;
}

.hero-signals span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-signals svg {
  width: 17px;
  height: 17px;
  color: var(--orange);
}

.hero-company-visual {
  position: relative;
  perspective: 1200px;
}

.company-card-main {
  position: relative;
  min-height: 470px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 34px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  transform: rotateY(4deg) rotateX(1deg);
}

.company-card-main::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 27px;
  pointer-events: none;
}

.company-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px 17px;
  color: #aebbd4;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.company-card-head i {
  width: 9px;
  height: 9px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(24, 183, 123, 0.11);
}

.company-card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 395px;
  padding: 26px;
  background: radial-gradient(circle at 50% 35%, rgba(13, 71, 255, 0.25), transparent 54%), rgba(3, 10, 25, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
}

.company-card-body::before,
.company-card-body::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.company-card-body::before {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -110px;
}

.company-card-body::after {
  width: 190px;
  height: 190px;
  right: -80px;
  bottom: -80px;
}

.company-mark-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  flex: 1;
}

.company-mark-wrap img {
  width: min(80%, 330px);
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.34));
  animation: mark-float 6s ease-in-out infinite;
}

@keyframes mark-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.company-path {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c9d4e8;
  font-size: 0.72rem;
  font-weight: 800;
}

.company-path span {
  flex: 0 0 auto;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 9px;
}

.company-path i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.company-float {
  position: absolute;
  z-index: 4;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 16px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
  color: var(--navy);
  backdrop-filter: blur(15px);
}

.company-float small {
  display: block;
  color: var(--muted);
  font-size: 0.65rem;
}

.company-float b {
  display: block;
  margin-top: 2px;
  font-size: 0.82rem;
}

.company-float-one {
  top: 50px;
  right: -55px;
}

.company-float-two {
  left: -45px;
  bottom: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.company-float-two svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  color: #fff;
  background: var(--blue);
  border-radius: 10px;
}

.hero-slide-image::after {
  content: "02 / COMPANY";
  position: absolute;
  left: 4vw;
  bottom: 110px;
  z-index: -1;
  color: rgba(255, 255, 255, 0.035);
  font-family: Arial, sans-serif;
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero-image-frame {
  position: relative;
  min-height: 510px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 44px 100px rgba(0, 0, 0, 0.35);
}

.hero-image-frame > img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.08);
}

.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(3, 10, 25, 0.94), transparent 58%), linear-gradient(135deg, rgba(13, 71, 255, 0.25), rgba(255, 138, 0, 0.1));
}

.image-frame-mark {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 23px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
}

.image-frame-mark img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.hero-image-frame figcaption {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  z-index: 2;
  display: grid;
}

.hero-image-frame figcaption span {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
}

.hero-image-frame figcaption small {
  margin-top: 5px;
  color: #b7c3d8;
  font-size: 0.72rem;
}

.hero-slide-mark {
  background: radial-gradient(circle at 70% 45%, rgba(13, 71, 255, 0.23), transparent 35%), radial-gradient(circle at 20% 65%, rgba(255, 138, 0, 0.14), transparent 30%);
}

.hero-layout-mark {
  grid-template-columns: 0.8fr 1.2fr;
}

.brand-statement > span {
  color: var(--orange);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.brand-statement h2 {
  margin: 18px 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 950;
  line-height: 1.22;
  letter-spacing: -0.06em;
}

.brand-statement p {
  max-width: 580px;
  margin: 0 0 32px;
  color: #bec9dd;
  line-height: 2;
}

.brand-mark-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.brand-mark-stage::before,
.brand-mark-stage::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.brand-mark-stage::before {
  width: 500px;
  height: 500px;
}

.brand-mark-stage::after {
  width: 360px;
  height: 360px;
  border-color: rgba(255, 138, 0, 0.15);
}

.brand-mark-stage img {
  position: relative;
  z-index: 2;
  width: min(74%, 460px);
  filter: drop-shadow(0 42px 54px rgba(0, 0, 0, 0.38));
}

.brand-mark-stage > span {
  position: absolute;
  bottom: 40px;
  color: rgba(255, 255, 255, 0.05);
  font-family: Arial, sans-serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.07em;
}

.slider-controls {
  position: absolute;
  right: 50%;
  bottom: 34px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 22px;
  transform: translateX(50%);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-dots button {
  position: relative;
  width: 48px;
  height: 5px;
  padding: 0;
  background: rgba(255, 255, 255, 0.18);
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
}

.slider-dots button span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--orange);
}

.slider-dots button.is-active span {
  width: 100%;
  animation: slider-progress 7s linear;
}

.hero-slider.is-paused .slider-dots button.is-active span {
  animation-play-state: paused;
}

@keyframes slider-progress {
  from { width: 0; }
  to { width: 100%; }
}

.slider-count {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
}

.slider-count b {
  color: #fff;
}

.slider-count span {
  color: #8997b4;
}

.slider-count i {
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.slider-arrows {
  display: flex;
  gap: 8px;
  margin-right: auto;
}

.slider-arrows button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.slider-arrows button:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.3);
}

.slider-arrows button:first-child svg {
  transform: rotate(0deg);
}

.slider-arrows button:last-child svg {
  transform: rotate(180deg);
}

/* About */
.about-section {
  background: var(--surface);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.about-intro {
  position: sticky;
  top: 125px;
}

.about-intro .text-link {
  margin-top: 28px;
}

.about-principles {
  display: grid;
  gap: 16px;
}

.principle-card {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  min-height: 190px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid rgba(14, 38, 88, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
}

.principle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 71, 255, 0.22);
  box-shadow: var(--shadow-sm);
}

.principle-card > span {
  position: absolute;
  left: 24px;
  top: 17px;
  color: rgba(13, 71, 255, 0.12);
  font-family: Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
}

.principle-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  color: #fff;
  background: var(--blue);
  border-radius: 18px;
  box-shadow: 0 15px 32px rgba(13, 71, 255, 0.22);
}

.principle-icon svg {
  width: 28px;
  height: 28px;
}

.principle-card h3 {
  margin: 0;
  font-size: 1.28rem;
  font-weight: 900;
}

.principle-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.9;
}

/* Trust */
.trust-section {
  position: relative;
  color: #fff;
  background: var(--navy);
  overflow: hidden;
}

.trust-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  right: -320px;
  top: -280px;
  background: radial-gradient(circle, rgba(13, 71, 255, 0.2), transparent 68%);
  pointer-events: none;
}

.trust-section .section-head h2 {
  color: #fff;
}

.trust-section .section-head > p {
  color: var(--muted-light);
}

.trust-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.location-card,
.systems-card {
  position: relative;
  min-height: 390px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.location-map {
  position: relative;
  min-height: 235px;
  background: linear-gradient(135deg, rgba(13, 71, 255, 0.12), rgba(255, 138, 0, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 23px;
  overflow: hidden;
}

.location-map::before {
  content: "";
  position: absolute;
  inset: 0;
  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: 34px 34px;
}

.location-map > b {
  position: absolute;
  left: 18px;
  bottom: -9px;
  color: rgba(255, 255, 255, 0.07);
  font-family: Arial, sans-serif;
  font-size: 4.8rem;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.map-line {
  position: absolute;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  transform-origin: right;
}

.line-one { width: 75%; top: 42%; right: 7%; transform: rotate(-13deg); }
.line-two { width: 62%; top: 64%; right: 22%; transform: rotate(21deg); }
.line-three { width: 55%; top: 27%; right: 35%; transform: rotate(38deg); }

.map-pin {
  position: absolute;
  z-index: 2;
  top: 42%;
  right: 53%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #261500;
  background: var(--orange);
  border: 7px solid rgba(255, 138, 0, 0.18);
  background-clip: padding-box;
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(255, 138, 0, 0.08);
}

.map-pin svg {
  width: 23px;
  height: 23px;
}

.location-copy {
  padding: 23px 8px 2px;
}

.location-copy > span,
.systems-head > span {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
}

.location-copy h3 {
  margin: 4px 0 5px;
  font-size: 1.45rem;
}

.location-copy p {
  margin: 0;
  color: #adb9cf;
  font-size: 0.86rem;
}

.systems-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 5px 20px;
}

.systems-head svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  color: var(--orange);
  background: rgba(255, 138, 0, 0.09);
  border-radius: 13px;
}

.system-list {
  display: grid;
  gap: 10px;
}

.system-list > div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 84px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
}

.system-list i {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  color: #dce5f7;
  background: rgba(13, 71, 255, 0.18);
  border-radius: 14px;
}

.system-list i svg {
  width: 24px;
  height: 24px;
}

.system-list span {
  display: grid;
}

.system-list b {
  font-size: 0.92rem;
}

.system-list small {
  color: #98a6bf;
  font-size: 0.72rem;
}

.partner-zone {
  margin-top: 18px;
  padding: 28px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius-lg);
}

.partner-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.partner-head > div > span {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
}

.partner-head h3 {
  margin: 3px 0 0;
  font-size: 1.3rem;
}

.partner-head p {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.partner-head p svg {
  width: 17px;
  height: 17px;
  color: var(--blue);
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.logo-slot {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 15px;
  text-align: center;
  background: var(--paper);
  border: 1px dashed rgba(17, 24, 39, 0.18);
  border-radius: 16px;
  overflow: hidden;
}

.logo-slot::before {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  background: rgba(13, 71, 255, 0.07);
  border-radius: 18px;
  transform: rotate(15deg);
}

.logo-slot span,
.logo-slot small {
  position: relative;
  z-index: 1;
}

.logo-slot span {
  font-size: 0.78rem;
  font-weight: 900;
}

.logo-slot small {
  color: var(--muted);
  font-size: 0.65rem;
}

/* Story */
.story-section {
  background: var(--paper-warm);
}

.story-layout {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.story-sticky {
  position: sticky;
  top: 120px;
}

.story-sticky .button {
  margin-top: 30px;
}

.roadmap {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap::before {
  content: "";
  position: absolute;
  top: 34px;
  right: 30px;
  bottom: 34px;
  width: 2px;
  background: linear-gradient(var(--blue), rgba(13, 71, 255, 0.09));
}

.roadmap-step {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 25px;
  padding: 0 0 52px;
}

.roadmap-step:last-child {
  padding-bottom: 0;
}

.roadmap-number {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  padding: 0;
  color: var(--blue);
  background: #fff;
  border: 2px solid rgba(13, 71, 255, 0.17);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(13, 71, 255, 0.1);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease);
}

.roadmap-number:hover {
  border-color: rgba(13, 71, 255, 0.48);
  transform: translateY(-2px);
}

.roadmap-step.is-current .roadmap-number {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  transform: scale(1.06);
}

.roadmap-step.is-current .roadmap-number:hover {
  transform: scale(1.06) translateY(-1px);
}

.roadmap-step small {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
}

.roadmap-step h3 {
  margin: 2px 0 9px;
  font-size: 1.28rem;
  font-weight: 900;
}

.roadmap-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.95;
}

.roadmap-copy {
  opacity: 0.34;
  filter: blur(4px);
  transform: translateY(3px);
  transform-origin: right center;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s var(--ease);
}

.roadmap-step.is-current .roadmap-copy {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  pointer-events: auto;
  user-select: text;
}

/* Offers */
.offers-section {
  background: #fff;
}

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

.offer-card {
  position: relative;
  min-height: 410px;
  padding: 29px;
  background: var(--paper);
  border: 1px solid rgba(14, 38, 88, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  border-color: rgba(13, 71, 255, 0.19);
  box-shadow: var(--shadow-md);
}

.offer-card-featured {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.offer-card-featured::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  left: -130px;
  bottom: -160px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.offer-type {
  display: inline-flex;
  padding: 6px 10px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 8px;
  font-size: 0.67rem;
  font-weight: 900;
}

.offer-card-featured .offer-type {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.offer-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-top: 25px;
  color: #fff;
  background: var(--blue);
  border-radius: 17px;
  box-shadow: 0 14px 30px rgba(13, 71, 255, 0.2);
}

.offer-card-featured .offer-icon {
  color: var(--blue);
  background: #fff;
}

.offer-card h3 {
  margin: 19px 0 10px;
  font-size: 1.32rem;
  font-weight: 950;
}

.offer-card > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.offer-card-featured > p,
.offer-card-featured ul {
  color: #d5e0fb;
}

.offer-card ul {
  display: grid;
  gap: 4px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.8rem;
}

.offer-card li::before {
  content: "•";
  margin-left: 7px;
  color: var(--orange);
}

.offer-card .card-link {
  position: absolute;
  right: 29px;
  bottom: 26px;
}

.offer-card-featured .card-link {
  color: #fff;
}

.offer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 21px;
}

.offer-tags span {
  padding: 6px 10px;
  color: var(--muted);
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 0.63rem;
  font-weight: 700;
}

.offer-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 11px;
  color: #166044;
  background: #e8f8f1;
  border-radius: 9px;
  font-size: 0.69rem;
  font-weight: 850;
}

.offer-state i {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
}

.offer-card-cta {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.offer-card-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.offer-card-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 21, 47, 0.48), rgba(7, 21, 47, 0.96));
}

.offer-card-cta > div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
}

.offer-card-cta span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
}

.offer-card-cta h3 {
  font-size: 1.55rem;
  line-height: 1.55;
}

.offer-card-cta .button {
  margin-top: 10px;
}

.offer-cta-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 10px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 750;
  transition: color 0.2s ease, transform 0.2s ease;
}

.offer-card-cta:hover .offer-cta-link {
  color: var(--orange);
  transform: translateX(-3px);
}

/* Magazine */
.magazine-section {
  background: var(--paper);
}

.article-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
  gap: 16px;
}

.article-card {
  background: #fff;
  border: 1px solid rgba(14, 38, 88, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

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

.article-cover {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 235px;
  padding: 24px;
  color: #fff;
  overflow: hidden;
}

.article-featured .article-cover {
  height: 270px;
}

.article-cover::before,
.article-cover::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.article-cover::before {
  width: 250px;
  height: 250px;
  top: -110px;
  right: -80px;
}

.article-cover::after {
  width: 160px;
  height: 160px;
  left: -60px;
  bottom: -70px;
}

.cover-ai { background: linear-gradient(135deg, #07152f, #0d47ff); }
.cover-product { background: linear-gradient(135deg, #102244, #2673ff); }
.cover-growth { background: linear-gradient(135deg, #3b2100, #ff8a00); }

.article-cover > span {
  position: relative;
  z-index: 1;
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.article-cover > svg {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  stroke-width: 1.1;
}

.article-cover > i {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 9px rgba(255, 138, 0, 0.14);
}

.article-copy {
  padding: 25px;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 850;
}

.article-meta small {
  color: var(--muted);
}

.article-copy h3 {
  margin: 13px 0 10px;
  font-size: 1.18rem;
  font-weight: 950;
  line-height: 1.7;
}

.article-featured .article-copy h3 {
  font-size: 1.4rem;
}

.article-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.9;
}

/* Credentials */
.credentials-section {
  color: #fff;
  background: linear-gradient(135deg, #07152f, #0a1c40);
}

.credentials-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 70px;
}

.credentials-copy > p {
  color: #aebbd2;
}

.credentials-copy .button {
  margin-top: 30px;
}

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

.credential-card {
  position: relative;
  min-height: 270px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.credential-card:last-child {
  grid-column: 1 / -1;
  min-height: 225px;
}

.credential-status {
  display: inline-flex;
  padding: 6px 9px;
  color: #ffcb87;
  background: rgba(255, 138, 0, 0.1);
  border: 1px solid rgba(255, 138, 0, 0.2);
  border-radius: 8px;
  font-size: 0.64rem;
  font-weight: 900;
}

.credential-card > svg {
  position: absolute;
  top: 23px;
  left: 23px;
  width: 38px;
  height: 38px;
  color: var(--orange);
  opacity: 0.75;
}

.credential-card h3 {
  margin: 36px 0 8px;
  font-size: 1.15rem;
}

.credential-card p {
  margin: 0;
  color: #aab8d0;
  font-size: 0.8rem;
  line-height: 1.9;
}

.credential-card > small {
  position: absolute;
  right: 24px;
  bottom: 21px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8798b7;
  font-size: 0.66rem;
}

.credential-card > small i {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
}

/* Testimonials */
.testimonials-section {
  background: var(--paper-warm);
}

.testimonials-layout {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 18px;
}

.testimonial-stage,
.testimonial-policy {
  position: relative;
  min-height: 440px;
  padding: clamp(30px, 5vw, 60px);
  border-radius: var(--radius-lg);
}

.testimonial-stage {
  color: #fff;
  background: var(--blue);
  overflow: hidden;
}

.testimonial-stage::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -190px;
  bottom: -220px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.quote-mark {
  width: 54px;
  height: 54px;
  margin-bottom: 27px;
  color: var(--orange);
  stroke-width: 1.2;
}

.testimonial-stage > span {
  color: #cbd8ff;
  font-size: 0.72rem;
  font-weight: 900;
}

.testimonial-stage h2 {
  margin-top: 7px;
  max-width: 620px;
}

.testimonial-stage > p {
  max-width: 660px;
  margin: 18px 0 0;
  color: #d3defd;
  line-height: 1.95;
}

.testimonial-placeholder {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 35px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 17px;
}

.testimonial-placeholder i {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--blue);
  background: #fff;
  border-radius: 50%;
}

.testimonial-placeholder span {
  display: grid;
}

.testimonial-placeholder b {
  font-size: 0.9rem;
}

.testimonial-placeholder small {
  color: #c7d4f7;
  font-size: 0.7rem;
}

.testimonial-policy {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.testimonial-policy > span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
}

.testimonial-policy h3 {
  margin: 8px 0 22px;
  font-size: 1.45rem;
  line-height: 1.6;
}

.testimonial-policy ul {
  display: grid;
  gap: 14px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.testimonial-policy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.84rem;
}

.testimonial-policy li svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

/* Team */
.team-section {
  background: #fff;
}

.team-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: clamp(50px, 8vw, 105px);
}

.team-photo {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.team-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 21, 47, 0.96), rgba(7, 21, 47, 0.08) 62%), linear-gradient(135deg, rgba(13, 71, 255, 0.34), rgba(255, 138, 0, 0.09));
}

.team-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.team-photo-overlay > svg {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  color: var(--orange);
}

.team-photo-overlay > span {
  display: grid;
}

.team-photo-overlay b {
  font-size: 1.1rem;
}

.team-photo-overlay small {
  margin-top: 4px;
  color: #c1cce0;
  font-size: 0.72rem;
}

.team-symbols {
  position: absolute;
  top: 32%;
  display: flex;
  align-items: flex-end;
  gap: 9px;
  opacity: 0.13;
}

.team-symbols i {
  position: relative;
  width: 62px;
  height: 100px;
  background: #fff;
  border-radius: 32px 32px 10px 10px;
}

.team-symbols i::before {
  content: "";
  position: absolute;
  top: -37px;
  right: 10px;
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
}

.team-symbols i:nth-child(2),
.team-symbols i:nth-child(4) {
  height: 120px;
}

.team-photo-caption {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
}

.team-photo-caption span {
  color: var(--orange);
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.team-photo-caption b {
  font-size: 0.8rem;
}

.team-disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 27px 0 32px;
}

.team-disciplines span {
  padding: 7px 12px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
}

/* CTA + footer */
.final-cta {
  padding: 30px 0 0;
  background: var(--navy);
}

.final-cta-card {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(32px, 5vw, 62px);
  color: #fff;
  background: var(--blue);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 80px rgba(13, 71, 255, 0.28);
  overflow: hidden;
}

.final-cta-card::before {
  content: "";
  position: absolute;
  width: 410px;
  height: 410px;
  left: -160px;
  top: -200px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.final-cta-card > div,
.final-cta-card > button {
  position: relative;
  z-index: 1;
}

.final-cta-card span {
  color: #cedaff;
  font-size: 0.72rem;
  font-weight: 900;
}

.final-cta-card h2 {
  margin: 7px 0 4px;
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 950;
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.final-cta-card p {
  margin: 0;
  color: #d4def9;
}

.mega-footer {
  padding-top: 105px;
  color: #fff;
  background: var(--navy);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 0.72fr);
  gap: 42px;
  padding-bottom: 56px;
}

.brand-footer strong {
  font-size: 1.25rem;
}

.footer-intro > p {
  max-width: 320px;
  margin: 22px 0;
  color: #9ba9c2;
  font-size: 0.85rem;
  line-height: 1.9;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.footer-phone > svg {
  width: 39px;
  height: 39px;
  padding: 9px;
  color: #271500;
  background: var(--orange);
  border-radius: 11px;
}

.footer-phone > span {
  display: grid;
  line-height: 1.35;
}

.footer-phone small {
  color: #8f9eb8;
  font-size: 0.65rem;
}

.footer-phone b {
  font-size: 0.78rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h3 {
  margin: 4px 0 12px;
  color: #fff;
  font-size: 0.9rem;
}

.footer-column a,
.footer-column button {
  padding: 0;
  color: #9ba9c2;
  background: none;
  border: 0;
  font-size: 0.76rem;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover,
.footer-column button:hover {
  color: var(--orange);
  transform: translateX(-3px);
}

.footer-middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-middle > div:first-child {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-middle > div:first-child svg {
  width: 39px;
  height: 39px;
  padding: 9px;
  color: var(--orange);
  background: rgba(255, 138, 0, 0.09);
  border-radius: 11px;
}

.footer-middle > div:first-child span {
  display: grid;
}

.footer-middle small {
  color: #8090ac;
  font-size: 0.63rem;
}

.footer-middle b {
  font-size: 0.76rem;
}

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

.footer-links a {
  color: #8e9cb6;
  font-size: 0.7rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 76px;
  color: #71819e;
  font-size: 0.67rem;
}

/* Dialog */
.consultation-dialog {
  width: min(92vw, 720px);
  max-height: 92vh;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  overflow: visible;
}

.consultation-dialog::backdrop {
  background: rgba(3, 10, 25, 0.78);
  backdrop-filter: blur(7px);
}

.dialog-card {
  position: relative;
  max-height: 92vh;
  padding: clamp(28px, 5vw, 46px);
  background: #fff;
  border-radius: 28px;
  overflow-y: auto;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.36);
}

.dialog-close {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--muted);
  background: var(--paper);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

.dialog-head > span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.dialog-head h2 {
  margin: 5px 0 8px;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 950;
  line-height: 1.45;
}

.dialog-head p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.78rem;
}

#consultation-form {
  display: grid;
  gap: 14px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

#consultation-form label {
  display: grid;
  gap: 6px;
}

#consultation-form label > span {
  font-size: 0.72rem;
  font-weight: 850;
}

#consultation-form input,
#consultation-form textarea,
#consultation-form select {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 12px;
  outline: none;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

#consultation-form textarea {
  resize: vertical;
}

#consultation-form input:focus,
#consultation-form textarea:focus,
#consultation-form select:focus {
  background: #fff;
  border-color: rgba(13, 71, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(13, 71, 255, 0.08);
}

#consultation-form .is-invalid {
  border-color: #e43b47;
  box-shadow: 0 0 0 4px rgba(228, 59, 71, 0.08);
}

.dialog-submit {
  width: 100%;
  margin-top: 4px;
}

.dialog-result {
  padding: 16px;
  background: #edf9f4;
  border: 1px solid rgba(24, 183, 123, 0.2);
  border-radius: 14px;
}

.dialog-result > span {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  color: #126747;
  font-size: 0.78rem;
  font-weight: 850;
}

.dialog-result > span svg {
  width: 18px;
  height: 18px;
}

.dialog-result > div {
  display: flex;
  gap: 8px;
}

.dialog-result .button {
  flex: 1;
}

.toast {
  position: fixed;
  right: 50%;
  bottom: 25px;
  z-index: 1000;
  max-width: min(90vw, 520px);
  padding: 13px 18px;
  color: #fff;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 20px);
  transition: opacity 0.25s ease, transform 0.25s var(--ease);
  font-size: 0.78rem;
  text-align: center;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(50%, 0);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Final visual system — Peyda, editorial rhythm, conversion polish */
body {
  font-weight: 400;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

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

.section {
  padding-block: clamp(78px, 8vw, 112px);
}

.section-head {
  margin-bottom: 44px;
}

.section-head h2,
.about-intro h2,
.story-sticky h2,
.credentials-copy h2,
.team-copy h2,
.testimonial-stage h2,
.hero-copy h1,
.hero-copy h2,
.brand-statement h2,
.final-cta-card h2 {
  font-weight: 900;
  letter-spacing: -0.018em;
}

.section-head h2,
.about-intro h2,
.story-sticky h2,
.credentials-copy h2,
.team-copy h2,
.testimonial-stage h2 {
  font-size: clamp(2rem, 3.65vw, 3.45rem);
  line-height: 1.28;
}

.section-head p,
.about-intro > p,
.story-sticky > p,
.credentials-copy > p,
.team-copy > p {
  line-height: 1.9;
}

.section-label,
.eyebrow,
.button,
.nav-link,
.offer-type,
.credential-status {
  letter-spacing: 0;
}

.button {
  min-height: 50px;
  border-radius: 15px;
  font-weight: 700;
}

.button-large {
  min-height: 56px;
  padding-inline: 25px;
}

.site-header {
  padding-top: 16px;
}

.nav-main {
  min-height: 70px;
  padding-block: 8px;
  border-radius: 20px;
  background: rgba(6, 18, 42, 0.84);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.16);
}

.brand img {
  width: 46px;
  height: 46px;
}

.brand strong,
.principle-card h3,
.offer-card h3,
.article-copy h3,
.roadmap-step h3 {
  font-weight: 800;
}

.nav-link {
  min-height: 44px;
  font-weight: 600;
}

.header-contact {
  min-width: 188px;
  border-radius: 20px;
  box-shadow: 0 16px 44px rgba(255, 138, 0, 0.22);
}

.header-contact b,
.brand small,
.eyebrow,
.hero-signals,
.section-label {
  font-weight: 600;
}

.hero-slider {
  min-height: 790px;
  background:
    radial-gradient(circle at 82% 18%, rgba(13, 71, 255, 0.22), transparent 32%),
    linear-gradient(145deg, #07152f 0%, #06122b 58%, #030a19 100%);
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 160px;
  background: linear-gradient(to top, rgba(3, 10, 25, 0.44), transparent);
  pointer-events: none;
}

.hero-slide {
  padding: 116px 0 100px;
}

.hero-layout {
  grid-template-columns: minmax(0, 1.04fr) minmax(410px, 0.96fr);
  gap: clamp(48px, 6vw, 84px);
}

.hero-copy h1,
.hero-copy h2 {
  max-width: 720px;
  margin: 20px 0 19px;
  font-size: clamp(3rem, 5.2vw, 4.8rem);
  line-height: 1.13;
}

.hero-copy h2 {
  font-size: clamp(2.8rem, 4.75vw, 4.45rem);
}

.hero-copy > p {
  max-width: 650px;
  color: #c2cde0;
  font-size: 1.04rem;
  line-height: 1.92;
}

.hero-actions {
  margin-top: 30px;
}

.hero-signals {
  margin-top: 25px;
  gap: 17px;
  color: #b8c3d7;
  font-size: 0.76rem;
}

.company-card-main {
  min-height: 440px;
  border-radius: 31px;
  transform: rotateY(3deg) rotateX(1deg);
}

.company-card-body {
  min-height: 365px;
}

.company-float {
  border-radius: 15px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.hero-image-frame {
  min-height: 475px;
}

.hero-image-frame > img {
  height: 475px;
}

.brand-statement h2 {
  font-size: clamp(2.7rem, 4.7vw, 4.5rem);
  line-height: 1.26;
}

.brand-mark-stage {
  min-height: 485px;
}

.slider-controls {
  bottom: 28px;
}

.about-layout,
.story-layout {
  gap: clamp(52px, 7vw, 98px);
}

.principle-card {
  min-height: 176px;
  padding: 27px;
  background: linear-gradient(145deg, #f7f8fb, #f1f3f7);
  border-radius: 20px;
}

.principle-card p,
.roadmap-step p,
.offer-card > p,
.article-copy p {
  line-height: 1.82;
}

.trust-layout {
  gap: 16px;
}

.location-card,
.systems-card {
  min-height: 375px;
  border-radius: 28px;
}

.partner-zone {
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}

.trust-commitments .logo-slot {
  place-items: start;
  align-content: center;
  min-height: 110px;
  padding: 18px;
  text-align: right;
  background: linear-gradient(145deg, #f8f9fc, #f0f3f9);
  border: 1px solid rgba(13, 71, 255, 0.1);
}

.trust-commitments .logo-slot::before {
  width: 54px;
  height: 54px;
  left: -18px;
  top: -17px;
  background: rgba(13, 71, 255, 0.08);
}

.trust-commitments .logo-slot b,
.trust-commitments .logo-slot small {
  position: relative;
  z-index: 1;
}

.trust-commitments .logo-slot b {
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
}

.trust-commitments .logo-slot small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.55;
}

.roadmap-step {
  padding-bottom: 44px;
}

.offer-grid,
.article-grid {
  gap: 18px;
}

.offer-card {
  min-height: 430px;
  padding: 28px;
  border-radius: 21px;
}

.offer-type {
  max-width: 100%;
  font-weight: 600;
}

.offer-card h3 {
  font-size: 1.28rem;
}

.offer-card-cta h3 {
  font-size: 1.48rem;
  line-height: 1.5;
}

.article-card {
  border-radius: 21px;
}

.article-copy h3 {
  line-height: 1.58;
}

.credentials-layout {
  gap: 60px;
}

.credential-card {
  min-height: 255px;
  border-radius: 20px;
}

.credential-card:last-child {
  min-height: 212px;
}

.testimonials-layout {
  gap: 16px;
}

.testimonial-stage,
.testimonial-policy {
  min-height: 418px;
  border-radius: 28px;
}

blockquote.testimonial-placeholder {
  margin-inline: 0;
  border-style: solid;
}

.testimonial-placeholder b {
  font-weight: 700;
}

.team-layout {
  gap: clamp(48px, 7vw, 90px);
}

.team-photo {
  min-height: 520px;
  border-radius: 36px;
}

.team-photo-overlay {
  background: linear-gradient(145deg, rgba(4, 17, 48, 0.72), rgba(3, 10, 25, 0.92));
}

.team-photo-overlay b {
  font-size: 1.18rem;
  font-weight: 800;
}

.team-disciplines span {
  font-weight: 600;
}

.final-cta-card {
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(135deg, #0d47ff, #0636cf);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.final-cta-card h2 {
  line-height: 1.28;
}

.mega-footer {
  padding-top: 94px;
}

.dialog-card {
  border-radius: 26px;
}

.dialog-head h2 {
  font-weight: 900;
}

/* Responsive */
@media (max-width: 1180px) {
  .nav-link { padding-inline: 10px; }
  .header-contact { min-width: 174px; padding-inline: 14px; }
  .header-contact b { font-size: 0.78rem; }
  .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr); gap: 60px; }
  .company-float-one { right: -20px; }
  .company-float-two { left: -20px; }
  .footer-top { grid-template-columns: 1.35fr repeat(2, 0.8fr); }
  .footer-column:nth-child(4), .footer-column:nth-child(5) { margin-top: 15px; }
}

@media (max-width: 1050px) {
  .site-header { padding-top: 12px; }
  .header-shell { gap: 8px; }
  .nav-main { min-height: 68px; }
  .menu-toggle { display: grid; }
  .menu-toggle[aria-expanded="true"] .menu-open-icon { display: none; }
  .menu-toggle[aria-expanded="true"] .menu-close-icon { display: block; }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 115px);
    margin: 0;
    padding: 12px;
    background: rgba(7, 21, 47, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }
  .nav-links.is-open { display: grid; }
  .nav-link { justify-content: space-between; width: 100%; min-height: 50px; padding-inline: 13px; }
  .nav-item { width: 100%; }
  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    margin: 4px 0 10px;
    padding: 9px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 14px;
  }
  .nav-item.is-open .dropdown-menu { display: grid; transform: none; }
  .dropdown-menu::before { display: none; }
  .header-contact { min-width: 64px; padding: 0 18px; justify-content: center; border-radius: 18px; }
  .header-contact span { display: none; }
  .hero-slider { min-height: 900px; }
  .hero-slide { padding-top: 120px; }
  .hero-layout { grid-template-columns: 1fr; gap: 46px; }
  .hero-copy { max-width: 760px; }
  .hero-copy h1, .hero-copy h2 { max-width: 780px; }
  .hero-company-visual, .hero-image-frame, .brand-mark-stage { display: none; }
  .hero-layout-mark { grid-template-columns: 1fr; }
  .about-layout, .story-layout, .credentials-layout, .team-layout { grid-template-columns: 1fr; }
  .about-intro, .story-sticky { position: static; }
  .about-intro, .story-sticky, .credentials-copy, .team-copy { max-width: 780px; }
  .trust-layout { grid-template-columns: 1fr; }
  .partner-logos { grid-template-columns: repeat(3, 1fr); }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .article-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
  .article-featured .article-cover { height: 100%; min-height: 350px; }
  .testimonials-layout { grid-template-columns: 1fr; }
  .testimonial-stage, .testimonial-policy { min-height: auto; }
  .team-photo { min-height: 500px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 26px), var(--max-width)); }
  .section { padding-block: 76px; }
  .header-contact { min-width: 58px; padding: 0 15px; }
  .nav-main { padding: 8px 10px; border-radius: 18px; }
  .brand img { width: 44px; height: 44px; }
  .brand small { display: none; }
  .brand strong { font-size: 1rem; }
  .hero-slider { min-height: 820px; }
  .hero-slide { padding: 125px 0 110px; align-items: start; }
  .hero-layout { gap: 35px; }
  .hero-copy h1, .hero-copy h2 { margin-top: 21px; font-size: clamp(2.55rem, 12vw, 4rem); line-height: 1.22; }
  .hero-copy > p { font-size: 0.94rem; line-height: 1.95; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-signals { gap: 12px 18px; }
  .slider-controls { bottom: 22px; }
  .slider-dots button { width: 34px; }
  .slider-count { display: none; }
  .slider-arrows { margin-right: auto; }
  .section-head-split, .section-head-row { grid-template-columns: 1fr; gap: 24px; }
  .section-head-row { align-items: start; }
  .section-head-row .button { justify-self: start; }
  .section-head h2, .about-intro h2, .story-sticky h2, .credentials-copy h2, .team-copy h2, .testimonial-stage h2 { font-size: clamp(1.85rem, 8vw, 2.8rem); }
  .section-head p, .about-intro > p, .story-sticky > p, .credentials-copy > p, .team-copy > p { font-size: 0.92rem; }
  .principle-card { grid-template-columns: 58px 1fr; padding: 23px; }
  .principle-icon { width: 49px; height: 49px; border-radius: 14px; }
  .principle-icon svg { width: 23px; height: 23px; }
  .partner-head { align-items: start; flex-direction: column; gap: 12px; }
  .partner-logos { grid-template-columns: repeat(2, 1fr); }
  .location-card, .systems-card { padding: 16px; border-radius: 24px; }
  .location-map { min-height: 210px; }
  .roadmap-step { grid-template-columns: 52px 1fr; gap: 17px; padding-bottom: 42px; }
  .roadmap::before { right: 25px; }
  .roadmap-number { width: 52px; height: 52px; border-radius: 15px; }
  .roadmap-step h3 { font-size: 1.1rem; }
  .roadmap-step p { font-size: 0.86rem; }
  .offer-grid, .article-grid { grid-template-columns: 1fr; }
  .offer-card { min-height: 390px; }
  .article-featured { grid-column: auto; display: block; }
  .article-featured .article-cover, .article-cover { height: 225px; min-height: 0; }
  .credential-grid { grid-template-columns: 1fr; }
  .credential-card:last-child { grid-column: auto; min-height: 270px; }
  .testimonial-stage, .testimonial-policy { padding: 28px; border-radius: 24px; }
  .team-photo { min-height: 430px; border-radius: 28px; }
  .team-photo-caption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .final-cta { padding-top: 14px; }
  .final-cta-card { align-items: stretch; flex-direction: column; border-radius: 24px; }
  .final-cta-card .button { width: 100%; }
  .footer-top { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .footer-intro { grid-column: 1 / -1; }
  .footer-middle, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-middle { padding-block: 24px; }
  .footer-links { flex-wrap: wrap; }
  .footer-bottom { justify-content: center; min-height: 110px; padding-block: 20px; }
  .field-row { grid-template-columns: 1fr; }
  .dialog-result > div { flex-direction: column; }
}

@media (max-width: 460px) {
  .header-contact { display: none; }
  .hero-slider { min-height: 850px; }
  .hero-copy h1, .hero-copy h2 { font-size: 2.5rem; }
  .hero-signals { display: grid; }
  .slider-arrows button { width: 40px; height: 40px; }
  .principle-card { grid-template-columns: 1fr; }
  .principle-icon { margin-bottom: 17px; }
  .partner-logos { grid-template-columns: 1fr; }
  .logo-slot { min-height: 88px; }
  .offer-card { padding: 24px; }
  .offer-card .card-link { right: 24px; }
  .team-symbols i { width: 44px; }
  .team-symbols i::before { right: 5px; width: 34px; height: 34px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-intro { grid-column: auto; }
  .dialog-card { padding: 26px 20px; border-radius: 22px; }
  .dialog-head { padding-left: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .hero-slider { min-height: 800px; }
  .hero-slide { padding-top: 124px; }
  .hero-copy { max-width: 780px; }
  .partner-logos { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .section { padding-block: 68px; }
  .hero-slider { min-height: 800px; }
  .hero-slide { padding: 122px 0 92px; }
  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(2.45rem, 11.2vw, 3.65rem);
    line-height: 1.19;
  }
  .hero-copy > p { line-height: 1.86; }
  .hero-signals { margin-top: 22px; }
  .section-head { margin-bottom: 36px; }
  .section-head h2,
  .about-intro h2,
  .story-sticky h2,
  .credentials-copy h2,
  .team-copy h2,
  .testimonial-stage h2 {
    font-size: clamp(1.85rem, 7.8vw, 2.65rem);
    line-height: 1.34;
  }
  .offer-card { min-height: 440px; }
  .partner-logos { grid-template-columns: repeat(2, 1fr); }
  .team-photo { min-height: 410px; }
}

@media (max-width: 460px) {
  .header-contact {
    display: flex;
    min-width: 54px;
    width: 54px;
    padding: 0;
  }
  .hero-slider { min-height: 830px; }
  .hero-copy h1,
  .hero-copy h2 { font-size: 2.42rem; }
  .partner-logos { grid-template-columns: 1fr; }
  .trust-commitments .logo-slot { min-height: 86px; }
}

/* Responsive refinement — Website 2 mobile principles */
@media (max-width: 1024px) {
  .nav-links {
    max-height: calc(100svh - 104px);
    overscroll-behavior: contain;
  }

  .dropdown-menu a,
  .footer-column a,
  .footer-column button {
    min-height: 44px;
  }

  .hero-slider {
    min-height: 780px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.72;
  }

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

  .section {
    padding-block: clamp(54px, 14vw, 66px);
  }

  .button {
    min-height: 46px;
    padding-inline: 16px;
    gap: 8px;
    border-radius: 13px;
    font-size: 0.84rem;
    line-height: 1.45;
    text-align: center;
  }

  .button-large {
    min-height: 48px;
    padding-inline: 18px;
    border-radius: 14px;
  }

  .button svg,
  .card-link svg,
  .text-link svg,
  .article-copy button svg {
    width: 17px;
    height: 17px;
  }

  .text-link,
  .card-link,
  .article-copy button {
    min-height: 44px;
    font-size: 0.84rem;
  }

  .site-header {
    padding-top: max(10px, env(safe-area-inset-top));
    padding-right: env(safe-area-inset-right);
    padding-left: env(safe-area-inset-left);
  }

  .header-shell {
    gap: 7px;
  }

  .nav-main {
    min-height: 60px;
    padding: 6px 8px;
    border-radius: 16px;
  }

  .brand {
    gap: 8px;
    min-width: 0;
  }

  .brand img {
    width: 39px;
    height: 39px;
  }

  .brand strong {
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .menu-toggle {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .header-contact {
    display: flex;
    min-width: 46px;
    width: 46px;
    min-height: 46px;
    padding: 0;
    justify-content: center;
    border-radius: 15px;
  }

  .header-contact svg {
    width: 21px;
    height: 21px;
  }

  .nav-links {
    top: calc(100% + 7px);
    max-height: calc(100svh - 86px);
    padding: 9px;
    border-radius: 15px;
  }

  .nav-link {
    min-height: 46px;
    padding-inline: 11px;
    font-size: 0.84rem;
  }

  .dropdown-menu {
    margin-bottom: 7px;
    padding: 7px;
    border-radius: 12px;
  }

  .dropdown-menu a {
    gap: 9px;
    padding: 9px;
    border-radius: 11px;
  }

  .dropdown-menu a > svg {
    width: 34px;
    height: 34px;
    padding: 8px;
  }

  .dropdown-menu a b {
    font-size: 0.82rem;
  }

  .dropdown-menu a small {
    font-size: 0.67rem;
  }

  .hero-slider {
    min-height: 760px;
  }

  .hero-slide {
    padding: 108px 0 76px;
  }

  .hero-layout {
    gap: 26px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    margin: 17px 0 14px;
    max-width: 100%;
    font-size: clamp(2rem, 8.7vw, 2.55rem);
    line-height: 1.24;
    letter-spacing: -0.012em;
    overflow-wrap: anywhere;
  }

  .hero-copy > p {
    max-width: 100%;
    font-size: 0.88rem;
    line-height: 1.82;
  }

  .eyebrow {
    gap: 8px;
    font-size: 0.72rem;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 23px;
  }

  .hero-signals {
    gap: 9px 14px;
    margin-top: 18px;
    font-size: 0.69rem;
    line-height: 1.55;
  }

  .slider-controls {
    right: 12px;
    bottom: 17px;
    left: 12px;
    justify-content: space-between;
    gap: 12px;
    transform: none;
  }

  .slider-dots button {
    width: 28px;
  }

  .slider-arrows {
    margin-right: 0;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .section-head h2,
  .about-intro h2,
  .story-sticky h2,
  .credentials-copy h2,
  .team-copy h2,
  .testimonial-stage h2 {
    font-size: clamp(1.55rem, 6.5vw, 2.05rem);
    line-height: 1.38;
    letter-spacing: -0.008em;
    overflow-wrap: anywhere;
  }

  .section-head p,
  .about-intro > p,
  .story-sticky > p,
  .credentials-copy > p,
  .team-copy > p {
    margin-top: 14px;
    font-size: 0.87rem;
    line-height: 1.82;
  }

  .section-label {
    gap: 9px;
    margin-bottom: 13px;
    font-size: 0.72rem;
  }

  .section-label span {
    width: 30px;
    height: 30px;
    font-size: 0.66rem;
  }

  .principle-card,
  .partner-zone,
  .testimonial-stage,
  .testimonial-policy {
    padding: 21px;
  }

  .principle-card {
    min-height: auto;
  }

  .location-card,
  .systems-card {
    min-height: auto;
    padding: 14px;
    border-radius: 20px;
  }

  .location-map {
    min-height: 185px;
  }

  .location-map > b {
    font-size: 3.4rem;
  }

  .location-copy {
    padding: 18px 6px 3px;
  }

  .location-copy h3,
  .partner-head h3 {
    font-size: 1.13rem;
  }

  .location-copy p,
  .partner-head p {
    font-size: 0.78rem;
  }

  .system-list > div {
    min-height: 72px;
    gap: 11px;
    padding: 10px;
  }

  .system-list i {
    width: 43px;
    height: 43px;
  }

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

  .roadmap-step {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding-bottom: 34px;
  }

  .roadmap::before {
    right: 22px;
  }

  .roadmap-number {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    font-size: 0.68rem;
  }

  .roadmap-step h3 {
    font-size: 1rem;
  }

  .roadmap-step p {
    font-size: 0.82rem;
    line-height: 1.8;
  }

  .offer-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 22px;
    border-radius: 18px;
  }

  .offer-card:not(.offer-card-cta) .card-link {
    position: static;
    margin-top: auto;
    padding-top: 20px;
  }

  .offer-card h3,
  .offer-card-cta h3 {
    font-size: 1.12rem;
  }

  .offer-card > p,
  .offer-card li {
    font-size: 0.82rem;
  }

  .offer-icon {
    width: 50px;
    height: 50px;
    margin-top: 20px;
  }

  .article-featured .article-cover,
  .article-cover {
    height: 190px;
  }

  .article-copy {
    padding: 20px;
  }

  .article-copy h3,
  .article-featured .article-copy h3 {
    font-size: 1.04rem;
  }

  .credential-card,
  .credential-card:last-child {
    min-height: 230px;
    padding: 21px;
  }

  .testimonial-stage,
  .testimonial-policy {
    min-height: auto;
    border-radius: 20px;
  }

  .testimonial-policy h3 {
    font-size: 1.2rem;
  }

  .team-photo {
    min-height: 360px;
    border-radius: 24px;
  }

  .team-photo-overlay b {
    font-size: 1rem;
  }

  .final-cta-card {
    gap: 24px;
    padding: 25px 21px;
    border-radius: 20px;
  }

  .final-cta-card h2 {
    font-size: clamp(1.55rem, 6.6vw, 2rem);
  }

  .final-cta-card p {
    font-size: 0.86rem;
  }

  .mega-footer {
    padding-top: 66px;
  }

  .footer-top {
    gap: 28px 18px;
    padding-bottom: 40px;
  }

  .footer-column {
    gap: 2px;
  }

  .footer-column h3 {
    margin-bottom: 7px;
    font-size: 0.84rem;
  }

  .footer-column a,
  .footer-column button {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
  }

  .consultation-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
  }

  .dialog-card {
    max-height: calc(100svh - 20px);
    padding: 48px 19px 22px;
    border-radius: 20px;
  }

  .dialog-close {
    top: 10px;
    left: 10px;
    width: 44px;
    height: 44px;
  }

  .dialog-head {
    padding-left: 32px;
  }

  .dialog-head h2 {
    font-size: 1.48rem;
  }

  #consultation-form input,
  #consultation-form textarea,
  #consultation-form select {
    min-height: 48px;
    font-size: 16px;
  }

  .toast {
    bottom: max(12px, env(safe-area-inset-bottom));
    padding: 11px 14px;
    font-size: 0.72rem;
  }
}

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

  .button {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 0.8rem;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .header-contact {
    min-width: 44px;
    width: 44px;
    min-height: 44px;
  }

  .hero-slider {
    min-height: 730px;
  }

  .hero-slide {
    padding: 101px 0 70px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(1.9rem, 8.2vw, 2.2rem);
    line-height: 1.28;
  }

  .hero-copy > p {
    font-size: 0.84rem;
  }

  .hero-signals {
    display: grid;
  }

  .section-head h2,
  .about-intro h2,
  .story-sticky h2,
  .credentials-copy h2,
  .team-copy h2,
  .testimonial-stage h2 {
    font-size: clamp(1.48rem, 6.7vw, 1.82rem);
  }

  .principle-card,
  .partner-zone,
  .offer-card,
  .testimonial-stage,
  .testimonial-policy {
    padding: 18px;
  }

  .partner-logos {
    grid-template-columns: 1fr;
  }

  .trust-commitments .logo-slot {
    min-height: 82px;
  }

  .article-featured .article-cover,
  .article-cover {
    height: 174px;
  }

  .article-copy {
    padding: 18px;
  }

  .testimonial-placeholder {
    align-items: flex-start;
  }

  .testimonial-placeholder i {
    width: 42px;
    height: 42px;
  }

  .team-photo {
    min-height: 330px;
  }

  .team-symbols i {
    width: 38px;
  }

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

  .footer-intro {
    grid-column: auto;
  }

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

@media (max-width: 360px) {
  .header-contact {
    display: none;
  }

  .brand strong {
    font-size: 0.82rem;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 1.82rem;
  }

  .hero-signals {
    font-size: 0.66rem;
  }

  .section-head h2,
  .about-intro h2,
  .story-sticky h2,
  .credentials-copy h2,
  .team-copy h2,
  .testimonial-stage h2 {
    font-size: 1.43rem;
  }
}

@media (hover: none) {
  .button:hover,
  .header-contact:hover,
  .dropdown-menu a:hover,
  .offer-card:hover,
  .article-card:hover,
  .footer-column a:hover,
  .footer-column button:hover {
    transform: none;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .nav-links {
    max-height: calc(100svh - 76px);
  }

  .hero-slider {
    min-height: 650px;
  }

  .hero-slide {
    padding: 92px 0 64px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 2rem;
  }
}

@media (prefers-contrast: more) {
  .nav-main,
  .dropdown-menu,
  .offer-card,
  .article-card,
  .credential-card {
    border-width: 2px;
  }

  .hero-copy > p,
  .hero-signals,
  .section-head p,
  .about-intro > p,
  .story-sticky > p,
  .team-copy > p {
    color: currentColor;
    opacity: 0.9;
  }
}

/* Simplified hero composition and standard mobile navigation */
.mobile-menu-head,
.mobile-menu-label,
.mobile-menu-contact,
.menu-backdrop {
  display: none;
}

.hero-slider {
  min-height: 700px;
}

.hero-slide {
  padding: 126px 0 102px;
}

.hero-layout,
.hero-layout-mark {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.hero-copy,
.brand-statement {
  max-width: 920px;
}

.hero-copy h1,
.hero-copy h2,
.brand-statement h2 {
  max-width: 880px;
}

.brand-statement p {
  max-width: 720px;
}

@media (max-width: 1050px) {
  body.menu-is-open {
    overflow: hidden;
  }

  .header-shell {
    display: block;
  }

  .nav-main {
    min-height: 64px;
    padding: 7px 9px;
    border-radius: 18px;
    backdrop-filter: none;
  }

  .header-contact {
    display: none !important;
  }

  .menu-toggle {
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-right: auto;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 13px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .menu-toggle svg {
    width: 22px;
    height: 22px;
  }

  .menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 108;
    display: block;
    padding: 0;
    background: rgba(2, 8, 23, 0.64);
    border: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(5px);
    transition: opacity 0.24s ease, visibility 0.24s ease;
  }

  body.menu-is-open .menu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links {
    position: fixed;
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    left: auto;
    z-index: 109;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    width: min(88vw, 390px);
    max-height: none;
    margin: 0;
    padding: 12px;
    color: var(--navy);
    background: #fff;
    border: 1px solid rgba(7, 21, 47, 0.1);
    border-radius: 26px;
    box-shadow: 0 30px 100px rgba(0, 8, 30, 0.32);
    opacity: 0;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    touch-action: pan-y;
    pointer-events: none;
    transform: translateX(calc(100% + 32px));
    transition: transform 0.32s var(--ease), opacity 0.24s ease, visibility 0.32s ease;
  }

  .nav-links.is-open {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .mobile-menu-head {
    position: sticky;
    top: -12px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    margin: -12px -12px 6px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(7, 21, 47, 0.08);
    backdrop-filter: blur(12px);
  }

  .mobile-menu-head > span {
    display: grid;
    gap: 2px;
  }

  .mobile-menu-head small {
    color: var(--muted);
    font-size: 0.65rem;
  }

  .mobile-menu-head b {
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 850;
  }

  .mobile-menu-close {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--navy);
    background: #f1f4f9;
    border: 1px solid rgba(7, 21, 47, 0.08);
    border-radius: 13px;
    cursor: pointer;
  }

  .mobile-menu-close svg {
    width: 20px;
    height: 20px;
  }

  .mobile-menu-label {
    display: block;
    padding: 9px 11px 4px;
    color: #8590a3;
    font-size: 0.66rem;
    font-weight: 700;
  }

  .nav-links > .nav-link,
  .nav-item > .nav-link {
    justify-content: space-between;
    width: 100%;
    min-height: 50px;
    padding: 10px 12px;
    color: #26344d;
    background: transparent;
    border: 0;
    border-radius: 13px;
    font-size: 0.86rem;
    font-weight: 750;
  }

  .nav-links > .nav-link:hover,
  .nav-links > .nav-link.is-active,
  .nav-item.is-open > .nav-link {
    color: var(--blue);
    background: var(--blue-soft);
  }

  .nav-item {
    width: 100%;
  }

  .dropdown-menu,
  .magazine-menu {
    position: static;
    display: none;
    width: 100%;
    margin: 3px 0 8px;
    padding: 7px;
    color: var(--ink);
    background: #f5f7fb;
    border: 1px solid rgba(7, 21, 47, 0.06);
    border-radius: 14px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-item.is-open .dropdown-menu {
    display: grid;
    transform: none;
  }

  .dropdown-menu::before,
  .dropdown-eyebrow {
    display: none;
  }

  .dropdown-menu a {
    min-height: 50px;
    gap: 9px;
    padding: 9px 10px;
    color: #2d3950;
    border-radius: 11px;
  }

  .dropdown-menu a + a {
    border-top: 1px solid rgba(7, 21, 47, 0.06);
  }

  .dropdown-menu a:hover {
    background: #fff;
    transform: none;
  }

  .dropdown-menu a > svg {
    width: 34px;
    height: 34px;
    padding: 8px;
  }

  .dropdown-menu a b {
    font-size: 0.8rem;
  }

  .dropdown-menu a small {
    font-size: 0.66rem;
    line-height: 1.55;
  }

  .mobile-menu-contact {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 10px;
    min-height: 68px;
    margin-top: auto;
    padding: 11px;
    color: #fff;
    background: linear-gradient(135deg, #0d47ff, #0638d1);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(13, 71, 255, 0.2);
  }

  .mobile-menu-contact > svg {
    width: 42px;
    height: 42px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
  }

  .mobile-menu-contact > span {
    display: grid;
    gap: 2px;
  }

  .mobile-menu-contact small {
    color: #bfcfff;
    font-size: 0.62rem;
  }

  .mobile-menu-contact b {
    font-size: 0.84rem;
  }

  .mobile-menu-contact i {
    display: grid;
    place-items: center;
    font-style: normal;
  }

  .mobile-menu-contact i svg {
    width: 18px;
    height: 18px;
  }

  .hero-slider {
    min-height: 680px;
  }

  .hero-slide {
    padding: 116px 0 92px;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    min-height: 710px;
  }

  .hero-slide {
    padding: 104px 0 84px;
  }

  .hero-copy,
  .brand-statement {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .nav-links {
    top: max(8px, env(safe-area-inset-top));
    right: max(8px, env(safe-area-inset-right));
    bottom: max(8px, env(safe-area-inset-bottom));
    width: calc(100% - 16px);
    border-radius: 22px;
  }

  .hero-slider {
    min-height: 720px;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .nav-links {
    top: 6px;
    bottom: 6px;
  }

  .hero-slider {
    min-height: 600px;
  }

  .hero-slide {
    padding: 90px 0 64px;
  }
}

/* Homepage refinement: slider, trust center, map and community feedback */
.brand img {
  border-radius: 30%;
}

.section-label span svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.9;
}

.slider-controls {
  justify-content: space-between;
  gap: 24px;
}

.slider-navigation {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.slider-navigation .slider-count {
  min-width: 88px;
  padding-inline: 9px 3px;
}

.slider-navigation .slider-arrows {
  margin-right: 0;
}

.slider-navigation .slider-arrows button {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.location-card,
.systems-card {
  min-height: 0;
}

.location-map {
  min-height: 244px;
  background: #e8edf4;
  border-color: rgba(255, 255, 255, 0.14);
}

.location-map::before {
  display: none;
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 244px;
  border: 0 !important;
}

.trust-center-intro {
  max-width: 820px;
  margin-bottom: 42px;
}

.trust-center-intro h2,
.testimonials-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3.65vw, 3.45rem);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: -0.018em;
}

.trust-center-intro p {
  max-width: 690px;
  margin: 17px 0 0;
  color: #aebbd2;
  line-height: 1.9;
}

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

.trust-logo-card {
  overflow: hidden;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.14);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.trust-logo-media {
  display: grid;
  place-items: center;
  min-height: 166px;
  padding: 17px;
  background: #fff;
  border-bottom: 1px solid rgba(7, 21, 47, 0.08);
}

.trust-logo-media img {
  width: 100%;
  height: 132px;
  object-fit: contain;
}

.trust-logo-card > div:last-child {
  padding: 21px 22px 23px;
}

.trust-logo-card span {
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 750;
}

.trust-logo-card h3 {
  margin: 5px 0 0;
  font-size: 1.06rem;
  line-height: 1.55;
}

@media (hover: hover) {
  .trust-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
  }
}

.testimonials-section {
  overflow: hidden;
  background: linear-gradient(180deg, #f7f4ee 0%, #f1f3f8 100%);
}

.testimonials-heading {
  margin-bottom: 38px;
}

.testimonials-heading h2 {
  max-width: 760px;
  color: var(--navy);
}

.testimonial-marquee {
  display: grid;
  gap: 16px;
  direction: ltr;
}

.testimonial-row {
  width: 100%;
  padding-block: 2px;
  overflow: hidden;
  touch-action: pan-y;
}

.testimonial-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation-duration: var(--marquee-duration, 62s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-play-state: paused;
  will-change: transform;
  backface-visibility: hidden;
}

.testimonial-track.is-ready {
  animation-play-state: running;
}

.testimonial-group {
  box-sizing: border-box;
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-start;
  gap: 16px;
  width: max-content;
  min-width: 100vw;
  padding-inline: 8px;
}

.testimonial-row-left .testimonial-track {
  animation-name: testimonial-drift-left;
}

.testimonial-row-right .testimonial-track {
  animation-name: testimonial-drift-right;
}

.testimonial-row:hover .testimonial-track,
.testimonial-row:focus-within .testimonial-track,
.testimonial-row:active .testimonial-track {
  animation-play-state: paused;
}

@keyframes testimonial-drift-left {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(var(--marquee-distance, 50%) * -1), 0, 0); }
}

@keyframes testimonial-drift-right {
  from { transform: translate3d(calc(var(--marquee-distance, 50%) * -1), 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

.testimonial-card {
  direction: rtl;
  display: flex;
  flex: 0 0 clamp(300px, 26vw, 390px);
  flex-direction: column;
  min-height: 238px;
  padding: 23px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(7, 21, 47, 0.09);
  border-radius: 21px;
  box-shadow: 0 14px 38px rgba(7, 21, 47, 0.055);
}

.testimonial-card header h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 850;
}

.testimonial-card header span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.69rem;
}

.testimonial-rating {
  margin-top: 14px;
  color: var(--orange);
  font-family: Arial, sans-serif;
  font-size: 0.89rem;
  letter-spacing: 0.08em;
}

.testimonial-card > p {
  flex: 1;
  margin: 13px 0 19px;
  color: #4f5b6f;
  font-size: 0.82rem;
  line-height: 1.9;
}

.testimonial-card footer {
  display: flex;
  gap: 8px;
  padding-top: 13px;
  border-top: 1px solid rgba(7, 21, 47, 0.07);
}

.feedback-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 54px;
  min-height: 38px;
  padding: 7px 10px;
  color: #6a7588;
  background: #f4f6f9;
  border: 1px solid rgba(7, 21, 47, 0.07);
  border-radius: 11px;
  font-size: 0.7rem;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.feedback-action svg {
  width: 17px;
  height: 17px;
}

.feedback-action:hover {
  color: var(--blue);
  background: var(--blue-soft);
  border-color: rgba(13, 71, 255, 0.16);
}

.feedback-action[aria-pressed="true"] {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.feedback-action:active {
  transform: scale(0.96);
}

@media (max-width: 900px) {
  .trust-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-logo-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .slider-controls {
    right: 12px;
    left: 12px;
    width: auto;
    gap: 10px;
    transform: none;
  }

  .slider-navigation {
    gap: 5px;
    padding: 4px;
    border-radius: 13px;
  }

  .slider-navigation .slider-count {
    display: flex !important;
    min-width: 68px;
    gap: 7px;
    padding-inline: 7px 2px;
    font-size: 0.65rem;
  }

  .slider-navigation .slider-count i {
    width: 18px;
  }

  .slider-navigation .slider-arrows {
    margin-right: 0;
  }

  .slider-navigation .slider-arrows button {
    width: 36px;
    height: 36px;
  }

  .location-map,
  .location-map iframe {
    min-height: 225px;
    height: 225px;
  }

  .trust-center-intro {
    margin-bottom: 29px;
  }

  .trust-center-intro h2,
  .testimonials-heading h2 {
    font-size: clamp(1.55rem, 6.5vw, 2.05rem);
    line-height: 1.38;
  }

  .trust-center-intro p {
    margin-top: 13px;
    font-size: 0.86rem;
    line-height: 1.82;
  }

  .trust-logo-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-logo-card:last-child {
    grid-column: auto;
  }

  .trust-logo-card {
    display: grid;
    grid-template-columns: minmax(126px, 0.45fr) minmax(0, 0.55fr);
    align-items: stretch;
    border-radius: 18px;
  }

  .trust-logo-media {
    min-height: 126px;
    padding: 12px;
    border-bottom: 0;
    border-left: 1px solid rgba(7, 21, 47, 0.08);
  }

  .trust-logo-media img {
    height: 96px;
  }

  .trust-logo-card > div:last-child {
    align-self: center;
    padding: 17px;
  }

  .trust-logo-card h3 {
    font-size: 0.92rem;
  }

  .testimonials-heading {
    margin-bottom: 27px;
  }

  .testimonial-marquee {
    gap: 12px;
  }

  .testimonial-group {
    gap: 12px;
  }

  .testimonial-track {
    animation-duration: 68s;
  }

  .testimonial-card {
    flex-basis: min(82vw, 315px);
    min-height: 225px;
    padding: 19px;
    border-radius: 17px;
  }

  .testimonial-card > p {
    font-size: 0.78rem;
  }

  .feedback-action {
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  .slider-dots {
    gap: 5px;
  }

  .slider-dots button {
    width: 22px;
  }

  .slider-navigation .slider-count {
    min-width: 58px;
    padding-inline: 5px 0;
  }

  .slider-navigation .slider-count i {
    width: 12px;
  }

  .slider-navigation .slider-arrows {
    gap: 4px;
  }

  .slider-navigation .slider-arrows button {
    width: 34px;
    height: 34px;
  }

  .trust-logo-card {
    grid-template-columns: 116px minmax(0, 1fr);
  }

  .trust-logo-media {
    min-height: 116px;
    padding: 9px;
  }

  .trust-logo-media img {
    height: 88px;
  }

  .trust-logo-card > div:last-child {
    padding: 14px;
  }

  .trust-logo-card span {
    font-size: 0.61rem;
  }

  .trust-logo-card h3 {
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-row {
    padding-bottom: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .testimonial-track {
    animation: none;
    transform: none;
    will-change: auto;
  }

  .testimonial-group[data-marquee-clone="true"] {
    display: none;
  }
}
