@font-face {
  font-family: "Nunito Sans";
  src: url("assets/fonts/nunito-sans-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("assets/fonts/nunito-sans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("assets/fonts/nunito-sans-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("assets/fonts/nunito-sans-700.ttf") format("truetype");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/roboto-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/roboto-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/roboto-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Volazi Icons";
  src: url("assets/fonts/fa-solid-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: block;
}

:root {
  --blue: #2a9fe5;
  --button-blue: #2fb1ff;
  --dark: #282828;
  --body: #fcfcfc;
  --soft-blue: #eef4ff;
  --orange: #fca80f;
  --content-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--body);
}

body {
  margin: 0;
  color: #28282d;
  background: var(--body);
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.section-shell {
  scroll-margin-top: 90px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: 90px;
  background: #fff;
}

.header-inner {
  width: min(var(--content-width), calc(100% - 48px));
  min-height: 90px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 2;
  width: 128px;
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transform: translate(26px, 14px);
}

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

.site-nav {
  display: flex;
  align-self: center;
  height: 60px;
  margin-right: 220px;
  transform: translateY(-8px);
}

.site-nav a {
  display: inline-flex;
  min-width: 95px;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #f2f2f2;
  color: #404040;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav a:last-child {
  border-right: 1px solid #f2f2f2;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #1689dd;
}

.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  padding: 5px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--button-blue);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  min-height: 850px;
  background: #fff url("assets/hero.png") center top / cover no-repeat;
}

.hero-content {
  min-height: 850px;
  display: flex;
  align-items: flex-start;
}

.hero-copy {
  width: 53%;
  padding-top: 166px;
}

.eyebrow {
  margin: 0 0 25px;
  color: var(--blue);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.hero-eyebrow {
  width: max-content;
  padding: 5px 15px 6px;
  border-radius: 999px;
  background: #d9f7ff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Nunito Sans", Arial, sans-serif;
}

h1 {
  max-width: 620px;
  margin-bottom: 14px;
  color: #3ca4d1;
  font-size: clamp(52px, 5.05vw, 68px);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -1.4px;
}

.hero-subtitle {
  max-width: 540px;
  margin-bottom: 32px;
  color: #292930;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-width: 178px;
  min-height: 65px;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 20px;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(37, 151, 220, 0.18);
}

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

.features {
  min-height: 980px;
  padding: 64px 0 88px;
  background: #fff url("assets/section-features.png") center / cover no-repeat;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 50px;
}

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

.section-symbol,
.contact-symbol,
.footer-symbol {
  font-family: "Volazi Icons";
  font-weight: 900;
}

.section-symbol {
  display: block;
  margin-bottom: 26px;
  color: var(--orange);
  font-size: 33px;
  line-height: 1;
}

h2 {
  margin-bottom: 28px;
  color: #3ca4d1;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -1px;
}

.section-heading h2 {
  margin-bottom: 28px;
}

.section-heading p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}

.feature-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  min-height: 470px;
  padding: 35px 28px 32px;
  border-top: 3px solid #fff;
  border-radius: 15px;
  background: #fff;
  text-align: center;
}

.feature-card img {
  width: 179px;
  height: 180px;
  margin: 0 auto 5px;
  object-fit: contain;
}

h3 {
  margin-bottom: 18px;
  color: #2a9fe5;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 700;
}

.feature-card h3 {
  margin-top: -2px;
}

.feature-card p,
.service-card p,
.split-copy p {
  font-size: 16px;
  line-height: 1.55;
}

.feature-card p {
  margin-bottom: 0;
}

.split-section {
  min-height: 760px;
}

.about {
  background: #fff url("assets/section-about.png") center / cover no-repeat;
}

.work {
  background: #fff url("assets/section-work.png") center / cover no-repeat;
}

.split-layout {
  min-height: inherit;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
  align-items: center;
}

.split-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.split-visual img {
  width: min(100%, 570px);
  height: auto;
}

.split-copy {
  max-width: 525px;
}

.split-copy .eyebrow {
  margin-bottom: 25px;
}

.split-copy h2 {
  margin-bottom: 30px;
}

.split-copy p {
  margin-bottom: 18px;
}

.split-copy .button {
  margin-top: 12px;
}

.services {
  min-height: 1050px;
  padding: 90px 0 110px;
  background: #fff url("assets/section-services.png") center / cover no-repeat;
}

.services-heading {
  margin-bottom: 55px;
}

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

.service-grid {
  gap: 35px;
}

.service-card {
  min-height: 390px;
  padding: 24px 26px 28px;
  text-align: center;
}

.service-card img {
  width: 82px;
  height: 82px;
  margin: 0 auto 23px;
  object-fit: contain;
}

.service-card h3 {
  margin-bottom: 17px;
  color: #2a9fe5;
  font-size: 25px;
}

.service-card p {
  margin-bottom: 0;
}

.contact {
  min-height: 690px;
  padding: 72px 0 82px;
  background: #4a7afa url("assets/section-work.png") center / cover no-repeat;
}

.contact-content {
  text-align: center;
}

.contact-symbol {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 54px;
  line-height: 1;
}

.contact h2 {
  margin-bottom: 24px;
  color: #fff;
}

.contact-form {
  width: min(100%, 760px);
  margin: 30px auto 0;
  display: grid;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid rgba(213, 229, 238, 0.9);
  border-radius: 3px;
  outline: 0;
  background: rgba(255, 255, 255, 0.96);
  color: #222;
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2a9fe5;
  box-shadow: 0 0 0 3px rgba(42, 159, 229, 0.2);
}

.contact-form textarea {
  resize: vertical;
}

.button-submit {
  justify-self: center;
  min-height: 52px;
  background: var(--orange);
  color: #fff;
  font-size: 18px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.site-footer {
  background: var(--dark);
  color: #fff;
}

.footer-main {
  padding: 54px 0 52px;
  text-align: center;
}

.footer-symbol {
  margin-bottom: 18px;
  font-size: 28px;
}

.footer-main p {
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 13px;
}

.footer-bottom-inner p {
  margin-bottom: 0;
}

.footer-bottom nav {
  display: flex;
  gap: 20px;
}

.footer-bottom nav a:hover {
  color: #fff;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.footer-legal button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 12px;
}

.footer-legal button:hover,
.footer-legal button:focus-visible {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  border: 1px solid rgba(42, 159, 229, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 35px rgba(24, 60, 103, 0.2);
}

.cookie-banner[hidden],
.policy-backdrop[hidden],
.policy-content[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin: 0 0 4px;
  color: #2a9fe5;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0;
}

.cookie-banner p {
  max-width: 680px;
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

.cookie-actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.cookie-button {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 13px;
}

.cookie-button-primary {
  background: var(--button-blue);
  color: #fff;
}

.cookie-button-secondary {
  border-color: #cfe6f3;
  background: #fff;
  color: #2a9fe5;
}

.cookie-button:hover,
.cookie-button:focus-visible {
  box-shadow: 0 4px 12px rgba(42, 159, 229, 0.18);
}

.policy-backdrop {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 33, 54, 0.58);
}

.policy-dialog {
  position: relative;
  width: min(100%, 680px);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 42px 42px 38px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(15, 39, 72, 0.3);
}

.policy-close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #eef5fb;
  color: #2a9fe5;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.policy-content .eyebrow {
  margin-bottom: 15px;
}

.policy-content h2 {
  margin-bottom: 25px;
  font-size: 42px;
  line-height: 0.95;
}

.policy-content p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
}

.policy-content h3 {
  margin: 25px 0 10px;
  color: #2a9fe5;
  font-size: 19px;
  line-height: 1.2;
}

.policy-note {
  padding: 12px 14px;
  border-left: 3px solid #f6a900;
  background: #fff8e7;
}

.policy-list {
  margin: 0 0 16px;
  padding-left: 21px;
}

.policy-list li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.55;
}

.policy-content code {
  overflow-wrap: anywhere;
  font-size: 0.9em;
}

.cookie-preference {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #e6eef4;
}

.cookie-preference strong,
.cookie-preference small {
  display: block;
}

.cookie-preference small {
  margin-top: 4px;
  color: #66717c;
  font-size: 13px;
  line-height: 1.4;
}

.cookie-preference input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--button-blue);
}

.policy-save {
  min-height: 48px;
  margin-top: 24px;
  font-size: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1239px) {
  .site-nav {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 13px;
    line-height: 1.45;
  }

  .content-wrap,
  .header-inner {
    width: calc(100% - 44px);
  }

  .site-header,
  .header-inner {
    min-height: 120px;
  }

  .header-inner {
    justify-content: center;
  }

  .brand {
    width: 105px;
    height: 110px;
    justify-content: center;
    transform: none;
  }

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

  .menu-toggle {
    position: absolute;
    top: 27px;
    right: 20px;
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 120px;
    right: 0;
    left: 0;
    display: none;
    margin: 0;
    padding: 8px 22px 16px;
    background: #fff;
    box-shadow: 0 14px 24px rgba(31, 72, 120, 0.12);
    transform: none;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a,
  .site-nav a:last-child {
    min-height: 44px;
    justify-content: flex-start;
    border: 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .section-shell {
    scroll-margin-top: 120px;
  }

  .hero,
  .hero-content {
    min-height: 348px;
  }

  .hero {
    background-image: url("assets/hero-mobile.png");
    background-position: -40px -124px;
    background-size: 430px 660px;
  }

  .hero-content {
    width: 100%;
    padding: 0 37px;
  }

  .hero-copy {
    width: 100%;
    padding-top: 35px;
  }

  .eyebrow {
    margin-bottom: 28px;
    font-size: 14px;
  }

  .hero-eyebrow {
    padding: 4px 14px 5px;
  }

  h1 {
    max-width: 330px;
    margin-bottom: 12px;
    font-size: 29px;
    line-height: 0.82;
    letter-spacing: -0.5px;
  }

  .hero-subtitle {
    max-width: 303px;
    margin-bottom: 34px;
    font-size: 13px;
    line-height: 1.45;
    text-transform: none;
  }

  .button {
    min-width: 120px;
    min-height: 55px;
    padding: 11px 22px;
    font-size: 16px;
  }

  .features {
    min-height: auto;
    padding: 98px 0 78px;
    background-size: auto 100%;
  }

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

  .section-symbol {
    margin-bottom: 44px;
    font-size: 33px;
  }

  h2 {
    margin-bottom: 32px;
    font-size: 42px;
    line-height: 0.76;
    letter-spacing: -0.6px;
  }

  .section-heading h2 {
    max-width: 240px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 34px;
  }

  .section-heading p {
    font-size: 18px;
    line-height: 1.05;
  }

  .feature-grid,
  .service-grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    gap: 30px;
  }

  .feature-card {
    min-height: 415px;
    padding: 30px 16px 28px;
  }

  .feature-card img {
    width: 160px;
    height: 160px;
    margin-bottom: 10px;
  }

  h3,
  .service-card h3 {
    font-size: 16px;
  }

  .feature-card p,
  .service-card p,
  .split-copy p {
    font-size: 13px;
    line-height: 1.5;
  }

  .split-section {
    min-height: auto;
  }

  .split-layout {
    gap: 28px;
    padding-top: 70px;
    padding-bottom: 82px;
  }

  .split-visual img {
    width: min(100%, 340px);
  }

  .split-copy {
    max-width: none;
  }

  .split-copy .eyebrow {
    margin-bottom: 24px;
  }

  .split-copy h2 {
    margin-bottom: 28px;
  }

  .split-copy .button {
    margin-top: 10px;
  }

  .services {
    min-height: auto;
    padding: 83px 0 80px;
    background-size: auto 100%;
  }

  .services-heading {
    margin-bottom: 46px;
  }

  .services-heading h2 {
    max-width: 320px;
  }

  .service-grid {
    gap: 36px;
  }

  .service-card {
    min-height: 280px;
    padding: 10px 12px 20px;
  }

  .service-card img {
    margin-bottom: 20px;
  }

  .contact {
    min-height: auto;
    padding: 58px 0 62px;
  }

  .contact-symbol {
    font-size: 44px;
  }

  .contact h2 {
    margin-bottom: 25px;
  }

  .contact-form {
    margin-top: 25px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }

  .footer-main {
    padding: 40px 0 38px;
  }

  .footer-bottom-inner {
    min-height: 110px;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .footer-bottom nav {
    gap: 15px;
  }

  .footer-legal-inner {
    min-height: 78px;
    flex-wrap: wrap;
    gap: 10px 16px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: block;
    padding: 16px;
  }

  .cookie-banner h2 {
    font-size: 18px;
  }

  .cookie-banner p {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .cookie-actions {
    justify-content: flex-start;
  }

  .cookie-button {
    flex: 1 1 auto;
    font-size: 12px;
  }

  .policy-backdrop {
    padding: 12px;
  }

  .policy-dialog {
    max-height: calc(100vh - 24px);
    padding: 36px 22px 24px;
  }

  .policy-content h2 {
    font-size: 36px;
  }
}
