/* 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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F9FAFB;
  color: #29324D;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #25527A;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #6DB042;
  outline: none;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  outline: none;
  transition: background 0.2s, box-shadow 0.2s;
}

/***** SOFT PASTEL PALETTE *****/
:root {
  --primary: #25527A;
  --primary-hover: #375C81;
  --secondary: #6DB042;
  --accent: #F2F4F8;
  --pastel-blue: #DFEBF7;
  --pastel-purple: #E8E9FB;
  --pastel-green: #E6F4E2;
  --pastel-pink: #FDE9EF;
  --pastel-yellow: #FEF6DB;
  --text-dark: #29324D;
  --text-base: #454B5C;
  --white: #fff;
  --shadow-card: 0 4px 24px 0 rgba(125,153,189,0.10);
  --shadow-light: 0 1.5px 8px 0 rgba(125,153,189,0.08);
  --radius: 18px;
}

/***** TYPOGRAPHY *****/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary);
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  line-height: 1.15;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
  line-height: 1.22;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

p, li, blockquote, span, strong {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: var(--text-base);
  font-size: 1.06rem;
}
strong {
  font-weight: 600;
}

blockquote {
  font-style: italic;
  background: var(--pastel-purple);
  border-left: 5px solid var(--primary);
  padding: 20px 28px;
  margin: 32px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--primary);
  box-shadow: var(--shadow-light);
}
blockquote footer {
  font-style: normal;
  font-weight: 500;
  color: var(--text-base);
  margin-top: 10px;
}

/***** LAYOUT CONTAINERS *****/
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  margin-bottom: 0; /* margin handled on .section */
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px 32px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.17s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(125,153,189,0.13);
  transform: translateY(-2px) scale(1.012);
}
.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 26px;
  background: var(--pastel-purple);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  margin-bottom: 20px;
  color: var(--text-dark);
}
.testimonial-card p {
  color: var(--text-dark);
  font-size: 1.08rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***** HEADER & NAVIGATION *****/
header {
  background: var(--pastel-blue);
  box-shadow: 0 2px 18px 0 rgba(73, 125, 189, 0.07);
  padding: 0;
  position: relative;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 18px;
  position: relative;
}
header img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  padding: 7px 0 6px 0;
  border-radius: 4px;
  transition: color 0.2s, background 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--pastel-green);
  color: var(--secondary);
}

.cta.primary {
  background: var(--secondary);
  color: var(--white) !important;
  border: none;
  border-radius: var(--radius);
  padding: 11px 34px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 18px 0 rgba(173,189,134,0.10);
  transition: background 0.22s, box-shadow 0.20s, transform 0.15s;
  margin-left: 8px;
  display: inline-block;
  text-align: center;
}
.cta.primary:hover, .cta.primary:focus {
  background: #558a36;
  color: var(--white);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 24px 0 rgba(109,176,66,0.16);
}

/***** MOBILE MENU *****/
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--white);
  font-size: 2rem;
  padding: 6px 17px 8px 15px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  z-index: 102;
  line-height: 1;
  margin-left: 10px;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #4C9634;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(244,248,255,0.96);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.7,.2,.17,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 26px 0 10px 22px;
  font-size: 2.2rem;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  z-index: 201;
  transition: color 0.15s, background 0.17s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--secondary);
  background: var(--pastel-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  margin-left: 38px;
  margin-top: 14px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-weight: 500;
  font-size: 1.18rem;
  letter-spacing: 0.005em;
  padding: 10px 0;
  border-radius: 5px;
  transition: background 0.15s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-green);
  color: var(--secondary);
}

/***** HERO SECTIONS *****/
section:first-of-type {
  background: linear-gradient(174deg, var(--pastel-blue) 60%, var(--pastel-purple) 100%);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 5px 32px rgba(93,133,189,0.04);
  margin-bottom: 50px;
  position: relative;
}
section:first-of-type h1 {
  color: var(--primary);
}
section .cta.primary {
  margin-top: 14px;
}

/***** FLEXIBLE FEATURES GRID *****/
section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 28px 0 0 0;
  align-items: stretch;
}
section ul li {
  background: var(--pastel-pink);
  border-radius: var(--radius);
  padding: 24px 24px 22px 24px;
  box-shadow: var(--shadow-light);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.19s, transform 0.14s;
}
section ul li img {
  height: 46px;
  width: auto;
  margin-bottom: 6px;
}
section ul li:hover, section ul li:focus-within {
  box-shadow: 0 7px 22px 0 rgba(233,73,125,0.07);
  transform: translateY(-2px) scale(1.011);
  background: var(--pastel-yellow);
}

/***** CTA BANNERS *****/
section .cta.primary {
  margin-top: 16px;
  box-shadow: 0 2px 16px 0 rgba(109,176,66,0.09);
}

/***** ADDITIONAL TEXT SECTIONS *****/
.text-section {
  margin-top: 18px;
  padding: 22px 28px;
  background: var(--pastel-blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
}
.text-section h2 {
  margin-top: 0;
}
.text-section em {
  color: #8085b1;
  font-size: 0.97rem;
}

/***** FOOTER *****/
footer {
  background: var(--pastel-blue);
  padding: 34px 0 22px 0;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: 60px;
  border-top: 1px solid #dde6ed;
}
footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px 38px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--primary);
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  text-decoration: underline;
}
.footer-contact {
  font-size: 1rem;
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact img {
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
  display: inline;
}
.footer-contact span {
  margin-top: 8px;
  color: #6f819f;
  font-size: 0.98rem;
}

/***** BUTTONS, INPUTS, MICRO-INTERACTIONS *****/
button, .cta.primary, .cookie-banner button {
  transition: background 0.22s, box-shadow 0.19s, color 0.14s, transform 0.13s;
}

/***** COOKIE CONSENT BANNER *****/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2500;
  background: var(--pastel-yellow);
  color: var(--text-dark);
  box-shadow: 0 -2px 22px rgba(180,160,39,0.09);
  padding: 26px 20px 24px 20px;
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  animation: cookieBannerIn 0.65s cubic-bezier(.38,1.14,.26,1) 1;
}
@keyframes cookieBannerIn {
  0% { transform: translateY(110%); opacity:0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-message {
  font-size: 1.07rem;
  color: var(--text-dark);
  font-family: 'Open Sans', Arial, sans-serif;
  text-align: center;
  margin-bottom: 5px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-bottom: 3px;
}
.cookie-banner button {
  border: none;
  background: var(--secondary);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.03rem;
  padding: 9px 28px;
  border-radius: var(--radius);
  margin-right: 0;
  margin-left: 0;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(109,176,66,0.11);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #40621B;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
  font-weight: 500;
  box-shadow: none;
  padding: 9px 20px;
}
.cookie-banner .cookie-settings-btn:hover {
  background: var(--pastel-blue);
  color: var(--secondary);
  border: 1px solid var(--secondary);
}

/***** COOKIE MODAL *****/
.cookie-modal-overlay {
  position: fixed;
  left:0; right:0; top:0; bottom:0;
  background: rgba(73, 82, 125, 0.24);
  z-index: 2600;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.38s;
}
@keyframes fadeInModal {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 6px 44px 0 rgba(73,82,125,0.18);
  padding: 36px 30px 30px 30px;
  max-width: 92vw;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalSlideIn 0.39s cubic-bezier(.36,.97,.41,1);
}
@keyframes modalSlideIn {
  0% { transform: translateY(80px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.5em;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 1.07rem;
  color: var(--text-base);
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--primary);
}
.cookie-category label {
  cursor: pointer;
  user-select: none;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 15px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  background: none;
  color: var(--primary);
  font-size: 1.7rem;
  position: absolute;
  top: 18px; right: 24px;
  cursor: pointer;
}

/***** OLs as FLEX for progress/steps *****/
ol {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 26px 0 0 0;
  padding: 0;
}
ol li {
  background: var(--pastel-green);
  border-radius: var(--radius);
  padding: 22px 20px 18px 20px;
  box-shadow: var(--shadow-light);
  min-width: 180px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}
ol li img {
  height: 40px;
}

/***** MISC ELEMENTS *****/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
  background: var(--accent);
}

/* Utility for feature use cases and team */
section h3 {
  margin-bottom: 11px;
  font-size: 1.11rem;
  color: var(--primary);
}

/**** SUCCESS/THANK YOU ****/
section:first-of-type + section + section + section + section {
  background: var(--pastel-green);
}

/***** RESPONSIVE DESIGN (MOBILE FIRST) *****/
@media (max-width: 1024px) {
  .container {
    padding: 0 7px;
  }
  header .container {
    min-height: 62px;
  }
  .main-nav {
    gap: 13px;
  }
  .footer-nav, .footer-contact {
    font-size: 0.95rem;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  .main-nav {
    gap: 8px;
  }
  section ul li, ol li {
    min-width: 160px;
    max-width: 100%;
    padding: 18px 14px 16px 14px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header .container {
    flex-direction: row;
    gap: 7px;
    min-height: 50px;
  }
  .main-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 11px; right: 25px;
  }
  section {
    padding: 32px 7px;
  }
  .footer-contact img {
    margin-bottom: 4px;
  }
  .footer-contact, .footer-nav {
    font-size: 0.95rem;
  }
  .content-wrapper, .section {
    padding: 0;
  }
  /* Stack flex layouts column */
  .card-container, .content-grid, .footer .container, ol, section ul {
    flex-direction: column;
    gap: 20px;
    align-items: stretch !important;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 630px) {
  html {
    font-size: 14px;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.28rem;
  }
  .footer-contact, .footer-nav {
    font-size: 0.93rem;
  }
  .cookie-banner {
    padding: 15px 5px 17px 5px;
    font-size: 0.97rem;
  }
  .cookie-modal {
    padding: 22px 7px 16px 7px;
    font-size: 1rem;
  }
}

/***** VISUAL ENHANCEMENTS: DREAMY SOFT EFFECTS *****/
.card, section ul li, ol li, .testimonial-card {
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  background: #fff7fd;
  border: 1px solid #f2f1fe10;
}
/* Pastel dreamy background for selected sections */
section:nth-of-type(2n) {
  background: var(--pastel-purple);
}
section:nth-of-type(3n) {
  background: var(--pastel-green);
}

/******** GENERAL BUTTON RESET ********/
button, .cta.primary, .cookie-banner button, .cookie-modal button {
  outline: none;
}
button:active, .cta.primary:active, .cookie-banner button:active {
  transform: scale(0.961);
}

/***** ACCESSIBILITY: FOCUS VISIBLE *****/
a:focus-visible, button:focus-visible, .cta.primary:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/***** SCROLLBAR (PASTEL DESIGN) *****/
::-webkit-scrollbar {
  width: 14px;
  background: var(--pastel-purple);
}
::-webkit-scrollbar-thumb {
  background: var(--pastel-blue);
  border-radius: 10px;
  border: 3px solid #f8fafd;
}

/****************************************************
  END OF STYLE.CSS FOR BIZNAVI "SOFT PASTEL" UI SYSTEM
****************************************************/
