:root {
  --navy: #16365C;
  --navy-deep: #0E2742;
  --navy-mid: #1E4A78;
  --cyan: #29ABE2;
  --cyan-deep: #1280B5;
  --gray: #939598;
  --ink: #13243A;
  --ink-soft: #4A5A6E;
  --paper: #F7F8FA;
  --paper-2: #EDF1F6;
  --white: #FFFFFF;
  --line: #D9E1EA;
  --grid: #ECF1F6;
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Saira', sans-serif;
  --maxw: 1180px;
  --r: 14px;
  --shadow: 0 8px 30px rgba(16,39,66,.08);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--cyan);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: 0.01em;
}

h1 {
  font-size: 54px;
  font-weight: 700;
}

h2 {
  font-size: 42px;
  font-weight: 600;
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

a {
  color: var(--cyan-deep);
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover {
  color: var(--cyan);
}

p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.wrap {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
  width: 100%;
}

section {
  position: relative;
  width: 100%;
  margin-top: 100px;
}
@media (max-width: 860px) {
  section {
    margin-top: 60px;
  }
}

.hero, .page-header {
  margin-top: 0;
}

.section--first {
  margin-top: 20px;
}

.section--home-first {
  margin-top: 80px;
}

.shead {
  position: relative;
  margin-bottom: 32px;
  text-align: left;
}
.shead .dots {
  display: flex;
  gap: 7px;
  margin-bottom: 16px;
}
.shead .dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  transition: background 0.3s ease;
}
.shead .dots i.on {
  background: var(--cyan);
}
.shead h2 {
  display: block;
  margin: 0;
  padding: 0;
  color: var(--cyan-deep);
  text-transform: uppercase;
}
.shead h2 .accent {
  color: inherit;
}
.shead .lead {
  color: var(--ink-soft);
  max-width: 780px;
  margin-top: 10px;
  font-size: 19px;
}
.shead .lead p {
  margin-bottom: 0;
}
.shead--center {
  text-align: center;
}
.shead--center .dots {
  justify-content: center;
}
.shead--center .lead {
  margin-left: auto;
  margin-right: auto;
}
.shead--center h2 {
  color: var(--cyan);
}
@media (max-width: 860px) {
  .shead h2 {
    font-size: 32px;
  }
}

.section-label {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 11px;
  color: var(--cyan-deep);
  font-weight: 600;
}

.fadeline {
  height: 2px;
  border: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(22, 54, 92, 0.05) 12%, rgba(22, 54, 92, 0.5) 50%, rgba(22, 54, 92, 0.05) 88%, transparent 100%);
  border: 0;
  margin: 20px 0;
  max-width: 340px;
}
.fadeline.cyan {
  background: linear-gradient(90deg, transparent, rgba(41, 171, 226, 0.1) 15%, var(--cyan) 50%, rgba(41, 171, 226, 0.1) 85%, transparent);
}
.fadeline.light {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06) 12%, rgba(255, 255, 255, 0.65) 50%, rgba(255, 255, 255, 0.06) 88%, transparent);
}

.blueprint {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}
.blueprint.dark {
  position: absolute;
  inset: 0;
  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: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
  transition: height 0.25s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 14px rgba(16, 39, 66, 0.07);
}
.site-header.scrolled .wrap {
  height: 66px;
}
.site-header.scrolled .logo img {
  height: 42px;
}

.logo {
  display: block;
  flex-shrink: 0;
}
.logo img {
  height: 72px;
  width: auto;
  display: block;
  transition: height 0.25s ease;
}

nav.main {
  height: 100%;
}
nav.main > ul {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
  height: 100%;
}
nav.main > ul > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
nav.main a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  position: relative;
  padding: 10px 0;
  display: block;
}
nav.main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: var(--cyan);
  transition: width 0.2s;
}
nav.main a:hover::after, nav.main a.active::after {
  width: 100%;
}
nav.main a.active {
  color: var(--navy);
}
@media (max-width: 860px) {
  nav.main {
    display: none;
  }
}

.lang {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-soft);
  margin-left: 20px;
}
.lang b {
  color: var(--navy);
}
.lang a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-soft);
  text-decoration: none;
}
.lang a:hover {
  color: var(--cyan-deep);
}
@media (max-width: 860px) {
  .lang {
    display: none;
  }
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
  margin-right: -8px;
}
.hamburger svg {
  display: block;
  width: 30px;
  height: 30px;
}
@media (max-width: 860px) {
  .hamburger {
    display: block;
  }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--white);
  padding: 20px 24px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.25, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav__close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  padding: 8px;
  margin-bottom: 12px;
}
.mobile-nav__close svg {
  display: block;
  width: 32px;
  height: 32px;
}
.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.mobile-nav li {
  border-bottom: 1px solid var(--line);
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: block;
  padding: 13px 0;
}
.mobile-nav a.active {
  color: var(--cyan-deep);
}
.mobile-nav .mobile-sub {
  padding: 0 0 16px 20px;
}
.mobile-nav .mobile-sub li {
  border: none;
}
.mobile-nav .mobile-sub a {
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-nav .mobile-sub a img {
  width: 24px;
  height: 24px;
}
.mobile-nav__lang {
  margin-top: auto;
  padding: 14px 0;
  font-family: var(--font-mono);
  font-size: 16px;
  border-top: 1px solid var(--line);
}
.mobile-nav__lang b {
  color: var(--navy);
}
.mobile-nav__lang a {
  display: inline;
  border: none;
  padding: 0;
  font-size: 16px;
}

.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 39, 66, 0.4);
  backdrop-filter: blur(4px);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
.mobile-nav__overlay.open {
  opacity: 1;
  visibility: visible;
}

nav.main .has-drop > a {
  padding-right: 20px;
}
nav.main .has-drop > a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--gray);
  border-bottom: 2px solid var(--gray);
  transform: rotate(45deg);
  transition: 0.2s;
}
nav.main .has-drop:hover > a::before, nav.main .has-drop:focus-within > a::before {
  border-color: var(--cyan);
  transform: rotate(-135deg);
  margin-top: 0;
}
nav.main .has-drop::after {
  content: "";
  position: absolute;
  left: -20px;
  right: -20px;
  top: 100%;
  height: 30px;
  display: none;
  z-index: 5;
}
nav.main .has-drop:hover::after {
  display: block;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 16px 28px;
  min-width: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 22px;
  row-gap: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 150;
  list-style: none;
}
.dropdown::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
nav.main .has-drop:hover .dropdown, nav.main .has-drop:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li {
  display: block;
  width: 100%;
}
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  width: 100%;
  transition: background 0.2s, color 0.2s;
}
.dropdown li a::after {
  display: none !important;
}
.dropdown li a img {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}
.dropdown li a:hover {
  background: var(--paper-2);
  color: var(--navy);
}
@media (max-width: 860px) {
  .dropdown {
    display: none;
  }
}

.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero .track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.25, 1);
}
@media (prefers-reduced-motion: reduce) {
  .hero .track {
    transition: none;
  }
}
.hero .slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center;
}
.hero .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 28, 48, 0.94) 0%, rgba(10, 28, 48, 0.7) 45%, rgba(10, 28, 48, 0.2) 100%);
  z-index: 1;
}
.hero .wave {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background: radial-gradient(120% 80% at 85% 95%, rgba(41, 171, 226, 0.4), transparent 60%);
  pointer-events: none;
  z-index: 2;
}
.hero .scontent {
  position: absolute;
  z-index: 3;
  inset: 0;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  color: var(--white);
  font-size: 54px;
  max-width: 640px;
  line-height: 1.04;
  font-family: var(--font-display);
  font-weight: 700;
}
.hero p {
  color: #cfdbe8;
  max-width: 520px;
  margin-top: 18px;
  font-size: 18px;
  font-family: var(--font-body);
}
.hero .cta {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cyan);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 15px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  width: max-content;
  min-height: 44px;
  transition: background 0.25s, color 0.25s;
}
.hero .cta:hover {
  background: var(--white);
  color: var(--navy-deep);
}
.hero .hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(10, 28, 48, 0.35);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s, background 0.25s, border-color 0.25s;
  backdrop-filter: blur(4px);
}
.hero .hero-arrow svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.hero .hero-arrow--prev {
  left: 24px;
}
.hero .hero-arrow--next {
  right: 24px;
}
.hero .hero-arrow:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--navy-deep);
}
.hero .hero-arrow:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  opacity: 1;
}
@media (max-width: 860px) {
  .hero .hero-arrow {
    width: 38px;
    height: 38px;
  }
  .hero .hero-arrow--prev {
    left: 12px;
  }
  .hero .hero-arrow--next {
    right: 12px;
  }
}
.hero:hover .hero-arrow, .hero:focus-within .hero-arrow {
  opacity: 1;
}
.hero .dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hero .dots button {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}
.hero .dots button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}
.hero .dots button.on {
  background: var(--cyan);
}
@media (max-width: 860px) {
  .hero {
    height: 380px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero p {
    font-size: 16px;
  }
  .hero .dots {
    bottom: 20px;
  }
}

.page-header {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: var(--navy-deep);
  border-radius: 14px;
  margin: 0 28px;
}
.page-header .img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.9);
}
.page-header .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 24, 42, 0.85), rgba(8, 24, 42, 0.35));
  z-index: 1;
}
.page-header .bp {
  position: absolute;
  inset: 0;
  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: 30px 30px;
  pointer-events: none;
  z-index: 0;
  z-index: 2;
}
.page-header .phcontent {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 48px;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}
.page-header .word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 128px;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  animation: ph-rise 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s both;
}
.page-header .title h1,
.page-header .title h2 {
  color: var(--cyan);
  font-size: 54px;
  margin-top: 2px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  animation: ph-rise 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.28s both;
}
@media (max-width: 860px) {
  .page-header {
    height: 200px;
    margin: 0 16px;
  }
  .page-header .phcontent {
    bottom: 20px;
  }
  .page-header .word {
    font-size: 48px;
  }
  .page-header .title h1,
  .page-header .title h2 {
    font-size: 28px;
  }
}

section.page-header {
  margin: 0;
  border-radius: 0;
}

@keyframes ph-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-header .word,
  .page-header .title h1,
  .page-header .title h2 {
    animation: none;
  }
}
.fullscreen {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
}
.fullscreen .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}
.fullscreen .grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 24, 42, 0.95), rgba(8, 24, 42, 0.55));
  z-index: 2;
}
.fullscreen .bp {
  position: absolute;
  inset: 0;
  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: 30px 30px;
  pointer-events: none;
  z-index: 0;
  z-index: 3;
}
.fullscreen .inner {
  position: relative;
  z-index: 10;
  max-width: 960px;
  margin: 0 auto;
  padding: 90px 28px;
  width: 100%;
  text-align: center;
}
.fullscreen .section-label {
  color: var(--cyan);
  display: block;
  margin-bottom: 16px;
}
.fullscreen h2 {
  color: var(--white);
  font-size: 54px;
  max-width: 820px;
  line-height: 1.05;
  margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 700;
}
.fullscreen h2 .accent {
  color: var(--cyan);
}
.fullscreen .lead {
  color: #cfdbe8;
  max-width: 620px;
  margin: 24px auto 0;
  font-size: 19px;
  font-family: var(--font-body);
}
.fullscreen .fadeline {
  max-width: 340px;
  margin: 40px auto 0;
}
@media (max-width: 860px) {
  .fullscreen {
    min-height: auto;
    padding: 35px 0;
  }
  .fullscreen .inner {
    padding-top: 0;
    padding-bottom: 0;
  }
  .fullscreen h2 {
    font-size: 28px;
  }
  .fullscreen .lead {
    font-size: 15px;
    margin-top: 12px;
  }
  .fullscreen .fadeline {
    margin-top: 20px;
  }
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin: 54px auto 0;
  max-width: 680px;
}
@media (max-width: 860px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    margin-top: 24px;
    gap: 12px;
  }
}

.stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  color: var(--cyan);
  display: block;
}
@media (max-width: 860px) {
  .stat .num {
    font-size: 38px;
  }
}
.stat .lbl {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: #9fb6cc;
  margin-top: 10px;
  display: block;
}

.sol-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 860px) {
  .sol-grid {
    grid-template-columns: 1fr;
  }
}

.sol {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 28px;
  display: flex;
  gap: 20px;
  align-items: center;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.sol .bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--cyan);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.25s;
}
.sol .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 52px;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 2px rgba(22, 54, 92, 0.22);
  flex: 0 0 auto;
  min-width: 42px;
}
.sol .ico {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
}
.sol .ico img {
  width: 100%;
  height: 100%;
}
.sol h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 3px;
  color: var(--navy);
}
.sol p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-soft);
}
.sol:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.sol:hover .bar {
  transform: scaleY(1);
}
@media (prefers-reduced-motion: reduce) {
  .sol:hover {
    transform: none;
  }
  .sol .bar {
    transition: none;
  }
}

.render-band {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 44px;
  overflow: hidden;
  margin: 40px 0;
}
.render-band .bp {
  opacity: 0.6;
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}
.render-band .txt {
  position: relative;
  z-index: 2;
}
.render-band .txt h2, .render-band .txt h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
}
.render-band .txt p {
  font-family: var(--font-body);
  color: var(--ink-soft);
  margin-top: 12px;
  max-width: 420px;
  font-size: 16px;
}
.render-band .txt .accent {
  color: var(--cyan-deep);
}
.render-band .rimg {
  position: relative;
  z-index: 2;
}
.render-band .rimg img {
  width: 100%;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 30px rgba(16, 39, 66, 0.18));
}
.render-band.rev .txt {
  order: 2;
}
.render-band.rev .rimg {
  order: 1;
}
@media (max-width: 860px) {
  .render-band {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  .render-band h2, .render-band h3 {
    font-size: 26px;
  }
  .render-band.rev .txt {
    order: 1;
  }
  .render-band.rev .rimg {
    order: 2;
  }
}

.dark-cta {
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
  border-radius: 18px;
  overflow: hidden;
  padding: 56px 48px;
  margin: 40px 0;
}
.dark-cta .bp {
  position: absolute;
  inset: 0;
  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: 30px 30px;
  pointer-events: none;
  z-index: 0;
}
.dark-cta .wave {
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 120% at 90% 110%, rgba(41, 171, 226, 0.45), transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.dark-cta .in {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 30px;
  align-items: center;
}
.dark-cta .section-label {
  color: var(--cyan);
  display: block;
  margin-bottom: 12px;
}
.dark-cta h2 {
  color: var(--white);
  font-size: 46px;
  max-width: 620px;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
}
.dark-cta h2 .accent {
  color: var(--cyan);
}
.dark-cta p {
  color: #bcccdb;
  max-width: 520px;
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 17px;
}
.dark-cta .fadeline {
  max-width: 240px;
  margin: 18px 0 0;
  background: linear-gradient(90deg, transparent, rgba(41, 171, 226, 0.1) 15%, var(--cyan) 50%, rgba(41, 171, 226, 0.1) 85%, transparent);
}
.dark-cta .actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.dark-cta a.primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cyan);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 17px;
  min-height: 44px;
  transition: background 0.25s, color 0.25s;
}
.dark-cta a.primary:hover {
  background: var(--white);
}
.dark-cta .phone {
  color: #cfe6f5;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
}
.dark-cta .phone small {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7f9bb5;
}
.dark-cta .side {
  position: relative;
  text-align: right;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dark-cta .side .cta-stat {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s;
  width: 100%;
}
.dark-cta .side .cta-stat.active {
  opacity: 1;
  visibility: visible;
}
.dark-cta .side .badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 120px;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.22);
  line-height: 0.9;
}
.dark-cta .side .bsub {
  display: block;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--cyan);
  margin-top: 6px;
}
@media (max-width: 860px) {
  .dark-cta {
    padding: 36px 24px;
    margin: 20px 0;
  }
  .pager ~ .dark-cta {
    margin-top: 44px;
  }
  .section--cta-wrap {
    padding-bottom: 40px;
  }
  .dark-cta .in {
    grid-template-columns: 1fr;
  }
  .dark-cta .side {
    text-align: left;
    min-height: 120px;
  }
  .dark-cta .side .cta-stat {
    right: auto;
    left: 0;
  }
  .dark-cta .side .badge {
    font-size: 84px;
  }
  .dark-cta h2 {
    font-size: 32px;
  }
}

.settori-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 860px) {
  .settori-grid {
    grid-template-columns: 1fr;
  }
}

.settore {
  position: relative;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.settore .ph {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.45s ease;
  z-index: 1;
}
.settore::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 28, 48, 0.05), rgba(10, 28, 48, 0.82));
  transition: opacity 0.35s;
  z-index: 2;
}
.settore:hover::after {
  opacity: 0;
}
.settore:hover .ph {
  transform: scale(1.07);
}
.settore .edge {
  position: absolute;
  z-index: 10;
  left: 18px;
  top: 16px;
  width: 22px;
  height: 3px;
  background: var(--cyan);
}
.settore .lbl {
  position: absolute;
  z-index: 10;
  left: 18px;
  right: 16px;
  bottom: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  font-size: 18px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
}
@media (prefers-reduced-motion: reduce) {
  .settore .ph {
    transition: none;
  }
  .settore::after {
    transition: none;
  }
}

.settori-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.settori-preview .settore {
  height: 170px;
}
@media (max-width: 860px) {
  .settori-preview {
    grid-template-columns: 1fr;
  }
  .settori-preview .settore {
    height: 150px;
  }
  .settori-preview .settore:nth-child(n+5) {
    display: none;
  }
}

.pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 860px) {
  .pager {
    grid-template-columns: 1fr;
  }
}

.pager-link {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 26px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 44px;
}
.pager-link:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow);
}
.pager-link:hover .pager-title {
  color: var(--cyan-deep);
}
.pager-link .ico {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}
.pager-link .ico img {
  width: 100%;
  height: 100%;
}
.pager-link .meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.pager-link .pager-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 3px;
  font-weight: 600;
}
.pager-link .pager-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--navy);
  transition: color 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
}
.pager-link.next {
  flex-direction: row-reverse;
}
.pager-link.next .meta {
  align-items: flex-end;
  text-align: right;
}

.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  padding: 0;
}
@media (max-width: 860px) {
  .contatti-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.map {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper-2);
  min-height: 480px;
  position: relative;
}
.map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
}

.formwrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 860px) {
  .formwrap {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.field input,
.field textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--paper);
  color: var(--ink);
  width: 100%;
  transition: border-color 0.2s, outline 0.2s;
}
.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--cyan);
  border-color: var(--cyan);
}
.field textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-submit {
  background: var(--navy);
  color: var(--white);
  border: 0;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 16px 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 17px;
  min-height: 48px;
  width: auto;
  align-self: flex-start;
  transition: background 0.25s, color 0.25s;
}
.btn-submit:hover {
  background: var(--cyan-deep);
}

.recapiti {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0;
}
@media (max-width: 860px) {
  .recapiti {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.recapiti .item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  height: 100%;
}
.recapiti .item .ico {
  width: 42px;
  height: 42px;
  color: var(--cyan-deep);
  flex: 0 0 auto;
  background: var(--paper);
  border-radius: 10px;
  display: grid;
  place-items: center;
  padding: 8px;
}
.recapiti .item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.recapiti .item a, .recapiti .item span, .recapiti .item address {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-soft);
  text-decoration: none;
  display: block;
  font-style: normal;
  line-height: 1.5;
}

.studio {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: start;
  padding: 0;
}
.studio p {
  font-family: var(--font-body);
  color: var(--ink-soft);
  font-size: 17px;
  margin-bottom: 16px;
}
.studio .progress {
  margin-top: 32px;
}
.studio .progress .fadeline {
  margin: 16px 0;
  max-width: none;
}
.studio .ends {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.studio .y {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 46px;
  color: var(--navy);
  line-height: 1;
}
.studio .y small {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  font-weight: 600;
  margin-top: 4px;
}
.studio .ph {
  position: relative;
  height: 340px;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--navy);
}
.studio .ph .img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.1);
}
.studio .ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(10, 28, 48, 0.3));
}
@media (max-width: 860px) {
  .studio {
    grid-template-columns: 1fr;
  }
  .studio .ph {
    height: 260px;
  }
}

.forza {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 0;
}
@media (max-width: 600px) {
  .forza {
    grid-template-columns: 1fr;
  }
}

.fcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  border-top: 3px solid var(--cyan);
}
.fcard .ico {
  width: 38px;
  height: 38px;
  color: var(--cyan-deep);
  margin-bottom: 14px;
}
.fcard h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--navy);
}
.fcard p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}

.section--cta-wrap {
  padding-bottom: 100px;
}

.site-footer {
  background: var(--navy-deep);
  color: #9fb2c6;
  padding: 64px 0 0;
  font-size: 15px;
  position: relative;
  overflow: hidden;
}
.site-footer .bp {
  position: absolute;
  inset: 0;
  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: 30px 30px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.foot-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr;
  gap: 40px;
  padding-bottom: 54px;
}
@media (max-width: 860px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.foot-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.foot-col a {
  color: #9fb2c6;
  text-decoration: none;
  display: block;
  padding: 6px 0;
  font-family: var(--font-body);
  transition: color 0.2s;
}
.foot-col a:hover {
  color: var(--cyan);
}
.foot-col span {
  display: block;
  padding: 6px 0;
  font-family: var(--font-body);
}

.foot-brand img {
  height: 56px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
  display: block;
}
.foot-brand p {
  max-width: 280px;
  color: #8aa0b6;
  font-size: 14px;
  line-height: 1.5;
}

.social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
}
.social .ic {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: background 0.25s;
}
.social svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}
.social:hover .ic {
  background: var(--cyan);
}

.foot-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: #7f95ab;
}
.foot-bar a {
  color: #7f95ab;
  text-decoration: none;
  transition: color 0.2s;
}
.foot-bar a:hover {
  color: var(--cyan);
}
.foot-bar .foot-bar-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
}
@media (max-width: 860px) {
  .offer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

.offer-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  border-top: 3px solid var(--cyan);
}
.offer-item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}
.offer-item h3::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cyan);
  flex: 0 0 auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4'%3E%3Cpath d='M5 12l4 4 10-10'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.offer-item p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

.crumb {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 32px 0 0;
  font-weight: 600;
}
.crumb a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.crumb a:hover {
  color: var(--cyan-deep);
}
.crumb span {
  margin: 0 8px;
  opacity: 0.5;
}
.crumb b {
  color: var(--navy);
}

.intro {
  padding: 0;
  max-width: 780px;
}
.intro p {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-top: 0;
}

.intro-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.intro-row .intro {
  max-width: none;
}
@media (max-width: 860px) {
  .intro-row {
    gap: 40px;
  }
}
@media (max-width: 700px) {
  .intro-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.intro-img {
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}
.intro-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}
@media (max-width: 700px) {
  .intro-img {
    order: -1;
  }
}

.fcard {
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.fcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(16, 39, 66, 0.13);
}

.offer-item {
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.offer-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(16, 39, 66, 0.11);
}

.hero .cta,
.dark-cta a.primary,
.btn-submit {
  transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.2s;
}
.hero .cta:hover,
.dark-cta a.primary:hover,
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(16, 39, 66, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .fcard,
  .offer-item,
  .hero .cta,
  .dark-cta a.primary,
  .btn-submit {
    transition: background 0.25s, color 0.25s;
  }
  .fcard:hover,
  .offer-item:hover,
  .hero .cta:hover,
  .dark-cta a.primary:hover,
  .btn-submit:hover {
    transform: none;
    box-shadow: none;
  }
}

/*# sourceMappingURL=main.css.map */
