/*
====================================================
EEC Website Main Stylesheet - Optimized
====================================================

TABLE OF CONTENTS
----------------------------------------------------
1.  CSS Reset & Base
2.  Color & Variable Definitions
3.  Layout & Containers
4.  Typography & Headings
5.  Links & Buttons
6.  Header & Navigation
7.  Hero Section
8.  Benefits Section
9.  Solutions Section
10. Testimonials Section
11. Forms & Inputs
12. Cards & General Components
13. Utilities & Misc
14. Dark Mode Overrides
====================================================
*/

/* ====================================================
   1.  CSS Reset & Base
==================================================== */
/* Root CSS Reset */
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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  background: #f6f7fb;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* End Root CSS Reset */

/* ====================================================
   2.  Color & Variable Definitions
==================================================== */
/* Base page variables */
:root {
  --page-width: 90rem; /* 1440px / 16px */

  /* Base color variables (light mode by default) */
  --color-bg: #f9f2e5;
  --color-surface: #fff;
  --color-text: #040511;
  --color-text-secondary: #206266;
  --color-link: #0f7577;
  --color-accent: #f8ac68;
  --color-accent-alt: #f68e49;
  --color-header-bg: rgba(207, 243, 242, 0.8);
  --color-footer-bg: #e7d6bf;
  --color-border: #52bcb3;
  --color-success: #63cabb;
  --color-info: #75cdc3;
  --color-warning: #f1b98b;
  --color-error: #c05520;
  --primary-color: #007bff;
  --secondary-color: #6c757d;
}

:root[data-theme="dark"] {
  --color-bg: #023a41;
  --color-surface: #034a50;
  --color-text: #f9f2e5;
  --color-text-secondary: #cff3f2;
  --color-link: #57c0bb;
  --color-accent: #f8ac68;
  --color-accent-alt: #f68e49;
  --color-header-bg: #085b62;
  --color-footer-bg: #040511;
  --color-border: #20888a;
  --color-success: #63cabb;
  --color-info: #75cdc3;
  --color-warning: #f1b98b;
  --color-error: #c05520;
}

/* Fallback: system preference if no data-theme is set */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #181c1f;
    --color-text: #f1f3f6;
    --color-link: #4cc9f0;
    --color-accent: #ffb703;
    --color-header-bg: #23272b;
    --color-footer-bg: #1a1d20;
  }
}

/* ====================================================
   4.  Typography & Headings
==================================================== */
h1, h2, h3 {
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: #222;
}

p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--color-text-secondary);
}

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent);
}

/* ====================================================
   6.  Header & Navigation
==================================================== */
.header {
  background-color: var(--color-header-bg);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 1.25rem 0;
  background: #fff;
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.06);
  border-bottom: none;
  transition: box-shadow 0.2s;
  backdrop-filter: blur(5px);
}

.header.sticky {
  box-shadow: 0 0.375rem 1.5rem rgba(0, 0, 0, 0.13);
}

.header-flex {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  align-items: center;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-self: center;
}

.logo-link {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
}

#theme-toggle {
  margin-left: 1.5rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
}

.logo-accent {
  color: var(--color-link);
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav ul li {
  display: flex;
  align-items: center;
}

.main-nav ul li a {
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--color-link);
  padding: 0.625rem 1.125rem;
  border-radius: 0.375rem;
}

.main-nav ul li a:hover {
  color: var(--color-accent-alt);
  text-decoration: none;
}

.main-nav ul li a.button {
  min-width: 10rem;
  white-space: nowrap;
  background-color: var(--color-accent-alt);
  color: var(--color-surface);
  padding: 0.625rem 1rem;
  border-radius: 0.375rem;
}

.main-nav ul li a.button:hover {
  background-color: #e97a1c;
}

.hamburger {
  display: none;
  padding: 0.625rem;
  border: none;
  background: none;
  cursor: pointer;
}

.hamburger .bar {
  width: 1.5625rem;
  height: 0.1875rem;
  margin: 0.3125rem 0;
  background-color: var(--color-text);
  transition: transform 0.3s ease-in-out;
}

/* ====================================================
   7.  Hero Section
==================================================== */
.hero {
	min-height: 75dvh;
  background-color: var(--color-surface);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  text-align: center;
}

.hero-content {
  padding-right: 2.5rem;
}

.hero-headline {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.hero-subheadline {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.875rem;
}

.hero-benefits p {
  font-size: 0.95rem;
  margin-bottom: 0.625rem;
}

.button {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  background-color: var(--color-accent-alt);
  color: var(--color-surface);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button.large {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.button:hover {
  background-color: #e97a1c;
}

.hero-image img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.1);
}

/* ====================================================
   8.  Benefits Section
==================================================== */
.benefits-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.benefit-item {
  min-width: 16.25rem;
  max-width: 21.25rem;
  flex: 1 1 18.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border: none;
  border-radius: 1.125rem;
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.07);
  padding: 2rem 1.75rem;
  text-align: center;
}

.benefit-item .icon {
  font-size: 2.5rem;
  color: var(--color-link);
  margin-bottom: 1.125rem;
}

.benefit-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.625rem;
}

.benefit-item p {
  font-size: 1.05rem;
  color: #6b6b6b;
}

/* ====================================================
   9.  Solutions Section
==================================================== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}

.solution {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
  min-width: 0;
  padding: 0;
}

.solution:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  transform: translateY(-6px) scale(1.03);
  z-index: 2;
}

.solution-item {
  background: #fff;
  border: none;
  border-radius: 1.125rem;
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.07);
  padding: 2rem 1.75rem;
}

.solution-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.625rem;
}

.solution-item p {
  font-size: 1.05rem;
  color: #6b6b6b;
}

.solution-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 1.5rem 1.5rem 0 0;
  margin: 0;
  box-shadow: none;
}

/* ====================================================
   10. Testimonials Section
==================================================== */
.testimonials-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.testimonial-item {
  background: #fff;
  border: none;
  border-radius: 1.125rem;
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.07);
  padding: 2rem 1.75rem;
}

.testimonial-item p {
  font-size: 1.05rem;
  color: #6b6b6b;
}

.testimonial-item .testimonial-author {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-link);
}

.testimonial-item img {
  width: 3.125rem;
  height: 3.125rem;
  margin-top: 1rem;
  object-fit: cover;
  border-radius: 50%;
}

/* ====================================================
   11. Forms & Inputs
==================================================== */
input, textarea, select {
  font-size: 1rem;
  background: var(--color-surface);
  color: var(--color-text);
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--color-link);
  outline: none;
}

.form-success {
  color: var(--color-success);
}

.form-error {
  color: var(--color-error);
}

/* ====================================================
   12. Cards & General Components
==================================================== */
.card {
  margin-bottom: 2rem;
  background: #fff;
  border: none;
  border-radius: 1.125rem;
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.07);
  padding: 2rem 1.75rem;
}

:root[data-theme="dark"] .card {
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.18);
}

/* Full Width Hero Section with Overlay */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  transition: opacity 0.3s;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-fullwidth {
  position: relative;
  overflow: hidden;
}

@supports not (min-height: 75dvh) {
  .hero-fullwidth {
    min-height: 75vh;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  backface-visibility: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 100%);
}

:root[data-theme="dark"] .hero-overlay {
  background: linear-gradient(180deg, rgba(10, 30, 30, 0.65) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.hero-content-centered {
  position: relative;
  z-index: 3;
  max-width: clamp(20rem, 90dvw, 43.75rem);
  margin: 0 auto;
  padding: clamp(1rem, 5dvw, 3.75rem) clamp(0.5rem, 4dvw, 1.25rem);
  text-align: center;
  color: var(--color-surface);
}

@supports not (max-width: 90dvw) {
  .hero-content-centered {
    max-width: clamp(20rem, 90vw, 43.75rem);
    padding: clamp(1rem, 5vw, 3.75rem) clamp(0.5rem, 4vw, 1.25rem);
  }
}

.hero-content-centered .hero-headline {
  color: var(--color-surface);
  text-shadow: 0 0.125rem 1rem rgba(0, 0, 0, 0.25);
}

.hero-content-centered .hero-subheadline {
  color: var(--color-surface);
  text-shadow: 0 0.0625rem 0.5rem rgba(0, 0, 0, 0.18);
}

@media (max-width: 900px) {
  .hero-fullwidth {
    min-height: 40dvh;
  }

  @supports not (min-height: 40dvh) {
    .hero-fullwidth {
      min-height: 40vh;
    }
  }

  .container {
    max-width: 98dvw;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  @supports not (max-width: 98dvw) {
    .container {
      max-width: 98vw;
    }
  }

  .hero-content-centered {
    max-width: 98dvw;
    padding: 1.5rem 0.25rem;
  }

  @supports not (max-width: 98dvw) {
    .hero-content-centered {
      max-width: 98vw;
      padding: 1.5rem 0.25rem;
    }
  }

  .hero-content-centered .hero-headline {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .hero-fullwidth {
    min-height: 28dvh;
  }

  @supports not (min-height: 28dvh) {
    .hero-fullwidth {
      min-height: 28vh;
    }
  }

  .container {
    max-width: 100dvw;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  @supports not (max-width: 100dvw) {
    .container {
      max-width: 100vw;
    }
  }

  .hero-content-centered {
    max-width: 100dvw;
    padding: 0.75rem 0.125rem;
  }

  @supports not (max-width: 100dvw) {
    .hero-content-centered {
      max-width: 100vw;
      padding: 0.75rem 0.125rem;
    }
  }

  .hero-content-centered .hero-headline {
    font-size: 1.4rem;
  }
}

.site-logo {
  height: 2.5rem;
  width: auto;
  display: block;
  transition: filter 0.3s;
}

:root[data-theme="dark"] .site-logo {
  filter: brightness(1.2) contrast(1.1) drop-shadow(0 0.125rem 0.5rem rgba(0, 0, 0, 0.25));
}

.theme-switch-wrapper {
  display: flex;
  align-items: center;
  margin-left: 1.5rem;
}

.theme-switch {
  display: flex;
  align-items: center;
  position: relative;
  user-select: none;
  cursor: pointer;
}

.theme-switch input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.slider {
  position: relative;
  width: 2.75rem;
  height: 1.5rem;
  margin: 0 0.5rem;
  background: var(--color-border);
  border-radius: 1.5rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
  transition: background 0.3s;
}

.slider:before {
  content: "";
  position: absolute;
  top: 0.1875rem;
  left: 0.1875rem;
  z-index: 1;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  box-shadow: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, background 0.3s;
}

.slider .toggle-icon {
  position: absolute;
  top: 0.1875rem;
  left: 0.1875rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  font-size: 1rem;
  border-radius: 50%;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.3s;
  pointer-events: none;
}

.toggle-icon.icon-animating {
  opacity: 0;
  transform: rotate(180deg) scale(0.7);
}

.theme-switch input:checked + .slider {
  background: var(--color-link);
}

.theme-switch input:checked + .slider:before {
  transform: translateX(1.25rem);
}

.theme-switch input:checked + .slider .toggle-icon {
  transform: translateX(1.25rem);
}

.theme-label {
  font-size: 1.1rem;
  color: var(--color-link);
  margin: 0 0.125rem;
  transition: color 0.3s;
}

.theme-label-light {
  color: var(--color-warning);
}

.theme-label-dark {
  color: var(--color-info);
}

.hero-fullwidth .button,
.hero-fullwidth .button.large {
  background-color: var(--color-accent-alt);
  color: #fff;
  border: none;
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.18);
}

.hero-fullwidth .button:hover,
.hero-fullwidth .button.large:hover {
  background-color: #d65c00;
  color: #fff;
}

/* ====================================================
   13. Utilities & Misc
==================================================== */

/* FAQ Section */
.faq {
  max-width: 43.75rem;
  margin: 5rem auto;
}

.faq h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--color-text);
}

.faq details {
  background: #fff;
  border-radius: 1.125rem;
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.07);
  border: none;
  margin-bottom: 1.375rem;
  padding: 1.375rem 1.5rem;
}

.faq details[open] {
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
}

.faq summary {
  font-weight: 700;
  color: var(--color-link);
  cursor: pointer;
  outline: none;
  font-size: 1.13rem;
}

.faq p {
  color: var(--color-text-secondary);
  margin-top: 0.75rem;
  font-size: 1rem;
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: 1.125rem;
  justify-content: center;
  margin: 1.5rem 0 0.5rem 0;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #f6f7fb;
  box-shadow: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.08);
  color: #0f7577;
  transition: background 0.2s, color 0.2s;
  font-size: 1.4rem;
}

.footer-social a:hover {
  background: #0f7577;
  color: #fff;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background: var(--color-surface);
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.13);
  z-index: 999;
  display: none;
  flex-direction: column;
  padding: 2rem 0 1rem 0;
  border-bottom-left-radius: 1.125rem;
  border-bottom-right-radius: 1.125rem;
  animation: slideDown 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  align-items: center;
}

.mobile-nav ul li a {
  color: var(--color-link);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  transition: background 0.2s, color 0.2s;
}

.mobile-nav ul li a:hover {
  background: var(--color-accent);
  color: var(--color-surface);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mailchimp Embed Form */
#mc_embed_signup {
  background: #fff;
  border-radius: 0.625rem;
  box-shadow: 0 0.0625rem 0.5rem rgba(0, 0, 0, 0.06);
  padding: 1.5rem 1.125rem;
  max-width: 26.25rem;
  margin: 0 auto 1.5rem auto;
}

#mc_embed_signup form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

#mc_embed_signup label {
  color: var(--color-text-secondary);
  font-size: 1rem;
  margin-bottom: 0.125rem;
}

#mc_embed_signup input[type="email"] {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  border-radius: 0.375rem;
  padding: 0.625rem 0.75rem;
  font-size: 1rem;
}

#mc_embed_signup button[type="submit"] {
  background: var(--color-accent);
  color: var(--color-surface);
  border: none;
  border-radius: 1.5rem;
  padding: 0.875rem 2.25rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
}

#mc_embed_signup button[type="submit"]:hover {
  background: #f68e49;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0.375rem 1.5rem rgba(0, 0, 0, 0.12);
}

/* --- monday.com-style restyle for lower sections --- */

/* Tailored Solutions Section */
.tailored-solutions {
  background: #f6f7fb;
  padding: 0;
  margin: 0 auto 5rem auto;
  text-align: center;
}

.tailored-solutions h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #222;
}

.solutions-grid {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.solution {
  background: #fff;
  border-radius: 1.375rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  padding: 2.5rem 2rem 2rem 2rem;
  min-width: 17.5rem;
  max-width: 21.25rem;
  flex: 1 1 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 0.5rem 2rem 0.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.solution img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 1.5rem 1.5rem 0 0;
  margin: 0;
  box-shadow: none;
}

.solution h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #222;
  margin: 1.5rem 0 1rem 0;
  text-align: center;
}

.solution ul {
  list-style: none;
  padding: 0 2rem 2rem 2rem;
  margin: 0;
  text-align: left;
}

.solution ul li {
  color: #6b6b6b;
  font-size: 1.08rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.25rem;
}

.solution ul li:before {
  content: '';
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background: #f8ac68;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.5rem;
}

/* Testimonials Section */
.testimonials {
  background: #181c1f;
  padding: 5rem 0 3.75rem 0;
  margin: 0 auto 5rem auto;
  text-align: center;
}

.testimonials h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.testimonial-list {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.testimonial-list blockquote {
  background: #fff;
  border-radius: 1.375rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  padding: 2.5rem 2rem 2rem 2rem;
  min-width: 17.5rem;
  max-width: 21.25rem;
  flex: 1 1 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 0.5rem 2rem 0.5rem;
  border: none;
}

.testimonial-list blockquote p {
  color: #222;
  font-size: 1.13rem;
  font-weight: 600;
  margin-bottom: 1.125rem;
}

.testimonial-list blockquote footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.75rem;
}

.testimonial-list blockquote img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
}

.testimonial-list blockquote cite {
  color: #6b6b6b;
  font-size: 1.01rem;
  font-style: normal;
  font-weight: 500;
}

.partner-logos {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

.partner-logos img {
  width: 5rem;
  height: auto;
  filter: grayscale(1) brightness(0.9);
  opacity: 0.8;
  transition: filter 0.2s, opacity 0.2s;
}

.partner-logos img:hover {
  filter: none;
  opacity: 1;
}

/* Key Pages Section */
.key-pages {
  background: #f6f7fb;
  padding: 0;
  margin: 0 auto 5rem auto;
  text-align: center;
}

.key-pages h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #222;
}

.key-pages ul {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 auto;
}

.key-pages ul li {
  background: #fff;
  border-radius: 1.125rem;
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.07);
  padding: 1.375rem 2rem;
  min-width: 11.25rem;
  margin: 0 0.5rem 1rem 0.5rem;
  font-size: 1.13rem;
  font-weight: 600;
  transition: box-shadow 0.2s, transform 0.2s;
}

.key-pages ul li a {
  color: #0f7577;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.13rem;
  transition: color 0.2s;
}

.key-pages ul li:hover, .key-pages ul li:focus-within {
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  transform: translateY(-2px) scale(1.03);
}

.key-pages ul li a:hover {
  color: #f68e49;
}

/* Demo Request Form Section */
.demo-request {
  padding: 2rem 1.5rem 2rem 1.5rem;
  max-width: 26.25rem;
  margin: 2rem auto 3rem auto;
  border-radius: 1.5rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  background: var(--color-accent);
}

.demo-logo {
  display: block;
  max-width: 10rem;
  margin: 0 auto 0.75rem auto;
}

.demo-request .section-title {
  margin-bottom: 1.125rem;
  margin-top: 0;
}

#condensed-demo-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-group {
  margin-bottom: 0.875rem;
}

.demo-request form label,
.demo-request form label[for="mailchimp_optin"] {
  color: #222;
}

.demo-request form input[type="text"],
.demo-request form input[type="email"] {
  color: #222;
  background: #f6f7fb;
  border: 0.09375rem solid #e5e7ef;
  box-shadow: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.04);
}

.demo-request form input[type="text"]::placeholder,
.demo-request form input[type="email"]::placeholder {
  color: #222;
  opacity: 0.7;
}

.demo-request form button[type="submit"] {
  display: block;
  margin: 1.125rem auto 0 auto;
  padding: 0.75rem 2.25rem;
  background: #fff;
  color: #f8ac68;
  font-weight: 700;
  border: 2px solid #f8ac68;
  border-radius: 1.5rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  min-width: 11.25rem;
}

.demo-request form button[type="submit"]:hover {
  background: #f68e49;
  color: #fff;
  border-color: #f68e49;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0.375rem 1.5rem rgba(0, 0, 0, 0.12);
}

/* FAQ Section (already styled above, just ensure center and space) */
.faq {
  background: #fff;
  border-radius: 1.375rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  padding: 3rem 2.25rem;
  max-width: 43.75rem;
  margin: 0 auto 5rem auto;
  text-align: center;
}

.faq h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #222;
}

.faq details {
  background: #fff;
  border-radius: 1.125rem;
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.07);
  border: none;
  margin-bottom: 1.375rem;
  padding: 1.375rem 1.5rem;
  text-align: left;
}

.faq summary {
  font-weight: 700;
  font-size: 1.13rem;
  color: #0f7577;
}

.faq p {
  color: #6b6b6b;
  font-size: 1.05rem;
}

/* Footer Section */
.footer {
  background: #fff;
  color: #6b6b6b;
  border-top: 1px solid #e5e7ef;
  padding: 4rem 0 2rem 0;
  text-align: center;
}

.footer-newsletter {
  max-width: 26.25rem;
  margin: 0 auto 2rem auto;
  background: #fff;
  border-radius: 1.125rem;
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.07);
  padding: 2rem 1.75rem;
}

.footer-newsletter h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.125rem;
}

#mc_embed_signup {
  background: #fff;
  border-radius: 1.125rem;
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.07);
  padding: 1.5rem 1.125rem;
  max-width: 26.25rem;
  margin: 0 auto 1.5rem auto;
}

#mc_embed_signup form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

#mc_embed_signup label {
  color: #6b6b6b;
  font-size: 1rem;
  margin-bottom: 0.125rem;
  font-weight: 600;
}

#mc_embed_signup input[type="email"] {
  background: #f6f7fb;
  border: 0.09375rem solid #e5e7ef;
  color: #222;
  border-radius: 0.75rem;
  padding: 0.875rem 1.125rem;
  font-size: 1.08rem;
  width: 100%;
  max-width: 21.25rem;
  margin-bottom: 0;
  transition: border 0.2s;
}

#mc_embed_signup input:focus {
  border-color: #f8ac68;
  outline: none;
}

#mc_embed_signup button[type="submit"] {
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 1.5rem;
  padding: 0.875rem 2.25rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
}

#mc_embed_signup button[type="submit"]:hover {
  background: #f68e49;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0.375rem 1.5rem rgba(0, 0, 0, 0.12);
}

.footer-social {
  display: flex;
  gap: 1.125rem;
  justify-content: center;
  margin: 1.5rem 0 0.5rem 0;
}

.footer-social a {
  background: #f6f7fb;
  color: #0f7577;
  border-radius: 50%;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.4rem;
  box-shadow: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.08);
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  background: #0f7577;
  color: #fff;
}

footer nav {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5rem 0 0 0;
}

footer nav a {
  color: #6b6b6b;
  text-decoration: underline;
  font-weight: 600;
  font-size: 1.08rem;
  transition: color 0.2s;
}

footer nav a:hover {
  color: #0f7577;
}

footer p {
  color: #6b6b6b;
  font-size: 1rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .solutions-grid, .testimonial-list, .key-pages ul {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .solution, .testimonial-list blockquote, .key-pages ul li {
    padding: 1.5rem 0.625rem;
    min-width: unset;
    max-width: 98vw;
  }

  .demo-request, .faq, .footer-newsletter {
    padding: 1.5rem 0.625rem;
    max-width: 98vw;
  }
}

@media (max-width: 600px) {
  .solution, .testimonial-list blockquote, .key-pages ul li {
    padding: 1rem 0.25rem;
    max-width: 98vw;
  }

  .demo-request, .faq, .footer-newsletter {
    padding: 1rem 0.25rem;
    max-width: 98vw;
  }

  .key-pages ul {
    gap: 0.75rem;
  }
}

/* --- Premium SaaS polish and active states --- */

/* Nav active/selected state */
.main-nav ul li a[aria-current="page"],
.main-nav ul li a.active {
  background: #f8ac68;
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 0.125rem 0.5rem rgba(248, 172, 104, 0.13);
  border-radius: 1.5rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.main-nav ul li a:focus-visible {
  outline: 0.15625rem solid #f8ac68;
  outline-offset: 2px;
  background: #fffbe6;
  color: #222;
  border-radius: 1.5rem;
}

.main-nav ul li a:hover:not([aria-current="page"]):not(.active) {
  background: #f6f7fb;
  color: #f68e49;
  border-radius: 1.5rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.07);
}

/* Hamburger active state */
.hamburger:focus-visible {
  outline: 0.15625rem solid #f8ac68;
  border-radius: 50%;
}

/* Button focus/active/hover */
.button:focus-visible, #mc_embed_signup button[type="submit"]:focus-visible, #condensed-demo-form button[type="submit"]:focus-visible {
  outline: 0.15625rem solid #f8ac68;
  outline-offset: 2px;
  background: #fffbe6;
  color: #222;
}

.button:active, #mc_embed_signup button[type="submit"]:active, #condensed-demo-form button[type="submit"]:active {
  background: #f68e49;
  color: #fff;
  transform: scale(0.97);
}

/* Card hover/active/focus effect */
.benefit-item:hover, .solution:hover, .testimonial-item:hover, .key-pages ul li:hover, .testimonial-list blockquote:hover {
  box-shadow: 0 0.75rem 2.25rem rgba(0, 0, 0, 0.13);
  transform: translateY(-4px) scale(1.025);
  transition: box-shadow 0.2s, transform 0.2s;
  z-index: 2;
}

.benefit-item:focus-within, .solution:focus-within, .testimonial-item:focus-within, .key-pages ul li:focus-within, .testimonial-list blockquote:focus-within {
  box-shadow: 0 0 0 0.1875rem #f8ac68, 0 0.75rem 2.25rem rgba(0, 0, 0, 0.13);
  outline: none;
  z-index: 3;
}

/* Link focus/hover */
a:focus-visible {
  outline: 0.15625rem solid #f8ac68;
  outline-offset: 2px;
  background: #fffbe6;
  color: #222;
  border-radius: 0.375rem;
}

a:hover {
  color: #f68e49;
  text-decoration: underline;
}

/* Form input focus/active */
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 0.15625rem solid #f8ac68;
  outline-offset: 2px;
  border-color: #f8ac68;
  background: #fffbe6;
}

input:active, textarea:active, select:active {
  border-color: #f68e49;
}

/* Hero background gradient for depth */
.hero-fullwidth {
  background: linear-gradient(120deg, #f6f7fb 0%, #e7d6bf 100%);
  position: relative;
  z-index: 1;
}

/* Sticky header shadow on scroll (if not already present) */
.header {
  transition: box-shadow 0.2s;
}

.header.sticky {
  box-shadow: 0 0.375rem 1.5rem rgba(0, 0, 0, 0.13);
}

/* Crisp icons/images */
img, svg {
  image-rendering: auto;
  max-width: 100%;
  height: auto;
}

/* Extra breathing room for all cards/sections */
.benefit-item, .solution, .testimonial-item, .key-pages ul li, .demo-request, .faq, .footer-newsletter, #mc_embed_signup {
  margin-bottom: 2rem;
}

/* Responsive tweaks for mobile */
@media (max-width: 900px) {
  .main-nav ul li a {
    border-radius: 1.125rem;
    font-size: 1rem;
    padding: 0.625rem 0.625rem;
  }
}

.bg-light { background: #f6f7fb; }
.bg-white { background: #fff; }
.bg-dark { background: #181c1f; color: #fff; }
.bg-accent { background: #f8ac68; color: #fff; }
section { padding: 3rem 0; }

.benefits-value-props, .features-grid, .solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13.75rem, 1fr));
  gap: 2rem;
  max-width: 68.75rem;
  margin: 0 auto;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #222;
  text-align: center;
}

.core-benefits.section {
  background: #fff;
  padding: 5rem 0;
}

.core-benefits .benefits-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.core-benefits .benefit-item {
  background: #f6f7fb;
  border-radius: 1.125rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.07);
  padding: 2rem 1.75rem;
  min-width: 13.75rem;
  max-width: 18.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.core-benefits .icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.bottom-cta.section, .section.bg-dark, .section.bg-accent {
  width: 100%;
  padding: 5rem 0;
  color: #fff;
  background: #181c1f;
  text-align: center;
}

.section.bg-accent {
  background: #f8ac68;
  color: #fff;
}

.bottom-cta .cta-content {
  max-width: 33.75rem;
  margin: 0 auto 2rem auto;
}

.bottom-cta .cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.125rem;
}

.bottom-cta .cta-content p {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.bottom-cta .button {
  background: #fff;
  color: #f68e49;
  font-weight: 700;
}

.bottom-cta .button:hover {
  background: #222;
  color: #fff;
}

.bottom-cta .cta-image img {
  max-width: 21.25rem;
  border-radius: 1.125rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.footer-nav {
  margin: 1.5rem 0 0 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  color: #6b6b6b;
  text-decoration: underline;
  font-weight: 600;
  font-size: 1.08rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #0f7577;
}

.core-functionalities.section {
  background: #fff;
  padding: 5rem 0;
}

.core-functionalities .functionalities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 68.75rem;
  margin: 0 auto;
}

.core-functionalities .functionality {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 1.375rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  padding: 2.5rem 2rem;
  margin: 0 auto;
  max-width: 56.25rem;
  min-height: 10rem;
  width: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}

.core-functionalities .functionality .icon,
.core-functionalities .functionality-img {
  flex: 0 0 4.5rem;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1rem;
  background: #f6f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.125rem auto;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
}

.core-functionalities .functionality-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 700px) {
  .core-functionalities .functionality {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0.625rem;
    min-height: unset;
  }

  .core-functionalities .functionality .icon,
  .core-functionalities .functionality-img {
    margin: 0 auto 1.125rem auto;
  }

  .core-functionalities .functionality-content {
    align-items: center;
    text-align: center;
  }
}

.benefits-persona.section.bg-dark {
  background: #181c1f;
  color: #fff;
  padding: 5rem 0;
}

.benefits-persona-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.persona-benefit {
  background: #23272b;
  border-radius: 1.125rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.13);
  padding: 2rem 1.75rem;
  min-width: 13.75rem;
  max-width: 20rem;
  text-align: left;
  color: #fff;
}

.persona-benefit h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}

.persona-benefit ul {
  padding-left: 1.125rem;
  margin: 0;
  color: #e0e0e0;
  font-size: 1.05rem;
}

.persona-benefit ul li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

@media (max-width: 900px) {
  .benefits-persona-grid {
    flex-direction: column;
    align-items: center;
  }

  .persona-benefit {
    max-width: 98vw;
  }
}

.value-props.section.bg-accent {
  background: #f8ac68;
  color: #fff;
  padding: 5rem 0;
}

.value-props-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.value-prop {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 1.125rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.07);
  padding: 2rem 1.75rem;
  min-width: 13.75rem;
  max-width: 20rem;
  text-align: left;
  color: #fff;
}

.value-prop h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}

.value-prop p {
  color: #fff;
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .value-props-grid {
    flex-direction: column;
    align-items: center;
  }

  .value-prop {
    max-width: 98vw;
  }
}

.benefits-value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 68.75rem;
  margin: 0 auto 3rem auto;
  padding: 2.5rem;
}

.benefit-card {
  background: #fff;
  border-radius: 1.125rem;
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.07);
  padding: 2rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-card .icon {
  font-size: 2.5rem;
  color: var(--color-link, #0f7577);
  margin-bottom: 1.125rem;
}

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.625rem;
}

.benefit-card p {
  color: #6b6b6b;
  font-size: 1.05rem;
}

.benefit-card.empty {
  background: transparent;
  box-shadow: none;
  border: none;
  pointer-events: none;
}

@media (max-width: 900px) {
  .benefits-value-props {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .benefits-value-props {
    grid-template-columns: 1fr;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 68.75rem;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  border-radius: 1.125rem;
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.07);
  padding: 2rem 1.75rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card .icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--color-link, #0f7577);
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: #222;
}

.feature-card ul {
  padding-left: 1.125rem;
  margin: 0;
  color: #6b6b6b;
  font-size: 1.05rem;
}

.feature-card ul li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.feature-card:hover {
  box-shadow: 0 0.75rem 2.25rem rgba(0, 0, 0, 0.13);
  transform: translateY(-4px) scale(1.025);
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.solutions-persona .solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 68.75rem;
  margin: 0 auto;
}

.solutions-persona .solution {
  background: #fff;
  border-radius: 1.375rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  padding: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
}

.solutions-persona .solution img {
  width: 100%;
  height: 9.375rem;
  object-fit: cover;
  border-radius: 1.375rem 1.375rem 0 0;
  margin-bottom: 1.125rem;
  box-shadow: none;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.solutions-persona .solution:hover img {
  transform: scale(1.03);
  box-shadow: 0 0.75rem 2.25rem rgba(0, 0, 0, 0.13);
}

.solutions-persona .solution h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.125rem;
  color: #222;
}

.solutions-persona .solution p {
  color: #6b6b6b;
  font-size: 1.05rem;
}

.solutions-persona .solution ul {
  padding-left: 1.125rem;
  margin: 0;
  list-style: disc;
  list-style-position: outside;
	margin-inline-start: 1.75rem;
}

.solutions-persona .solution ul li {
  color: #6b6b6b;
  font-size: 0.98rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  list-style: disc;
  padding-left: 0;
  word-break: break-word;
}

.solutions-persona .solution ul li::marker {
  color: #f8ac68;
}

/* Remove the old custom bullet */
.solutions-persona .solution ul li:before {
  content: none;
}

@media (max-width: 900px) {
  .solutions-persona .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solutions-persona .solution {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0 0 0 0;
    min-height: 8.75rem;
  }

  .solutions-persona .solution img {
    width: 6.875rem;
    height: 6.875rem;
    border-radius: 1.125rem 0 0 1.125rem;
    margin: 0 1.5rem 0 0;
    object-fit: cover;
    box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.13);
  }

  .solutions-persona .solution > *:not(img) {
    flex: 1;
    padding: 1.5rem 0 1.5rem 0;
  }
}

.demo-logo {
  display: block;
  max-width: 11.25rem;
  margin: 1.5rem auto 0.5rem auto;
  transition: margin-left 0.2s, transform 0.2s;
}

@media (min-width: 700px) {
  .demo-request .demo-logo {
    margin-left: calc(50% - 5.625rem - 2.5rem);
  }
}

.demo-request form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.125rem;
  margin-left: 0.25rem;
  font-size: 1.05rem;
}

.demo-request form input[type="text"],
.demo-request form input[type="email"] {
  width: 100%;
  max-width: 21.25rem;
  margin: 0 0 0.625rem 0;
  padding: 0.625rem 1rem;
  border-radius: 0.625rem;
  font-size: 1rem;
  border: 0.09375rem solid #e5e7ef;
  background: #f6f7fb;
  box-sizing: border-box;
}

.demo-request form label[for="demo-org"] {
  margin-top: 0.375rem;
}

.demo-request form label[for="mailchimp_optin"] {
  display: flex;
  align-items: center;
  font-weight: 400;
  margin: 0.5rem 0 0.5rem 0;
  font-size: 1rem;
}

.demo-request form button[type="submit"] {
  display: block;
  margin: 1.125rem auto 0 auto;
  padding: 0.75rem 2.25rem;
  background: #fff;
  color: #f8ac68;
  font-weight: 700;
  border: 2px solid #f8ac68;
  border-radius: 1.5rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  min-width: 11.25rem;
}

.demo-request form button[type="submit"]:hover {
  background: #f68e49;
  color: #fff;
  border-color: #f68e49;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0.375rem 1.5rem rgba(0, 0, 0, 0.12);
}

/* FAQ Section (already styled above, just ensure center and space) */
.faq {
  background: #fff;
  border-radius: 1.375rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  padding: 3rem 2.25rem;
  max-width: 43.75rem;
  margin: 0 auto 5rem auto;
  text-align: center;
}

.faq h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #222;
}

.faq details {
  background: #fff;
  border-radius: 1.125rem;
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.07);
  border: none;
  margin-bottom: 1.375rem;
  padding: 1.375rem 1.5rem;
  text-align: left;
}

.faq summary {
  font-weight: 700;
  font-size: 1.13rem;
  color: #0f7577;
}

.faq p {
  color: #6b6b6b;
  font-size: 1.05rem;
}

/* Footer Section */
.footer {
  background: #fff;
  color: #6b6b6b;
  border-top: 1px solid #e5e7ef;
  padding: 4rem 0 2rem 0;
  text-align: center;
}

.footer-newsletter {
  max-width: 26.25rem;
  margin: 0 auto 2rem auto;
  background: #fff;
  border-radius: 1.125rem;
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.07);
  padding: 2rem 1.75rem;
}

.footer-newsletter h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.125rem;
}

#mc_embed_signup {
  background: #fff;
  border-radius: 1.125rem;
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.07);
  padding: 1.5rem 1.125rem;
  max-width: 26.25rem;
  margin: 0 auto 1.5rem auto;
}

#mc_embed_signup form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

#mc_embed_signup label {
  color: #6b6b6b;
  font-size: 1rem;
  margin-bottom: 0.125rem;
  font-weight: 600;
}

#mc_embed_signup input[type="email"] {
  background: #f6f7fb;
  border: 0.09375rem solid #e5e7ef;
  color: #222;
  border-radius: 0.75rem;
  padding: 0.875rem 1.125rem;
  font-size: 1.08rem;
  width: 100%;
  max-width: 21.25rem;
  margin-bottom: 0;
  transition: border 0.2s;
}

#mc_embed_signup input:focus {
  border-color: #f8ac68;
  outline: none;
}

#mc_embed_signup button[type="submit"] {
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 1.5rem;
  padding: 0.875rem 2.25rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
}

#mc_embed_signup button[type="submit"]:hover {
  background: #f68e49;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0.375rem 1.5rem rgba(0, 0, 0, 0.12);
}

.footer-social {
  display: flex;
  gap: 1.125rem;
  justify-content: center;
  margin: 1.5rem 0 0.5rem 0;
}

.footer-social a {
  background: #f6f7fb;
  color: #0f7577;
  border-radius: 50%;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.4rem;
  box-shadow: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.08);
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  background: #0f7577;
  color: #fff;
}

footer nav {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5rem 0 0 0;
}

footer nav a {
  color: #6b6b6b;
  text-decoration: underline;
  font-weight: 600;
  font-size: 1.08rem;
  transition: color 0.2s;
}

footer nav a:hover {
  color: #0f7577;
}

footer p {
  color: #6b6b6b;
  font-size: 1rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .solutions-grid, .testimonial-list, .key-pages ul {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .solution, .testimonial-list blockquote, .key-pages ul li {
    padding: 1.5rem 0.625rem;
    min-width: unset;
    max-width: 98vw;
  }

  .demo-request, .faq, .footer-newsletter {
    padding: 1.5rem 0.625rem;
    max-width: 98vw;
  }
}

@media (max-width: 600px) {
  .solution, .testimonial-list blockquote, .key-pages ul li {
    padding: 1rem 0.25rem;
    max-width: 98vw;
  }

  .demo-request, .faq, .footer-newsletter {
    padding: 1rem 0.25rem;
    max-width: 98vw;
  }

  .key-pages ul {
    gap: 0.75rem;
  }
}

@media (max-width: 900px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.compliance-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2.5rem 0 2.5rem 0;
}

.compliance-badges img {
  height: 4.5rem;
  width: auto;
  max-width: 100%;
  display: block;
  filter: grayscale(0.2) brightness(0.98) drop-shadow(0 0.125rem 0.5rem rgba(0,0,0,0.08));
}

@media (max-width: 600px) {
  .compliance-badges {
    gap: 1rem;
  }
  .compliance-badges img {
    height: 2.5rem;
  }
}
