/* ========== 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.6;
  min-height: 100vh;
  background: #1d2335;
  color: #F6F8FF;
}
ol, ul {
  list-style: none;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

/* ========== TYPOGRAPHY ========== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
  --color-primary: #273B65;
  --color-secondary: #7F9CB4;
  --color-accent: #E2F0ED;
  --color-dark: #1d2335;
  --color-light: #F6F8FF;
  --color-bg-card: #232849;
  --color-bg-section: #202546;
  --color-bg-footer: #161A2B;
  --color-navbar-bg: #232849;
  --color-blockquote: #273B65;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --shadow-card: 0 4px 24px 0 rgba(39,59,101, 0.10), 0 2px 8px 0 rgba(34,122,213,0.08);
  --border-radius: 18px;
  --neon: 0 0 4px #8cf9da, 0 0 8px #68d7ff;
  --shadow-btn: 0 2px 16px 0 rgba(39, 243, 227, 0.24);
}

body, html {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  background: var(--color-dark);
  color: var(--color-light);
  min-height: 100vh;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
p, ul, ol, li {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
}
.section ul, .section ol {
  padding-left: 20px;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 0.5em;
}
strong { font-weight: 700; }

@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1.01rem; }
}

/* ========== LAYOUT: CONTAINER & SECTIONS ========== */
.container {
  width: 100%;
  max-width: 1160px;
  padding: 0 20px;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: var(--border-radius);
  box-shadow: 0 7px 32px rgba(39,59,101,0.09);
}

/* ========== HEADER & NAVIGATION ========== */
header {
  width: 100%;
  background: var(--color-navbar-bg);
  box-shadow: 0 2px 16px 0 rgba(39, 59, 101, 0.07);
  position: relative;
  z-index: 110;
  padding: 0 0 8px 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  position: relative;
  padding: 5px 0;
  transition: color .2s;
}

.main-nav a:hover, .main-nav a:focus {
  color: var(--color-accent);
}
.main-nav a:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
  margin: 0 10px;
  vertical-align: middle;
  opacity: 0.5;
}

/* CTA BUTTON */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 12px 34px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 26px;
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  transition: background .23s, color .23s, box-shadow 0.2s;
  position: relative;
  outline: 0;
}
.cta-btn:hover, .cta-btn:focus {
  background: #d2fcfa;
  color: var(--color-dark);
  box-shadow: 0 3px 24px #97faf2, 0 0 10px #68d7ff;
}

/* Burger Menu (Mobile) */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--color-accent);
  cursor: pointer;
  z-index: 300;
  margin-left: 5px;
  padding: 2px 8px;
  transition: filter 0.15s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-accent);
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(29,35,53, 0.985);
  box-shadow: 0 6px 32px rgba(39, 59, 101, 0.13);
  z-index: 2000;
  transition: transform 0.37s cubic-bezier(.4,.7,.3,1), opacity 0.27s;
  transform: translateX(-100vw);
  display: flex;
  flex-direction: column;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: transparent;
  border: none;
  font-size: 2.5rem;
  color: var(--color-accent);
  transition: color 0.25s;
  cursor: pointer;
  z-index: 2100;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--color-accent);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  justify-content: center;
  height: 100vh;
  padding: 54px 24px 24px 40px;
  z-index: 2001;
  background: none;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-accent);
  font-weight: 700;
  padding: 8px 0 8px 0;
  border-bottom: 1.5px solid transparent;
  width: 100%;
  border-radius: 8px;
  transition: background 0.12s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #adcffd13;
  color: #fff;
  border-bottom: 1.5px solid var(--color-accent);
}

@media (max-width: 1060px) {
  .main-nav {
    gap: 14px;
  }
}

@media (max-width: 880px) {
  header .container {
    gap: 9px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .cta-btn {
    padding: 11px 21px;
    font-size: 0.99rem;
  }
}

/* ========== SECTION / LAYOUT COMPONENTS ========== */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
  padding: 0;
}
.text-section.text-center {
  align-items: center;
  text-align: center;
}
.text-section ul {
  margin: 8px 0 14px 24px;
}
.text-section li {
  padding-left: 0;
  margin-bottom: 6px;
}

/* Text & Image section (if present) */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.feature-grid, .service-teasers, .services, .service-cards, .audience-segments, .testimonials, .faq, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.feature-grid > div, .service-teasers > div, .audience-segments > div, .service-cards > div {
  flex: 1 1 270px;
  background: var(--color-bg-card);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 32px 24px 26px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  transition: box-shadow 0.17s, transform 0.12s;
  border-left: 3px solid var(--color-secondary);
}
.feature-grid > div:hover,
.audience-segments > div:hover,
.service-cards > div:hover {
  box-shadow: 0 8px 40px #28e4fd4c, var(--shadow-card);
  transform: translateY(-4px) scale(1.01);
  border-left: 3px solid #2cfbe3;
}

.feature-grid img, .audience-segments img, .service-cards img {
  width: 44px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 4px #31adde);
}

@media (max-width: 1024px) {
  .feature-grid, .service-teasers, .service-cards, .content-grid, .audience-segments {
    gap: 20px;
  }
  .feature-grid > div, .audience-segments > div, .service-cards > div {
    min-width: 220px;
  }
}
@media (max-width: 820px) {
  .feature-grid, .service-teasers, .service-cards, .audience-segments {
    flex-direction: column;
    align-items: stretch;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-bg-card);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 32px 24px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

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

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #e8fbf5;
  border-radius: 16px;
  box-shadow: 0 4px 18px #1b535f11;
  min-width: 260px;
  max-width: 370px;
  color: #17223c;
  font-size: 1.05rem;
  margin-bottom: 20px;
  border-left: 4px solid #7F9CB4;
}
.testimonial-author {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: #218781;
  font-weight: 700;
  margin-top: 4px;
}

/* Card content (for flexible layouts) */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}

/* Responsive: force column for content wrappers */
@media (max-width: 540px) {
  .container { padding: 0 10px; }
  .card, .feature-grid > div, .service-cards > div, .audience-segments > div {
    padding: 22px 10px 18px 12px;
  }
  .testimonials {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    min-width: unset;
    max-width: 98vw;
    padding: 14px 8px;
  }
}

/************************** FAQ & BLOCKQUOTE ***************************/
.faq {
  flex-direction: column;
  gap: 18px;
}
.faq details {
  background: var(--color-bg-card);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #e7feff;
  border-left: 3px solid var(--color-secondary);
  box-shadow: 0 2px 12px rgba(39, 243, 227, 0.04);
  transition: border .18s;
}
.faq details[open] {
  border-left: 3px solid #2cfbe3;
  background: #1F2656;
}
.faq details summary {
  font-family: var(--font-display);
  font-weight: 600;
  color: #e7feff;
  outline: none;
  cursor: pointer;
}
.faq details div {
  margin-top: 8px;
  color: #adcffd;
}

blockquote.expert-quote {
  display: block;
  background: #212957;
  border-left: 4px solid #2cfbe3;
  color: #e7feff;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-style: italic;
  padding: 28px 32px 18px 24px;
  margin: 40px 0 18px 0;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  position: relative;
}
blockquote.expert-quote span {
  display: block;
  font-size: 0.96rem;
  font-style: normal;
  font-weight: 500;
  margin-top: 14px;
  color: #74e7ee;
}

/************************** LIST & STEP ***************************/
.step-list, .text-section ul {
  margin: 12px 0 18px 24px;
  padding-left: 12px;
}
.step-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 14px;
}
.step-list li:before {
  content: '\2727';
  position: absolute;
  left: 0;
  color: #68d7ff;
  font-size: 1em;
}

/************************** MAP AND DISCLAIMER ***************************/
.map-placeholder {
  border-radius: 12px;
  background: #26345b;
  padding: 32px;
  text-align: center;
  color: #b3dced;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.disclaimer {
  background: #232849;
  border-left: 4px solid #e0fae0;
  color: #e4ece7;
  border-radius: 11px;
  padding: 20px 20px;
}

/************************** SERVICE PRICES ***************************/
.service-price {
  background: #162641;
  color: #e0f0fc;
  display: inline-block;
  font-size: 0.98rem;
  padding: 5px 15px 5px 15px;
  border-radius: 12px;
  margin-top: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-left: 3px solid #5fffde;
}

/************************** SAFETY INFO BOX ***************************/
.safety-info {
  background: #25354C;
  border-left: 4px solid #29eed7;
  color: #aefbfd;
  border-radius: 12px;
  padding: 22px 18px 16px 24px;
  margin-top: 12px;
  margin-bottom: 14px;
}
.safety-info h3 {
  color: #8cf9da;
  margin-bottom: 7px;
  font-size: 1.05em;
}

/************************** FOOTER ***************************/
footer {
  background: var(--color-bg-footer);
  color: #ffffff;
  width: 100%;
  font-size: 1rem;
  padding: 0 0 16px 0;
  box-shadow: 0 -3px 30px #21295733;
}
footer .container {
  padding: 34px 20px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
footer nav.footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
footer nav.footer-nav a {
  color: #e2f0ed;
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: color .16s;
  border-radius: 6px;
  padding: 8px 6px;
}
footer nav.footer-nav a:hover, footer nav.footer-nav a:focus {
  color: #81ffff;
  background: #283e6b;
}
.footer-note {
  width: 100%;
  text-align: center;
  color: #93b1c8;
  font-size: 0.97em;
  margin-top: 14px;
  letter-spacing: 0.07em;
}
footer img {
  width: 40px;
  height: auto;
  margin-bottom: 0.5em;
}

/************************** RESPONSIVE LAYOUT ***************************/
@media (max-width: 1000px) {
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  .section {
    margin-bottom: 34px;
    padding: 19px 8px 34px 8px;
  }
  .feature-grid, .service-teasers, .audience-segments {
    flex-direction: column;
    gap: 14px;
  }
  .testimonials {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 500px) {
  .section { padding: 7px 2px 20px 2px; }
  .card {
    padding: 12px 3.5vw;
  }
}

/************************** BUTTONS & INTERACTIVITY ***************************/
button, [type="button"], [type="submit"] {
  font-family: var(--font-display);
  border: none;
  border-radius: 22px;
  cursor: pointer;
  font-size: 1rem;
  padding: 11px 24px;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  background: #e2f6f1;
  color: #273b65;
  box-shadow: 0 1px 10px #aad7ff18;
}
button:hover, button:focus {
  background: #c3f9ff;
  color: #18365f;
  box-shadow: 0 0 16px #81ffff7e;
  outline: none;
}

a {
  transition: color .2s;
}
a:focus {
  color: var(--color-accent);
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

/************************** COOKIE BANNER ***************************/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--color-bg-card);
  color: #e7feff;
  box-shadow: 0 -2px 28px #185f6f13;
  padding: 20px 18px;
  z-index: 3000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: transform 0.3s cubic-bezier(.41,.67,.37,1.01), opacity 0.2s;
  border-radius: 22px 22px 0 0;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-banner-text {
  font-size: 0.99rem;
  flex: 1 1 270px;
  color: #defff4;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.cookie-banner .cookie-btn {
  font-family: var(--font-display);
  font-size: 0.99rem;
  padding: 8px 18px;
  border-radius: 18px;
  margin-right: 0;
  margin-bottom: 0;
  border: none;
  background: var(--color-accent);
  color: #273B65;
  box-shadow: 0 0 8px #5dedefa0;
}
.cookie-banner .cookie-btn:last-child {
  margin-right: 0;
}
.cookie-banner .cookie-btn.settings {
  background: transparent;
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
}
.cookie-banner .cookie-btn.settings:hover,
.cookie-banner .cookie-btn.settings:focus {
  background: #23325a;
  color: #e2f0ed;
}
.cookie-banner .cookie-btn.reject {
  background: #f4beb0;
  color: #3d2132;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #d98283;
  color: #fff;
}
.cookie-banner .cookie-btn.accept,
.cookie-banner .cookie-btn.accept:hover {
  background: linear-gradient(92deg, #e2f0ed 86%, #8efcf8 100%);
  color: #273B65;
}
@media (max-width: 580px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding: 14px 3.5vw;
  }
  .cookie-banner .cookie-banner-actions { gap: 9px; }
  .cookie-banner .cookie-banner-text { font-size: 0.98rem; }
}

/* Cookie Modal Overlay */
.cookie-modal {
  position: fixed;
  z-index: 3100;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,32,49,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .21s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: var(--color-bg-card);
  color: #e2f0ed;
  padding: 32px 24px 24px 24px;
  border-radius: 26px;
  max-width: 390px;
  min-width: 260px;
  box-shadow: 0 8px 42px #16d9cec7;
  position: relative;
  animation: modalin .35s cubic-bezier(.41,.67,.37,1.01);
  display: flex;
  flex-direction: column;
  gap: 11px;
}
@keyframes modalin {
  0% { transform: translateY(160px) scale(0.92); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-close {
  background: transparent;
  border: none;
  color: var(--color-accent);
  font-size: 2rem;
  position: absolute;
  right: 18px;
  top: 18px;
  cursor: pointer;
  z-index: 2;
}

.cookie-modal-content h3 {
  margin-bottom: 10px;
  color: #7fffc2;
  font-size: 1.16rem;
  font-family: var(--font-display);
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0;
  font-size: 1rem;
  color: #acdbff;
}
.cookie-modal-content .cookie-category input[type="checkbox"] {
  accent-color: #7fffc2;
  width: 21px;
  height: 21px;
}
.cookie-modal-content .cookie-category label {
  cursor: pointer;
  color: #e2f0ed;
}
.cookie-modal-content .cookie-category .always {
  color: #7fffc2;
  margin-left: 4px;
  font-size: 0.92em;
}
.cookie-modal-content .cookie-save-btn {
  margin-top: 17px;
  background: var(--color-accent);
  color: #273B65;
  border-radius: 16px;
  padding: 9px 22px;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  box-shadow: 0 2px 12px #7fffc251;
}
.cookie-modal-content .cookie-save-btn:hover {
  background: #b9fff3;
  color: #161A2B;
}

/************************** MISC UTILITIES ***************************/
.text-center { text-align: center; }
.mt-2 { margin-top: 32px; }
.mb-2 { margin-bottom: 32px; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }

/************************** COLORFUL, FUTURISTIC EFFECTS ***************************/
.cta-btn, .cookie-btn, .service-price {
  box-shadow: 0 0 6px #87ffe5b9, 0 2px 16px #73dbeb44;
  text-shadow: 0 0 4px #8cf9da33, 0 0 8px #68d7ff22;
}
.feature-grid > div, .card, .audience-segments > div, .service-cards > div {
  border-left: 4px solid #17223c;
  box-shadow: 0 3px 18px #44ffd233, var(--shadow-card);
  transition: box-shadow 0.19s, border 0.19s;
}
.feature-grid > div:hover, .service-cards > div:hover, .audience-segments > div:hover {
  box-shadow: 0 9px 42px #32fff988, 0 3px 16px #44ffd233;
  border-left: 4px solid #32fff9;
}
hr {
  width: 100%;
  border: none;
  border-bottom: 2px solid #50ffe6;
  margin: 40px 0;
}

/************************** END OF CSS ***************************/
