/* --- FREIZEITHAMBURG TECH FUTURISTIC STYLE --- */
/* ==== CSS RESET & NORMALIZE ==== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #10151b;
  color: #F5F3EC;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ==== TYPOGRAPHY SCALE & FONTS ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.3rem; margin-bottom: 24px; }
h2 { font-size: 1.6rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 16px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 14px; }
p, li, blockquote, cite, small {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #F5F3EC;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
strong, b {
  color: #EDB72D;
  font-weight: 700;
}
a {
  color: #EDB72D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
  text-shadow: 0 0 4px #EDB72D;
}

/* ==== LAYOUT CLASSES (MANDATORY PATTERNS) ==== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  position: relative;
  background: #182834;
  margin-bottom: 20px;
  border-radius: 20px;
  padding: 28px 20px;
  box-shadow: 0 4px 24px 0 rgba(23, 76, 99, 0.18);
  transition: box-shadow 0.3s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 #1fc2ff44, 0 2px 10px #EDB72D44;
  transform: translateY(-2px) scale(1.02);
}
.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: #fff;
  color: #222;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 #0002;
  margin-bottom: 24px;
  flex: 1 1 300px;
  max-width: 740px;
}
blockquote {
  color: #21232F;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 8px;
}
cite {
  color: #174C63;
  font-weight: 500;
  font-style: normal;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
ul, ol {
  margin-left: 32px;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 12px;
}

/* ===== GENERAL STYLING AND BACKGROUNDS ===== */
body {
  background: linear-gradient(135deg, #16222A 0%, #274760 100%);
  min-height: 100vh;
}
.hero, .confirmation {
  background: linear-gradient(102deg, #1F2E44 40%, #174C63 120%);
  box-shadow: 0 2px 20px #0c152222;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 56px 0 44px 0;
}
.info-banner {
  margin-top: 20px;
  background: #203852;
  color: #EDB72D;
  border-left: 5px solid #EDB72D;
  border-radius: 10px;
  padding: 16px 24px;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 16px #EDB72D22;
}
.icons img {
  vertical-align: middle;
  margin-right: 12px;
  margin-left: 8px;
}
.text-section {
  max-width: 670px;
  margin: 0 auto;
}
.subheadline {
  color: #EDB72D;
  font-size: 1.18rem;
  margin-bottom: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ==== BUTTONS ==== */
.btn, button, .btn.primary {
  display: inline-block;
  padding: 12px 32px;
  background: #174C63;
  color: #F5F3EC;
  border: none;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.25s, color 0.18s, box-shadow 0.15s, transform 0.18s;
  box-shadow: 0 2px 14px 0 #1FC2FF55;
  margin-top: 8px;
  margin-bottom: 8px;
}
.btn.primary,
.btn.primary:link,
.btn.primary:visited {
  background: #EDB72D;
  color: #222;
  box-shadow: 0 2px 12px 0 #174C6355;
}
.btn.primary:hover, .btn.primary:focus {
  background: #fffde6;
  color: #174C63;
  box-shadow: 0 4px 18px 0 #EDB72Dbb, 0 2px 8px #1FC2FF33;
  transform: translateY(-2px) scale(1.04);
}
button, .btn {
  outline: none;
}
.btn:active {
  background: #E9A500;
  color: #111;
}
/* For critical accessibility */
.btn:focus {
  outline: 2px solid #1FC2FF;
  outline-offset: 2px;
}

/* ==== HEADER / NAVIGATION ==== */
header {
  width: 100%;
  background: #182834;
  box-shadow: 0 3px 24px #0a283b55;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 999;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 22px 0;
}
.logo-link img {
  height: 46px;
  width: auto;
  margin-right: 18px;
}
nav.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
nav.main-nav a {
  color: #EDB72D;
  font-size: 1.04rem;
  letter-spacing: 0.02em;
  transition: color 0.18s, text-shadow 0.16s;
  position: relative;
  padding: 2px 5px;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  color: #fff;
  text-shadow: 0 0 6px #1FC2FF, 0 2px 10px #EDB72D66;
}


/* ==== FOOTER ==== */
footer {
  background: #16222A;
  color: #F5F3EC;
  padding: 40px 0 18px 0;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #EDB72D;
  opacity: 0.88;
  font-size: 0.99rem;
}
.footer-nav a:hover {
  color: #1FC2FF;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
  color: #F5F3EC;
}
.footer-contact img {
  width: 16px;
  margin-right: 10px;
  vertical-align: middle;
}
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-social img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 5px #EDB72D66);
  transition: filter 0.18s, transform 0.16s;
  cursor: pointer;
}
.footer-social img:hover {
  filter: drop-shadow(0 0 6px #1FC2FFbb);
  transform: scale(1.1);
}
footer small {
  display: block;
  margin-top: 18px;
  color: #F5F3EC93;
  font-size: 0.88rem;
  width: 100%;
  text-align: center;
}

/* ==== TABLES, LISTS, BLOCKS (GENERAL) ==== */
table {
  width: 100%;
  background: #202f41;
  border-radius: 10px;
  border-collapse: collapse;
  color: #EDB72D;
  margin-bottom: 26px;
  overflow: hidden;
}
th, td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1.5px solid #234963;
}
th {
  color: #1FC2FF;
}
tr:last-child td {
  border-bottom: none;
}

/* ==== SECTIONS ==== */
.features,
.services,
.trust,
.tips,
.process,
.contact-info,
.about,
.confirmation {
  background: #16222A;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 4px 30px #1FC2FF22;
}
.features h2, .services h2, .trust h2, .tips h2, .process h2, .contact-info h2, .about h2, .confirmation h2 {
  color: #1FC2FF;
  font-family: 'Montserrat', Arial, sans-serif;
}
.features .content-wrapper, .services .content-wrapper, .trust .content-wrapper, .tips .content-wrapper, .process .content-wrapper, .contact-info .content-wrapper, .about .content-wrapper {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ==== RESPONSIVE FLEX LAYOUTS ==== */
@media (max-width: 1000px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 900px) {
  .footer-nav { gap: 12px; }
  .footer-social { margin-bottom: 14px; }
}
@media (max-width: 768px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .header-flex {
    flex-direction: column;
    gap: 16px;
    padding-top: 14px;
    padding-bottom: 12px;
  }
  .main-nav {
    display: none;
  }
  .section, section {
    padding: 32px 8px 36px 8px;
    margin-bottom: 34px;
    border-radius: 14px;
  }
  .hero, .confirmation {
    padding: 36px 0 32px 0;
    border-radius: 14px;
  }
  .footer-social img {
    width: 22px;
    height: 22px;
  }
  .footer-contact {
    font-size: 0.99rem;
  }
  /* FLEX COLUMN for text-image */
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .features .content-wrapper, .services .content-wrapper, .trust .content-wrapper, .tips .content-wrapper, .process .content-wrapper, .contact-info .content-wrapper, .about .content-wrapper {
    gap: 12px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 18px 8px;
    font-size: 1rem;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.12rem; }
  .hero, .confirmation { padding: 19px 0 16px 0; }
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  display: none;
  background: #EDB72D;
  color: #174C63;
  border: none;
  font-size: 2rem;
  border-radius: 8px;
  padding: 6px 20px;
  cursor: pointer;
  position: absolute;
  right: 23px;
  top: 18px;
  z-index: 1001;
  box-shadow: 0 2px 12px #1FC2FF55;
  transition: background 0.18s, color 0.16s, box-shadow 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #1FC2FF;
}
@media (max-width: 1000px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #16222ad9;
  backdrop-filter: blur(4px);
  transform: translateX(-102vw);
  z-index: 2002;
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  box-shadow: 4px 0 32px #1FC2FF33;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 24px 0 20px 16px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #EDB72D;
  cursor: pointer;
  align-self: flex-start;
}
.mobile-menu-close:focus {
  outline: 2px solid #1FC2FF;
  background: #174C63;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  margin-left: 32px;
  margin-top: 16px;
}
.mobile-nav a {
  color: #F5F3EC;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  padding: 7px 14px 7px 4px;
  border-radius: 5px;
  transition: color 0.14s, background 0.14s;
  margin-bottom: 2px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #EDB72D;
  background: #1FC2FF11;
}

@media (min-width: 1001px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #16222A;
  color: #F5F3EC;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 3200;
  box-shadow: 0 -2px 18px #174C6344;
  padding: 22px 18px 22px 18px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookie-slidein 0.6s cubic-bezier(.18,.89,.33,1.14);
}
@keyframes cookie-slidein {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 15px;
  margin-top: 6px;
}
.cookie-consent-banner button {
  padding: 10px 26px;
  font-size: 1rem;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  background: #1FC2FF;
  color: #174C63;
  transition: background 0.18s, color 0.13s, box-shadow 0.13s;
  box-shadow: 0 2px 7px #1FC2FF44;
}
.cookie-consent-banner button.cookie-accept {
  background: #EDB72D;
  color: #174C63;
}
.cookie-consent-banner button.cookie-reject {
  background: #174C63;
  color: #fff;
}
.cookie-consent-banner button.cookie-settings {
  background: #F5F3EC;
  color: #174C63;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  box-shadow: 0 4px 19px #1FC2FF22, 0 1px 3px #EDB72D33;
  background: #fffde6;
  color: #174C63;
}

/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 4000;
  background: rgba(10, 20, 30, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #18283D;
  color: #fff;
  padding: 40px 26px 28px 26px;
  border-radius: 20px;
  box-shadow: 0 6px 40px #EDB72D33, 0 1px 4px #1FC2FF22;
  animation: modal-fadein 0.4s cubic-bezier(.24,.8,.47,1.2);
  min-width: 330px;
  max-width: 98vw;
  max-height: 94vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@keyframes modal-fadein {
  0% { opacity: 0; transform: translateY(80px) scale(0.98); } 
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  color: #1FC2FF;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}
.cookie-modal .category-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #EDB72D;
}
.cookie-modal .category-toggle {
  margin-left: auto;
  display: flex;
  gap: 12px;
}
.cookie-modal input[type='checkbox'] {
  accent-color: #EDB72D;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  outline: none;
  border: none;
}
.cookie-modal .cookie-modal-close {
  background: none;
  border: none;
  color: #EDB72D;
  font-size: 2rem;
  position: absolute;
  top: 19px;
  right: 24px;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .cookie-modal-close:hover {
  color: #1FC2FF;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}
.cookie-modal-actions button {
  background: #1FC2FF;
  color: #174C63;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 28px;
  padding: 8px 28px;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s, box-shadow 0.14s;
}
.cookie-modal-actions button.accept {
  background: #EDB72D;
  color: #174C63;
}
.cookie-modal-actions button.reject {
  background: #174C63;
  color: #fff;
}
.cookie-modal-actions button:focus {
  outline: 2px solid #1FC2FF;
}

@media (max-width: 600px) {
  .cookie-modal {
    min-width: unset;
    padding: 18px 6px 16px 6px;
    border-radius: 14px;
  }
}
/* ==== FORM ELEMENTS ==== */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 16px;
  border: 1.3px solid #274660;
  border-radius: 10px;
  outline: none;
  background: #F5F3EC;
  color: #174C63;
  margin-bottom: 18px;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border: 1.3px solid #EDB72D;
  background: #fffbe2;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1FC2FF;
  margin-bottom: 8px;
  display: inline-block;
}

/* ==== SPECIAL EFFECTS & NEON ACCENTS ==== */
.section, section, .info-banner, .hero, .confirmation {
  box-shadow: 0 4px 36px 0 #1FC2FF18, 0 1.5px 6px 0 #EDB72D18;
  /* Subtle neon shadow effect */
}
h1, h2, h3, .footer-social img, .btn.primary  {
  text-shadow: 0 0 8px #1FC2FF33, 0 2px 9px #174C6344;
}

/* ===== REMOVE OUTLINES FROM NON-INTERACTIVES ===== */
:focus:not(button):not(a):not(input):not(textarea) {
  outline: none;
}

/* ==== MISC & UTILITIES ==== */
.hide {
  display: none !important;
}
.visible {
  display: block !important;
}

/* ==== ACCESSIBILITY ==== */
@media (prefers-color-scheme: dark) {
  body {
    background: linear-gradient(130deg, #10151b 0%, #21405e 100%);
    color: #F5F3EC;
  }
}

/* ===================== */
/* NO CSS GRID USED. NO COLS. PURE FLEXBOX. */
/* ===================== */