/* =======================================================
   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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  width: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #111320;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #f5faf7;
  overflow-x: hidden;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #90ffe0;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ff64c5;
}
ul, ol {
  margin-left: 26px;
  margin-top: 1em;
}
li + li {
  margin-top: 8px;
}

/* =======================================================
   Typography
   ======================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #f5faf7;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #42ffe5;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
  font-weight: 500;
}
strong, b {
  font-weight: 700;
  color: #55fbe0;
}
p {
  line-height: 1.7;
  color: #e7fbeb;
  margin-bottom: 15px;
  margin-top: 0;
}
.text-section {
  margin: 24px 0;
  max-width: 800px;
}


/* =======================================================
   Colors & Aesthetic Variables
   ======================================================= */
:root {
  --primary: #234A36;
  --primary-dark: #172e22;
  --secondary: #98B877;
  --accent: #F2E5C4;
  --neon-cyan: #42ffe5;
  --neon-pink: #ff64c5;
  --neon-blue: #56d9ff;
  --bg-gradient-light: #141a28;
  --bg-gradient-dark: #1a2131;
  --white: #f5faf7;
  --text-dark: #1d2631;
  --shadow: 0 6px 32px 0 rgba(30,80,110,0.21);
  --border-radius: 14px;
}

/* =======================================================
   Container & Layout Spacing
   ======================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-gradient-dark);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
}

/* Feature grid with flexbox */
.feature-grid, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 28px;
}
.feature-grid > div, .card {
  background: #1e2638;
  border: 1px solid #27496c40;
  border-radius: var(--border-radius);
  padding: 32px 22px 22px 22px;
  min-width: 230px;
  flex: 1 1 220px;
  position: relative;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px 0 #42ffe520, 0 1.5px 8px 0 #27496c33;
  transition: box-shadow 0.27s, transform 0.27s;
}
.feature-grid > div:hover, .card:hover {
  box-shadow: 0 4px 36px 0 #42ffe550, 0 1.5px 8px 0 #27496c66;
  transform: translateY(-4px) scale(1.023);
}
.card {
  margin-bottom: 20px;
  position: relative;
}

.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 22px;
  background: #e1ffe2;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 14px 0 #55fbe023;
  color: var(--text-dark);
  font-size: 1.06rem;
  font-weight: 400;
  line-height: 1.55;
  border-left: 4px solid var(--neon-cyan);
}
.testimonial-card p {
  color: #111320;
}
.testimonial-card span {
  font-size: 0.97em;
  color: var(--primary);
  margin-left: 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-box {
  background: #161d2c;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px 0 #42ffe514;
  padding: 24px 22px;
  margin-top: 12px;
  margin-bottom: 30px;
  color: #f5faf7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-box img {
  width: 1.47em;
  margin-right: 10px;
  vertical-align: middle;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* List with more visual focus */
ul li {
  position: relative;
  padding-left: 10px;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  background: linear-gradient(135deg, #42ffe5 45%, #ff64c5 100%);
  border-radius: 50%;
  vertical-align: middle;
  margin-left: -16px;
}


/* =======================================================
   Header & Navigation
   ======================================================= */
header {
  background: #181f31;
  width: 100%;
  box-shadow: 0 2px 18px 0 #234a3660;
  z-index: 20;
  position: relative;
}
header .container {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
header img {
  height: 42px;
  width: auto;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  color: #e7fbe7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  position: relative;
  transition: color 0.16s;
  padding: 2px 0;
}
header nav a:hover,
header nav a.active {
  color: #42ffe5;
}
.btn-primary {
  background: linear-gradient(90deg, #42ffe5 65%, #ff64c5 100%);
  color: #111320;
  border: none;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: bold;
  padding: 12px 36px;
  cursor: pointer;
  box-shadow: 0 2px 16px 0 #42ffe533;
  transition: background 0.16s, color 0.16s, transform 0.16s, box-shadow 0.24s;
  outline: none;
  margin-left: 18px;
  margin-bottom: 0;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #ff64c5 40%, #56d9ff 100%);
  color: #fff;
  box-shadow: 0 4px 28px 0 #ff64c530;
  transform: translateY(-2px) scale(1.03);
}


/* ===============
   Mobile Menu
   =============== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 33;
  background: #181f31;
  color: #42ffe5;
  border: none;
  padding: 10px 17px 10px 15px;
  border-radius: 12px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 12px #34d9ff25;
  transition: background 0.18s, color 0.20s, box-shadow 0.23s;
}
.mobile-menu-toggle:hover {
  background: #181f31c0;
  color: #ff64c5;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #121828ee;
  z-index: 9999;
  transform: translateX(-102%);
  transition: transform 0.38s cubic-bezier(0.73, 0.09, 0.27, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 42px 30px 30px 30px;
  box-shadow: 0 8px 40px #42ffe540;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: rgba(34,74,54,0.85);
  color: #ff64c5;
  border: none;
  border-radius: 14px;
  font-size: 2.1rem;
  padding: 4px 14px 2px 14px;
  margin-bottom: 22px;
  cursor: pointer;
  transition: background 0.18s, color 0.20s, box-shadow 0.18s;
  box-shadow: 0 2px 9px #ffc0ee20;
}
.mobile-menu-close:hover {
  background: #234A36;
  color: #42ffe5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #42ffe5;
  border-bottom: 1px solid #42ffe540;
  padding: 7px 0;
  transition: color 0.15s;
}
.mobile-nav a:hover {
  color: #ff64c5;
}
@media (max-width: 1020px) {
  header .container nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1020px) {
  .mobile-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

@media (max-width: 560px) {
  .mobile-menu {
    padding-left: 10px;
    padding-right: 10px;
  }
}


/* =======================================================
   Section & Card Styling
   ======================================================= */
section {
  width: 100%;
  margin-bottom: 56px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .feature-grid, .content-grid {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
}

/* Smooth transitions for hover/focus */
.card, .feature-grid > div, .testimonial-card, .btn-primary {
  transition: box-shadow 0.19s, background 0.21s, color 0.13s, transform 0.22s;
}

/* Feature grid icon top styling */
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 17px;
  filter: drop-shadow(0 0 7px #42ffe540);
}
.feature-grid h3 {
  margin-top: 0;
}



/* =========================
   Responsive Tables/Lists
   ========================= */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 26px;
}
th,td {
  padding: 13px 7px;
  border-bottom: 1px solid #56d9ff35;
}
th {
  background: #55fbe046;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
}
td {
  color: #e7fbe7;
}


/* =======================================================
   Footer
   ======================================================= */
footer {
  background: #181f31;
  padding: 36px 0 0 0;
  margin-top: 64px;
  color: #beded1;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
}
footer nav a {
  color: #90ffe0;
  font-weight: 500;
  font-size: 1.05rem;
  text-decoration: underline dotted;
  transition: color 0.12s;
}
footer nav a:hover {
  color: #ff64c5;
  text-decoration: underline solid;
}
footer p {
  color: #beded1;
  font-size: 0.97rem;
  margin-bottom: 0;
}


/* =======================================================
   Cookie Consent Banner & Modal
   ======================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #111320;
  color: #e7fbe7;
  box-shadow: 0 -3px 28px #42ffe54c;
  padding: 24px 18px 18px 18px;
  z-index: 99990;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.02rem;
  animation: slideUpCookie 0.60s cubic-bezier(.3,.74,.37,1.29);
}
@keyframes slideUpCookie {
  from { transform: translateY(110px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 6px;
}
.cookie-banner button {
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 26px;
  border: none;
  outline: none;
  font-weight: 600;
  font-size: 1rem;
  margin-right: 0;
  margin-top: 0;
  transition: background 0.16s, color 0.13s, box-shadow 0.15s;
  cursor: pointer;
}
.cookie-banner .accept {
  background: linear-gradient(90deg, #42ffe5 60%, #56d9ff 100%);
  color: #181f31;
}
.cookie-banner .accept:hover {
  background: linear-gradient(90deg, #ff64c5 40%, #56d9ff 100%);
  color: #fff;
}
.cookie-banner .reject {
  background: #181f31;
  color: #ff64c5;
  border: 1.6px solid #ff64c5;
}
.cookie-banner .reject:hover {
  background: #ff64c5;
  color: #fff;
}
.cookie-banner .settings {
  background: #181f31;
  color: #42ffe5;
  border: 1.6px solid #42ffe5;
}
.cookie-banner .settings:hover {
  background: #42ffe5;
  color: #181f31;
}


/* Modal Styles */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #171e2d;
  color: #e7fbe7;
  z-index: 99999;
  border-radius: 16px;
  min-width: 330px;
  max-width: 95vw;
  padding: 34px 32px 28px 32px;
  box-shadow: 0 8px 64px 0 #42ffe580;
  animation: popCookie 0.46s cubic-bezier(.3,.74,.37,1.29);
}
@keyframes popCookie {
  from { transform: translate(-50%,-60%) scale(0.8); opacity: 0; }
  to { transform: translate(-50%,-50%) scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  border: none;
  font-size: 1.85rem;
  color: #ff64c5;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover {
  color: #42ffe5;
}
.cookie-categories {
  margin-top: 8px;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #1e2638;
  padding: 14px 14px;
  border-radius: var(--border-radius);
}
.cookie-category label {
  font-size: 1rem;
  color: #42ffe5;
  font-weight: 500;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  accent-color: #42ffe5;
  width: 22px;
  height: 22px;
}
.cookie-category .essential {
  font-weight: bold;
  color: #ff64c5;
}
.cookie-modal .modal-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal .accept {
  background: linear-gradient(90deg, #42ffe5 61%, #56d9ff 100%);
  color: #181f31;
}
.cookie-modal .accept:hover {
  background: linear-gradient(90deg, #ff64c5 40%, #56d9ff 100%);
  color: #fff;
}
.cookie-modal .cancel {
  background: #181f31;
  color: #42ffe5;
  border: 1.6px solid #42ffe5;
}
.cookie-modal .cancel:hover {
  background: #42ffe5;
  color: #181f31;
}


/* =======================================================
   General Responsive
   ======================================================= */
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper {
    padding-left: 0; padding-right: 0;
  }
  .section {
    padding: 32px 10px;
  }
  .feature-grid, .card-container, .content-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem;}
  h2 { font-size: 1.35rem;}
  h3 { font-size: 1.03rem;}
  .container {
    padding-left: 5px; padding-right: 5px;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .card, .feature-grid > div {
    min-width: 0;
    width: 100%;
    padding: 22px 12px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    font-size: 1rem;
  }
  .content-grid, .card-container {
    gap: 13px;
  }
  .section {
    padding: 26px 5px;
    margin-bottom: 36px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  header .container {
    flex-direction: row;
    height: auto;
    padding-top: 11px;
    padding-bottom: 11px;
    flex-wrap: wrap;
  }
  .btn-primary {
    padding: 10px 18px;
    font-size: 1rem;
    margin-top: 11px;
    margin-left: 0;
  }
  .feature-grid img {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
  }
}
@media (max-width: 640px) {
  h1 { font-size: 1.20rem;}
  h2, h3 { font-size: 1rem;}
  .container, .section {
    padding-left: 3px; padding-right: 3px;
  }
  .feature-grid, .card-container{
    gap: 7px;
  }
  .testimonial-card {
    padding: 13px 7px;
  }
  .cookie-banner {
    padding: 18px 5px 13px 7px;
    font-size: 0.97rem;
  }
}


/* =============================
   Micro-interactions & Effects
   ============================= */
input, button, select, textarea {
  font: inherit;
}
input, textarea, select {
  border-radius: 7px;
  border: 1.5px solid #42ffe540;
  background: #222940;
  color: #e7fbe7;
  padding: 8px 13px;
  transition: border 0.14s, box-shadow 0.23s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #ff64c5;
  outline: none;
  box-shadow: 0 2px 15px #56d9ff29;
}

::selection {
  background: #56d9ff99;
  color: #1d2631;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: #1e2638;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #42ffe5 20%, #56d9ff 80%);
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ff64c5;
}


/* =============================
   Utility Classes
   ============================= */
.d-none { display:none !important; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.center { text-align: center !important; justify-content: center !important; align-items: center !important; }
.flex { display: flex; }

/* Ensuring no element overlaps; enforces margins on all sections/cards */
.card + .card, .feature-grid > div + div {
  margin-left: 0;
  margin-top: 20px;
}
.testimonial-card + .testimonial-card {
  margin-top: 18px;
}

/* =============================
   Misc Fixes for Consistency
   ============================= */
main {
  min-height: 70vh;
}

/* =============================
   Remove outline on mouse, keep on keyboard for accessibility
   ============================= */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid #42ffe5;
  outline-offset: 2px;
}

/* =============================
   Custom Scrollbar for Modal
   ============================= */
.cookie-modal::-webkit-scrollbar {
  width: 6px;
  background-color: #1e2638;
}
.cookie-modal::-webkit-scrollbar-thumb {
  background: #42ffe5;
  border-radius: 7px;
}

/* =============================
   Hide elements used only for JS when inactive
   ============================= */
.cookie-modal, .cookie-banner {
  display: none;
}
.cookie-modal.active, .cookie-banner.active {
  display: flex;
}

/* =============================
   Style for .thank-you, .text-section, .cta-row, etc.
   ============================= */
.thank-you {
  text-align: center;
  margin: 64px auto 32px auto;
  max-width: 520px;
}
.text-section {
  background: #1e2638;
  padding: 22px 25px;
  border-radius: var(--border-radius);
  margin-bottom: 1.2em;
}
.cta-row {
  margin-top: 24px;
}

/* END OF THEME */
