/*-----------------------------------------------------------
  Fuzed Axle - style.css
  Warm Friendly UI | Flexbox Layout Only | Mobile First
-----------------------------------------------------------*/

/* CSS RESET & BASE STYLES */
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;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F4F6F8;
  color: #183046;
  line-height: 1.6;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #31B77D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #19324C;
  outline: none;
}

/* TYPE HIERARCHY */
h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #19324C;
  margin-bottom: 16px;
}
h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #305470;
  margin-bottom: 16px;
}
h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #23405A;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
}

/* MAIN WRAPPERS AND LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 16px rgba(49, 183, 125, 0.06);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
  .section {
    padding: 24px 8px;
    margin-bottom: 40px;
    border-radius: 18px;
  }
}

/* HEADER + NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 1px 10px rgba(49, 183, 125,.05);
  border-bottom: 1px solid #e7ecef;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  border-radius: 16px;
  padding: 4px 0;
}
.logo img {
  height: 40px;
  transition: transform 0.15s;
}
.logo:hover img {
  transform: scale(1.04);
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  margin: 0 24px 0 0;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #305470;
  letter-spacing: 0.02em;
  padding: 8px 8px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F2F8F5;
  color: #31B77D;
}
.primary-cta, .secondary-cta, .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 12px 32px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 24px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(49,183,125,.09);
  margin-left: 20px;
}
.primary-cta {
  background: #31B77D;
  color: #fff;
  border: 2px solid #31B77D;
}
.primary-cta:hover, .primary-cta:focus {
  background: #19324C;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(49,183,125,0.10);
}
.secondary-cta {
  background: #fff4e6;
  color: #305470;
  border: 2px solid #31B77D;
  margin-left: 0;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: #31B77D;
  color: #fff;
}
.cta:active {
  transform: scale(0.98);
}

/* Mobile Nav Toggle */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #31B77D;
  font-size: 2rem;
  border: none;
  padding: 8px 14px;
  border-radius: 16px;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.15s;
  box-shadow: 0 2px 6px rgba(49,183,125,0.05);
  z-index: 201;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F2F8F5;
  color: #19324C;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
    margin: 0 4px 0 0;
  }
  .primary-cta {
    min-width: 100px;
    padding: 10px 18px;
    margin-left: 8px;
    font-size: 0.97rem;
  }
}

@media (max-width: 780px) {
  .main-nav {
    display: none;
  }
  .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/*-----------------------------
  MOBILE MENU STYLES
-----------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(0.87,0,0.13,1);
  box-shadow: 2px 0 16px rgba(25,50,76,0.08);
  padding: 16px 0 32px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: #fff;
  color: #31B77D;
  border: none;
  border-radius: 18px;
  padding: 7px 16px;
  margin: 8px 0 16px 18px;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(49,183,125,0.10);
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F2F8F5;
  color: #19324C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding-left: 34px;
  margin-top: 8px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 550;
  color: #305470;
  background: none;
  padding: 15px 0 11px 0;
  border-radius: 12px;
  transition: background 0.16s, color 0.16s;
  min-width: 160px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2F8F5;
  color: #31B77D;
}
@media (min-width: 781px) {
  .mobile-menu {
    display: none !important;
  }
}

/*-----------------------------
  HERO & GENERIC SECTIONS
-----------------------------*/
main {
  margin-bottom: 60px;
  margin-top: 28px;
}
section {
  margin-bottom: 60px;
  padding: 40px 0;
  border-radius: 24px;
}
.section {
  box-shadow: 0 2px 18px rgba(49,183,125,0.05);
  background: #fff;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* SPACING PATTERNS (MANDATORY CLASSES) */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; border-radius: 18px; background: #fff; box-shadow: 0 2px 10px rgba(25,50,76,.06); padding: 22px 24px; }
.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: 12px; padding: 20px; border-radius: 18px; background: #fffbe6; box-shadow: 0 2px 14px rgba(240,198,107,0.08); margin-bottom: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/*-----------------------------
  FEATURE/STAT GRIDS & HOTSPOTS
-----------------------------*/
.feature-grid, .team-grid, .statistics, .process-steps, .workflow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 12px;
}
.feature, .stat, .step, .team-member {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(49, 183, 125, 0.06);
  padding: 28px 20px 24px 20px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  gap: 12px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.feature:hover, .stat:hover, .step:hover, .team-member:hover {
  box-shadow: 0 8px 22px rgba(49,183,125,0.13);
  transform: translateY(-5px) scale(1.025);
}
.feature img, .stat img, .step img, .team-member img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: #F4F6F8;
}
@media (max-width: 880px) {
  .feature-grid, .team-grid, .statistics, .process-steps, .workflow-steps {
    flex-direction: column;
    gap: 20px;
  }
  .feature, .stat, .step, .team-member {
    min-width: 0;
    width: 100%;
  }
}

/*-----------------------------
  TESTIMONIALS - Accessible and Friendly
-----------------------------*/
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: #fff9e0;
  border-left: 6px solid #FFD56B;
  color: #2D3441;
  box-shadow: 0 2px 16px rgba(253, 192, 100, 0.10), 0 2px 8px rgba(25,50,76,0.04);
  margin-bottom: 20px;
  padding: 24px 22px 18px 26px;
  border-radius: 16px;
  font-size: 1.03rem;
  position: relative;
}
.testimonial-card p {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #2e333e;
}
.testimonial-card span {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #496680;
}
@media (max-width: 900px) {
  .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 100%;
  }
}

/*-----------------------------
  TEAM
-----------------------------*/
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.team-member {
  background: #f8fff8;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(49, 183, 125, 0.05);
  padding: 24px 18px 16px 18px;
  flex: 1 1 220px;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 780px) {
  .team-grid {
    flex-direction: column;
    gap: 19px;
  }
}

/*-----------------------------
  POLICY, FAQ, RESOURCE, ETC.
-----------------------------*/
.policy-text, .text-section, .faq-list, .resource-list, .service-list, .insight-list, .highlights, .contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.policy-text ul, .service-list, .insight-list, .highlights ul, .resource-list {
  margin-left: 24px;
  list-style: disc inside;
  color: #26543B;
}
.policy-text ul li, .service-list li, .insight-list li, .highlights ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.6;
}
.resource-list li {
  background: #f8fafa;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(49,183,125,0.07);
  padding: 20px 16px;
  margin-bottom: 12px;
  transition: box-shadow 0.14s;
}
.resource-list li:hover {
  box-shadow: 0 6px 18px rgba(49,183,125,0.11);
}
.faq-list {
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 5px rgba(25,50,76,0.09);
  padding: 18px 16px;
}
.faq-item h3 {
  font-size: 1.1rem;
  color: #285574;
}
.faq-item p {
  margin-bottom: 0;
}

/*-----------------------------
  CONTACT DETAILS
-----------------------------*/
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fcfb;
  border-radius: 12px;
  padding: 8px 16px;
  min-width: 200px;
  font-size: 1rem;
  box-shadow: 0 1px 4px rgba(49,183,125,0.06);
}
.contact-item img {
  width: 26px;
  height: 26px;
  background: #E8FAF2;
  border-radius: 8px;
  padding: 2px;
}

/*-----------------------------
  HIGHLIGHTS & STATISTICS
-----------------------------*/
.highlights p {
  font-weight: 600;
  margin-bottom: 2px;
  color: #19324C;
}
.statistics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 4px;
}
.stat {
  flex: 1 1 200px;
  background: #fff0e1;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(253,192,100,.08);
  color: #23405A;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  gap: 9px;
  min-width: 160px;
  transition: box-shadow 0.12s;
}
.stat:hover {
  box-shadow: 0 8px 18px rgba(253,192,100,.12);
  background: #FFF5EC;
}

/*-----------------------------
  FOOTER
-----------------------------*/
footer {
  background: #183046;
  color: #fff;
  padding: 38px 0 0 0;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -2px 18px rgba(25,50,76,0.08);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  justify-content: center;
  padding-bottom: 24px;
}
footer img {
  height: 44px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #ffe6b5;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.15s, color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F6FCDD;
  color: #19324C;
}
.footer-contact p {
  color: #e5eaf0;
  font-size: 0.99rem;
}
.footer-contact a {
  color: #FCDA94;
  font-weight: 500;
  transition: color 0.17s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #31B77D;
}
@media (max-width: 600px) {
  footer .container {
    gap: 16px;
  }
  .footer-nav {
    gap: 11px;
  }
}

/*-----------------------------
  COOKIE BANNER & COOKIE MODAL
-----------------------------*/
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #fffbe6;
  color: #183046;
  box-shadow: 0 -2px 18px rgba(253, 192, 100, 0.10);
  border-top: 4px solid #FFD56B;
  padding: 24px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  z-index: 3000;
  font-size: 1.05rem;
  animation: slideUp 0.32s cubic-bezier(0.82,0,0.2,1);
}
@keyframes slideUp {
  from { transform: translateY(140%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
#cookie-banner[aria-hidden="true"] {
  display: none;
}
#cookie-banner .cookie-btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 20px;
  border: none;
  margin-top: 4px;
  transition: background 0.17s, color 0.13s, box-shadow 0.15s;
  cursor: pointer;
  outline: none;
}
.cookie-btn.accept {
  background: #31B77D;
  color: #fff;
  box-shadow: 0 2px 8px rgba(49,183,125,.085);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #19324C;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #D14343;
  border: 1.5px solid #D14343;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ffe7e1;
  color: #a53232;
}
.cookie-btn.settings {
  background: #fff4e6;
  color: #305470;
  border: 1.5px solid #FFD56B;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FFD56B;
  color: #19324C;
}

/* COOKIE MODAL */
#cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(25,50,76,0.35);
  z-index: 3200;
  padding: 16px;
  animation: fadeInBackdrop 0.23s;
}
@keyframes fadeInBackdrop {
  from { opacity: 0; }
  to { opacity: 1; }
}
#cookie-modal[aria-hidden="true"] {
  display: none;
}
.cookie-modal-content {
  background: #fffbe6;
  color: #23405A;
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(253,192,100,0.11);
  padding: 34px 22px 24px 22px;
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  animation: popUp 0.19s cubic-bezier(0.85,0,0.15,1);
}
@keyframes popUp {
  from {
    transform: scale(0.93);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.cookie-modal-content h2 {
  font-size: 1.35rem;
  color: #19324C;
  margin-bottom: 16px;
}
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 1.55rem;
  color: #31B77D;
  cursor: pointer;
  border-radius: 9px;
  padding: 2px 8px;
  transition: color 0.18s, background 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F2F8F5;
  color: #19324C;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 600;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #285574;
}
.cookie-category .toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  display: inline-block;
}
.toggle-switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-switch span {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #EFE7C5;
  border-radius: 16px;
  transition: background 0.15s;
}
.toggle-switch span:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 4px rgba(25,50,76,0.04);
  transition: transform 0.14s;
}
.toggle-switch input[type="checkbox"]:checked + span {
  background-color: #31B77D;
}
.toggle-switch input[type="checkbox"]:checked + span:before {
  transform: translateX(18px);
  background: #fff;
}
.cookie-category .desc {
  font-weight: normal;
  font-size: .98rem;
  color: #656565;
  margin-left: 4px;
}
.cookie-modal-content .cookie-btn-row {
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal-content .cookie-btn {
  min-width: 90px;
  padding: 8px 16px;
}

/* Utility & Minor Adjustments */
.hide {
  display: none !important;
}
.show {
  display: block !important;
}

/*-----------------------------
  RESPONSIVENESS
-----------------------------*/
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  main {
    margin-top: 10px;
    margin-bottom: 30px;
  }
  section {
    padding: 24px 0;
    margin-bottom: 36px;
    border-radius: 14px;
  }
  .content-wrapper {
    gap: 18px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.27rem;
  }
  .card-container, .content-grid, .feature-grid, .team-grid, .statistics, .process-steps, .workflow-steps, .testimonial-list {
    flex-direction: column;
    gap: 14px;
  }
  .feature, .stat, .step, .team-member {
    width: 100%;
    min-width: 0;
    padding: 17px 12px 14px 12px;
    gap: 8px;
  }
  .testimonial-card {
    padding: 16px 9px 13px 13px;
    font-size: 0.98rem;
    border-radius: 11px;
  }
  .section {
    padding: 18px 5px;
    margin-bottom: 20px;
    border-radius: 11px;
  }
  .card {
    padding: 16px 10px;
    border-radius: 11px;
  }
  .card-container {
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
}
@media (max-width: 420px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.11rem; }
  .primary-cta, .secondary-cta, .cta {
    font-size: .94rem;
    padding: 9px 8px;
    min-width: 80px;
  }
}
/*-----------------------------
  END OF CSS
-----------------------------*/
