/* ==== 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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  background: #191A26;
  color: #F2F2F6;
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0.1);
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border-radius: 7px;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 14px;
  text-align: left;
}
th {
  background: #27284A;
  color: #FDA47A;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
}
td {
  background: #23233a;
  color: #F2F2F6;
  font-size: 16px;
  border-bottom: 1px solid #35365B;
}

/* ==== BRAND COLORS & VARIABLES ==== */
:root {
  --primary: #2A2C4D;
  --secondary: #EEC9DA;
  --accent: #FDA47A;
  --bg-dark: #191A26;
  --bg-card: #242442;
  --bg-light: #fff;
  --text-light: #F2F2F6;
  --text-dark: #212134;
  --neon-blue: #20CDEF;
  --neon-pink: #fb47da;
  --border-radius: 18px;
  --container-pad: 20px;
  --shadow: 0 4px 24px 0 rgba(90,70,120,0.14), 0 1.5px 7px 0 rgba(253,164,122,.06);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Lato', Arial, Helvetica, sans-serif;
}

/* ==== BASE TYPOGRAPHY ==== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.5px;
}
h1 { font-size: 2.75rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 15px; }
h3 { font-size: 1.28rem; margin-bottom: 10px; }
h4 { font-size: 1.16rem; margin-bottom: 7px; }
p, ul li, ol li { color: var(--text-light); font-size: 1.1rem; line-height: 1.6; }
strong { color: var(--accent); font-weight: bold; }
.subheadline { color: var(--neon-blue); font-size: 1.2rem; margin-bottom: 20px; }

@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.14rem; }
  p, ul li, ol li { font-size: 1rem; }
}

/* ========== LAYOUT UTILITIES ========== */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px 20px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { 
  position: relative; 
  margin-bottom: 20px; 
  background: var(--bg-card); 
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: transform .14s cubic-bezier(.59, .27, .07, 1.01), box-shadow .22s;
}
.card:hover, .testimonial-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 6px 32px 0 rgba(32, 205, 239, 0.096), 0 2.5px 15px 0 rgba(251,71,218,.11);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 24px 20px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  border-left: 6px solid var(--neon-blue);
  color: var(--text-dark) !important;
  transition: box-shadow .22s, border 0.14s;
}
.testimonial-card p { color: var(--text-dark); font-size: 1.15rem; }
.testimonial-card strong { color: var(--primary); }
.star-rating {
  color: #FDA47A;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: -10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature-grid li {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 26px 18px 20px 18px;
  min-width: 220px;
  max-width: 330px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 2.5px solid var(--neon-blue);
}
.feature-grid li img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 15px;
  margin-bottom: 24px;
}
.services-list li {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 26px 18px 20px 18px;
  min-width: 220px;
  max-width: 330px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 2.5px solid var(--neon-pink);
}
.services-list li img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}

/* Service preview list */
.service-list-preview  {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.service-list-preview li {
  padding-left: 10px;
  border-left: 3px solid var(--neon-pink);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 18px;
}

.pricing-note ul {
  margin-top: 12px;
  list-style: disc;
  padding-left: 22px;
  color: var(--accent);
}

/* ========= HEADER NAVIGATION ========= */
header {
  width: 100%;
  background: linear-gradient(90deg,#191A26 50%, #23233a 100%);
  border-bottom: 2.5px solid var(--primary);
  padding: 0px 0 0 0;
  box-shadow: 0 2px 20px -11px #20CDEF22;
  position: sticky;
  top: 0; z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 32px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px #2A2C4D55);
  transition: filter .1s;
}
.logo:hover img {
  filter: drop-shadow(0 4px 11px #FDA47Aaa);
}

nav.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.06rem;
  color: var(--text-light);
  opacity: .92;
  padding: 6px 0;
  letter-spacing: 0.05em;
  position: relative;
  transition: color 0.18s, opacity 0.21s;
}
.main-nav a:not(.btn-primary):hover {
  color: var(--accent);
  opacity: 1;
}
.main-nav .btn-primary {
  margin-left: 10px;
}
/* Burger button */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--accent);
  cursor: pointer;
  display: none;
  margin-left: 20px;
  transition: color 0.17s, transform 0.18s;
  z-index: 120;
}
.mobile-menu-toggle:focus { outline: 2px solid var(--neon-blue); }
.mobile-menu-toggle:hover { color: var(--neon-blue); }


/* ===== MOBILE MENU STYLES ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 88vw;
  max-width: 350px;
  height: 100vh;
  background: #191A26ee;
  box-shadow: -6px 0 26px 0 #20CDEF14;
  transform: translateX(100%);
  z-index: 202;
  transition: transform 0.34s cubic-bezier(.91,0,.37,1), box-shadow 0.20s;
  display: flex;
  flex-direction: column;
  padding: 38px 24px 20px 24px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--neon-blue);
  font-size: 2.1rem;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  z-index: 230;
  outline: none;
  transition: color 0.13s, transform 0.14s;
}
.mobile-menu-close:hover { color: var(--neon-pink); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.mobile-nav a {
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: 1.17rem;
  padding: 12px 0 10px 2px;
  border-radius: 7px;
  transition: background 0.14s, color 0.16s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #23233a;
  color: var(--accent);
}

/* Overlay background when mobile menu is open */
.mobile-menu-bg {
  display: none;
  position: fixed; left: 0; top: 0; width: 100vw; height: 100vh;
  background: #191A2666;
  z-index: 200;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobile-menu-bg.open {
  display: block;
  opacity: 1;
}

/* Mobile nav shows only on mobile */
@media (max-width: 1024px) {
  nav.main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTION */
section:first-of-type {
  background: linear-gradient(107deg, #23233a 0%, var(--primary) 52%, #272a55 100%);
  border-radius: 0 0 26px 26px;
  padding-top: 32px;
  padding-bottom: 60px;
  box-shadow: 0 5px 24px 0 #6ffbfd0d;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.07rem;
  border-radius: 10px;
  padding: 13px 36px 11px 36px;
  box-shadow: 0 0px 23px 0 #FDA47A18 inset;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 6px;
  transition: background 0.18s, color 0.19s, box-shadow 0.19s, transform 0.14s;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
  box-shadow: 0 2.5px 10px 0 #FDA47A60;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--neon-blue);
  color: #23233a;
  box-shadow: 0 1.5px 20px 0 #20CDEF60;
  transform: translateY(-2px) scale(1.04);
}

.btn-secondary {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--accent);
  color: var(--bg-dark);
  border-color: var(--neon-blue);
}

a.btn-primary,
a.btn-secondary {
  text-decoration: none;
  text-align: center;
}

/* FOOTER STYLES */
footer {
  background: linear-gradient(90deg,#23233a 65%, #2A2C4D 100%);
  color: var(--text-light);
  padding: 24px 0 4px 0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -2px 14px 0 #20CDEF14;
  border-top: 2px solid #27284A;
  margin-top: 60px;
}
footer .container { flex-direction: column; gap: 10px; align-items: center; text-align: center; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-nav a {
  font-family: var(--font-display);
  font-size: 1.04rem;
  color: var(--secondary);
  opacity: 0.78;
  transition: color 0.14s, opacity 0.13s;
  padding: 3px 0;
}
.footer-nav a:hover {
  color: var(--accent);
  opacity: 1;
}

/* --------------- MAP PLACEHOLDER --------------- */
.map-placeholder {
  background: var(--bg-card);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 9px 10px 9px;
  margin: 12px 0 0 0;
  gap:8px;
}
.map-placeholder img {
  width: 100%; max-width: 220px;
}

/* ======================== COOKIE BANNER & MODAL ======================== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100vw;
  background: #23233afd;
  color: var(--text-light);
  box-shadow: 0 -4px 30px 0 #FDA47A33;
  border-top: 2.5px solid var(--accent);
  z-index: 99999;
  padding: 25px 18px 12px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 1;
  transition: opacity 0.19s, transform 0.21s;
}
.cookie-banner .cookie-buttons {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 8px;
}
.cookie-banner button {
  padding: 10px 24px;
  border-radius: 7px;
  border: none;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: bold;
  cursor: pointer;
  background: var(--accent);
  color: var(--bg-dark);
  transition: background .13s, color .13s, box-shadow .14s, transform .13s;
  box-shadow: 0 0 0 0 var(--neon-pink) inset;
}
.cookie-banner button.accept {
  background: var(--neon-blue);
  color: var(--bg-dark);
}
.cookie-banner button.settings {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner button.reject {
  background: var(--primary);
  color: var(--secondary);
  border: 2.5px solid var(--accent);
}
.cookie-banner button:active, .cookie-banner button:focus {
  outline: 2px solid var(--neon-blue);
}
.cookie-banner button:hover {
  background: var(--neon-pink);
  color: #212134;
  box-shadow: 0 1.5px 18px 0 #fb47da44;
  transform: scale(1.04);
}

.cookie-modal-bg {
  display: none;
  position: fixed; left: 0; top: 0; width: 100vw; height: 100vh;
  background: #191A2666;
  z-index: 100000;
  opacity: 0;
  transition: opacity 0.24s cubic-bezier(.91,0,.32,1);
}
.cookie-modal-bg.open { display: block; opacity: 1; }

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.96);
  background: #23233a;
  color: var(--text-light);
  border-radius: 23px;
  box-shadow: 0 7px 40px 0 #20CDEF26, 0 3.5px 19px 0 #fb47da0d;
  z-index: 100001;
  min-width: 330px;
  max-width: 96vw;
  padding: 38px 40px 26px 32px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s cubic-bezier(.91,0,.32,1), transform 0.32s cubic-bezier(.65, .12, .11, 1.14);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h2 { color: var(--neon-blue); font-size: 1.35rem; margin-bottom: 14px; }
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--secondary);
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.06rem;
}
.cookie-modal label {
  font-weight: 600;
}
.cookie-modal .cookie-category input[type=checkbox],
.cookie-modal .cookie-category input[type=radio] {
  accent-color: var(--accent);
  width: 21px; height: 21px;
}
.cookie-modal .cookie-buttons {
  display: flex; gap: 13px; align-self: flex-end;
}
.cookie-modal .close-modal {
  background: none;
  border: none;
  color: var(--neon-pink);
  font-size: 2.1rem;
  position: absolute;
  right: 18px; top: 7px;
  cursor: pointer;
  transition: color .13s, transform .14s;
  outline: none;
}
.cookie-modal .close-modal:hover { color: var(--neon-blue); }

/* ========== TABLES & FAQ ========== */
table {
  background: var(--bg-card);
  border-radius: 13px;
  margin-bottom: 26px;
  overflow: hidden;
  box-shadow: 0 1.5px 13px 0 #20CDEF14;
}
tr:hover td { background: #2a2c4d44; }


/* ========== RESPONSIVE BREAKPOINTS ========== */
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .content-wrapper, .text-section, .section, .services-list, .feature-grid { gap: 16px; }
  .services-list li, .feature-grid li {
    min-width: 44vw;
    max-width: 94vw;
  }
}

@media (max-width: 768px) {
  header .container {
    height: auto; flex-direction: row; padding: 0 10px;
  }
  .footer-nav {
    gap: 10px; margin-bottom: 12px;
  }
  .section { 
    margin-bottom: 40px; 
    padding: 24px 9px 12px 9px; 
  }
  .feature-grid,
  .services-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid li,
  .services-list li {
    max-width: 100%; min-width: unset; width: 100%;
  }
  .testimonial-card {
    padding: 16px;
  }
  .text-image-section { 
    flex-direction: column; 
    gap: 17px; 
    align-items: flex-start;
    padding: 0;
  }
}

@media (max-width: 500px){
  h1 { font-size: 1.33rem; }
  h2 { font-size: 1.09rem; }
  .btn-primary, .btn-secondary { padding: 10px 16px; font-size: 0.98rem; }
  .cookie-modal { min-width: 95vw; padding: 20px 5vw 24px 5vw; }
}

/* ========================= FOCUS STYLES ========================= */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus, .footer-nav a:focus {
  outline: 2.5px solid var(--neon-blue);
  outline-offset: 2px;
  background: #20CDEF0d;
}

/* ====================== MICRO-ANIMATION ====================== */
a, button, .btn-primary, .btn-secondary, .main-nav a, .mobile-nav a {
  transition: color .18s, background .16s, box-shadow .17s, transform .16s;
}

.testimonial-card {
  transition: transform 0.14s cubic-bezier(.7, .07, .07, 1.01), box-shadow .18s;
}

/* scroll-to-top button, specific classes (optional) */
.scroll-to-top {
  display: none;
  position: fixed;
  bottom: 90px; right: 24px;
  z-index: 201;
  border:none; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 2px 8px 0 #fb47da25;
  font-size: 1.45rem;
  color: var(--primary);
  width: 46px; height: 46px;
  cursor:pointer;
  align-items: center; justify-content: center;
  transition: background .15s, color .13s, box-shadow .16s, transform .13s;
}
.scroll-to-top:hover { background: var(--neon-blue); color: #23233a; }

/* Misc fixes and paddle for mobile menu and cookie */
body.menu-open, body.cookie-modal-open {
  overflow: hidden !important;
}


/* ----------- ENSURE PROPER SPACING ----------- */
.section,
.content-wrapper,
.text-section,
.services-list,
.feature-grid,
.faq-list,
.footer-nav,
.service-list-preview {
  gap: 20px;
}
.card-container, .content-grid {
  gap: 24px;
}
.card, .testimonial-card {
  margin-bottom: 20px;
}
@media (max-width: 450px){
  .cookie-banner { flex-direction: column; padding: 16px 4px; font-size: 0.97rem; }
  .cookie-banner .cookie-buttons { flex-direction: column; gap: 10px; }
}

/* =============== PRINT FONTS ================ */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@700;900&display=swap');
