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

html, body { height: 100%; }

html{
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body{
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img, video, canvas, svg{
  max-width: 100%;
  height: auto;
}

main, section{
  min-width: 0;
}

a{ color: inherit; }
:focus-visible{ outline: 3px solid rgba(116,205,235,.55); outline-offset: 2px; }


h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.hero h1 {
  word-break: normal;
  overflow-wrap: normal;
}


@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.9rem;
    line-height: 1.15;
  }
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.3;
}

@media (max-width: 900px) {
  h2 {
    text-align: center;
  }
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.1rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.container{
  width: min(var(--container), 92%);
  margin: 0 auto;
}

.site-header .container,
.top-banner .container {
  width: min(1400px, 96%);
}

.top-banner-text{
  margin:0;
  font-size:14px;
}

.top-banner-link:hover{
  background: rgba(255,255,255,0.18);
  text-decoration: none;
}

.top-banner-link{
  color: var(--blue-accent);
  text-decoration:none;
  font-size:16px;
  font-weight:600;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}

.top-banner.active {
  display: block;
}

.top-banner{
  background: var(--navy);
  color: var(--white);
}

.site-header{
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}

.site-logo {
  height: 44px;
  width: auto;
  display: block;
}

.brand {
  display: flex;
  align-items: center;
}

.top-banner-inner,
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.nav-list a.contact-link:hover{
  background: rgba(54,146,158,.28);
}

.nav-list a.contact-link{
  background: rgba(54,146,158,.18);
  font-weight: 600;
}

.nav-list a:hover{
  background: rgba(116,205,235,.25);
}

.nav-list a{
  color: var(--ink);
  text-decoration:none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.15s ease;
}

.nav-list li {
  margin: 0;
  padding: 0;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.logo-box {
  width: 160px;
  height: 44px;
  display: grid;
  place-items: center;
  font-weight: 600;
}

.site-main {
  flex: 1;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  margin-top: 80px;
}

.footer-inner{
  display: grid;
  grid-template-columns: 260px 1fr 360px;
  gap: 60px;
  padding: 48px 0;
  align-items: start;
}

.footer-logo {
  height: 48px;
  width: auto;
  display: block;
}

.footer-tagline {
  margin: 14px 0 0;
  margin-top: 12px;
  max-width: 320px;
  opacity: 0.9;
  line-height: 1.5;
  font-size: 14px;
}

.footer-links h4,
.footer-cta h4 {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  opacity: 0.95;
}

.footer-cta {
  max-width: 420px;
}

.footer-links ul {
  margin-top: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer a {
  color: var(--blue-accent);
  text-decoration: none;
}

.footer-small {
  margin: 0 0 14px;
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
}

.footer-btn:hover {
  opacity: 0.9;
  text-decoration: none;
}

.footer-btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--blue-accent);
  color: #073044;
  font-weight: 800;
  text-decoration: none;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.18);
  margin: 18px 0;
}

.footer-link {
  font-weight: 700;
}

.footer-bottom {
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.9;
}

.footer-copy {
  margin: 0;
}

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

.nav-toggle{
  display: none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.7);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle:focus-visible{
  outline: 3px solid rgba(116,205,235,.55);
  outline-offset: 2px;
}

.nav-toggle .bar{
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  position: relative;
}

.nav-toggle .bar::before,
.nav-toggle .bar::after{
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform .18s ease, top .18s ease, opacity .18s ease;
}

.nav-toggle .bar::before{ top: -6px; }
.nav-toggle .bar::after{ top: 6px; }

@media (max-width: 900px){
  .top-banner-inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
  }

  .header-inner{
    padding: 12px 0;
  }

  .nav-toggle{ display: inline-flex; }

  .main-nav{
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    display: none;
  }

  .site-header{
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .site-header .container.header-inner{
    position: relative;
  }

  .site-header.nav-open .main-nav{ display: block; }

  .nav-list{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 0 16px;
  }

  .nav-list a{
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
  }


  .site-header.nav-open .nav-toggle .bar{ background: transparent; }
  .site-header.nav-open .nav-toggle .bar::before{ top: 0; transform: rotate(45deg); }
  .site-header.nav-open .nav-toggle .bar::after{ top: 0; transform: rotate(-45deg); }

  .footer-inner{
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

@media (max-width: 420px){
  .site-logo{ height: 38px; }
  .nav-toggle{ width: 42px; height: 42px; }
}

.utility-bar{
  background: #0b3a75;
  color: #ffffff;
  font-size: 13px;
  padding: 6px 0;
}

.utility-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.utility-left{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.utility-link{
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.utility-link:hover{ text-decoration: underline; }

.utility-right{
  opacity: 0.85;
  font-weight: 500;
}

.btn{
  appearance: none;
  border: 0;
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.1;
  transition: transform .15s ease, opacity .15s ease, background .15s ease;
}

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

.btn--primary{
  background: var(--blue-accent);
  color: #073044;
}

.btn--secondary{
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.24);
  color: var(--white);
}

.cookie-banner{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  display: none;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.18);
}

.cookie-inner{
  width: min(1100px, 96%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.cookie-banner p{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.92);
}

.cookie-buttons{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-bottom-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-company{
  font-size: 14px;
  opacity: 0.75;
  margin: 0;
}

.footer-right{
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-linkedin{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.footer-linkedin svg{
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.footer-linkedin:hover{ opacity: 0.8; }

@media (max-width: 1100px){
  .footer-inner{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px){
  .footer-inner{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  .utility-inner{
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .cookie-inner{
    flex-direction: column;
    align-items: flex-start;
  }

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