﻿@charset "UTF-8";
/* ============================================
   BluSpace Landing Page Styles
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  color: #ffffff;
  background-color: #161821;
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Golos Text", sans-serif;
  font-weight: 800;
}

a {
  color: #00acd8;
  text-decoration: none;
  transition: opacity 0.2s;
}
a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
}

.text-bright-blue {
  color: #00acd8;
}

.text-white {
  color: #ffffff;
}

.text-dark-blue {
  color: #161821;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #161821;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.site-header-solid {
  background-color: #161821;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 50px;
  width: auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.8rem;
  color: #ffffff;
  opacity: 0.8;
}
.header-contact a {
  color: #ffffff;
  text-decoration: none;
}
.header-contact a:hover {
  opacity: 0.7;
}

.header-flag img {
  width: 24px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
}

.btn-demo-header {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #161821;
  background-color: #00acd8;
  border: none;
  border-radius: 50px;
  padding: 7px 20px;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
}
.btn-demo-header:hover {
  background-color: #00c4f5;
  color: #161821;
}

.hero-section {
  background-color: #ffffff;
  background-image: url("/images/header-background-image.jpg");
  background-size: 100% 65%;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
}
.hero-section h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.hero-screenshot {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.hero-screenshot img {
  border-radius: 8px;
  box-shadow: none;
}

.scroll-indicator {
  text-align: center;
  padding: 40px 0 0;
  position: relative;
  z-index: 2;
}
.scroll-indicator img {
  width: 40px;
  height: auto;
  opacity: 1;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
section {
  padding: 80px 0;
}
section h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 20px;
}
section > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
  opacity: 0.85;
}

.section-light {
  background-color: #ffffff;
  color: #161821;
  overflow: hidden;
}
.section-light h2 {
  color: #00acd8;
}
.section-light p,
.section-light > .container > p {
  color: #333;
  opacity: 1;
}

.content-page h2 {
  text-align: center;
  margin-bottom: 30px;
}
.content-page p,
.content-page > .container > p {
  text-align: left;
  max-width: 100%;
}
.content-page h5,
.content-page h6 {
  text-align: left;
  margin-top: 30px;
  margin-bottom: 10px;
}
.content-page ul,
.content-page ol {
  margin-bottom: 20px;
  padding-left: 24px;
}
.content-page li {
  margin-bottom: 6px;
}

.section-built {
  padding-top: 60px;
}
.section-built h2 {
  font-size: 2.4rem;
}

.screenshot-with-dots {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.dots-background {
  position: absolute;
  top: 20%;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: 0;
  background-image: url("/images/dots-grey-grid.png");
  background-repeat: repeat;
  background-size: 120px;
  opacity: 0.6;
}
.dots-background img {
  display: none;
}

.screenshot {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  box-shadow: none;
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.section-uk-data {
  text-align: center;
}

.uk-data-image {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  z-index: 1;
}
.uk-data-image > img {
  border-radius: 8px;
  box-shadow: none;
}

.section-clarity {
  background: radial-gradient(ellipse at center, #132b4f 0%, #132b4f 35%, #161821 70%);
  padding: 100px 0;
  overflow: hidden;
}
.section-clarity h2 {
  font-size: 2.4rem;
  margin-bottom: 50px;
  color: #00acd8;
}

.clarity-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.clarity-screenshot {
  flex: 1;
  min-width: 300px;
  max-width: 700px;
}
.clarity-screenshot img {
  border-radius: 8px;
  box-shadow: none;
}

.pricing-card {
  flex: 0 0 500px;
  background-color: #161821;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pricing-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: "Golos Text", sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: #00acd8;
  margin-bottom: 4px;
}

.pricing-vat {
  font-size: 1rem;
  font-weight: 400;
  color: #00acd8;
}

.pricing-follow {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 4px;
}

.pricing-monthly {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 30px;
}
.pricing-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.85;
}
.pricing-features li strong {
  font-weight: 700;
}
.pricing-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00acd8;
}

.btn-get-started {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #161821;
  background-color: #00acd8;
  border: none;
  border-radius: 4px;
  padding: 14px 40px;
  cursor: pointer;
  display: inline-block;
  transition: background-color 0.2s;
  text-decoration: none;
}
.btn-get-started:hover {
  background-color: #00c4f5;
  color: #161821;
}

.section-more {
  background-color: #00acd8;
  position: relative;
  overflow: hidden;
  color: #161821;
}
.section-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/images/dots-blue-grid.png");
  background-repeat: repeat;
  background-size: 120px;
  opacity: 0.2;
  pointer-events: none;
}
.section-more .container {
  position: relative;
  z-index: 1;
}
.section-more h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #161821;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 60px;
  max-width: 900px;
  margin: 0 auto 50px;
}

.feature-item h3 {
  font-family: "Golos Text", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #161821;
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #161821;
  opacity: 0.85;
}

.more-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-request-demo,
.btn-speak-team {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 22px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-request-demo {
  background-color: #ffffff;
  color: #161821;
  border: 2px solid #ffffff;
}
.btn-request-demo:hover {
  background-color: #f0f0f0;
  color: #161821;
}

.btn-speak-team {
  background-color: transparent;
  color: #161821;
  border: 2px solid #161821;
}
.btn-speak-team:hover {
  background-color: #161821;
  color: #ffffff;
}

.site-footer {
  background-color: #161821;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
}

.footer-links {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 0.8rem;
}
.footer-links a {
  color: #ffffff;
  transition: opacity 0.2s;
}
.footer-links a:hover {
  opacity: 0.7;
}
.footer-links span {
  color: rgba(255, 255, 255, 0.4);
}

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

.footer-company-info p {
  font-size: 0.75rem;
  color: #ffffff;
  opacity: 1;
  line-height: 1.6;
}
.footer-copyright {
  color: #00acd8;
}

.footer-logo img {
  height: 28px;
  width: auto;
  opacity: 1;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(22, 24, 33, 0.85);
  backdrop-filter: blur(4px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.modal-overlay.active {
  display: flex;
}

.demo-modal {
  background: linear-gradient(135deg, #00acd8, #00c4f5);
  border-radius: 16px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  color: #161821;
}
.demo-modal h2 {
  font-family: "Golos Text", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #161821;
  text-align: center;
  margin-bottom: 24px;
}
.demo-modal .form-group {
  margin-bottom: 14px;
}
.demo-modal .form-control {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 4px;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  background-color: #ffffff;
  color: #161821;
}
.demo-modal .form-control::placeholder {
  color: #999;
}
.demo-modal .form-check {
  margin: 16px 0 20px;
}
.demo-modal .form-check-input {
  margin-right: 8px;
  accent-color: #161821;
}
.demo-modal .form-check-label {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #161821;
  opacity: 0.8;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #161821;
  cursor: pointer;
  line-height: 1;
  opacity: 0.6;
}
.modal-close:hover {
  opacity: 1;
}

.btn-submit {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
  background-color: #161821;
  border: none;
  border-radius: 4px;
  padding: 14px 40px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  transition: background-color 0.2s;
}
.btn-submit:hover {
  background-color: #2a2d3d;
}

.success-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #00acd8;
  color: #161821;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 3000;
  animation: fadeInOut 4s forwards;
  box-shadow: 0 4px 20px rgba(0, 172, 216, 0.3);
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  10% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media (max-width: 1100px) {
  .clarity-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: auto;
  }
  .clarity-screenshot {
    position: relative;
    left: -24px;
    width: calc(100% + 24px);
    max-width: 700px;
    transform: none;
  }
  .clarity-screenshot img {
    border-radius: 0 8px 8px 0;
  }
  .pricing-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
    align-self: center;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 12px 16px;
  }
  .header-logo img {
    height: 36px;
  }
  .header-right {
    gap: 12px;
  }
  .btn-demo-header {
    font-size: 0.7rem;
    padding: 6px 14px;
  }
  .hero-section h1 {
    font-size: 1.8rem;
  }
  section h2 {
    font-size: 1.6rem;
  }
  .clarity-content {
    flex-direction: column;
  }
  .clarity-screenshot {
    position: static;
    width: 100%;
    max-width: 100%;
    transform: none;
  }
  .clarity-screenshot img {
    border-radius: 8px;
  }
  .clarity-content {
    min-height: auto;
    flex-direction: column;
    justify-content: center;
  }
  .pricing-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
  }
  .pricing-card {
    max-width: 100%;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .header-contact {
    display: none !important;
  }
  .section-welcome .container {
    flex-direction: column;
    align-items: center;
  }
  .welcome-card {
    max-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .pricing-amount {
    font-size: 2.4rem;
  }
  .demo-modal {
    padding: 28px 24px;
  }
}
@media (max-width: 480px) {
  .hero-section {
    padding-top: 100px;
  }
  .hero-section h1 {
    font-size: 1.5rem;
  }
  .email-input-group {
    flex-direction: column;
  }
}
