:root {
  --blue: #3e76b6;
  --blue-deep: #234f7d;
  --blue-soft: #eef4fa;
  --gold: #ce993c;
  --ink: #142331;
  --muted: #607080;
  --line: #dce4eb;
  --paper: #ffffff;
  --off-white: #f7f9fb;
  --shadow: 0 18px 50px rgba(35, 79, 125, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(1240px, calc(100% - 56px)); margin: 0 auto; }

.site-header {
  position: relative;
  z-index: 20;
  height: 92px;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: clamp(175px, 17vw, 236px); height: auto; }
.coming-label {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.coming-label span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(206,153,60,.15);
}

.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url("assets/slide-emmepi-otp.jpg") center center / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 34%, rgba(255,255,255,.68) 52%, rgba(255,255,255,.04) 82%),
    linear-gradient(0deg, rgba(35,79,125,.06), rgba(35,79,125,.06));
}
.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -240px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 720px) 290px;
  gap: 70px;
  align-items: end;
  padding: 82px 0 76px;
}
.hero-copy { max-width: 710px; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  margin: 0 12px 3px 0;
  background: var(--gold);
}
.eyebrow-dark { color: var(--blue-deep); }

h1, h2, h3, p { text-wrap: balance; }
h1, h2, h3 { font-family: "Montserrat", Arial, sans-serif; font-weight: 700; }
h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 5.2vw, 78px);
  line-height: 1.03;
  letter-spacing: -.045em;
}
.lead {
  max-width: 660px;
  margin: 30px 0 0;
  color: #445463;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.72;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}
.button { text-decoration: none; }
.button-primary {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 29px;
  color: #fff;
  background: var(--blue);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  box-shadow: 0 13px 30px rgba(62,118,182,.22);
  transition: transform .2s ease, background .2s ease;
}
.button-primary:hover { transform: translateY(-2px); background: var(--blue-deep); }
.button-link { display: flex; flex-direction: column; gap: 3px; }
.button-link-label {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.button-link strong { color: var(--blue-deep); font-size: 15px; }

.hero-note {
  align-self: end;
  min-height: 180px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 26px 24px;
  color: white;
  background: rgba(35,79,125,.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.note-index { color: rgba(255,255,255,.55); font-size: 10px; font-weight: 700; letter-spacing: .1em; }
.hero-note strong { display: block; margin-bottom: 10px; font-size: 22px; }
.hero-note p { margin: 0; color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.6; }

.solutions { padding: 110px 0 115px; background: #fff; }
.section-heading {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 48px;
}
.section-heading h2,
.about-copy h2,
.contact-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.product-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: #c4d3e1;
  box-shadow: var(--shadow);
}
.product-visual {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 40px;
  background:
    linear-gradient(rgba(62,118,182,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62,118,182,.045) 1px, transparent 1px),
    var(--off-white);
  background-size: 30px 30px;
}
.product-visual::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 74px;
  height: 4px;
  background: var(--gold);
}
.product-visual img {
  width: min(100%, 270px);
  max-height: 245px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.product-card:nth-child(1) .product-visual img,
.product-card:nth-child(2) .product-visual img { width: 205px; }
.product-number {
  position: absolute;
  top: 22px;
  left: 22px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}
.product-content { padding: 28px 28px 31px; }
.product-content h3 { margin: 0 0 12px; font-size: 20px; line-height: 1.25; }
.product-content p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.about { padding: 105px 0; background: var(--blue-soft); }
.about-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: center; }
.about-number {
  color: transparent;
  font-size: clamp(100px, 16vw, 220px);
  font-weight: 700;
  line-height: .8;
  letter-spacing: -.08em;
  -webkit-text-stroke: 2px rgba(62,118,182,.22);
}
.about-copy { max-width: 680px; }
.about-copy > p:not(.eyebrow) { margin: 28px 0 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.about-tags span {
  padding: 10px 13px;
  color: var(--blue-deep);
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(62,118,182,.16);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact { padding: 90px 0; background: #fff; }
.contact-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  padding: 60px;
  color: white;
  background: var(--blue-deep);
  box-shadow: var(--shadow);
}
.contact-heading .eyebrow { color: rgba(255,255,255,.72); }
.contact-heading h2 { color: #fff; }
.contact-heading > p:not(.eyebrow) { margin: 22px 0 0; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.7; }
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 32px 38px; }
.contact-item { margin: 0; font-style: normal; }
.contact-item > span {
  display: block;
  margin-bottom: 11px;
  color: rgba(255,255,255,.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.contact-item a {
  display: block;
  width: fit-content;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.75;
}
.contact-item a:hover { color: #f1c56d; }

.site-footer { border-top: 1px solid var(--line); background: #fff; }
.footer-inner {
  min-height: 110px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
}
.footer-inner img { width: 150px; }
.footer-inner p { margin: 0; text-align: center; }
.footer-inner a { justify-self: end; color: var(--blue-deep); text-decoration: none; }

@media (max-width: 1020px) {
  .hero { min-height: 610px; background-position: 62% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.91) 52%, rgba(255,255,255,.22) 100%); }
  .hero-inner { grid-template-columns: minmax(0, 1fr) 245px; gap: 36px; }
  .hero-note { min-height: 160px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .product-grid { gap: 15px; }
  .product-visual { min-height: 285px; padding: 30px; }
  .product-card:nth-child(1) .product-visual img,
  .product-card:nth-child(2) .product-visual img { width: 175px; }
  .about-grid { gap: 45px; }
  .contact-panel { gap: 40px; padding: 46px; }
}

@media (max-width: 780px) {
  .container { width: min(100% - 34px, 650px); }
  .site-header { height: 78px; }
  .coming-label { font-size: 9px; letter-spacing: .11em; }
  .coming-label span { width: 7px; height: 7px; }
  .hero {
    min-height: auto;
    background-position: 68% center;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.90) 67%, rgba(255,255,255,.55) 100%),
      linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.45));
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 68px 0 52px;
  }
  h1 { font-size: clamp(42px, 12vw, 62px); }
  .lead { font-size: 15px; }
  .hero-note { width: min(100%, 420px); min-height: auto; }
  .solutions { padding: 78px 0; }
  .product-grid { grid-template-columns: 1fr; gap: 18px; }
  .product-card { display: grid; grid-template-columns: 45% 55%; }
  .product-visual { min-height: 240px; }
  .product-content { display: flex; flex-direction: column; justify-content: center; }
  .about { padding: 78px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 35px; }
  .about-number { font-size: 120px; }
  .contact { padding: 62px 0; }
  .contact-panel { grid-template-columns: 1fr; padding: 40px 30px; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; gap: 13px; padding: 28px 0; }
  .footer-inner a { justify-self: center; }
}

@media (max-width: 520px) {
  .container { width: calc(100% - 28px); }
  .brand img { width: 150px; }
  .coming-label { max-width: 100px; line-height: 1.35; }
  .hero { background-position: 73% center; }
  .hero-inner { padding-top: 54px; }
  .eyebrow { font-size: 9px; letter-spacing: .13em; line-height: 1.6; }
  h1 { font-size: 40px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .product-card { display: block; }
  .product-visual { min-height: 270px; }
  .section-heading h2,
  .about-copy h2,
  .contact-heading h2 { font-size: 34px; }
  .contact-grid { grid-template-columns: 1fr; gap: 25px; }
}


/* Cookie policy */
.footer-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-links a {
  color: var(--blue-deep);
  text-decoration: none;
}
.footer-links a:hover { text-decoration: underline; }

.legal-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.legal-header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.legal-header .brand img { width: clamp(165px, 16vw, 218px); }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}
.legal-back::before {
  content: "←";
  color: var(--gold);
  font-size: 19px;
  line-height: 1;
}
.legal-back:hover { text-decoration: underline; }

.legal-main {
  background:
    linear-gradient(180deg, rgba(238,244,250,.72), rgba(255,255,255,0) 360px),
    #fff;
}
.legal-hero {
  padding: 94px 0 54px;
  border-bottom: 1px solid var(--line);
}
.legal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 70px;
  align-items: end;
}
.legal-hero h1 {
  max-width: 850px;
  font-size: clamp(46px, 6.2vw, 82px);
}
.legal-intro {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.legal-status {
  padding: 25px;
  color: #fff;
  background: var(--blue-deep);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}
.legal-status span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.legal-status strong {
  display: block;
  font-size: 18px;
  line-height: 1.4;
}
.legal-content {
  display: grid;
  grid-template-columns: 230px minmax(0, 780px);
  gap: 70px;
  padding: 70px 0 105px;
}
.legal-index {
  position: sticky;
  top: 120px;
  align-self: start;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.legal-index strong {
  display: block;
  margin-bottom: 15px;
  color: var(--blue-deep);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.legal-index a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  text-decoration: none;
}
.legal-index a:hover { color: var(--blue-deep); }
.legal-article section {
  scroll-margin-top: 120px;
  padding: 0 0 34px;
  margin: 0 0 34px;
  border-bottom: 1px solid var(--line);
}
.legal-article section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.legal-article h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.2;
  letter-spacing: -.025em;
}
.legal-article p,
.legal-article li {
  color: #4e5f6f;
  font-size: 15px;
  line-height: 1.85;
}
.legal-article p { margin: 0 0 16px; }
.legal-article ul { margin: 15px 0 0; padding-left: 20px; }
.legal-article a { color: var(--blue-deep); }
.legal-highlight {
  padding: 23px 25px;
  background: var(--blue-soft);
  border-left: 4px solid var(--blue);
}
.legal-highlight strong { color: var(--blue-deep); }
.legal-company {
  padding: 24px;
  background: var(--off-white);
  border: 1px solid var(--line);
}
.legal-company address {
  color: #4e5f6f;
  font-size: 15px;
  font-style: normal;
  line-height: 1.8;
}

@media (max-width: 820px) {
  .footer-links { justify-self: center; }
  .legal-hero { padding: 72px 0 45px; }
  .legal-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .legal-status { max-width: 420px; }
  .legal-content { grid-template-columns: 1fr; gap: 35px; padding: 50px 0 80px; }
  .legal-index { position: static; }
}

@media (max-width: 620px) {
  .legal-header-inner { min-height: 74px; }
  .legal-header .brand img { width: 145px; }
  .legal-back { font-size: 9px; letter-spacing: .09em; }
  .legal-hero { padding-top: 56px; }
  .legal-intro { font-size: 15px; }
  .legal-status { padding: 21px; }
}
