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

html {
  scroll-behavior: smooth;
}

body {
  font-family: sans-serif;
  background: #fff;
  color: #000;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: rgba(0,112,204,0.15);
  
  background: linear-gradient(
    to bottom,
    rgba(0, 112, 204, 0.15) 0%, 
    rgba(0, 112, 204, 0.15) 80%,
    rgba(0, 112, 204, 0) 100%
  );
  backdrop-filter: blur(5px);
  z-index: 999;
}

.header-container {
  max-width: 1350px;
  margin: 0 auto;
  height: 60px;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal {
  font-size: .8rem;
  color: #aaa;
}

.logo {
  height: 30px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  line-height: 2.6em;
}

.cta-button {
  height: 40px;
  padding: 0 20px;
  background-color: #0070cc;
  color: white;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}

.outline-button {
    display: inline-block;
  height: 40px;
  padding: 0 20px;
    line-height: 38px;
  background: linear-gradient(
    170deg, 
    rgba(255, 255, 253, 100) 0%, 
    rgba(255, 255, 253, 100) 55%, 
    rgba(0, 112, 204, 0.15) 100%);
  );
  color: #0070cc;
  border: 2px solid #0070cc;
  border-radius: 20px;
  font-weight: bold;
    text-align: center;
    text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
}


/* Hero layout */
.hero {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1350px;
  margin: 0 auto;
  padding: 180px 50px 120px; /* top padding accounts for fixed header */
  gap: 40px;
}

.hero-left,
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}


/* Layout variants */
.layout-45-55 .hero-left  { flex: 0 1 45%; }
.layout-45-55 .hero-right { flex: 0 1 55%; }

.layout-50-50 .hero-left,
.layout-50-50 .hero-right { flex: 0 1 50%; }

.layout-55-45 .hero-left  { flex: 0 1 55%; }
.layout-55-45 .hero-right { flex: 0 1 45%; }

.hero-left h1 {
  font-size: 3.3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-left p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

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


/* Testimonial section */
.testimonial {
  background: rgba(0, 112, 204, 0.15);
  background: linear-gradient(
    to bottom,
    rgba(0, 112, 204, 0) 0%,
    rgba(0, 112, 204, 0.15) 15%,
    rgba(0, 112, 204, 0.15) 85%,  
    rgba(0, 112, 204, 0) 100%
  );
  width: 100%;
  padding: 40px 0;
}

.testimonial-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  justify-content: center;
}

.testimonial-container blockquote {
  width: 60%;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
  color: #111;
  text-align: center;
}

.testimonial-container blockquote footer {
  margin-top: 20px;
  font-size: 16px;
  font-style: normal;
  color: #333;
}


/* ABBA section */
.abba-row {
  max-width: 1350px;
  margin: 0 auto;
  padding: 120px 50px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.abba-block {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.abba-media,
.abba-text {
  flex: 0 1 50%;
}

.abba-video {
  max-width: 45vw;
  border: solid 1px #bbb;
  border-radius: 12px;
}

.abba-img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.abba-text h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.abba-text p {
  font-size: 16px;
  line-height: 1.2;
  padding-bottom: 1em;
}

.abba-text ul {
  padding-bottom: 1em;
}

.abba-text li {
  list-style-position: inside;
  line-height: 1.2em;
}

/* Flip layout for second row */
.abba-block.reverse {
  flex-direction: row-reverse;
}

.icon-title {
  display: flex;
  align-items: start;
  gap: 10px;
}

.icon-title svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: block;
}



/* FAQ */
.faq {
  background: #f9f9f9;
  background: white;
  padding: 60px 0 20px;
  width: 100%;
}

.faq-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 50px;
}

.faq-container h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

.faq-container details {
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 15px 20px;
  background: #fff;
  cursor: pointer;
}

.faq-container summary {
  font-weight: bold;
  font-size: 18px;
  outline: none;
}

.faq-container p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
}



.contact-guard {
  text-align: center;
  margin: 0 auto 40px;
  font-size: 18px;
  max-width: 80vw;
}

.letter {
  display: inline-block;
  margin: 0 5px;
  font-weight: 600;
  color: goldenrod;
}
/*
.letter.vowel {
  color: #0070cc;
  cursor: pointer;
  text-decoration: underline;
}
*/
form#contact-form {
  max-width: 400px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form#contact-form input,
form#contact-form textarea {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form#contact-form button {
  background: #0070cc;
  color: #fff;
  border: none;
  padding: 12px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
}


.turing {
}

.contact-cta h3 {
  text-align: center;
  margin-bottom: 2rem;
}



@media (max-width: 900px) {
  /* Responsive stacking */
  
  .abba-row {
    gap: 60px;
    padding: 60px 20px;
  }
  
  .abba-block,
  .abba-block.reverse {
    flex-direction: column;
  }

  .abba-media,
  .abba-text {
    flex: 1 1 100%;
    max-width: 95vw;
  }
  
  .abba-video {
    max-width: 87vw;
    margin-top: 1rem;
  }

  
  /* Testimonial */

  .testimonial-container {
    padding: 0 20px;
  }
  
  .testimonial-container blockquote {
    width: 100%;
  }


  /* Mobile stacking */
  .hero {
    flex-direction: column;
    gap: 20px;
    padding: 120px 20px 60px;
  }

  .hero-left,
  .hero-right {
    flex: 1 1 100%;
    width: 100%;
  }

  .hero-right {
    flex: 0 1 50%; 
    /*
    display:none;
    */
  }

  .header-container {
    padding: 0 20px;
  }

  .faq-container {
    padding: 0 20px;
  }
}
