@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --bg-main: #eef2f8;
  --surface: #ffffff;
  --surface-soft: #edf2f9;
  --surface-muted: #e4ebf5;
  --text-main: #0d1326;
  --text-secondary: #51607a;
  --text-light: #7f8da8;
  --primary: #2f66f5;
  --primary-deep: #1f53db;
  --success: #0fdb9b;
  --navy: #071334;
  --line: #d5deec;
  --shadow-soft: 0 20px 48px rgba(15, 30, 58, 0.07);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: "Manrope", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3,
.brand-name {
  font-family: "Sora", "Manrope", sans-serif;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  min-height: 46px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: 0.24s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-deep);
}

.btn-sm {
  min-height: 38px;
  padding: 0 18px;
  border-radius: 9px;
  font-size: 13px;
}

.btn-soft {
  background: var(--surface);
  color: #0f1a33;
  border-color: var(--line);
}

.btn-soft:hover {
  background: #f7f9fc;
}

.btn-success {
  background: linear-gradient(135deg, #0fd894, #08c684);
  color: #fff;
}

.btn-success:hover {
  filter: brightness(0.95);
}

.btn-outline {
  background: transparent;
  border-color: rgba(226, 233, 255, 0.3);
  color: #fff;
}

.btn-outline:hover {
  border-color: rgba(226, 233, 255, 0.6);
}

.btn-block {
  width: 100%;
}

.arrow {
  font-size: 20px;
  line-height: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: #00a768;
  font-size: 11px;
  letter-spacing: 0.24em;
  font-weight: 800;
}

.desktop-site {
  display: block;
}

.topbar {
  border-bottom: 1px solid #cfdcf0;
  background: linear-gradient(90deg, rgba(229, 239, 255, 0.96), rgba(236, 246, 255, 0.96));
  backdrop-filter: blur(4px);
}

.topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 19px;
  height: 19px;
  border-radius: 2px;
  background: linear-gradient(145deg, #f2e4cd, #d8b98a);
  color: #7b5b2d;
  font-size: 10px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.brand-mark-dark {
  background: #11253f;
  color: #d5e0ee;
}

.brand-mark-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-mark-img-dark {
  width: 28px;
  height: 28px;
}

.brand-name {
  font-size: 19px;
  font-weight: 700;
  color: #111a2f;
}

.about-footer .brand-name {
  color: #f5f8ff;
}

.top-links {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  color: #5f6d86;
}

.top-links a {
  transition: color 0.2s ease;
}

.top-links a:hover {
  color: #1b2f5d;
}

.top-links a.is-active {
  color: #214eaf;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.top-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero {
  padding: 62px 0 86px;
  background: linear-gradient(180deg, #edf2fa 0%, #f2f5fb 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

.pill {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #0a9f63;
  background: rgba(22, 208, 134, 0.18);
}

.pill::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: #0ab877;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(48px, 5.2vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.hero-copy h1 .accent {
  color: var(--primary);
}

.hero-lead {
  margin: 24px 0 28px;
  max-width: 580px;
  color: #4c5d79;
  font-size: 24px;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.trust-row {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6a7992;
  font-size: 12px;
}

.trust-bubbles {
  display: flex;
}

.trust-bubbles span {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  border: 2px solid #f5f6f8;
  margin-left: -7px;
}

.trust-bubbles span:first-child {
  margin-left: 0;
  background: #13b679;
}

.trust-bubbles span:nth-child(2) {
  background: #20b8dd;
}

.trust-bubbles span:nth-child(3) {
  background: #2f66f5;
}

.hero-window {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #162347;
  box-shadow: var(--shadow-soft);
  background: #0d1d42;
}

.hero-media {
  width: 100%;
  height: 422px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.section {
  padding: 72px 0;
}

.products {
  background: #f6f8fd;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.section-head h2 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.14;
}

.section-link {
  color: #255cf0;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: linear-gradient(180deg, #dce9ff 0%, #d2e3ff 100%);
  border: 1px solid #b9cdef;
  border-radius: 14px;
  padding: 18px;
}

.icon-chip {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
}

.icon-chip svg {
  width: 20px;
}

.icon-chip-logo {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.icon-blue {
  background: #dce7ff;
}

.icon-blue svg {
  fill: #2d68f6;
}

.icon-green {
  background: #dcf6ef;
}

.icon-green svg {
  fill: #0ca971;
}

.icon-cyan {
  background: #def1ff;
}

.icon-cyan svg {
  fill: #1687db;
}

.product-card h3 {
  margin: 14px 0 10px;
  font-size: 24px;
  line-height: 1.2;
}

.product-card p {
  margin: 0;
  color: #5f6d87;
  font-size: 14px;
  line-height: 1.5;
  min-height: 84px;
}

.product-art {
  position: relative;
  margin-top: 14px;
  height: 140px;
  border-radius: 8px;
  overflow: hidden;
}

.product-art-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.art-fluxia {
  background:
    linear-gradient(130deg, #4e6c69, #2e5457);
}

.art-fluxia::before,
.art-fluxia::after {
  content: "";
  position: absolute;
  border-radius: 46px;
  background: linear-gradient(180deg, #204748, #375f5e);
}

.art-fluxia::before {
  width: 140px;
  height: 240px;
  left: 30px;
  top: -32px;
  transform: rotate(-26deg);
}

.art-fluxia::after {
  width: 120px;
  height: 220px;
  left: 80px;
  top: -20px;
  transform: rotate(12deg);
}

.art-gear {
  background: linear-gradient(138deg, #5a8e93, #447f86);
}

.art-gear::before {
  content: "";
  position: absolute;
  width: 66px;
  height: 66px;
  left: 54px;
  top: 44px;
  border-radius: 50%;
  box-shadow:
    0 0 0 12px rgba(234, 247, 247, 0.92) inset,
    0 0 0 5px rgba(68, 127, 134, 0.64);
  background: #fff;
}

.art-gear::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 42px;
  top: 28px;
  border-left: 22px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 28px solid rgba(255, 255, 255, 0.9);
  transform: rotate(-16deg);
}

.art-tax {
  background: linear-gradient(148deg, #76a9a8, #5f9494);
}

.art-tax::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 96px;
  left: 20px;
  bottom: -16px;
  background: rgba(246, 251, 250, 0.9);
  clip-path: polygon(0 30%, 22% 20%, 48% 0, 74% 24%, 100% 20%, 84% 100%, 30% 90%);
}

.art-tax::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 60px;
  left: 64px;
  top: 42px;
  background:
    radial-gradient(circle, rgba(59, 114, 129, 0.35) 24%, transparent 26%) 0 0 / 40px 30px,
    linear-gradient(90deg, rgba(59, 114, 129, 0.4), rgba(59, 114, 129, 0.4)) 16px 29px / 98px 2px no-repeat;
}

.services-zone {
  background: #e8eef7;
  padding: 72px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.services-collage {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 12px;
}

.collage-main {
  min-height: 352px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid #2a4f86;
  background: #071b38;
  overflow: hidden;
  position: relative;
}

.collage-main span {
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.collage-main strong {
  margin-top: 8px;
  font-size: 54px;
  line-height: 1;
  font-family: "Sora", sans-serif;
}

.collage-main small {
  margin-top: 4px;
  font-size: 11px;
  color: #5e7880;
}

.hands-shape {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  height: 110px;
  border-radius: 999px 999px 18px 18px;
  background:
    radial-gradient(circle at 24% 80%, #d59f7d 0 18%, transparent 19%),
    radial-gradient(circle at 76% 80%, #d59f7d 0 18%, transparent 19%),
    linear-gradient(180deg, rgba(22, 76, 74, 0.05), rgba(22, 76, 74, 0.22));
}

.collage-side {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 8px;
}

.collage-photo {
  min-height: 186px;
  border-radius: 12px;
  background: #081a35;
  position: relative;
  overflow: hidden;
}

.collage-photo::before {
  content: none;
}

.collage-metric {
  border-radius: 12px;
  min-height: 154px;
  padding: 0;
  background: #081a35;
  overflow: hidden;
}

.collage-metric strong {
  display: block;
  font-family: "Sora", sans-serif;
  color: #0ea26f;
  font-size: 38px;
}

.collage-metric span {
  color: #2f4b55;
  font-size: 13px;
}

.collage-media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.services-copy h2 {
  margin: 0 0 26px;
  max-width: 600px;
  font-size: clamp(44px, 4vw, 62px);
  line-height: 1.05;
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.service-list li {
  display: flex;
  gap: 14px;
}

.list-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: #dfe7fb;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.list-icon svg {
  width: 16px;
  fill: #2f66f5;
}

.service-list h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.service-list p {
  margin: 6px 0 0;
  color: #64738d;
  font-size: 14px;
  line-height: 1.45;
}

.home-story {
  padding: 72px 0;
}

.home-problem {
  background: #f6f8fd;
}

.home-method {
  background:
    radial-gradient(circle at top, rgba(28, 71, 154, 0.12), transparent 34%),
    #edf3fb;
}

.home-impact {
  background: #e8eef7;
}

.section-head-center {
  justify-content: center;
  text-align: center;
}

.section-head-center h2 {
  max-width: 760px;
}

.story-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.story-card,
.impact-card {
  min-height: 100%;
  border-radius: 22px;
  border: 1px solid #d4deec;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 36px rgba(19, 35, 68, 0.08);
}

.story-card {
  padding: 26px 24px;
}

.story-kicker,
.story-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #dce7ff;
  color: #1e55d4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.story-step {
  background: #dff5ea;
  color: #0f9b69;
}

.story-card h3 {
  margin: 18px 0 10px;
  font-size: 24px;
  line-height: 1.14;
}

.story-card p {
  margin: 16px 0 0;
  color: #566681;
  font-size: 18px;
  line-height: 1.55;
}

.story-card-numbered p {
  margin-top: 0;
}

.impact-card {
  padding: 32px 26px;
  text-align: center;
}

.impact-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1;
  color: #103f9f;
}

.impact-card span {
  display: block;
  margin-top: 12px;
  color: #556681;
  font-size: 18px;
  line-height: 1.45;
}

.cta-wrap {
  padding: 66px 0 72px;
  background: #eef3fa;
}

.cta-card {
  background: radial-gradient(circle at 50% -20%, #0f2a65, #061334 64%);
  border-radius: 20px;
  padding: 72px 24px;
  text-align: center;
  color: #fff;
}

.cta-card h2 {
  margin: 0;
  font-size: clamp(46px, 4vw, 62px);
  line-height: 1.05;
}

.cta-card p {
  margin: 20px auto 30px;
  max-width: 700px;
  color: #d1daf3;
  font-size: 24px;
  line-height: 1.4;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.site-footer {
  border-top: 1px solid #c9d6ea;
  background: linear-gradient(180deg, #dfe9f7 0%, #d6e2f3 100%);
}

.footer-top {
  padding: 58px 0 40px;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 42px;
}

.footer-brand p {
  margin: 18px 0 0;
  max-width: 360px;
  color: #61708b;
  font-size: 14px;
  line-height: 1.55;
}

.socials {
  margin-top: 18px;
  display: inline-flex;
  gap: 8px;
}

.socials a {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #d9f1e8;
  color: #0f9165;
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.socials a:hover {
  background: #c8eadc;
  color: #0b7f58;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h3 {
  margin: 0 0 8px;
  color: #3f4f68;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.footer-col a {
  color: #5b6b86;
  font-size: 14px;
}

.footer-col a:hover {
  color: #263d72;
}

.footer-bottom {
  border-top: 1px solid #c9d6ea;
  padding: 16px 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  color: #7f8da5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-legal {
  display: inline-flex;
  gap: 24px;
}

.footer-legal a {
  white-space: nowrap;
}

.about-page {
  background: #eef3fa;
}

.about-hero-desktop {
  min-height: 345px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #f5f7ff;
  background:
    linear-gradient(90deg, rgba(8, 23, 59, 0.88) 0%, rgba(12, 34, 72, 0.67) 48%, rgba(18, 40, 78, 0.52) 100%),
    linear-gradient(130deg, #1c2f55 0%, #2c3d5a 100%);
}

.about-hero-desktop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(15, 34, 69, 0.6) 0 80px, rgba(8, 25, 56, 0.18) 80px 176px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  mix-blend-mode: normal;
}

.about-hero-content {
  position: relative;
  z-index: 1;
}

.about-hero-content .eyebrow {
  margin-bottom: 10px;
  color: #3ae6b1;
}

.about-hero-content h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(58px, 5vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.about-hero-content h1 span {
  background: linear-gradient(90deg, #2f66f5, #1cda9a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-hero-content p {
  margin: 16px 0 0;
  max-width: 470px;
  color: #d2d9e9;
  font-size: 17px;
  line-height: 1.48;
}

.about-mv {
  padding: 64px 0;
  background: #f6f8fc;
}

.about-mv-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 44px;
  align-items: start;
  min-width: 0;
}

.about-mv-left,
.about-mv-right {
  min-width: 0;
}

.about-mv-left h2 {
  margin: 0;
  font-size: clamp(44px, 3.2vw, 56px);
  line-height: 1.08;
}

.about-mv-left > p {
  margin: 14px 0 18px;
  max-width: 550px;
  color: #66768f;
  font-size: 15px;
  line-height: 1.6;
}

.about-info-card {
  margin-top: 10px;
  border: 1px solid #e1e7f0;
  border-radius: 12px;
  background: #f9fbfe;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  overflow: hidden;
}

.about-info-card > div {
  min-width: 0;
}

.about-info-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.about-info-icon svg {
  width: 17px;
}

.about-icon-blue {
  background: #dfe7f9;
}

.about-icon-blue svg {
  fill: #1f55d6;
}

.about-icon-green {
  background: #dff2ea;
}

.about-icon-green svg {
  fill: #16b475;
}

.about-info-card h3 {
  margin: 0;
  font-size: 14px;
}

.about-info-card p {
  margin: 5px 0 0;
  color: #697a94;
  font-size: 12px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.about-team-panel {
  width: 100%;
  min-height: 300px;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  border: 4px solid #f3f5ec;
  background-color: #06101c;
  overflow: hidden;
  box-shadow: 0 15px 38px rgba(41, 58, 78, 0.2);
}

.about-team-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-history {
  padding: 68px 0 72px;
  background: #edf1f6;
  text-align: center;
}

.about-history h2 {
  margin: 0;
  font-size: clamp(44px, 3.4vw, 58px);
  line-height: 1.08;
}

.about-title-line {
  width: 56px;
  height: 4px;
  border-radius: 4px;
  margin: 12px auto 30px;
  background: #27b77e;
  display: block;
}

.about-history-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}

.about-history-card {
  border: 1px solid #d9e1eb;
  border-radius: 10px;
  background: #f8fbff;
  padding: 20px;
}

.about-history-card h3 {
  margin: 0;
  color: #1147bc;
  font-size: 40px;
  line-height: 1;
}

.about-history-card h4 {
  margin: 12px 0 10px;
  font-size: 17px;
}

.about-history-card p {
  margin: 0;
  color: #62748f;
  font-size: 13px;
  line-height: 1.58;
}

.about-values {
  padding: 76px 0 74px;
  background: #f7f9fd;
  text-align: center;
}

.about-values h2 {
  margin: 0;
  font-size: clamp(40px, 3.2vw, 52px);
}

.about-values > .container > p {
  margin: 10px 0 24px;
  color: #7787a1;
  font-size: 14px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-value-item {
  padding: 14px 10px;
}

.about-value-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin: 0 auto;
}

.about-value-icon svg {
  width: 19px;
}

.about-value-item h3 {
  margin: 9px 0 0;
  font-size: 13px;
}

.about-team {
  padding: 64px 0 66px;
  background: #f7f9fd;
}

.about-team-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.about-team-head h2 {
  margin: 0;
  font-size: clamp(42px, 3.2vw, 56px);
}

.about-team-head p {
  margin: 8px 0 0;
  max-width: 620px;
  color: #6f7f98;
  font-size: 14px;
}

.about-team-head a {
  color: #255cf0;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.about-team-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 276px));
  justify-content: center;
  gap: 16px;
}

.about-member-photo {
  height: 182px;
  border-radius: 10px;
  border: 2px solid #2f2f33;
  background-color: #7e7f82;
  box-shadow: 0 8px 18px rgba(20, 27, 44, 0.08);
  overflow: hidden;
}

.about-member-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 68%;
  image-rendering: auto;
}

.about-member-photo.m1 {
  background-color: #5c6067;
}

.about-member-photo.m2 {
  background-color: #5c6067;
}

.about-member-photo.m3 {
  background:
    radial-gradient(circle at 45% 34%, #d2d2d2 0 12%, transparent 15%),
    linear-gradient(150deg, #86878a, #5a5c60);
}

.about-member-photo.m4 {
  background:
    linear-gradient(180deg, rgba(24, 24, 26, 0.5), rgba(24, 24, 26, 0.2)),
    linear-gradient(145deg, #474a4f, #313339);
}

.about-member h3 {
  margin: 12px 0 2px;
  font-size: 14px;
}

.about-member p {
  margin: 0;
  color: #18a873;
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.about-cta-wrap {
  padding: 52px 0 74px;
  background: #f7f9fd;
}

.about-cta-card {
  border-radius: 26px;
  padding: 52px 24px;
  background: linear-gradient(122deg, #305ebf 0%, #1f4a9e 44%, #2b8aa4 100%);
  box-shadow: 0 16px 30px rgba(32, 62, 114, 0.24);
  text-align: center;
  color: #fff;
}

.about-cta-card h2 {
  margin: 0;
  font-size: clamp(46px, 3.8vw, 58px);
  line-height: 1.08;
}

.about-cta-card p {
  margin: 14px auto 24px;
  max-width: 720px;
  color: #e8efff;
  font-size: 20px;
}

.about-cta-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.about-cta-actions .btn-soft {
  border-color: #0d2b67;
}

.about-cta-actions .btn-outline {
  border-color: rgba(224, 235, 255, 0.65);
}

.about-footer {
  background: #010a26;
  color: #d4deef;
}

.about-footer-grid {
  padding: 52px 0 30px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 36px;
}

.about-footer .brand-name {
  color: #f5f8ff;
}

.about-footer section > p {
  margin: 14px 0 0;
  color: #8ea0be;
  font-size: 12px;
  line-height: 1.6;
  max-width: 285px;
}

.about-footer h3 {
  margin: 0 0 10px;
  color: #22d693;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.about-footer a {
  color: #b9c7dc;
  display: block;
  font-size: 12px;
  margin-bottom: 7px;
}

.about-footer .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.about-footer-socials {
  margin-top: 14px;
  display: inline-flex;
  gap: 8px;
}

.about-footer-socials a {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #0f1c3f;
  color: #e6edfb;
  display: grid;
  place-items: center;
  font-size: 10px;
  margin-bottom: 0;
}

.about-newsletter {
  margin-top: 10px;
}

.about-newsletter input {
  width: 100%;
  height: 34px;
  border-radius: 8px;
  border: 1px solid #263a66;
  background: #021036;
  color: #e5ecfc;
  padding: 0 10px;
  font-size: 12px;
  margin-bottom: 8px;
}

.about-newsletter input::placeholder {
  color: #6d81a5;
}

.about-newsletter button {
  width: 100%;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: #2f66f5;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.about-footer-bottom {
  border-top: 1px solid #13244a;
  padding: 14px 0 18px;
  color: #6d81a3;
  font-size: 10px;
  text-align: center;
}

.ps-page {
  background: #eef3fa;
}

.ps-hero {
  padding: 62px 0 64px;
  background:
    radial-gradient(circle at 82% 20%, rgba(88, 143, 246, 0.18), transparent 34%),
    linear-gradient(180deg, #ecf2fb 0%, #f3f6fc 100%);
}

.ps-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 30px;
  align-items: center;
}

.ps-hero-copy h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(48px, 4.2vw, 66px);
  line-height: 1.04;
}

.ps-hero-copy p {
  margin: 18px 0 24px;
  max-width: 700px;
  color: #556782;
  font-size: 21px;
  line-height: 1.45;
}

.ps-hero-side {
  display: grid;
  gap: 10px;
}

.ps-side-panel {
  border-radius: 14px;
  min-height: 110px;
  border: 1px solid #d8e2f0;
  overflow: hidden;
  background-color: #081a35;
}

.ps-side-image {
  width: 100%;
  height: 110px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.contact-page {
  background: #eef3fa;
}

.contact-hero {
  min-height: 280px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #f5f7ff;
  background:
    linear-gradient(90deg, rgba(8, 23, 59, 0.9) 0%, rgba(12, 34, 72, 0.72) 48%, rgba(18, 40, 78, 0.58) 100%),
    linear-gradient(130deg, #1a2e55 0%, #273d63 100%);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(15, 34, 69, 0.58) 0 88px, rgba(8, 25, 56, 0.18) 88px 184px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.contact-hero-content {
  position: relative;
  z-index: 1;
}

.contact-hero-content h1 {
  margin: 0;
  font-size: clamp(56px, 5vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.contact-hero-content p {
  margin: 18px 0 0;
  max-width: 650px;
  color: #d2d9e9;
  font-size: 33px;
  line-height: 1.35;
}

.contact-main {
  padding: 58px 0 54px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.contact-info-col h2 {
  margin: 0 0 16px;
  font-size: 43px;
  line-height: 1.1;
}

.contact-info-item {
  border-radius: 15px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 12px;
}

.contact-info-item > div {
  min-width: 0;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.contact-info-icon svg {
  width: 19px;
  fill: currentColor;
}

.contact-info-icon.is-phone {
  color: #2f66f5;
  background: #dbe8ff;
}

.contact-info-icon.is-mail {
  color: #13b679;
  background: #d9f1e8;
}

.contact-info-icon.is-pin {
  color: #1e2943;
  background: #e5e9f2;
}

.contact-info-item h3 {
  margin: 1px 0 4px;
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-info-item .main {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #18253f;
}

.contact-info-item.is-email .main {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-info-item p {
  margin: 2px 0 0;
  color: #667790;
  font-size: 14px;
  line-height: 1.35;
}

.contact-map-card {
  margin-top: 20px;
  min-height: 286px;
  border-radius: 16px;
  border: 1px solid #d9e2ef;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(90deg, #f6f8fb 0 16%, #d8d9db 16% 38%, #ececed 38% 62%, #d2d3d5 62% 84%, #f4f5f7 84% 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.4) 0 3px, transparent 3px 54px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.24) 0 3px, transparent 3px 70px);
}

.contact-map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(150deg, transparent 0 20%, rgba(255, 255, 255, 0.6) 20% 22%, transparent 22% 45%, rgba(255, 255, 255, 0.55) 45% 47%, transparent 47% 68%, rgba(255, 255, 255, 0.46) 68% 70%, transparent 70%),
    linear-gradient(35deg, transparent 0 28%, rgba(255, 255, 255, 0.45) 28% 31%, transparent 31% 65%, rgba(255, 255, 255, 0.55) 65% 68%, transparent 68%);
  mix-blend-mode: screen;
}

.map-pin {
  width: 58px;
  height: 58px;
  border-radius: 58% 58% 58% 0;
  transform: rotate(-45deg);
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -28px 0 0 -29px;
  background: #232936;
}

.map-pin::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #eceef2;
  left: 18px;
  top: 18px;
}

.contact-form-card {
  border: 1px solid #c7d8ef;
  border-radius: 18px;
  background: linear-gradient(145deg, #e9f2ff 0%, #e6f4ef 100%);
  box-shadow: 0 12px 32px rgba(24, 39, 78, 0.08);
  padding: 36px 36px 32px;
  min-width: 0;
}

.contact-form-card h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.08;
}

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

.contact-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #182744;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid #ccd8ea;
  border-radius: 10px;
  background: #f7fbff;
  color: #18253f;
  font: inherit;
  font-size: 17px;
  line-height: 1.2;
  padding: 14px 14px;
  outline: none;
}

.contact-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #566279 50%),
    linear-gradient(135deg, #566279 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 15px) calc(50% - 3px);
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

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

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #7b879b;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #86a4e9;
  box-shadow: 0 0 0 3px rgba(47, 102, 245, 0.12);
}

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

.contact-submit {
  grid-column: 1 / -1;
  min-height: 58px;
  margin-top: 8px;
  border-radius: 10px;
  font-size: 18px;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 22px rgba(47, 102, 245, 0.3);
}

.contact-cta {
  border-top: 1px solid #d8e2ef;
  background: #f2f5fa;
  padding: 66px 0 82px;
}

.contact-cta-card {
  border-radius: 20px;
  background: radial-gradient(circle at 50% -20%, #0f2a65, #061334 64%);
  padding: 66px 24px;
  text-align: center;
  color: #fff;
}

.contact-cta-card .eyebrow {
  color: #35e5b2;
}

.contact-cta-card h2 {
  margin: 0;
  font-size: clamp(44px, 4vw, 58px);
  line-height: 1.1;
}

.contact-cta-card > p {
  margin: 18px auto 0;
  max-width: 880px;
  color: #d1daf3;
  font-size: 33px;
  line-height: 1.42;
}

.contact-cta-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.contact-cta-actions .btn {
  min-height: 56px;
  font-size: 20px;
}

.contact-cta-actions .btn-outline {
  border-color: rgba(226, 233, 255, 0.3);
  color: #fff;
}

.contact-footer {
  border-top: 1px solid var(--line);
  background: #e9eff7;
  color: #5f6d86;
}

.contact-footer-grid {
  padding: 58px 0 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 30px;
}

.contact-footer .brand-name {
  color: #111a2f;
}

.contact-footer p {
  margin: 16px 0 0;
  max-width: 390px;
  color: #61708b;
  font-size: 14px;
  line-height: 1.55;
}

.contact-footer h3 {
  margin: 0 0 10px;
  color: #3f4f68;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.contact-footer a {
  display: block;
  margin-top: 10px;
  color: #5b6b86;
  font-size: 14px;
}

.contact-footer .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}

.contact-footer a:hover {
  color: #263d72;
}

.contact-footer-socials {
  display: inline-flex;
  gap: 10px;
}

.contact-footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #d9e0ea;
  display: grid;
  place-items: center;
  margin-top: 0;
}

.contact-footer-socials svg {
  width: 18px;
  fill: #445672;
}

.contact-footer-bottom {
  border-top: 1px solid var(--line);
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: #7f8da5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-footer-legal {
  display: inline-flex;
  gap: 16px;
}

.contact-footer-legal a {
  margin-top: 0;
  color: #7f8da5;
  font-size: 10px;
}

@media (max-width: 1380px) {
  .hero-copy h1 {
    font-size: clamp(46px, 4.8vw, 64px);
  }

  .hero-lead {
    font-size: 22px;
  }

  .services-copy h2 {
    font-size: clamp(38px, 3.5vw, 54px);
  }

  .cta-card h2 {
    font-size: clamp(40px, 3.4vw, 56px);
  }

  .about-hero-content h1 {
    font-size: clamp(52px, 4.6vw, 72px);
  }

  .about-hero-content p {
    font-size: 15px;
  }

  .ps-hero-copy p {
    font-size: 19px;
  }

  .contact-hero-content p {
    font-size: 28px;
  }

  .contact-info-col h2,
  .contact-form-card h2 {
    font-size: 34px;
  }

  .contact-info-item h3 {
    font-size: 19px;
  }

  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    font-size: 16px;
  }

  .contact-field label {
    font-size: 15px;
  }

  .contact-submit,
  .contact-cta-actions .btn {
    font-size: 18px;
  }

  .contact-cta-card > p {
    font-size: 22px;
  }
}

@media (max-width: 1100px) {
  .container {
    width: min(1160px, calc(100% - 32px));
  }

  .top-links {
    gap: 18px;
  }

  .hero-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-window {
    max-width: 720px;
  }

  .section-link {
    white-space: normal;
  }

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

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

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

  .about-mv-grid {
    grid-template-columns: 1fr;
  }

  .about-history-grid {
    grid-template-columns: 1fr;
  }

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

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

  .about-mv {
    padding: 48px 0;
  }

  .about-mv-grid {
    gap: 16px;
  }

  .about-team-panel {
    min-height: clamp(220px, 48vw, 300px);
    border-width: 2px;
  }

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

  .ps-hero-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .contact-submit {
    grid-column: auto;
  }

  .contact-map-card {
    max-width: 340px;
  }

  .contact-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-cta-actions .btn {
    width: min(620px, 100%);
  }

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

@media (max-width: 900px) {
  .container {
    width: min(1160px, calc(100% - 24px));
  }

  .topbar-inner {
    min-height: auto;
    padding: 12px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px 14px;
  }

  .top-links {
    grid-column: 1 / -1;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .hero {
    padding: 40px 0 54px;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 9.8vw, 52px);
  }

  .hero-lead {
    font-size: 18px;
    margin: 18px 0 22px;
  }

  .hero-actions,
  .trust-row {
    flex-wrap: wrap;
  }

  .hero-window {
    width: 100%;
  }

  .hero-scene {
    min-height: 320px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head h2 {
    max-width: 100%;
  }

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

  .services-collage {
    grid-template-columns: 1fr;
  }

  .services-copy h2 {
    font-size: clamp(34px, 8vw, 46px);
  }

  .cta-card {
    padding: 44px 20px;
  }

  .cta-card h2 {
    font-size: clamp(34px, 8vw, 44px);
  }

  .cta-card p {
    font-size: 17px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-hero-content h1 {
    font-size: clamp(36px, 9vw, 52px);
  }

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

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

  .ps-hero-copy h1 {
    font-size: clamp(34px, 8.6vw, 50px);
  }

  .ps-hero-copy p {
    font-size: 17px;
  }

  .contact-main {
    padding: 42px 0 42px;
  }

  .contact-info-col h2,
  .contact-form-card h2 {
    font-size: 30px;
  }

  .contact-form-card {
    padding: 28px 22px 22px;
  }

  .contact-field label {
    font-size: 15px;
  }

  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    font-size: 16px;
  }

  .contact-field textarea {
    min-height: 160px;
  }

  .contact-submit {
    min-height: 52px;
    font-size: 17px;
  }

  .contact-cta {
    padding: 44px 0 54px;
  }

  .contact-cta-card {
    padding: 44px 18px;
  }

  .contact-cta-card h2 {
    font-size: clamp(34px, 8vw, 42px);
  }

  .contact-cta-card > p {
    font-size: 18px;
    line-height: 1.45;
  }

  .contact-footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .contact-footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(1160px, calc(100% - 18px));
  }

  .topbar-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
  }

  .brand-name {
    font-size: 17px;
  }

  .top-links {
    font-size: 12px;
    gap: 8px 12px;
  }

  .top-controls {
    width: 100%;
    justify-content: center;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 10vw, 40px);
  }

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

  .hero-scene {
    min-height: 260px;
  }

  .section {
    padding: 52px 0;
  }

  .section-head h2 {
    font-size: clamp(28px, 8.4vw, 34px);
  }

  .services-copy h2 {
    font-size: clamp(30px, 8.6vw, 36px);
  }

  .service-list h3 {
    font-size: 19px;
  }

  .about-values-grid,
  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .about-team-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-history h2,
  .about-values h2,
  .about-team-head h2 {
    font-size: clamp(30px, 8.6vw, 36px);
  }

  .about-info-card {
    padding: 14px;
    gap: 10px;
  }

  .about-info-card h3 {
    font-size: 16px;
  }

  .about-info-card p {
    font-size: 14px;
    line-height: 1.45;
  }

  .about-team-panel {
    min-height: 190px;
    border-width: 2px;
  }

  .ps-hero-copy h1 {
    font-size: clamp(30px, 8.8vw, 38px);
  }

  .ps-side-panel {
    min-height: 84px;
  }

  .contact-form-card {
    padding: 22px 14px 16px;
  }

  .contact-form-card h2 {
    font-size: 30px;
  }

  .contact-info-col h2 {
    font-size: 28px;
  }

  .contact-info-item h3 {
    font-size: 17px;
  }

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

  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    font-size: 15px;
    padding: 12px 12px;
  }

  .contact-submit {
    min-height: 50px;
    font-size: 16px;
  }

  .contact-cta-card {
    padding: 36px 14px;
  }

  .contact-cta-card > p {
    font-size: 16px;
  }
}
