/* ===== 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; } 
*, *::before, *::after { box-sizing: inherit; }
body { 
  min-height: 100vh;
  background: #F9F9FB;
  color: #232B36;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: #5FB1E5; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #232B36; text-decoration: underline; }
ul, ol { list-style: none; }
button, input[type=button], input[type=submit] {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

/* ===== BRAND FONTS & COLORS ===== */
:root {
  --primary: #232B36;
  --secondary: #5FB1E5;
  --accent: #F2B441;
  --white: #fff;
  --gray-bg: #F9F9FB;
  --shadow-1: 0 4px 16px rgba(35,43,54,.11), 0 2px 4px rgba(35,43,54,.07);
}

/* ===== CONTAINER & LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-1);
  padding: 28px 22px 22px 22px;
  min-width: 220px;
  flex: 1 1 280px;
  transition: box-shadow 0.27s, transform 0.2s;
  z-index: 1;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 28px 0 rgba(95,177,229,.16), 0 4px 8px rgba(242,180,65,0.09);
  transform: translateY(-4px) scale(1.03);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
}

/* ===== HEADER, NAVIGATION, CTA ===== */
header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(35,43,54,0.05);
  position: sticky;
  top: 0;
  z-index: 1020;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 70px;
}
.logo img {
  height: 50px;
  width: auto;
  display: block;
  margin-right: 14px;
  filter: drop-shadow(0 2px 6px rgba(95,177,229,.09));
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary);
  font-size: 16px;
  position: relative;
  transition: color .18s;
  border-radius: 5px;
  padding: 6px 3px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
  background: rgba(242, 180, 65, 0.13);
}
.cta-button {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 11px 32px;
  border-radius: 26px;
  transition: background 0.18s, color 0.18s, transform 0.21s;
  border: 2px solid var(--accent);
  box-shadow: 0 3px 16px -3px rgba(242,180,65,.13);
  margin-left: 18px;
  letter-spacing: 0.01em;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  transform: scale(1.05) translateY(-2px);
}

button.mobile-menu-toggle {
  display: none;
  font-size: 34px;
  color: var(--primary);
  background: none;
  border: none;
  margin-left: 12px;
  padding: 6px 16px;
  border-radius: 12px;
  transition: background 0.18s;
  z-index: 1030;
}
button.mobile-menu-toggle:focus, button.mobile-menu-toggle:hover { background: #eaf7fe; }

/* == MOBILE MENU == */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--secondary);
  color: var(--white);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.78,.04,.57,1.21);
  box-shadow: 2px 0 24px rgba(95,177,229,.14);
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 28px 0 0;
  font-size: 36px;
  background: none;
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0 14px;
  cursor: pointer;
  transition: background 0.17s;
  z-index: 1110;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { background: rgba(255,255,255,0.10); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
  padding: 38px 0 18px 36px;
}
.mobile-nav a {
  font-size: 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--white);
  padding: 12px 0;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.16s, color 0.12s;
  margin-right: 28px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(35,43,54,0.10);
  color: var(--accent);
}

/* ===== HERO SECTION ===== */
.hero-section {
  width: 100%;
  padding: 48px 0 37px 0;
  background: linear-gradient(90deg, #FEECC8 0%, #91D9F7 100%);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 26px -12px #5FB1E5;
  animation: bg-slide 7s ease-in-out infinite alternate;
}
@keyframes bg-slide {
  from { background-position: 0% 50%; }
  to { background-position: 100% 60%; }
}
.hero-section h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--primary);
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  text-align: center;
  text-shadow: 0 2px 8px #fff8, 0 1px 2px #f2b44162;
}
.hero-section .subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 20px;
  margin-bottom: 19px;
  color: var(--primary);
  text-align: center;
  display: block;
}
.hero-section .cta-button {
  margin-top: 9px;
  font-size: 20px;
  padding: 13px 36px;
  border-width: 3px;
  border-style: solid;
  animation: wiggleBtn 4s infinite;
}
@keyframes wiggleBtn {
  0%, 100% { transform: scale(1) rotate(0deg); }
  6% { transform: scale(1.08) rotate(-1deg); }
  12% { transform: scale(1.07) rotate(2deg); }
  20% { transform: scale(1.1) rotate(-1deg); }
  26% { transform: scale(1) rotate(0deg); }
}

/* ===== FEATURE GRID & CARDS ===== */
.feature-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 22px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-1);
  padding: 28px 22px 22px 22px;
  min-width: 200px;
  flex: 1 1 230px;
  transition: box-shadow 0.22s, transform 0.2s;
  margin-bottom: 20px;
  position: relative;
}
.feature-item img {
  width: 48px; height: 48px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0px 4px #5FB1E580);
  animation: popIcon 0.95s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes popIcon { 0% { transform: scale(0.7); opacity: 0.2; } 80% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1;} }
.feature-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 21px;
  color: var(--primary);
  margin-bottom: 0;
}
.feature-item p {
  font-size: 16px;
  color: #3d3d3d;
  margin: 0 0 7px 0;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 10px 36px -8px var(--secondary);
  transform: translateY(-3px) scale(1.03);
}

/* ===== SERVICE & INFO LISTS ===== */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
  padding-left: 0;
  width: 100%;
}
.service-list li {
  margin-bottom: 0;
  color: #233;
  font-size: 17px;
  position: relative;
  padding-left: 32px;
  min-height: 30px;
}
.service-list li:before {
  content: "☀";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 19px;
  line-height: 1;
  filter: drop-shadow(0 0 6px #ffe64d55);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: #fffbe4;
  border-radius: 17px;
  box-shadow: 0 1px 16px -6px #FFE17B11;
  padding: 40px 0;
  margin: 45px 0 55px 0;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px 19px 26px;
  background: var(--white);
  border-radius: 17px;
  box-shadow: 0 2px 16px -6px #5FB1E5;
  margin-bottom: 20px;
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  color: #292929;
  transition: box-shadow 0.18s, transform 0.19s;
}
.testimonial-card span {
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--secondary);
  margin-left: 22px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 36px -16px #F2B441;
  transform: translateY(-2.5px) scale(1.015);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(80deg, #f2b441 0%, #5fb1e5 100%);
  border-radius: 24px;
  box-shadow: 0 4px 22px -9px #ffcc2d99;
  margin: 32px 0 65px 0;
  padding: 36px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section h2, .cta-section p {
  color: #232B36;
  text-shadow: 0 1px 8px #fff5, 0 2px 4px #ffd96233;
}
.cta-section .cta-button {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
  margin-top: 18px;
  box-shadow: 0 6px 24px -8px #F2B44144;
}
.cta-section .cta-button:hover, .cta-section .cta-button:focus {
  background: var(--primary);
  color: #fff;
  border-color: #fff;
}

/* ===== BRAND LOGOS GRID (BRANDS PAGE) ===== */
.brand-logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: center;
  margin: 28px 0 20px 0;
}
.brand-logo-item {
  background: #ffffff;
  border-radius: 13px;
  box-shadow: 0 2px 8px #5FB1E553;
  padding: 16px 24px;
  transition: box-shadow 0.2s, transform 0.19s;
  display: flex;
  align-items: center;
  min-width: 110px;
  min-height: 44px;
}
.brand-logo-item:hover, .brand-logo-item:focus-within {
  box-shadow: 0 10px 32px -8px var(--secondary);
  transform: scale(1.04);
}

/* ===== TEXT SECTIONS, FAQ, ETC ===== */
.text-section {
  margin: 16px 0;
  width: 100%;
  color: #233;
  font-size: 18px;
  line-height: 1.7;
}
.text-section h2, .text-section h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 0;
  margin-bottom: 11px;
  color: var(--primary);
}

/***** ========= CONTACT, FOOTER, COMPANY INFO ========= *****/
footer {
  width: 100%;
  background: #232B36;
  color: #fff;
  margin-top: 50px;
  padding: 30px 0 34px 0;
  font-size: 16px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 22px;
  margin-bottom: 11px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  transition: color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #fff; }
.footer-contact {
  color: #F9F9FB;
  font-size: 15px;
  opacity: 0.88;
}
.footer-contact a { color: #5FB1E5; font-weight: bold; text-decoration: underline; }

.company-address, .business-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.map-block {
  width: 100%;
  margin-top: 12px;
}
.contact-information ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 8px 0;
  list-style: none;
}
.contact-information img, .company-address img, .business-hours img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

/***** ====== FAQ & SUPPORT ====== *****/
.faq-list, .support-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin: 4px 0 15px 0;
}
.faq-list h3, .support-categories h3 {
  font-size: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 4px;
}
.faq-list ul, .support-categories ul {
  padding-left: 18px;
}
.faq-list li, .support-categories li {
  margin-bottom: 6px;
  color: #232B36;
  position: relative;
  font-size: 17px;
  padding-left: 15px;
}
.faq-list li:before {
  content: "Q:";
  color: var(--secondary);
  font-weight: bold;
  position: absolute;
  left: 0;
}
.support-categories li:before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
  left: 0;
  position: absolute;
}

/***** ============= BUTTONS & INTERACTIONS ============= *****/
button, .cta-button {
  transition: background 0.17s, color 0.17s, transform 0.16s, box-shadow 0.18s;
}

/***** ============= ANIMATIONS & MICRO-INTERACTIONS ============= *****/
.feature-item, .testimonial-card, .card, .brand-logo-item {
  will-change: transform, box-shadow;
  transition: box-shadow 0.21s, transform 0.19s;
}
.feature-item:hover, .feature-item:focus-within,
.card:hover, .card:focus-within,
.brand-logo-item:hover, .brand-logo-item:focus-within {
  transform: translateY(-2px) scale(1.03);
}
.cta-button:active {
  transform: scale(.98);
}

/***** ============= COOKIE CONSENT BANNER ============= *****/
#cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 2050;
  background: #232B36;
  color: #fff;
  width: 100vw;
  padding: 24px 12px 21px 12px;
  box-shadow: 0 -2px 24px #232B3692;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s, transform 0.25s;
  font-size: 17px;
  gap: 14px;
}
#cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px);
}
#cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}
#cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  border: none;
  border-radius: 17px;
  padding: 10px 28px;
  font-size: 17px;
  transition: background 0.16s, color 0.16s;
}
#cookie-consent-banner .accept {
  background: var(--accent);
  color: var(--primary);
}
#cookie-consent-banner .accept:hover, #cookie-consent-banner .accept:focus { background: #f2be5d; color: var(--primary); }
#cookie-consent-banner .reject {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--accent);
}
#cookie-consent-banner .reject:hover, #cookie-consent-banner .reject:focus { background: #232B36; color: var(--accent); border-color: #fff; }
#cookie-consent-banner .settings {
  background: #5FB1E5;
  color: #fff;
}
#cookie-consent-banner .settings:hover, #cookie-consent-banner .settings:focus { background: #328bb7; }

/* == Cookie Modal == */
#cookie-settings-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(35,43,54,0.65);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  overflow-y: auto;
}
#cookie-settings-modal.open {
  opacity: 1;
  pointer-events: auto;
}
#cookie-settings-modal .cookie-modal-content {
  background: #fff;
  color: var(--primary);
  border-radius: 22px;
  box-shadow: 0 10px 36px rgba(95, 177, 229, 0.19);
  padding: 38px 28px 29px 28px;
  min-width: 320px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
#cookie-settings-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.53rem;
  font-weight: 700;
  margin-bottom: 8px;
}
#cookie-settings-modal .close-modal {
  position: absolute;
  right: 18px; top: 18px;
  font-size: 27px;
  background: none;
  border: none;
  color: var(--primary);
  opacity: 0.5;
  transition: opacity .11s;
}
#cookie-settings-modal .close-modal:hover, #cookie-settings-modal .close-modal:focus { opacity: 0.87; }
.cookie-preference-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 12px 0;
  font-size: 16px;
}
.cookie-preference-category input[type=checkbox] {
  width: 21px; height: 21px;
  margin-left: 2px;
}
.cookie-preference-category .always-on {
  color: var(--secondary);
  font-weight: 700;
  margin-left: 3px;
}
#cookie-settings-modal .cookie-buttons {
  margin-top: 22px;
  display: flex;
  gap: 16px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .feature-grid, .brand-logos-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .card-container, .content-grid {
    gap: 20px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  header .container {
    flex-wrap: wrap;
    min-height: 56px;
    padding-top: 3px; padding-bottom: 3px;
  }
  .main-nav {
    display: none !important;
  }
  .cta-button {
    margin-left: 2px;
    font-size: 15px;
    padding: 8px 20px;
  }
  button.mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .brand-logos-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature-item, .brand-logo-item, .card {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 7px;
    padding: 17px 13px 14px 13px;
  }
  .testimonial-card span { margin-left: 0; }
  .cta-section {
    padding: 25px 2px;
    margin: 18px 0 40px 0;
    border-radius: 16px;
  }
  .section {
    margin-bottom: 39px;
    padding: 23px 7px;
  }
  .content-wrapper {
    gap: 12px;
    padding: 0 !important;
  }
  .text-image-section { flex-direction: column; gap: 15px; }
}
@media (max-width: 540px) {
  .hero-section h1 { font-size: 1.33rem; }
  .footer-nav { gap: 10px; font-size: 14px; }
  .footer-contact { font-size: 12.9px; line-height: 1.28; }
  .section { padding: 15px 2px; }
  .testimonial-card { font-size: 15.4px; }
  .content-wrapper { padding: 0; }
}

/* ====== PLAYFUL DYNAMIC DECOS & EXTRAS ====== */
.card:after, .feature-item:after {
  content: '';
  display: block;
  position: absolute;
  right: 14px;
  top: 13px;
  width: 29px;
  height: 29px;
  background: radial-gradient(circle at 20% 80%, #F2B44155 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  animation: playful-float 4s infinite alternate ease-in-out;
}
@keyframes playful-float {
  0% { transform: scale(1) translateY(0); opacity: 0.38; }
  100% { transform: scale(1.18) translateY(-9px); opacity: 0.56; }
}
.feature-item:after { left: 10px; right: auto; top: auto; bottom: 12px; background: radial-gradient(circle at 70% 30%, #5FB1E575 0%, transparent 80%); }

/***** ============= TYPOGRAPHY SCALE ============= *****/
h1 {
  font-size: 2.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  line-height: 1.11;
  margin-bottom: 13px;
}
h2 {
  font-size: 2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin: 13px 0 11px 0;
  line-height: 1.08;
}
h3 {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--secondary);
}
h4, h5, h6 { font-family: 'Montserrat', Arial, sans-serif; }
p, li {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
strong {
  font-weight: bold;
  color: var(--accent);
}

/***** ====== MISC: VISUAL HIERARCHY & SPACING ====== *****/
.section h2, .section h1, .content-wrapper h2, .content-wrapper h1 {
  margin-bottom: 12px;
  margin-top: 6px;
  text-align: center;
  letter-spacing: 0.01em;
}
.section, .content-wrapper, .feature-grid, .card-container, .testimonials-section {
  margin-bottom: 60px;
}

/***** ===== NO GRID, ONLY FLEX! ===== *****/
/* Ensured: Nowhere in this CSS does display: grid, grid-*, column-*, break-inside appear. All multi-column and responsive layouts use only flex and flex-wrap. */

/***** ===== END ===== *****/
