/* -------------------- CSS RESET & NORMALIZE -------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #101821;
  color: #F6F7F2;
  line-height: 1.6;
  word-break: break-word;
  -webkit-tap-highlight-color: transparent;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #F6F7F2;
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 700;
}
p, ul, ol {
  color: #dcecf8;
  font-size: 1rem;
  margin-bottom: 16px;
}
ul, ol {
  padding-left: 28px;
}
li {
  margin-bottom: 8px;
  font-size: 1rem;
}
a {
  color: #41BFD9;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, .footer-nav a:hover, .mobile-nav a:hover {
  color: #F6F7F2;
  text-shadow: 0 0 8px #41BFD9;
}

/* -------------------- LAYOUT UTILITY CLASSES -------------------- */
.container {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* SECTION LAYOUT PATTERNS (MANDATORY) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #162133;
  border-radius: 18px;
  box-shadow: 0 4px 26px 0 rgba(52,236,255,0.06), 0 2px 4px 0 rgba(34,99,150,0.06);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.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: #F6F7F2;
  color: #106080;
  border-radius: 16px;
  box-shadow: 0 6px 36px 0 rgba(65,191,217,0.13);
  margin-bottom: 20px;
  min-width: 240px;
  transition: transform 0.15s, box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 12px 48px 0 rgba(65,191,217,0.22);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ------------- NAVIGATION & HEADER - FUTURISTIC TECH STYLE -------------- */
header {
  width: 100%;
  background: #101821;
  padding: 0;
  box-shadow: 0 2px 16px 0 rgba(65,191,217,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  height: 70px;
  justify-content: flex-start;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #F6F7F2;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
}
.main-nav a.active,
.main-nav a:focus {
  background: #41BFD9;
  color: #101821;
  box-shadow: 0 0 6px #39e6ff;
}
.main-nav a.btn-primary {
  background: #41BFD9;
  color: #101821;
  border-radius: 10px;
  font-size: 1.02rem;
  text-shadow: none;
  letter-spacing: .01em;
  font-weight: 700;
  box-shadow: 0 2px 16px 0 rgba(52,236,255,0.09);
  transition: transform 0.18s, background 0.19s, box-shadow 0.18s;
}
.main-nav a.btn-primary:hover,
.main-nav a.btn-primary:focus {
  background: #126184;
  color: #41BFD9;
  text-shadow: 0 0 12px #41BFD9;
  box-shadow: 0 4px 32px 0 rgba(34,150,250,0.20);
  transform: scale(1.04);
}


/* ------------- MOBILE NAV ICON (BURGER) ------------- */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #41BFD9;
  z-index: 1201;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  transition: background 0.14s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: rgba(65,191,217,0.07);
}

/* ------------- MOBILE SIDE MENU / OVERLAY --------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(16,24,33,0.97);
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.55,.06,.38,1), opacity 0.25s;
  opacity: 0;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  overflow: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 28px 28px 12px 0;
  background: none;
  border: none;
  color: #41BFD9;
  font-size: 2.2rem;
  cursor: pointer;
  border-radius: 8px;
  padding: 3px 9px;
}
.mobile-menu-close:hover {
  background: rgba(65,191,217,0.16);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 36px;
  margin-top: 16px;
}
.mobile-nav a {
  color: #F6F7F2;
  font-size: 1.14rem;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 8px;
  transition: color 0.18s, background 0.17s;
}
.mobile-nav a.active,
.mobile-nav a:focus {
  background: #41BFD9;
  color: #106080;
  box-shadow: 0 0 8px #41BFD9;
}

/* ------------- HERO SECTIONS -------------- */
.hero,
.faq-hero,
.hero-contact,
.hero-thankyou {
  background: linear-gradient(120deg, #126184 0%, #41BFD9 100%);
  padding: 64px 0 38px 0;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  box-shadow: 0 10px 68px 0 rgba(52,236,255,0.07);
}
.hero h1, .faq-hero h1,
.hero-contact h1, .hero-thankyou h1 {
  color: #F6F7F2;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 2.3rem;
  letter-spacing: -1.2px;
  line-height: 1.13;
  margin-bottom: 14px;
  text-shadow: 0 0 24px #126184, 0 1px 1px #106080;
}
.hero p, .faq-hero p, .hero-contact p, .hero-thankyou p {
  color: #E6F7FF;
  font-size: 1.17rem;
  margin-bottom: 14px;
  max-width: 640px;
}


/* --------------- BUTTONS / LINKS -------------- */
.btn-primary,
.btn-secondary {
  display: inline-block;
  cursor: pointer;
  padding: 12px 36px;
  font-size: 1.07rem;
  font-weight: bold;
  border-radius: 16px;
  border: none;
  transition: background 0.19s, color 0.18s, box-shadow 0.15s, transform 0.16s;
  min-width: 162px;
  text-align: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: .01em;
}
.btn-primary,
.main-nav a.btn-primary,
.mobile-nav a.btn-primary {
  background: #41BFD9;
  color: #101821;
  box-shadow: 0 0 18px 0 rgba(52,236,255,0.17), 0 1px 4px 0 rgba(52,236,255,0.09);
  border: 1.5px solid #39e6ff;
}
.btn-primary:hover,
.main-nav a.btn-primary:hover,
.mobile-nav a.btn-primary:hover {
  background: #126184;
  border-color: #41BFD9;
  color: #41BFD9;
  box-shadow: 0 0 22px #41BFD9, 0 1px 6px 0 #126184;
}
.btn-secondary {
  background: #126184;
  color: #F6F7F2;
  border: 1.5px solid #41BFD9;
  box-shadow: 0 0 12px #126184, 0 1px 2px #31c3d6;
}
.btn-secondary:hover {
  background: #41BFD9;
  color: #101821;
  border-color: #126184;
  box-shadow: 0 0 22px #41BFD9;
}


/* --------------- SECTIONS & CTA --------------- */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
.contact-home, .contact-cta {
  background: #126184;
  border-radius: 19px;
  box-shadow: 0 6px 28px #1581a5a6;
  margin-bottom: 56px;
  color: #F6F7F2;
}
.contact-home h2, .contact-cta h2 {
  color: #F6F7F2;
}
.contact-home a, .contact-cta a {
  margin-top: 18px;
}

/* -------------- FEATURES & LISTS --------------- */
.features ul, .services ul, .services-overview ul, .method ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin-bottom: 0;
  margin-top:  0;
}
.features li, .services li, .services-overview li, .method ol li {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  padding-left: 36px;
  color: #F6F7F2;
  min-height: 38px;
}
.features li img,
.services li img,
.services-overview li img {
  width: 28px;
  height: 28px;
  margin-right: 14px;
  position: absolute;
  left: 0;
  top: 2px;
}
.method ol {
  counter-reset: step;
  padding-left: 0;
}
.method ol li {
  padding-left: 56px;
}
.method ol li::before {
  content: counter(step) '.';
  counter-increment: step;
  position: absolute;
  left: 0;
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(to right, #41BFD9, #126184);
  color: #F6F7F2;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9px;
  box-shadow: 0 0 10px #41BFD9;
}


/* ------------- FAQ ACCORDION ---------------------- */
.faq-section {
  background: #162133;
  border-radius: 20px;
  box-shadow: 0 6px 38px 0 rgba(65,191,217,0.12);
  margin-bottom: 56px;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #192f3d;
  border-radius: 14px;
  padding: 22px 18px;
  box-shadow: 0 2px 14px 0 rgba(65,191,217,0.07);
  color: #F6F7F2;
  transition: background 0.14s, box-shadow 0.16s;
  margin-bottom: 8px;
}
.faq-item h3 {
  font-size: 1.17rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #41BFD9;
  margin-bottom: 10px;
}
.faq-item p {
  font-size: 1rem;
  color: #dcecf8;
}
.faq-item:hover {
  background: #223E52;
  box-shadow: 0 6px 20px 0 rgba(65,191,217,0.15);
}

/* -------------- TESTIMONIALS ------------------ */
.testimonials {
  background: #162133;
  border-radius: 18px;
  box-shadow: 0 4px 32px #1ee6fb19;
  margin-bottom: 56px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.testimonials h2 {
  color: #41BFD9;
  font-size: 1.5rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  margin-bottom: 24px;
}
.testimonial-card {
  color: #106080;
  background: #F6F7F2;
  margin-bottom: 20px;
  min-width: 260px;
  font-size: 1.08rem;
}
.testimonial-card p {
  color: #106080;
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.testimonial-card span {
  font-size: .97rem;
  color: #126184;
  font-weight: 600;
}


/* ------------- FOOTER ------------- */
footer {
  background: #101821;
  padding: 40px 0 12px 0;
  border-top: 1.5px solid #243647;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #41BFD9;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 4px 7px;
  border-radius: 8px;
  transition: background 0.18s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #126184;
  color: #F6F7F2;
}
.contact-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 18px;
  margin-top: 8px;
  font-size: 0.97rem;
  color: #dcecf8;
}
.contact-footer span {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 190px;
}
.contact-footer img {
  width: 19px;
  height: 19px;
  filter: drop-shadow(0 0 5px #41BFD9);
}

/* ------------- COOKIE CONSENT BANNER ------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #162133;
  color: #F6F7F2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px 18px;
  box-shadow: 0 -4px 20px #41BFD9cc;
  gap: 24px;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.25s, transform 0.25s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner__text {
  max-width: 420px;
  font-size: 1rem;
  color: #dcecf8;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn,
.cookie-btn-accept,
.cookie-btn-reject,
.cookie-btn-settings {
  border-radius: 10px;
  padding: 8px 22px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border: none;
  font-weight: 600;
  font-size: 1.01rem;
  cursor: pointer;
  transition: background 0.15s, color 0.16s, box-shadow 0.16s;
}
.cookie-btn-accept {
  background: #41BFD9;
  color: #101821;
  border: 1.2px solid #126184;
}
.cookie-btn-accept:hover {
  background: #126184;
  color: #41BFD9;
}
.cookie-btn-reject {
  background: #126184;
  color: #F6F7F2;
  border: 1.2px solid #41BFD9;
}
.cookie-btn-reject:hover {
  background: #F6F7F2;
  color: #126184;
}
.cookie-btn-settings {
  background: transparent;
  color: #41BFD9;
  border: 1.2px solid #41BFD9;
}
.cookie-btn-settings:hover {
  background: #41BFD9;
  color: #101821;
}

/* -- Cookie Modal -- */
.cookie-modal {
  position: fixed;
  z-index: 2100;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16,24,33,0.83);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal__content {
  background: #162133;
  border-radius: 20px;
  padding: 36px 28px;
  min-width: 330px;
  box-shadow: 0 12px 48px 0 rgba(65,191,217,0.18);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-category input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: #41BFD9;
}
.cookie-category label {
  font-size: 1.05rem;
  color: #F6F7F2;
}
.cookie-category.essential label {
  color: #b6eafe;
  font-weight: 500;
}
.cookie-modal__close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  border: none;
  color: #41BFD9;
  font-size: 1.9rem;
  cursor: pointer;
}
.cookie-modal__actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

/* ---------------- FORMS & CONTACT PAGE ------------------ */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  list-style: none;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #F6F7F2;
  font-size: 1.09rem;
}
.contact-details img {
  width: 26px;
  height: 26px;
}


/* ------------- TYPOGRAPHY SCALE ------------- */
h1 { font-size: 2.2rem; margin-bottom: 12px; }
h2 { font-size: 1.5rem; margin-bottom: 10px; }
h3 { font-size: 1.19rem; margin-bottom: 10px; }
h4 { font-size: 1.08rem; margin-bottom: 8px; }
p, li, span { font-size: 1rem; }


/* ------------- BOXES, SHADOWS, RADIUS ------------- */
.card, .faq-item, .testimonial-card, .features, .testimonials {
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(41,191,217,0.14);
}


/* ------------- ANIMATIONS & MICRO-INTERACTIONS ------------- */
.btn-primary, .btn-secondary, .cookie-btn {
  transition: background 0.17s, color 0.14s, box-shadow 0.15s, transform 0.14s;
}
.btn-primary:active, .btn-secondary:active, .cookie-btn:active {
  transform: scale(0.98);
}
.card:hover, .faq-item:hover {
  box-shadow: 0 12px 34px 0 rgba(65,191,217,0.19);
}
.card {
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  transform: translateY(-4px) scale(1.014);
}


/* ------------- RESPONSIVE DESIGN (MOBILE-FIRST) ------------- */
@media (max-width: 1100px) {
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  .main-nav, .footer-nav, .contact-footer {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container, .content-wrapper, .card-container, .content-grid, .contact-footer,
  .footer-nav, .text-image-section {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 18px !important;
  }
  .content-wrapper, .card-container, .footer-nav {
    align-items: stretch;
  }
  .hero, .faq-hero, .hero-contact, .hero-thankyou {
    padding: 40px 0 28px 0;
    border-radius: 0;
  }
  .testimonial-card, .card {
    padding: 18px 12px;
    margin-bottom: 20px;
  }
  .testimonials, .features, .faq-section {
    margin-bottom: 38px !important;
    border-radius: 13px;
    padding: 0 2px;
  }
  section {
    margin-bottom: 38px !important;
    padding: 25px 0 !important;
  }
  .contact-details ul, .features ul, .services ul {
    gap: 10px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    text-align: left;
    padding: 16px 8px;
  }
}
@media (max-width: 550px) {
  html { font-size: 15px; }
  .hero h1, .faq-hero h1,.hero-contact h1, .hero-thankyou h1 { font-size: 1.35rem; }
  h2 { font-size: 1.12rem; }
  .testimonial-card, .card {
    min-width: unset;
  }
  .container { padding-left: 9px; padding-right: 9px;}
}

/* ------------- MAKE SURE NO OVERLAPPING! ------------- */
section, .card, .faq-item, .testimonial-card, .features, .testimonials, .card-container, .content-wrapper {
  margin-bottom: 20px;
}
section:last-child { margin-bottom: 0; }
.card:last-child, .testimonial-card:last-child, .faq-item:last-child {
  margin-bottom: 0;
}

/* ------------- Z-INDEX LAYERS ------------- */
.mobile-menu {
  z-index: 1200;
}
.mobile-menu-toggle {
  z-index: 1201;
}
.cookie-banner {
  z-index: 2000;
}
.cookie-modal {
  z-index: 2100;
}

/* ------------- CUSTOM FONTS: LOAD VIA GOOGLE FONTS ------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@400;500&display=swap');

