/* --- CSS RESET & NORMALIZATION --- */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #181820;
}
body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #EFECEC;
  background-color: #181820;
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.4s;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #EFECEC;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 16px rgba(143,167,186,0.10);
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }
h5, h6 { font-size: 1rem; }
p, ul, ol, dl, blockquote {
  margin: 0 0 16px 0;
  color: #D6DEE6;
}
a {
  color: #8FA7BA;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #52e5ff;
  text-shadow: 0 0 6px #7be8ff;
}
strong {
  color: #EFECEC;
  font-weight: 600;
}
img {
  display: block;
  max-width: 100%;
}
ul, ol {
  padding-left: 20px;
}
li {
  margin-bottom: 8px;
  font-size: 1rem;
}
/* --- Global Classes & Layouts --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #23232c 60%, #20202c 100%);
  border-radius: 24px;
  box-shadow: 0 8px 40px 0 rgba(143,167,186,0.09), 0 2px 10px 0 #141A1F;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #23232c;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(143,167,186,0.08);
  padding: 24px;
  color: #D6DEE6;
  transition: box-shadow 0.2s, border 0.2s;
}
.card:hover, .card:focus {
  box-shadow: 0 4px 32px #8FA7BA33, 0 2px 16px #11131f66;
  border: 1px solid #8FA7BA44;
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #EFECEC;
  color: #2B2A29;
  border-radius: 20px;
  box-shadow: 0 4px 24px #8FA7BA11, 0 1.5px 11px #88888812;
  margin-bottom: 20px;
  flex: 1 1 320px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 32px #8FA7BA33, 0 2px 18px #8FA7BA33;
  transform: translateY(-3px) scale(1.01);
  z-index: 2;
}
.testimonial-card blockquote {
  color: #31313a;
  font-size: 1.1rem;
  font-style: italic;
  margin: 0 0 4px 0;
  line-height: 1.5;
}
.testimonial-card p {
  color: #525263;
  margin: 0;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.service-list > div {
  background: #242434;
  color: #D6DEE6;
  border-radius: 16px;
  padding: 22px 24px;
  min-width: 240px;
  flex: 1 1 220px;
  box-shadow: 0 4px 24px #8fa7ba08;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
  border: 1.5px solid transparent;
}
.service-list > div:hover, .service-list > div:focus {
  border-color: #8FA7BA;
  box-shadow: 0 6px 26px #8FA7BA33;
  z-index: 2;
}
.registration-info {
  margin-top: 12px;
  font-size: 1rem;
  color: #bbc4ce;
}
.footer-links,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-bottom: 16px;
}
.footer-links a {
  color: #8FA7BA;
  font-size: 0.97rem;
  padding-right: 14px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #52e5ff;
}
.footer-contact p {
  margin: 0;
  color: #b5bac4;
  font-size: 0.97rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 100px;
}
/* --- Header & Navigation --- */
header {
  background: #20202c;
  box-shadow: 0 4px 40px #8FA7BA09;
  position: relative;
  z-index: 11;
}
.logo-link {
  display: flex;
  align-items: center;
  margin-right: 32px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 20px 12px 20px;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
nav a {
  color: #EFECEC;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  padding: 6px 0;
  position: relative;
}
nav a:hover, nav a:focus {
  color: #8FA7BA;
  text-shadow: 0 0 6px #8FA7BA;
  transition: color 0.13s;
}
.cta-btn, .cta-btn.primary {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  background: #8FA7BA;
  border: none;
  color: #23232c;
  border-radius: 32px;
  padding: 12px 38px;
  margin-left: 12px;
  box-shadow: 0 3px 14px #8FA7BA22;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  outline: none;
  text-decoration: none;
  display: inline-block;
}
.cta-btn.primary {
  background: linear-gradient(90deg, #8FA7BA 0%, #7be8ff 100%);
  color: #181820;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #2eeace 0%, #7be8ff 100%);
  color: #23232c;
  box-shadow: 0 6px 32px #44dfff66, 0 4px 24px #18182033;
  transform: translateY(-2px) scale(1.03);
}
/* Hamburger - Mobile menu button */
.mobile-menu-toggle {
  display: none;
  background: rgba(143,167,186,0.12);
  border: 2px solid #8FA7BA;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2.1rem;
  color: #8FA7BA;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: border 0.2s, background 0.2s, color 0.3s;
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 111;
  outline: none;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #23232c;
  border-color: #52e5ff;
  color: #52e5ff;
}
/* --- Mobile FULLSCREEN MENU --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 222;
  background: linear-gradient(145deg, #191C2D 80%, #13151F 100%);
  box-shadow: 0 3px 32px #181820ee;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px;
  transition: transform 0.37s cubic-bezier(.62,.15,.38,1.11), opacity 0.22s;
  transform: translateX(100%);
  opacity: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
  opacity: 1;
  animation: mobileMenuSlideIn 0.4s cubic-bezier(.62,.15,.38,1.11) 1;
}
@keyframes mobileMenuSlideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0%); opacity: 1; }
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #8FA7BA;
  font-size: 2rem;
  align-self: flex-end;
  margin-bottom: 16px;
  cursor: pointer;
  transition: color 0.2s;
  outline: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #2eeace;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 24px;
}
.mobile-nav a {
  color: #EFECEC;
  font-size: 1.3rem;
  padding: 14px 0;
  font-family: 'Montserrat',sans-serif;
  border-bottom: 1px solid #23232c;
  transition: color 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #8FA7BA;
  text-shadow: 0 0 9px #7be8ff;
}
/* --- Main Sections --- */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
.subheadline {
  color: #8FA7BA;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.blockquote, blockquote {
  border-left: 3px solid #8FA7BA;
  padding-left: 13px;
  background: none;
  color: #2b2a29;
  font-size: 1.1rem;
}
/* --- Buttons & Interactions --- */
button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.23s, color 0.18s, box-shadow 0.19s, transform 0.14s;
}
button:focus, .cta-btn:focus {
  outline: 2px solid #8FA7BA;
  outline-offset: 2px;
}
/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #181820e6;
  color: #EFECEC;
  box-shadow: 0 -2px 16px #8FA7BA33;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  font-size: 1.07rem;
  animation: cookieBannerFadeIn 0.7s;
}
@keyframes cookieBannerFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-btn {
  background: #8FA7BA;
  color: #23232c;
  border: none;
  border-radius: 24px;
  padding: 7.5px 22px;
  font-size: 1rem;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  cursor: pointer;
  margin-right: 0;
  box-shadow: 0 2px 9px #8FA7BA22;
  transition: background 0.18s, color 0.16s, box-shadow 0.12s;
}
.cookie-btn.settings {
  background: transparent;
  color: #8FA7BA;
  border: 1.7px solid #8FA7BA;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #2eeace;
  color: #181820;
  box-shadow: 0 3px 12px #52e5ff44;
}
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: #191c2ddb;
  z-index: 3333;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: fadeInModal 0.28s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #23232c;
  color: #EFECEC;
  border-radius: 18px;
  box-shadow: 0 6px 40px #8FA7BA55;
  padding: 40px 28px 28px 28px;
  min-width: 340px;
  max-width: 94vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideDownModal 0.28s;
}
@keyframes slideDownModal {
  from { transform: translateY(-25px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: #8FA7BA;
  font-size: 1.32rem;
  margin: 0 0 20px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}
.cookie-category label {
  color: #EFECEC;
  font-size: 1.06rem;
}
.cookie-toggle {
  appearance: none;
  width: 42px;
  height: 22px;
  background: #313141;
  border-radius: 15px;
  position: relative;
  outline: none;
  margin-left: 0;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-toggle:checked {
  background: #8FA7BA;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ECECEC;
  transition: transform 0.23s, background 0.13s;
}
.cookie-toggle:checked:before {
  background: #2B2A29;
  transform: translateX(20px);
}
.cookie-modal .cookie-btn {
  margin-top: 12px;
  min-width: 120px;
}
.cookie-modal .cookie-btn:last-child {
  margin-left: 10px;
}
.cookie-modal .cookie-modal-close {
  background: transparent;
  border: none;
  color: #8FA7BA;
  font-size: 1.7rem;
  position: absolute;
  right: 21px;
  top: 21px;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: #2eeace;
}
/* --- Responsive --- */
@media (max-width: 1100px) {
  .container {
    max-width: 950px;
    padding: 0 12px;
  }
  .card-container, .content-grid, .service-list {
    gap: 18px;
  }
}
@media (max-width: 850px) {
  .container {
    max-width: 98vw;
    padding: 0 5vw;
  }
  .card-container, .content-grid, .service-list, .footer-links, .footer-contact {
    gap: 13px;
  }
  section {
    padding: 28px 0;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 7vw;
    max-width: 100vw;
  }
  header .container {
    gap: 12px;
  }
  nav {
    display: none;
  }
  .cta-btn.primary {
    margin-left: 0;
    margin-top: 16px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 12px;
  }
  .footer-links, .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .section {
    padding: 23px 6px;
    margin-bottom: 32px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 10px;
    gap: 10px;
    font-size: 1rem;
  }
}
/* --- Utilities --- */
.hide {
  display: none !important;
}
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left  { text-align: left; }

::-webkit-input-placeholder { color: #bfc5cc; }
::-moz-placeholder          { color: #bfc5cc; }
:-ms-input-placeholder      { color: #bfc5cc; }
::placeholder              { color: #bfc5cc; }

/* --- Futuristic / Neon Accents --- */
.neon {
  color: #52e5ff;
  text-shadow: 0 0 10px #7be8ff88, 0 0 12px #2eeace55;
}
hr {
  border: none;
  border-bottom: 1.5px solid #8FA7BA33;
  margin: 24px 0;
}

/* --- Decorative Futuristic Element (optional absolute) --- */
.futura-glow {
  position: absolute;
  top: -30px; left: -30px;
  width: 90px; height: 90px;
  pointer-events: none;
  background: radial-gradient(circle at 25% 45%, #46f3ff44 0%, #8FA7BA11 85%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(8px);
  opacity: 0.44;
}

/* --- END CSS --- */
