/* ===== CSS RESET & FONT IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;800&family=Roboto:wght@300;400;500&display=swap');

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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.55;
  min-height: 100vh;
  background: #F5F6FA;
  color: #23272A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(180deg, #F5F6FA 0%, #EBF4FB 100%);
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #4C94FF;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #3C7EDB;
  text-decoration: underline;
}
ul, ol {
  margin: 1em 0 1em 1.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #23272A;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
p {
  margin-bottom: 14px;
  color: #23272A;
  font-size: 1rem;
}
strong, b {
  font-weight: 700;
}
del {
  color: #C4C4C4;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 7px;
}

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
}

/* ======= LAYOUT ================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(255,255,255,0.7);
  border-radius: 24px;
  box-shadow: 0 6px 32px 0 rgba(199,210,255,0.20);
}

/**** FLEX CONTAINER PATTERNS ****/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff6f9;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(204,222,255,0.12);
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(51,61,96,0.11);
  transform: translateY(-3px) scale(1.02);
}
.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;
  margin-bottom: 18px;
  background: #E6F2FF;
  border-left: 5px solid #80C9FF;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(190,213,247,0.12);
  color: #23272A;
  font-size: 1.08rem;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px 0 rgba(95,134,184,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/**** HERO SECTION ****/
.hero {
  background: linear-gradient(125deg,#F3E9FF 0%, #E6F2FF 100%);
  padding: 52px 0 40px 0;
  margin-bottom: 40px;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 6px 18px 0 rgba(159,184,253,0.13);
}
.hero .content-wrapper {
  text-align: left;
  align-items: flex-start;
  gap: 18px;
  max-width: 590px;
  margin: 0 auto;
}
.hero h1 {
  color: #23272A;
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.hero p {
  color: #56617A;
}

/**** NAVIGATION & HEADER ****/
header {
  width: 100%;
  background: #FAF7FE;
  box-shadow: 0 2px 18px 0 rgba(219,222,255,0.07);
  padding: 0;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  gap: 12px;
}
header img {
  max-height: 44px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  color: #4C94FF;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  background: none;
  padding: 7px 14px;
  border-radius: 12px;
  transition: background 0.2s, color 0.17s;
  font-size: 1rem;
}
.main-nav a.active, .main-nav a:hover, .main-nav a:focus {
  background: #E2EDFF;
  color: #23272A;
  text-decoration: none;
}
.cta-btn.primary {
  background: linear-gradient(90deg,#90D6FF 0%, #AEE9DE 100%);
  color: #23272A;
  font-family: 'Montserrat',sans-serif;
  font-weight: 800;
  font-size: 1.12rem;
  border-radius: 18px;
  padding: 10px 28px;
  margin-left: 16px;
  box-shadow: 0 2px 14px 0 rgba(144,225,255,0.13);
  border: none;
  transition: background 0.22s, box-shadow 0.2s, transform 0.14s;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: linear-gradient(90deg,#AEE9DE 0%, #F9DAFB 100%);
  color: #23272A;
  box-shadow: 0 6px 21px 0 rgba(169,212,230,0.12);
  transform: translateY(-2px) scale(1.04);
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg,#FFF6E6 0%, #EDEAFF 100%);
  color: #23272A;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 15px;
  padding: 9px 22px;
  box-shadow: 0 2px 14px 0 rgba(226,232,255,0.09);
  border: none;
  margin-top: 10px;
  transition: background 0.2s, box-shadow 0.21s, transform 0.14s;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg,#F9DAFB 0%, #AEE9DE 100%);
  color: #23272A;
  text-decoration: none;
  box-shadow: 0 4px 18px 0 rgba(154,176,255,0.13);
  transform: translateY(-1px) scale(1.03);
}


/**** MOBILE MENU (BURGER NAV) ****/
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: #4C94FF;
  border-radius: 8px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  transition: background 0.14s, color 0.14s;
  z-index: 1021;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #E2EDFF;
  color: #23272A;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 340px;
  height: 100vh;
  background: linear-gradient(180deg, #F9E8F7 0%, #E6F2FF 100%);
  box-shadow: -4px 0 28px 0 rgba(80,120,255,0.11);
  transform: translateX(105%);
  transition: transform 0.34s cubic-bezier(.62,.02,.29,1.05);
  z-index: 1201;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 18px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  color: #4C94FF;
  background: transparent;
  border: none;
  border-radius: 8px;
  margin-right: -5px;
  margin-bottom: 10px;
  padding: 5px 8px;
  transition: background 0.15s,color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #E2EDFF;
  color: #23272A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 10px;
}
.mobile-nav a {
  color: #23272A;
  font-family: 'Montserrat',sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
  border-radius: 11px;
  padding: 12px 10px 12px 0;
  background: none;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E2EDFF;
  color: #4C94FF;
}

/**** MAIN CONTENT ****/
main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 42px;
  margin-top: 0;
}
section {
  width: 100%;
  margin-bottom: 32px;
  background: transparent;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
}
.feature-grid>div {
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 3px 17px 0 rgba(153,202,255,0.08);
  padding: 26px 22px 18px 22px;
  flex: 1 1 248px;
  min-width: 225px;
  max-width: 355px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 20px;
  border: 1px solid #F0F4FF;
}
.feature-grid>div:hover {
  box-shadow: 0 5px 34px 0 rgba(156,175,242,0.16);
  transform: translateY(-2px) scale(1.025);
}
.feature-grid img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 8px;
  border-radius: 8px;
  background: #ECF3FC;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  border-radius: 14px;
  background: #F8F7FF;
  box-shadow: 0 1px 7px rgba(180,202,250,0.07);
  padding: 16px 18px;
  color: #23272A;
  transition: box-shadow 0.16s;
}
.faq-item h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}
.faq-item:hover {
  box-shadow: 0 3px 16px 0 rgba(169,192,242,0.12);
}

/**** CTA SECTION ****/
.cta {
  background: linear-gradient(90deg, #E6F2FF 0%, #F9DAFB 100%);
  padding: 44px 0 50px 0;
  border-radius: 28px;
  margin: 30px 0 0 0;
  box-shadow: 0 6px 20px 0 rgba(168,204,255,0.13);
}
.cta h3 {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #23272A;
}
.cta p {
  color: #3F495B;
  font-size: 1.12rem;
  margin-bottom: 18px;
}

/**** FOOTER ****/
footer {
  width: 100%;
  background: linear-gradient(90deg,#F3E9FF 0%,#E6F2FF 85%,#FFFFFF 100%);
  padding: 40px 0 25px 0;
  margin-top: 28px;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -4px 32px 0 rgba(172,192,240,0.09);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
footer nav a {
  color: #4C94FF;
  font-family: 'Montserrat',sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  border-radius: 10px;
  transition: background 0.15s, color 0.16s;
}
footer nav a:hover {
  background: #E2EDFF;
  color: #23272A;
}
footer address {
  font-style: normal;
  font-size: 0.98rem;
  color: #23272A;
  line-height: 1.7;
  margin-bottom: 8px;
}
.social-media {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-top: 17px;
}
.social-media a {
  display: inline-flex;
  align-items: center;
}
.social-media img {
  width: 30px;
  height: 30px;
  background: #FFFFFF;
  border-radius: 50%;
  border: 1.5px solid #EDF0FA;
  padding: 4px;
  transition: box-shadow 0.18s, filter 0.12s;
  box-shadow: 0 1px 7px rgba(176,206,250,0.09);
}
.social-media a:hover img {
  box-shadow: 0 3px 18px 0 rgba(73,121,255,0.19);
  filter: brightness(0.92) contrast(1.10);
}

footer h4 {
  font-size: 1.12rem;
  color: #23272A;
  font-weight: 700;
  margin-bottom: 7px;
  margin-top: 8px;
}

/**** MISCELLANEOUS ****/
::-webkit-input-placeholder { color: #C4CCD9; }
::-moz-placeholder { color: #C4CCD9; }
:-ms-input-placeholder { color: #C4CCD9; }
::placeholder { color: #C4CCD9; }

/**** COOKIE CONSENT BANNER ****/
.cookie-banner {
  position: fixed;
  left: 0; right:0; bottom: 0;
  width: 100%;
  z-index: 2001;
  background: linear-gradient(90deg, #E6F2FF 0%, #F9DAFB 100%);
  box-shadow: 0 -6px 26px 0 rgba(80,120,255,0.07);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  padding: 26px 14px 20px 14px;
  border-radius: 22px 22px 0 0;
  transition: bottom 0.32s cubic-bezier(.51,.02,.29,1.01);
  font-size: 1rem;
}
.cookie-banner.hide {
  bottom: -220px;
}
.cookie-banner-content {
  max-width: 600px;
  font-size: 1rem;
  color: #23272A;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn {
  border: none;
  border-radius: 16px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 26px;
  transition: background 0.16s, color 0.16s, box-shadow 0.13s;
  margin: 0 2px;
  box-shadow: 0 1px 7px rgba(194,224,255,0.09);
}
.cookie-btn.accept {
  background: linear-gradient(90deg,#90D6FF 0%, #AEE9DE 100%);
  color: #23272A;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: linear-gradient(90deg,#AEE9DE 0%, #F9DAFB 100%);
  color: #23272A;
}
.cookie-btn.reject {
  background: #FFD6E8;
  color: #23272A;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FAE9F4;
  color: #23272A;
}
.cookie-btn.settings {
  background: #F5F6FA;
  color: #4C94FF;
  border: 1.4px solid #E2EDFF;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #E2EDFF;
  color: #23272A;
  border-color: #BCE1EA;
}

/**** COOKIE PREFERENCES MODAL ****/
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 2400;
  background: linear-gradient(100deg, #F9DAFB 0%, #E6F2FF 100%);
  border-radius: 20px;
  box-shadow: 0 6px 38px 0 rgba(80,120,255,0.16);
  width: 95%;
  max-width: 410px;
  padding: 38px 27px 27px 27px;
  transform: translate(-50%, 110vh);
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity:0;
  pointer-events: none;
  transition: transform 0.39s cubic-bezier(.62,.05,.29,1.04), opacity 0.24s;
}
.cookie-modal.open {
  transform: translate(-50%, -50%);
  opacity:1;
  pointer-events: auto;
}
.cookie-modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cookie-modal-header h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #23272A;
}
.cookie-modal-close {
  font-size: 1.5rem;
  color: #4C94FF;
  border: none;
  border-radius: 8px;
  background: none;
  transition: background 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #E2EDFF;
  color: #23272A;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #F5F6FA;
  border-radius: 10px;
  padding: 11px 14px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 500;
  color: #23272A;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #E6F2FF;
  border-radius: 18px;
  transition: background 0.13s;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: #90D6FF;
}
.cookie-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform .16s, background 0.17s;
  box-shadow: 0 1px 6px rgba(80,120,255,0.11);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
  background: #F9DAFB;
}
.cookie-category.disabled {
  opacity: 0.45;
  pointer-events: none;
}
.cookie-modal-actions {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}

/**** MESSAGES, SUCCESS PAGE, ETC. ****/
.thankyou-message, .info-message {
  background: linear-gradient(90deg, #E6F2FF 0%, #F9DAFB 100%);
  border-radius: 18px;
  padding: 36px 24px;
  font-size: 1.18rem;
  text-align: center;
  color: #23272A;
  margin: 35px auto;
  box-shadow: 0 6px 23px 0 rgba(179,222,255,0.16);
}

/**** RESPONSIVE DESIGN (MOBILE-FIRST) ****/
@media (max-width: 1000px) {
  .feature-grid>div,
  .card {
    min-width: 175px;
    max-width: 100%;
    flex: 1 1 240px;
  }
  footer .content-wrapper {
    gap: 20px;
    flex-direction: column;
  }
}
@media (max-width: 900px) {
  .hero .content-wrapper {
    max-width: 95%;
  }
  .content-grid,
  .feature-grid {
    flex-wrap: wrap;
    gap: 16px;
  }
  .section {
    padding: 30px 10px;
  }
  .card-container {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.2rem;}
  .main-nav, .cta-btn.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .feature-grid, .content-grid, .card-container, .footer .content-wrapper {
    flex-direction: column !important;
    gap: 16px;
  }
  .section {
    margin-bottom: 36px;
    padding: 25px 6vw;
  }
  .hero {
    padding: 28px 0 27px 0;
    border-radius: 0 0 22px 22px;
  }
  .hero .content-wrapper {
    padding: 0 2vw;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.98rem;
  }
}
@media (max-width: 540px) {
  h1 {font-size: 1.35rem;}
  h2 {font-size: 1.07rem;}
  .container {
    padding: 0 5px;
  }
  .section {
    border-radius: 11px;
    padding: 19px 2vw;
    margin-bottom: 20px;
  }
  .hero {
    border-radius: 0 0 10px 10px;
    padding: 17px 0 13px 0;
  }
  .footer .content-wrapper,
  .social-media {
    gap: 9px !important;
  }
  .cta-btn, .cta-btn.primary {
    padding: 10px 12px;
    font-size: 0.98rem;
  }
}


/* ======= VISUAL TWEAKS: PASTEL TOUCHES ======= */
body, .section, .feature-grid>div, .cookie-banner, .cookie-modal {
  /* subtle, soft box-shadow and roundness */
  box-shadow: 0 4px 30px 0 rgba(208,180,255,.05);
}
.hero, .cta, .cookie-banner, .cookie-modal {
  background-blend-mode: lighten;
}
.feature-grid>div, .card, .section, .faq-item {
  background: #FFFFFFFA;
}

/* * * MICRO-INTERACTIONS * * */
.cta-btn, .cta-btn.primary, .main-nav a, .footer nav a,
.cookie-btn, .mobile-nav a,
.card, .feature-grid>div, .faq-item, .testimonial-card {
  transition: 
    background 0.18s cubic-bezier(.42,0,.58,1),
    box-shadow 0.16s cubic-bezier(.42,0,.58,1),
    color 0.17s cubic-bezier(.42,0,.58,1),
    transform 0.15s cubic-bezier(.42,0,.58,1);
}

/* ===== SCROLLBAR (Pastel Style) ===== */
::-webkit-scrollbar {
  width: 12px;
  background: #ECF3FC;
  border-radius: 9px;
}
::-webkit-scrollbar-thumb {
  background: #D6E8FA;
  border-radius: 9px;
}
::-webkit-scrollbar-thumb:hover { background: #C1DEFA; }

/* ===== ACCESSIBILITY ===== */
:focus {
  outline: 2px solid #90D6FF;
  outline-offset: 2px;
}

/* eof: style.css – Sharp Shadow soft_pastel theme */
