/* ===== 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #10161c;
  color: #F4F6F8;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}
table {
  border-collapse: collapse;
}

/* ===== ROOT: DESIGN TOKENS ===== */
:root {
  --primary: #174B3F;
  --secondary: #FFD55A;
  --accent: #F4F6F8;
  --bg-dark: #10161c;
  --bg-alt: #15202a;
  --neon-green: #30FFA4;
  --neon-blue: #40CFFF;
  --shadow: 0 2px 12px 0 rgba(37, 225, 253, 0.10);
  --radius: 15px;
  --border: 1px solid rgba(255,255,255,0.10);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --transition: all 0.22s cubic-bezier(.4,0,.2,1);
}

/* ===== GLOBAL TYPOGRAPHY ===== */
body {
  font-family: var(--font-body);
  font-size: 16px;
  background: linear-gradient(120deg, #10161c 60%, #174B3F 110%);
  color: var(--accent);
  letter-spacing: 0.01em;
}
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 800;
  color: var(--secondary);
  text-shadow: 0 3px 24px rgba(255, 213, 90, 0.30);
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #40CFFF;
  letter-spacing: 0.01em;
  font-weight: 700;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--accent);
  font-weight: 600;
}
p, ul, ol, li {
  font-size: 1rem;
  margin-bottom: 8px;
}
p {
  color: var(--accent);
  opacity: 0.97;
}
strong {
  color: var(--secondary);
  font-weight: 700;
}

/* ===== LAYOUT: CONTAINER & SECTIONS ===== */
.container {
  max-width: 1050px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 22px;
  justify-content: flex-start;
}
.features-grid > div {
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: var(--border);
  padding: 28px 22px 22px 22px;
  box-shadow: 0 2px 30px 0 rgba(64,207,255,0.07);
  flex: 1 1 220px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.features-grid > div:hover {
  box-shadow: 0 8px 32px 0 #40CFFF22,0 1.5px 5px #00FFBE33;
  transform: translateY(-6px) scale(1.025);
  border-color: #30FFA4;
}
.features-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 3px #40CFFF80);
}

/* ===== NAVIGATION ===== */
header {
  width: 100%;
  padding: 0 18px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  background: #15202a;
  z-index: 9;
  position: relative;
  border-bottom: 1px solid #173032;
}
header > a img {
  height: 44px;
  margin-right: 26px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
header nav a {
  color: #F4F6F8;
  font-family: var(--font-display);
  padding: 9px 13px;
  border-radius: 10px;
  font-size: 1rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  opacity: 0.90;
}
header nav a.cta, .cta {
  background: linear-gradient(90deg, #40CFFF 67%, #FFD55A 106%);
  color: #151b21;
  padding: 12px 26px;
  border-radius: 22px;
  font-size: 1.1em;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 1px 25px 0 #40CFFF30, 0 2px 6px #FFD55A22;
  text-shadow: 0 2px 12px rgba(64,207,255,0.09);
  border: none;
  outline: none;
  margin-left: 8px;
  transition: all 0.2s cubic-bezier(.21,.67,.27,.97);
}
header nav a:hover, header nav a:focus {
  background: #173032;
  color: #30FFA4;
  box-shadow: 0 2px 22px #30FFA429;
  opacity: 1.0;
}
header nav a.cta:hover, .cta:hover {
  background: linear-gradient(90deg, #FFD55A 67%, #40CFFF 106%);
  color: #174B3F;
  box-shadow: 0 3px 22px #FFD55A44,0 1px 10px #40CFFF33;
  transform: translateY(-2px) scale(1.035);
}
.mobile-menu-toggle {
  display: none;
  color: #40CFFF;
  font-size: 2.15rem;
  margin-left: 20px;
  z-index: 1101;
  background: none;
  border: none;
  padding: 2px 7px;
  border-radius: 9px;
  transition: background .16s;
}
.mobile-menu-toggle:active {
  background: #173032BB;
}

/* ===== MOBILE MENU STYLES ===== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(124deg, #10161c 78%, #40CFFF 185%);
  z-index: 1111;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.42s cubic-bezier(.41,.69,.33,1.01), opacity .32s;
  box-shadow: -4px 0 22px 0 #30FFA422,0 0 120px 0 #10161cAB;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  color: #FFD55A;
  margin: 18px 18px 0 0;
  background: rgba(20,40,45,0.15);
  border-radius: 50%;
  padding: 7px 18px;
  transition: background 0.13s;
  z-index: 1150;
}
.mobile-menu-close:hover { background: #FFD55A11; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
  align-items: center;
  margin-top: 44px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.19rem;
  font-family: var(--font-display);
  color: #40CFFF;
  background: none;
  border-radius: 10px;
  padding: 13px 28px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  font-weight: 700;
  letter-spacing: .04em;
  margin: 2px 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #30FFA455;
  color: var(--bg-dark);
  box-shadow: 0 1px 18px #30FFA4AA;
}

@media (max-width: 1024px) {
  header nav a:nth-last-child(1) {
    margin-right: 0px;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 11px;
  }
  .container {
    padding-left: 12px; padding-right: 12px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
  .features-grid { gap: 16px; }
  .content-wrapper { gap: 10px; }
}
@media (max-width: 700px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle { display: block; }
}

@media (max-width: 580px) {
  .features-grid > div, .testimonials > .testimonial-card {
    padding: 20px 10px 18px 10px;
    min-width: 0;
  }
}

/* ===== HERO & SECTION SPACING ===== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  section {
    margin-bottom: 36px;
    padding: 24px 6px;
  }
}

/* ===== CARDS & CARD LAYOUTS ===== */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  border: var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 6px 34px 0 #30FFA421, 0 1.5px 7px #FFD55A33;
  transform: translateY(-7px) scale(1.0185);
  border-color: var(--secondary);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* ===== FLEX CONTENT GRIDS ===== */
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .features-grid {
    flex-direction: column;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F9FAFB;
  border-radius: 18px;
  border: 1px solid #EAECF040;
  box-shadow: 0 4px 24px 0 #40CFFF18, 0 1px 5px 0 #FFD55A19;
  min-width: 210px;
  max-width: 325px;
  color: #20292B;
  margin-bottom: 0;
  min-height: 160px;
}
.testimonial-card p {
  color: #182829;
  font-size: 1.09rem;
  font-weight: 500;
  text-shadow: 0 0.5px 2px #FFD55A20;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: var(--primary);
  font-size: 1em;
  opacity: 0.75;
  font-style: italic;
}

/* ===== FAQ ACCORDION ===== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}
.faq-accordion > div {
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: var(--border);
  padding: 20px 18px;
  cursor: pointer;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-accordion > div:hover {
  box-shadow: 0 2px 26px 0 #40CFFF26,0 1.5px 5px #FFD55A11;
  border-color: #40CFFF;
}
.faq-accordion h3 { margin-bottom: 8px; font-size: 1.07rem; color: var(--neon-blue); font-weight: 700; }
.faq-accordion p { margin-bottom: 0; }

/* ===== TABLES ===== */
table {
  width: 100%;
  border-radius: var(--radius);
  background: var(--bg-alt);
  color: var(--accent);
  box-shadow: 0 2px 10px 0 #30FFA415;
  overflow: hidden;
  font-size: 1em;
  margin: 16px 0 8px 0;
}
table th, table td {
  padding: 14px 10px;
  text-align: left;
  border-bottom: 1px solid #15202a;
}
table th {
  background: #173032;
  color: #FFD55A;
  font-family: var(--font-display);
}
table tr:last-child td {
  border-bottom: none;
}
table tbody tr:hover {
  background: #17303244;
}
.note {
  color: #F4F6F8;
  font-size: .96em;
  opacity: 0.82;
  margin-top: 7px;
}

/* ===== LISTS & BULLETS ===== */
ul, ol {
  padding-left: 20px;
  margin-bottom: 18px;
}
ul li, ol li {
  list-style-type: disc;
  margin-bottom: 6px;
}
ul li img, ol li img {
  vertical-align: middle;
  margin-right: 10px;
  width: 21px;
}

/* ===== BUTTONS, CTA, & LINKS ===== */
.cta, .button {
  background: linear-gradient(90deg, #40CFFF 80%, #FFD55A 150%);
  color: #174B3F;
  border: none;
  border-radius: 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 11px 30px;
  margin-top: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  box-shadow: 0 1px 22px #40CFFF19,0 1.5px 5px #FFD55A26;
  transition: background 0.21s, box-shadow 0.18s, transform 0.12s, color 0.12s;
  display: inline-block;
  outline: none;
}
.cta:active,
.button:active {
  background: #30FFA4;
  color: #072018;
  transform: scale(.98);
}
.cta:focus-visible {
  outline: 2px solid #FFD55A;
  outline-offset: 2px;
}

/* ===== FOOTER ===== */
footer {
  background: #15202a;
  color: #F4F6F8;
  padding: 32px 0 16px 0;
  box-shadow: 0 -1.5px 19px #10161c22;
  margin-top: 28px;
  font-size: 1em;
  border-top: 1px solid #173032;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
footer nav a {
  color: #40CFFF;
  font-size: 1em;
  text-decoration: none;
  transition: color .21s;
  opacity: .9;
}
footer nav a:hover, footer nav a:focus {
  color: var(--secondary);
  opacity: 1.0;
}
.contact-details {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  font-size: 0.97em;
  margin: 6px 0 13px 0;
  text-align: center;
  justify-content: center;
}
.contact-details img {
  width: 18px;
  margin: 0 4px -3px 4px;
  opacity: .75;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 15px;
  justify-content: center;
}
.footer-branding img {
  height: 29px;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #10161c;
  border-top: 2px solid #30FFA4;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 1201;
  box-shadow: 0 -1.5px 18px #40CFFF44;
  padding: 20px 34px 20px 22px;
  font-size: 1rem;
  transition: transform .42s cubic-bezier(.41,.69,.33,1.01), opacity .29s;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  color: #AFDFE5;
  margin-right: 18px;
  font-size: 1em;
  flex: 1 0 190px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-banner .button, .cookie-banner button {
  border-radius: 21px;
  padding: 9px 22px;
  font-size: 1em;
  font-weight: 600;
  color: #174B3F;
  border: none;
  box-shadow: 0 1.2px 5px #40CFFF18;
  cursor: pointer;
  background: linear-gradient(90deg, #40CFFF 70%, #FFD55A 200%);
  transition: background .21s, color .14s;
}
.cookie-banner .button.reject {
  background: linear-gradient(90deg, #FFD55A 20%, #40CFFF 140%);
  color: #174B3F;
}
.cookie-banner .button.settings {
  background: #1c2a36;
  color: #FFD55A;
  border: 1px solid #30FFA485;
}
.cookie-banner .button:hover, .cookie-banner button:hover {
  background: #FFD55A;
  color: #174B3F;
}
.cookie-banner .button.settings:hover { background: #21313d; color: #40CFFF; }

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 12px;
  }
}

/* ===== COOKIE PREFERENCES MODAL ===== */
#cookie-modal {
  position: fixed;
  z-index: 2001;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,24,40,0.87);
  pointer-events: none;
  opacity: 0;
  transition: opacity .32s;
}
#cookie-modal.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #1E282C;
  border: 2px solid #40CFFF;
  border-radius: 18px;
  padding: 34px 28px 28px 28px;
  width: 98vw;
  max-width: 390px;
  color: #F4F6F8;
  display: flex;
  flex-direction: column;
  gap: 17px;
  box-shadow: 0 2.5px 35px #30FFA4AA, 0 1.5px 7px #FFD55A33;
  position: relative;
}
.cookie-modal-content h3 { color: #40CFFF; font-size: 1.17rem; margin-bottom: 7px; }
.cookie-modal-content label {
  display: flex;
  align-items: center;
  font-size: 1em;
  gap: 8px;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: #FFD55A;
  width: 17px; height: 17px;
}
.cookie-modal-content .button {
  margin-top: 16px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 15px;
  background: none;
  border: none;
  color: #FFD55A;
  font-size: 1.5rem;
}


/* ===== GENERAL SPACING & FLEX PATTERNS ===== */
.section { margin-bottom: 60px; padding: 40px 20px; }
.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }


/* ===== RESPONSIVE LAYOUT ADJUSTMENTS ===== */
@media (max-width: 768px) {
  .features-grid, .card-container, .content-grid, .testimonials {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .section { margin-bottom: 34px; padding: 26px 8px; }
}


/* ===== FORMS & INPUTS (IF any added) ===== */
input, select, textarea {
  padding: 10px 14px;
  font-family: var(--font-body);
  border: 1px solid #40CFFF55;
  border-radius: 7px;
  background: #f9fbfc;
  color: #10161c;
  font-size: 1rem;
  margin-bottom: 13px;
  outline: none;
  transition: border .19s, box-shadow .14s;
}
input:focus, select:focus, textarea:focus {
  border-color: #FFD55A;
  box-shadow: 0 1px 11px #FFD55A33;
}

/* ===== MICRO-INTERACTIONS ===== */
a, .cta, .button, button {
  transition: background .23s, color .18s, box-shadow .17s, transform .14s;
}

/* ===== MISC/UTILITY ===== */
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.ml-2 { margin-left: 16px; }
.mr-2 { margin-right: 16px; }
.center { justify-content: center; align-items: center; }

/* ===== SCROLLBAR (for desktop) ===== */
::-webkit-scrollbar {
  width: 10px;
  background: #13171B;
}
::-webkit-scrollbar-thumb {
  background: #174B3F;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #40CFFF;
}

/* ===== SELECTION COLOR ===== */
::selection {
  background: #40CFFF77;
  color: #174B3F;
}

/* ===== HIDE OUTLINES ON MOUSE ONLY ===== */
:focus:not(:focus-visible) {
  outline: none;
}

/* ===== PRINT FRIENDLY ===== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, #cookie-modal { display: none !important; }
  section, .section, .container { background: none !important; box-shadow: none !important; color: #000; }
}
