/* =====================
   CSS RESET & NORMALIZATION
   ===================== */
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, main, 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #0b1623;
  color: #f5f7fa;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #22e1a6;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #0ff1ce;
  outline: none;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
* {
  box-sizing: inherit;
}

/* =====================
   BRAND: FONTS
   ===================== */
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  color: #FFF;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 16px; }
h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }

p, ul, ol, table, .subheadline {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}
.subheadline {
  color: #b6e2ff;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

strong, b {
  color: #22e1a6;
  font-weight: 700;
}

/* =====================
   LAYOUTS & CONTAINERS
   ===================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =====================
   TECH FUTURISTIC BG/ACCENTS
   ===================== */
.hero, .features, .services, .about, .faq, .contact-info, .review-highlights, .testimonial-card, .legal, .comparison-table, .step-timeline {
  background: linear-gradient(135deg, rgba(17,71,123,0.92) 65%, #1b2638 100%);
  border-radius: 18px;
  box-shadow: 0 2px 24px 0 rgba(12, 102, 61, 0.13),0 0 0 1px rgba(34,225,166,0.05);
}

main {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 40px;
  margin-top: 28px;
}

@media (max-width: 768px) {
  main {
    gap: 24px;
    margin-bottom: 24px;
    margin-top: 12px;
  }
}

/* =====================
   HEADER & NAV
   ===================== */
header {
  background: #0b1623;
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  border-bottom: 2px solid #113355;
  box-shadow: 0 1px 12px 0 rgba(17,71,123,0.12);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 18px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 20px;
  height: 54px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #e0f7ff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  border-radius: 2px;
  margin: 0 auto 0.1em auto;
  width: 0;
  height: 2px;
  background: #22e1a6;
  transition: width 0.2s;
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 90%;
}
.main-nav a.active, .main-nav a:active {
  color: #22e1a6;
}

.cta-btn {
  background: #22e1a6;
  color: #111219;
  font-weight: 700;
  font-size: 1.07rem;
  padding: 11px 26px;
  border: none;
  border-radius: 15px;
  box-shadow: 0 2px 16px 0 rgba(34,225,166,0.14);
  margin-left: 22px;
  display: inline-block;
  cursor: pointer;
  transition: background 0.25s, color 0.22s, transform 0.16s;
  outline: none;
  text-align: center;
  letter-spacing: 0.07em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #0ff1ce;
  color: #0b1623;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 28px 2px rgba(34,225,166,0.19);
}

/* ========================
   MOBILE NAVIGATION BURGER
   ======================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #22e1a6;
  font-size: 2.0rem;
  cursor: pointer;
  z-index: 120;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: rgba(34,225,166,0.15);
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: #0c1522;
  box-shadow: -2px 0 28px 2px rgba(17,71,123,0.18);
  z-index: 500;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.23,1.13,.71,1);
  display: flex;
  flex-direction: column;
  padding: 24px 36px;
  gap: 26px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #22e1a6;
  font-size: 2rem;
  margin-top: 6px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: background 0.13s;
  padding: 5px 9px;
  border-radius: 8px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(34,225,166,0.14);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav a {
  color: #e0f7ff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 12px 0;
  border-bottom: 1px solid #174f81;
  transition: color 0.22s;
  border-radius: 0;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #22e1a6;
}

@media (max-width: 1020px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    width: 100vw;
    padding: 23px 18px;
  }
  .mobile-nav a {
    font-size: 1.07rem;
  }
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  margin-bottom: 60px;
  background: linear-gradient(100deg, #11477B 60%, #0b1623 100%);
  box-shadow: 0 6px 24px 2px rgba(17,71,123,0.14);
  border-radius: 20px;
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  max-width: 700px;
}
.hero h1 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 36px #22e1a620;
}
.hero .subheadline {
  color: #b6e2ff;
  font-size: 1.2rem;
}

/* =========================
   FLEX-BASED LAYOUTS: CARDS
   ========================= */
.service-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: space-between;
}
.service-card {
  background: #141e2c;
  border-radius: 18px;
  flex: 1 1 270px;
  min-width: 260px;
  max-width: 356px;
  box-shadow: 0 2px 24px 0 rgba(17,71,123,0.12);
  padding: 32px 22px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  border: 1px solid rgba(34,225,166,0.11);
  transition: box-shadow 0.21s, border 0.19s, transform 0.22s;
  margin-bottom: 20px;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 8px 34px 5px rgba(34,225,166,0.13),0 2px 40px 0 rgba(17,71,123,0.18);
  border: 1.5px solid #22e1a6;
  transform: translateY(-2px) scale(1.024);
}
.service-card h3, .service-card h2 {
  color: #22e1a6;
  font-size: 1.35rem;
  margin-bottom: 4px;
}
.service-card span {
  font-size: 1.07rem;
  color: #b6e2ff;
  margin-top: 12px;
  font-weight: 700;
}

/* =========================
   TESTIMONIALS / REVIEW HIGHLIGHTS
   ========================= */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F2F5F8;
  color: #122644;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
  width: 100%;
  box-shadow: 0 2px 12px 0 rgba(34,225,166,0.09);
  border: 1px solid #b6e2ff;
  font-size: 1.03rem;
}
.testimonial-card p {
  color: #122644;
  font-size: 1.09rem;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #11477B;
  font-weight: 600;
}
.review-highlights {
  background: #122644;
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 16px;
  box-shadow: 0 1px 8px 0 rgba(34,225,166,0.11);
  color: #e0f7ff;
}
.review-highlights ul {
  list-style: none;
  padding-left: 0;
}
.review-highlights li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* =========================
   FEATURES LIST/STEPS/FAQ
   ========================= */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .content-wrapper ul {
  margin-top: 0;
  margin-bottom: 10px;
}
.features ul li, .features ul li strong {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #d6f2ee;
}

.about {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #141e2c;
  border-radius: 14px;
  padding: 22px 18px;
  color: #effbfa;
  transition: box-shadow 0.18s;
  box-shadow: 0 2px 10px 0 rgba(34,225,166,0.06);
  border: 1.1px solid rgba(34,225,166,0.09);
}
.faq-item h3 {
  color: #22e1a6;
  font-size: 1.12rem;
  margin-bottom: 9px;
}

/* ================
   COMPARISON TABLE
   ================ */
.comparison-table {
  margin: 20px 0 22px 0;
  overflow-x: auto;
  background: transparent;
  border-radius: 8px;
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: #161b25;
  color: #e0f7ff;
  font-size: 0.98rem;
  border-radius: 8px;
}
.comparison-table th, .comparison-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #3be1a6cc;
  text-align: left;
  white-space: nowrap;
}
.comparison-table th {
  background: #122644;
  color: #0ff1ce;
  font-weight: 700;
  font-size: 1.01rem;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}

/* =========================
   TIMELINE / PROCESS STEPS
   ========================= */
.step-timeline {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1.05rem;
  background: #18253b;
  border-radius: 11px;
  padding: 20px 26px;
  margin-bottom: 18px;
  border: 1px solid #22e1a633;
  color: #b6e2ff;
}
.process-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
  align-items: center;
  justify-content: flex-start;
}
.process-icons img {
  width: 48px;
  height: 48px;
  background: #1b3147;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid #1aefbc44;
  transition: box-shadow 0.15s;
}
.process-icons img:hover, .process-icons img:focus {
  box-shadow: 0 0 12px 4px #0ff1ce55, 0 0 2px #22e1a6;
}

/* =========================
   CONTACT INFO & FOOTER
   ========================= */
.company-contact-info, .company-details {
  background: #141e2c;
  border-radius: 13px;
  padding: 16px 21px;
  margin-bottom: 18px;
  font-size: 1rem;
  color: #ddefff;
  box-shadow: 0 2px 10px 0 rgba(17,71,123,0.07);
}
.company-contact-info strong, .company-details strong {
  color: #22e1a6;
}
.company-contact-info a, .company-details a {
  color: #0ff1ce;
}

footer {
  background: #101726;
  color: #e0f7ff;
  padding-top: 42px;
  padding-bottom: 10px;
  font-size: 1rem;
  border-top: 2px solid #11477B;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-logo {
  display: flex;
  align-items: center;
}
.footer-logo img {
  width: 44px;
  height: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: #b6e2ff;
  font-weight: 600;
  font-size: 1.03rem;
  letter-spacing: 0.04em;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #22e1a6;
}
.footer-contact {
  color: #b6e2ff;
  font-size: 0.99rem;
  margin-right: 10px;
}
.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
}
.social-links a img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 1px 6px #0ff1ce2c);
  transition: filter 0.15s;
}
.social-links a:hover img {
  filter: drop-shadow(0 2px 14px #0ff1ce93);
}
.footer-copy {
  width: 100%;
  text-align: center;
  color: #7adbbf;
  font-size: 0.91rem;
  margin-top: 14px;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 18px;
  }
}

/* =========================
   MODAL/COOKIE BANNER
   ========================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #0c2233;
  color: #d6f2ee;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 30px 18px 22px;
  box-shadow: 0 -3px 22px 3px #22e1a680;
  border-radius: 20px 20px 0 0;
  transition: transform .35s;
}
.cookie-banner.hide {
  transform: translateY(200%);
}
.cookie-banner__text {
  flex: 1 1 0px;
  margin-right: 10px;
  font-size: 1.02rem;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-btn-primary {
  font-family: inherit;
  font-weight: 700;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  padding: 9px 16px;
  font-size: 1rem;
  transition: background 0.18s, color 0.17s, box-shadow 0.17s;
}
.cookie-btn-primary {
  background: #22e1a6;
  color: #101726;
}
.cookie-btn-primary:hover, .cookie-btn-primary:focus {
  background: #0ff1ce;
  color: #0c2233;
  box-shadow: 0 2px 8px #0ff1ce44;
}
.cookie-btn {
  background: #172944;
  color: #22e1a6;
  border: 1.2px solid #22e1a6;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #101725;
  color: #0ff1ce;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(17,71,123,0.88);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.19s;
}
.cookie-modal.hide {
  display: none;
}
.cookie-modal__content {
  background: #0c1522;
  color: #e0f7ff;
  max-width: 400px;
  width: 94vw;
  padding: 38px 28px 24px 28px;
  border-radius: 22px;
  box-shadow: 0 4px 32px #22e1a64c;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: #22e1a6;
  font-size: 1.32rem;
  cursor: pointer;
}
.cookie-prefs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 10px 0;
}
.cookie-pref-group {
  background: #132242;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  font-size: 1.07rem;
}
.cookie-pref-group label {
  color: #ddefff;
  font-weight: 600;
}
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 20px;
  background: #101725;
  border-radius: 13px;
  position: relative;
  outline: none;
  cursor: pointer;
  border: 1.2px solid #22e1a6;
  transition: background 0.15s;
}
.cookie-toggle:checked {
  background: #22e1a6;
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.17s;
  position: absolute;
  top: 1px;
  left: 1px;
}
.cookie-toggle:checked::before {
  transform: translateX(20px);
  background: #101725;
}
/* Essential always enabled */
.cookie-pref-group[data-essential="true"] .cookie-toggle {
  background: #22e1a6 !important;
  border: 1.2px solid #22e1a6 !important;
  pointer-events: none;
}
.cookie-pref-group[data-essential="true"] label {
  color: #0ff1ce;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 13px 18px 16px 13px;
    font-size: 0.97rem;
  }
  .cookie-banner__actions {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* =========================
   FLEX CONTAINER SHORTCUTS/MANDATORY SPACING
   ========================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */
@media (max-width: 1020px) {
  .container {
    max-width: 96vw;
  }
  .service-card {
    flex: 1 1 85vw;
    min-width: 240px;
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
}
@media (max-width: 768px) {
  .service-card-list, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-main, .features .content-wrapper, .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .hero, .features, .services, .about, .faq, .contact-info, .legal {
    padding: 24px 7px;
    margin-bottom: 38px;
    border-radius: 12px;
  }
  .section {
    margin-bottom: 34px;
    padding: 22px 11px;
  }
}
@media (max-width: 490px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.19rem; }
  .hero { min-height: 155px; }
  .cta-btn { font-size: 1rem; padding: 8px 13px; }
}

/* =========================
   FOCUS VISIBLE
   ========================= */
:focus-visible {
  outline: 2px solid #22e1a6 !important;
  outline-offset: 2px;
}

/* =========================
   MICRO-INTERACTIONS
   ========================= */
button, .cta-btn, .cookie-btn, .cookie-btn-primary {
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform 0.13s;
}
button:active, .cta-btn:active, .cookie-btn:active, .cookie-btn-primary:active {
  transform: scale(0.97);
}

/* ===============
   PRINT STYLES (hide nav)
   =============== */
@media print {
  header, footer, .mobile-menu, .cookie-banner {
    display: none !important;
  }
}
