/*! CSS RESET & BASE STYLES */
html { box-sizing: border-box; font-size: 16px; }
*, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; }
body {
  background: #F4F7FB;
  color: #1A1D26;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #1A1D26; text-decoration: none; transition: color .18s cubic-bezier(0.55,0,0.1,1); }
a:focus { outline: 2px solid #64C3E7; outline-offset: 3px; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}

/* =====================================
  BRAND FONTS & COLORS
===================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
:root {
  --col-primary: #1A1D26;
  --col-secondary: #64C3E7;
  --col-accent: #F4F7FB;
  --col-contrast: #fff;
  --col-accent2: #FFE181;
  --col-accent3: #FE6B7B;
  --radius-btn: 26px;
  --radius-card: 20px;
  --shadow-card: 0 6px 30px 0 rgba(100,195,231,0.07), 0 1.5px 7px 0 rgba(26,29,38,0.06);
}

/* =====================================
  LAYOUT CONTAINERS
===================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: var(--col-contrast);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  max-width: 100%;
  transition: box-shadow .24s cubic-bezier(.55,0,.1,1);
}
.card:hover {
  box-shadow: 0 12px 36px 0 rgba(254,107,123,0.19), 0 4px 12px 0 rgba(100,195,231,0.13);
}

.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: 10px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 20px 0 rgba(100,195,231,.07);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 100%;
  border-left: 6px solid var(--col-secondary);
}
.testimonial-card p {
  color: #222;
  font-size: 1.1rem;
  font-weight: 500;
}
.testimonial-card span {
  font-size: .95rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--col-primary);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 6px;
}

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

.text-section {
  margin-bottom: 20px;
}

.cta {
  background: var(--col-secondary);
  color: #fff;
  border-radius: var(--radius-card);
  margin-bottom: 60px;
  padding: 40px 0 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta .cta-btn {
  background: #fff;
  color: var(--col-secondary);
  font-weight: 700;
}

/* =====================================
  HEADER & NAVIGATION
===================================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 8px 40px 0 rgba(100,195,231,0.07);
  position: relative;
  z-index: 20;
  margin-bottom: 8px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
header nav {
  display: flex;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: var(--col-primary);
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 10px;
  transition: background .16s, color .16s;
}
header nav a:hover {
  background: var(--col-secondary);
  color: #fff;
}
.cta-btn {
  display: inline-block;
  border: none;
  outline: none;
  border-radius: var(--radius-btn);
  padding: 10px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  background: linear-gradient(90deg, var(--col-secondary) 50%, var(--col-accent2) 95%);
  color: #222;
  box-shadow: 0 4px 18px 0 rgba(254,107,123,0.07);
  transition: background .20s cubic-bezier(.33,1,.68,1), color .18s, box-shadow .18s;
  margin-left: 10px;
  margin-right: 0;
  white-space: nowrap;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, var(--col-accent3) 10%, var(--col-secondary) 98%);
  color: #fff;
  box-shadow: 0 8px 30px 0 rgba(100,195,231,0.17);
}

/* =====================================
  HERO SECTION
===================================== */
.hero {
  background: linear-gradient(90deg, #64C3E7 50%, #F4F7FB 100%);
  color: #1A1D26;
  min-height: 280px;
  padding: 54px 0 32px 0;
  margin-bottom: 50px;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 10px 40px 0 rgba(100,195,231,0.13);
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.hero .content-wrapper {
  gap: 28px;
  align-items: flex-start;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.7rem;
  font-weight: 900;
  color: var(--col-primary);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  text-shadow: 1px 3px 0 #FFE18133;
}
.hero p {
  font-size: 1.22rem;
  color: #1A1D26;
}

/* =====================================
  CONTENT SECTIONS
===================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 12px;
  margin-top: 0;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--col-primary);
}
h1 { font-size: 2.3rem; }
h2 { font-size: 1.65rem; }
h3 { font-size: 1.25rem; color: #FE6B7B; font-weight: 700;}
h4 { font-size: 1.10rem; }

p, li {
  font-size: 1.07rem;
  margin-bottom: 7px;
}
ul li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  border-radius: 14px;
  margin-bottom: 12px;
  padding: 13px 18px;
  box-shadow: 0 1px 10px 0 rgba(100,195,231,0.08);
}
ul li img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  flex-shrink: 0;
}
ul li strong {
  color: var(--col-secondary);
}
ul li:last-child { margin-bottom: 0; }

/* ================ CARDS ================ */
.card span {
  color: #FE6B7B;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ================ FOOTER ================ */
footer {
  background: var(--col-primary);
  color: #fff;
  width: 100%;
  border-radius: 28px 28px 0 0;
  padding: 40px 0 24px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-nav nav a {
  color: #64C3E7;
  font-weight: 500;
  font-size: 1rem;
  transition: color .15s;
}
.footer-nav nav a:hover {
  color: #FFE181;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-contact img {
  width: 22px;
  height: 22px;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.footer-social p {
  font-size: 1.05rem;
  color: #64C3E7;
  margin-bottom: 3px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  margin-right: 12px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  filter: grayscale(0.3) brightness(1.8);
  transition: filter .13s;
}
.footer-social a:hover img {
  filter: grayscale(0) brightness(1) drop-shadow(0 2px 12px #64C3E799);
}

@media (max-width: 950px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* =====================================
  MOBILE NAVIGATION
===================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 22px;
  z-index: 1002;
  background: #64C3E7;
  color: #fff;
  font-size: 2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px 0 rgba(100,195,231,0.15);
  transition: background .18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #1A1D26;
  color: #64C3E7;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1004;
  background: #1A1D26;
  color: #fff;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity .35s cubic-bezier(.77,0,.18,1), transform .29s cubic-bezier(.5,-0.1,0,1.15);
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0%);
}
.mobile-menu-close {
  margin: 20px 0 6px 20px;
  align-self: flex-start;
  font-size: 2.2rem;
  background: none;
  color: #64C3E7;
  border: none;
  transition: color .15s;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FE6B7B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 40px 28px 0 28px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  padding: 13px 12px;
  border-radius: 8px;
  width: 100%;
  letter-spacing: 0.01em;
  transition: background .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #64C3E7;
  color: #1A1D26;
}

@media (max-width: 1100px) {
  header nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 1100px) {
  header .container {
    flex-wrap: nowrap;
    gap: 10px;
  }
  .cta-btn {  margin-left: auto; }
}

@media (max-width: 600px) {
  .mobile-menu-close {
    margin-top: 15px;
    margin-left: 13px;
    font-size: 2rem;
    width: 43px; height: 43px;
  }
  .mobile-nav {
    margin: 20px 12px 0 12px;
    gap: 10px;
  }
}

/* =====================================
  COOKIE CONSENT BANNER & MODAL
===================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 1200;
  background: #fff;
  color: #1A1D26;
  box-shadow: 0 -2px 18px 0 rgba(100,195,231,0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  padding: 21px 30px 21px 30px;
  border-radius: 18px 18px 0 0;
  font-size: 1.03rem;
  min-height: 68px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity .31s cubic-bezier(.49,2.2,.46,.91), transform .31s cubic-bezier(.49,2.2,.46,.91);
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-btn {
  padding: 8px 23px;
  margin-right: 9px;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  outline: none;
  border: none;
  background: var(--col-secondary);
  color: #fff;
  margin-left: 0;
  margin-top: 7px;
  margin-bottom: 7px;
  transition: background .19s, color .19s, box-shadow .13s;
  box-shadow: 0 1px 4px 0 rgba(100,195,231,.07);
}
.cookie-banner .cookie-btn.accept {
  background: var(--col-secondary);
}
.cookie-banner .cookie-btn.reject {
  background: #FE6B7B;
}
.cookie-banner .cookie-btn.settings {
  background: #FFE181;
  color: var(--col-primary);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  box-shadow: 0 4px 16px 0 rgba(100,195,231,0.13);
}

/* COOKIE MODAL */
.cookie-modal {
  display: flex;
  flex-direction: column;
  align-items: strech;
  justify-content: flex-start;
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: rgba(26,29,38,.25);
  z-index: 1220;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  margin: auto;
  background: #fff;
  padding: 38px 24px 22px 24px;
  border-radius: 20px;
  min-width: 300px;
  max-width: 98vw;
  box-shadow: 0 12px 50px 0 rgba(100,195,231,0.15);
}
.cookie-modal-content h3 {
  color: var(--col-secondary);
  font-size: 1.25rem;
  font-family: 'Montserrat',Arial,sans-serif;
  margin-bottom: 10px;
}
.cookie-modal-content ul {
  margin: 12px 0 20px 0;
}
.cookie-modal-content ul li {
  margin-bottom: 13px;
  padding: 10px 14px;
  background: #F4F7FB;
  border-radius: 10px;
  color: #1A1D26;
  display: flex;
  align-items: center;
  font-size: 1.08rem;
}
.cookie-modal-content ul li input[type='checkbox'] {
  accent-color: #64C3E7;
  margin-right: 10px;
}
.cookie-modal-content .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 14px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #FE6B7B;
  cursor: pointer;
  padding: 0;
  transition: color .14s;
}
.cookie-modal .modal-close:hover {
  color: #64C3E7;
}

/* =====================================
  ANIMATIONS & MICRO-INTERACTIONS
===================================== */
.cta-btn, .cookie-banner .cookie-btn, .mobile-nav a {
  transition: background .13s, color .13s, box-shadow .14s;
}
.card, .testimonial-card {
  transition: box-shadow .22s cubic-bezier(.64,0,.48,1.2);
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 12px 36px 0 rgba(254,107,123,0.13), 0 3.5px 9px 0 rgba(100,195,231,0.13);
}

/* =====================================
  RESPONSIVE DESIGN
===================================== */
@media (max-width: 1200px) {
  .container {  max-width: 98vw; }

  .hero h1 { font-size: 2.1rem; }
  h1 { font-size: 2rem; }
}
@media (max-width: 900px) {
  .section { padding: 32px 10px; }
  .hero { padding: 35px 0 22px 0; }
}
@media (max-width: 700px) {
  .section { margin-bottom: 38px; padding: 22px 4px; }
  .cta { padding: 21px 0; }
  .cta .content-wrapper { gap: 12px; }
  .hero { padding: 24px 0 14px 0; border-radius: 0 0 18px 18px; }
  .hero h1 { font-size: 1.39rem; }
  h1 { font-size: 1.28rem; }
  h2 { font-size: 1.08rem; }
}
@media (max-width: 680px) {
  .content-wrapper {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: stretch; }
  .container { padding-left: 7px; padding-right: 7px; }
  .card, .testimonial-card { min-width: unset; }
}

/* Ensure NO elements overlap and all spacing/gaps are preserved */
.card, .testimonial-card, .section, .feature-item, .content-wrapper, .content-grid, .text-image-section {
  margin-bottom: 20px;
}

/* Ensure content is visible with proper z-index on modals & menus */
body.menu-open {
  overflow: hidden;
  position: relative;
}

/* =====================================
  CREATIVE / ARTISTIC UNIQUES
===================================== */
.hero h1, h1, .cta h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  text-transform: none;
  letter-spacing: -0.02em;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 3px 4px 0 #f4f7fb88;
}

h2, .card strong {
  color: #64C3E7;
  font-weight: 900;
}

.card, .testimonial-card {
  border: 2.5px solid #64C3E711;
  border-left: 7px solid #FE6B7B44;
  border-radius: 20px 10px 30px 14px / 16px 16px 24px 28px;
}

.section:nth-child(even) {
  background: linear-gradient(88deg,#F4F7FB 80%, #FFE18111 100%);
  border-radius: 20px;
}
.section:nth-child(odd) {
  background: #fff;
}

.cta-btn {
  box-shadow: 0 5px 24px 0 rgba(254,107,123,.06), 0 1px 6px 0 rgba(100,195,231,0.13);
}

ul li {
  border-left: 8px solid #FFE181;
  background: #fff;
  transition: border 0.16s, background .13s;
}
ul li:hover {
  border-left: 8px solid #FE6B7B;
  background: #F4F7FB;
}

/* Decorative SVGs for unique look (skip if not available) */

/* Subtle shadow & border for focus highlight */
a:focus, .cta-btn:focus, button:focus {
  outline: 2.5px solid #FE6B7B;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px #FFE18144, 0 1px 12px #FE6B7B22;
}

::selection {
  background: #64C3E7;
  color: #fff;
}

/* =====================================
  PRINT STYLES
===================================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cta {
    display: none !important;
  }
}
