/* CSS RESET & BASE ============================== */
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: var(--frost-accent);
  color: var(--frost-primary);
  font-family: 'Roboto', Arial, sans-serif;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none; color: inherit;
}
img {
  max-width: 100%; display: block; height: auto;
  border-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  background: none; border: none;
}
input, textarea, select {
  font-family: inherit;
}
:root {
  --frost-primary: #22405B;
  --frost-secondary: #9EB4A1;
  --frost-accent: #F5F1EC;
  --frost-electric1: #00B3FF; /* Electric Blue */
  --frost-electric2: #FF64A7; /* Hot Pink */
  --frost-electric3: #FFD700; /* Vibrant Yellow */
  --frost-white: #fff;
  --frost-black: #14141A;
  --shadow-main: 0 4px 20px 0 rgba(34, 64, 91, 0.09), 0 1.5px 4px 0 rgba(34, 64, 91, 0.10);
  --radius-main: 18px;
  --font-display: 'Nunito', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* LAYOUT & CONTAINER =========================== */
.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  margin-left: auto; margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--frost-accent);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 28px 8px;
  }
}

/* FLEXBOX SPACING & MANDATORY LAYOUTS ======== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: var(--frost-white);
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  flex: 1 1 300px;
  min-width: 260px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(0,179,255,0.14), 0 1.5px 8px rgba(255,100,167,0.13);
  transform: translateY(-3px) scale(1.025);
  z-index: 2;
}
.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: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--frost-white);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  min-width: 240px;
  max-width: 520px;
  color: var(--frost-black);
  font-size: 1.13rem;
}
.testimonial-card span {
  font-weight: bold;
  color: var(--frost-electric2);
  font-size: 1rem;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.map-snippet {
  background: var(--frost-secondary);
  color: var(--frost-primary);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 2px 12px rgba(158,180,161,0.10);
  margin-top: 18px;
}
@media (max-width: 540px) {
  .container { padding: 0 6px; }
  .content-wrapper { gap: 14px; }
}

/* TYPOGRAPHY & HEADINGS ======================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--frost-primary);
  line-height: 1.14;
  margin-bottom: 0.5em;
  font-weight: bold;
  letter-spacing: -1px;
  text-shadow: 0 2px 6px rgba(0,179,255,0.04);
}
h1 { font-size: 2.7rem; color: var(--frost-electric1); letter-spacing: -0.5px; margin-bottom: 8px; }
h2 { font-size: 2.1rem; color: var(--frost-electric2); margin-bottom: 6px; }
h3 { font-size: 1.3rem; color: var(--frost-primary); }
h4, h5, h6 { font-size: 1.1rem; color: var(--frost-secondary); }
@media (max-width: 800px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}
p {
  font-family: var(--font-body);
  color: var(--frost-primary);
  font-size: 1.04rem;
  margin-bottom: 14px;
}
.tagline {
  font-family: var(--font-body);
  color: var(--frost-electric3);
  background: var(--frost-secondary);
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 1.1rem;
  margin-bottom: 18px;
  display: inline-block;
}
ul li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--frost-primary);
  margin-bottom: 12px;
  line-height: 1.5;
}
ul li strong { color: var(--frost-electric1); font-weight: 700; }
.text-section ul { margin-bottom: 12px; }
.text-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* HEADER & NAVIGATION ========================= */
header {
  background: var(--frost-primary);
  color: var(--frost-white);
  width: 100%;
  box-shadow: 0 2px 12px rgba(0, 179, 255, 0.09);
  position: relative;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 20px;
}
.logo {
  height: 54px;
  display: flex;
  align-items: center;
  margin-right: 16px;
  flex-shrink: 0;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex: 1 1 auto;
}
.main-nav a {
  color: var(--frost-white);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--frost-electric1);
  color: var(--frost-black);
}
.cta-btn {
  background: var(--frost-electric2);
  color: var(--frost-white);
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 800;
  padding: 10px 30px 10px 30px;
  border-radius: 22px;
  box-shadow: 0 3px 10px rgba(255,100,167,0.10);
  margin-left: 18px;
  outline: none;
  border: none;
  transition: background 0.22s, box-shadow 0.19s, transform 0.17s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--frost-electric1);
  color: var(--frost-black);
  box-shadow: 0 7px 18px rgba(0,179,255,0.14);
  transform: translateY(-2px) scale(1.025);
}

/* MOBILE NAVIGATION =========================== */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: var(--frost-white);
  background: none;
  border: none;
  margin-left: 10px;
  padding: 0 7px;
  border-radius: 12px;
  transition: background 0.12s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover { background: var(--frost-secondary); color: var(--frost-primary); }
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34, 64, 91, 0.92);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-110%);
  transition: opacity .23s cubic-bezier(.74, .03, .34, 1.02), transform .32s cubic-bezier(.57, .05, .21, 1.01);
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 24px 0 18px 22px;
  font-size: 2.3rem;
  color: var(--frost-electric3);
  background: none;
  border: none;
  border-radius: 10px;
  transition: background .13s;
  z-index: 1150;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--frost-electric2);
  color: var(--frost-white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-left: 32px;
  margin-top: 10px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--frost-white);
  font-weight: bold;
  padding: 9px 0;
  border-radius: 8px;
  width: 100%;
  transition: background 0.18s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--frost-electric1);
  color: var(--frost-black);
}

/* HERO, SECTIONS, CARDS ========================= */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--frost-accent);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 700px) {
  section {
    padding: 18px 3vw;
    margin-bottom: 32px;
    border-radius: 11px;
  }
}

/* BUTTONS & CTA ================================ */
button, .cta-btn {
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.16s;
}
button:active, .cta-btn:active { transform: scale(0.96); }

/* UTILITIES & GENERAL EFFECTS ================== */
.rounded {
  border-radius: var(--radius-main);
}
.shadow {
  box-shadow: var(--shadow-main);
}
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-semibold { font-weight: 600; }
.text-bold { font-weight: 800; }
.electric-bg {
  background: var(--frost-electric1);
  color: var(--frost-white);
}
.section-accent-bg {
  background: var(--frost-accent);
}

/* LINK APPEARANCE & EFFECTS ==================== */
a {
  color: var(--frost-electric1);
  outline: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--frost-electric2);
}

/* FOOTER ======================================= */
footer {
  background: var(--frost-primary);
  color: var(--frost-accent);
  padding: 38px 0 20px 0;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  box-shadow: 0 -2px 18px rgba(34,64,91,0.09);
  margin-top: 50px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 17px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 34px;
  margin-bottom: 7px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--frost-accent);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.1px;
  padding: 4px 8px;
  border-radius: 7px;
  transition: background 0.18s, color .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--frost-electric2);
  color: var(--frost-white);
}
.footer-brand img {
  height: 32px;
  margin: 0 auto;
}
footer p {
  text-align: center;
  color: var(--frost-accent);
  font-size: 0.9rem;
  margin-top: 10px;
}

/* COOKIE CONSENT BANNER ======================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 1200;
  background: var(--frost-electric1);
  color: var(--frost-white);
  box-shadow: 0 -7px 28px rgba(0,179,255,0.10);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 26px 20px 18px;
  font-size: 1.04rem;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  animation: cookie-banner-slide-in 0.6s cubic-bezier(.67,.23,.44,1);
}
@keyframes cookie-banner-slide-in {
  0% { transform: translateY(96px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-consent-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-consent-btn {
  padding: 8px 23px;
  border-radius: 20px;
  font-size: 1.06rem;
  font-weight: bold;
  font-family: var(--font-display);
  border: none;
  margin: 0 2px;
  box-shadow: 0 2px 12px rgba(255,255,255,0.07);
  transition: background 0.16s, color 0.15s, transform 0.11s;
}
.cookie-consent-btn.accept {
  background: var(--frost-electric3);
  color: var(--frost-primary);
}
.cookie-consent-btn.accept:hover, .cookie-consent-btn.accept:focus {
  background: var(--frost-electric2);
  color: var(--frost-white);
}
.cookie-consent-btn.reject {
  background: var(--frost-accent);
  color: var(--frost-primary);
}
.cookie-consent-btn.reject:hover, .cookie-consent-btn.reject:focus {
  background: #e0e7ea;
}
.cookie-consent-btn.settings {
  background: var(--frost-electric2);
  color: var(--frost-white);
}
.cookie-consent-btn.settings:hover, .cookie-consent-btn.settings:focus {
  background: var(--frost-electric1);
  color: var(--frost-black);
}
/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1300;
  background: rgba(34, 64, 91, 0.62);
  display: flex;
  flex-direction: column;
  align-items: center; justify-content: flex-end;
  animation: cookie-modal-fadein 0.26s cubic-bezier(.79,.01,.54,1.03);
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  margin-bottom: 38px;
  background: var(--frost-white);
  color: var(--frost-primary);
  border-radius: 20px;
  box-shadow: 0 7px 28px rgba(0,179,255,0.18);
  min-width: 340px;
  max-width: 94vw;
  padding: 26px 32px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
  animation: popup-slide-in .36s cubic-bezier(.68,.05,.29,1.03);
}
@keyframes popup-slide-in {
  0% { transform: translateY(120px) scale(.96); opacity: .4; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.35rem;
  color: var(--frost-electric1);
  margin-bottom: 5px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 22px;
  font-size: 1.1rem;
}
.cookie-modal-category label {
  font-family: var(--font-display);
  font-weight: bold;
  color: var(--frost-primary);
  display: flex;
  align-items: center;
  gap: 7px;
}
.cookie-category-toggle {
  width: 40px; height: 24px;
  position: relative;
  display: inline-block;
}
.cookie-category-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-category-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--frost-secondary);
  transition: .2s;
  border-radius: 16px;
}
.cookie-category-toggle input:checked + .cookie-category-slider {
  background: var(--frost-electric2);
}
.cookie-category-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px; bottom: 3px;
  background: var(--frost-white);
  border-radius: 50%;
  transition: .2s;
  box-shadow: 0 2px 8px rgba(0,179,255,0.10);
}
.cookie-category-toggle input:checked + .cookie-category-slider:before {
  transform: translateX(16px);
  background: var(--frost-electric3);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .cookie-modal-actions .cookie-consent-btn {
  min-width: 108px;
}
.cookie-modal-close {
  display: inline-block;
  color: var(--frost-electric2);
  background: none;
  border: none;
  font-size: 1.45rem;
  cursor: pointer;
  position: absolute;
  top: 14px; right: 22px;
  z-index: 1;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--frost-electric1);
}
@media (max-width: 670px) {
  .cookie-modal {
    padding: 14px 8px 16px 12px;
    min-width: 90vw;
  }
}

/* RESPONSIVE LAYOUTS ========================== */
@media (max-width: 950px) {
  .footer-nav { gap: 16px; font-size: 0.95rem; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.1rem; }
  .footer-brand img { height: 23px; }
  .cta-btn { padding: 10px 20px; font-size: 1.09rem; }
  footer { padding: 20px 0 14px 0; border-radius: 18px 18px 0 0; }
}
@media (max-width: 600px) {
  .card, .testimonial-card { min-width: 90vw; padding: 16px 7px; }
  section { padding: 9px 2vw; }
  .footer-nav { gap: 9px; }
}
@media (max-width: 480px) {
  .testimonial-card, .card { min-width: 98vw; max-width: 99vw; margin-left: -2vw; margin-right: -2vw; }
  .cookie-consent-banner { padding: 14px 6px 14px 7px; flex-direction: column; align-items: flex-start; gap: 11px; }
}

/* Animations & Microinteractions ============== */
.card, .testimonial-card, .cta-btn, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: box-shadow 0.17s cubic-bezier(.33,.89,.42,1), background 0.14s, color 0.12s, transform 0.12s;
}
.cta-btn:active, .cookie-consent-btn:active { transform: scale(0.94) translateY(2px); }
input, select, textarea { transition: border-color 0.16s, box-shadow 0.14s; }

/* ACCESSIBILITY FOCUS STATES ================== */
.main-nav a:focus, .footer-nav a:focus, .mobile-nav a:focus, .cta-btn:focus {
  outline: 2px solid var(--frost-electric1);
  outline-offset: 2px;
}

/* Miscellaneous ============================== */
::-webkit-scrollbar {
  width: 9px;
  background: var(--frost-accent);
}
::-webkit-scrollbar-thumb {
  background: var(--frost-secondary);
  border-radius: 5px;
}

/* END CSS */
