/* --- CSS RESET & NORMALIZATION --- */
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,
main, 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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: #f7efd5;
  color: #232323;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

/* --- CSS VARIABLES FOR BRAND COLORS & FONTS --- */
:root {
  --primary: #36574a; /* Brand primary (electric green/teal) */
  --primary-dark: #254034;
  --secondary: #f7efd5; /* Brand secondary (light sandy) */
  --offwhite: #fffef7;
  --accent: #b2741c;
  --accent-dark: #a05f00;
  --danger: #e6362c;
  --success: #32c671;
  --info: #34aadc;
  --electric-cyan: #10cfc9;
  --electric-violet: #763fca;
  --electric-pink: #ec008c;
  --vibrant-yellow: #fff91f;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --shadow: 0 2px 16px 0 rgba(54, 87, 74, 0.08), 0 0.5px 1.5px 0 rgba(166, 68, 191, 0.11);
  --shadow-card: 0 8px 24px 4px rgba(16, 207, 201, 0.09), 0 0.5px 4px 0 rgba(114,63,202,0.04);
  --shadow-hero: 0 10px 36px 6px rgba(236,0,140,0.10);
  --duration: 0.24s;
}

body {
  font-family: var(--font-body);
  background-color: var(--secondary);
  color: var(--primary-dark);
  min-height: 100vh;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 18px;
  text-shadow: 0 2px 6px rgba(236,0,140,0.08);
}
h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 22px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 19px;
}
h3 {
  font-size: 1.4rem;
  line-height: 1.25;
  margin-bottom: 12px;
}
h4 { font-size: 1.15rem; margin-bottom: 10px; font-weight: 700;padding:0; }
p, ul li, ol li {
  font-family: var(--font-body);
  font-size: 1.07rem;
  margin-bottom: 12px;
  letter-spacing: 0.05px;
  color: #232323;
}
blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--electric-violet);
  border-left: 4px solid var(--accent);
  padding-left: 14px;
  margin-bottom: 8px;
}
strong, b {
  font-weight: 700;
  color: var(--primary);
}
em, i {
  color: var(--electric-cyan);
}

/* --- CONTAINERS & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
.text-section {
  max-width: 780px;
}

/* --- SPACING & FLEX UTILS --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--offwhite);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  padding: 24px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
}
.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; /* For mobile breaks */
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hero);
  margin-bottom: 20px;
  position: relative;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- NAVIGATION & HEADER --- */
header {
  width: 100vw;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(54,87,74,0.07);
  z-index: 11;
  position: relative;
}
nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px 0 8px 0;
}
nav > a {
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary-dark);
  transition: background var(--duration);
  position: relative;
}
nav > a:not(.cta-primary):hover, nav > a:focus {
  background: var(--electric-cyan);
  color: #fff;
}
nav > a.cta-primary {
  background: linear-gradient(90deg, var(--electric-pink) 30%, var(--electric-cyan) 80%);
  color: #fff;
  font-size: 1.12rem;
  box-shadow: 0 4px 16px 2px rgba(236,0,140,0.08);
  border-radius: var(--radius-md);
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-left: 18px;
  transition: transform var(--duration), box-shadow var(--duration), filter var(--duration);
}
nav > a.cta-primary:hover, nav > a.cta-primary:focus {
  filter: brightness(1.15) saturate(1.4);
  transform: scale(1.03);
  box-shadow: 0 6px 22px 3px rgba(16,207,201,0.22);
}
nav img {
  height: 46px;
  margin-right: 14px;
}

/* --- MOBILE NAV (BURGER MENU) --- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.3rem;
  background: var(--electric-violet);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px 2px rgba(118,63,202,0.13);
  position: absolute;
  top: 12px;
  right: 20px;
  z-index: 104;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background var(--duration);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--accent);
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 8px 32px 1px rgba(54,87,74,0.12);
  z-index: 1200;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform .33s cubic-bezier(.75,0,.14,1), opacity .28s cubic-bezier(.52,0,.38,1);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  margin: 24px 0 0 24px;
  font-size: 2.3rem;
  color: var(--danger);
  background: transparent;
  border-radius: 50%;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid var(--danger);
  transition: background .19s, color .19s;
  z-index: 1201;
  display: flex;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--danger);
  color: #fff;
}
.mobile-nav {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin: 36px 0 0 40px;
}
.mobile-nav > a {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.18rem;
  color: var(--primary);
  padding: 12px 0;
  transition: color .18s, background .18s;
  border-radius: var(--radius-sm);
}
.mobile-nav > a:hover, .mobile-nav > a:focus {
  color: var(--electric-violet);
  background: var(--secondary);
  box-shadow: 0 2px 8px 0 rgba(16,207,201,0.07);
}

/* --- HERO SECTION, CTA, BUTTONS --- */
.cta-primary, .cta-secondary {
  font-family: var(--font-display);
  font-weight: 900;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 1.13rem;
  padding: 13px 32px;
  color: #fff;
  transition: background var(--duration), box-shadow var(--duration), transform var(--duration);
  box-shadow: var(--shadow-card);
  letter-spacing: 0.07em;
  line-height: 1rem;
  margin-top: 8px;
}
.cta-primary {
  background: linear-gradient(90deg, var(--electric-cyan) 5%, var(--electric-pink) 70%, var(--vibrant-yellow) 100%);
  color: #fff;
  box-shadow: 0 4px 16px 2px rgba(16,207,201,0.13);
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(88deg, var(--electric-pink) 45%, var(--electric-cyan) 90%);
  filter: brightness(1.19);
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 10px 32px 4px rgba(236,0,140,0.10);
  color: #fff;
}
.cta-secondary {
  background: var(--electric-violet);
  color: #fff;
  box-shadow: 0 4px 12px 3px rgba(118,63,202,0.11);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--electric-cyan);
  color: var(--primary-dark);
  transform: scale(1.03) rotate(1deg);
}
button, input[type="submit"] {
  cursor: pointer;
}

input[type="text"], input[type="email"], textarea {
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  font-size: 1rem;
  width: 100%;
  outline: none;
  margin-bottom: 15px;
  transition: border-color .17s;
  color: var(--primary);
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--accent);
}

/* --- UL > LI, ICON LISTS --- */
ul li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 16px;
  font-size: 1.08rem;
  min-height: 36px;
}
ul li img {
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
}
ul li span.price {
  color: var(--accent);
  font-weight: 800;
}

/* --- CARDS & FEATURE GRIDS --- */
.card, .card-container > li, .content-grid > .card, .content-grid > li {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  position: relative;
  margin-bottom: 20px;
  min-width: 0;
  transition: box-shadow .23s, transform .23s;
}
.card:hover, .content-grid > .card:hover {
  box-shadow: 0 10px 28px 5px rgba(112,63,202,0.14), 0 2.5px 12px 0 rgba(236,0,140,0.09);
  transform: translateY(-3px) scale(1.019);
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px 4px rgba(16,207,201,0.17);
  color: #181818;
  flex-direction: column;
  align-items: flex-start;
  max-width: 480px;
  min-width: 0;
  padding: 30px 28px 20px 24px;
  border-left: 8px solid var(--accent);
}
.testimonial-card blockquote {
  color: var(--electric-pink);
  font-size: 1.13rem;
  margin-bottom: 14px;
}
.testimonial-card .name-location {
  color: var(--primary-dark);
  font-size: 1.03rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: var(--font-display);
}

/* --- FORMS, FOOTER & MISC --- */
footer {
  background: var(--primary-dark);
  color: #fff;
  padding: 44px 0 0 0;
  box-shadow: 0 -2px 16px 0 rgba(54,87,74,0.08);
  position: relative;
}
footer nav {
  flex-wrap: wrap;
  gap: 12px;
}
footer nav a {
  color: #fff;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.01rem;
  padding: 7px 14px;
  border-radius: 6px;
  transition: background .14s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--electric-cyan);
  color: var(--primary-dark);
}
footer .cta-primary {
  background: var(--accent-dark);
  font-size: 1.11rem;
  padding: 11px 26px;
  margin-top: 5px;
  margin-bottom: 13px;
  box-shadow: 0 2px 8px 1px rgba(176,116,28,0.09);
}
footer .cta-primary:hover { background: var(--electric-pink); }
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--primary);
}
footer .contact-info, .legal-links, .social-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer .legal-links, footer .social-links {
  flex-direction: row;
  gap: 18px;
  margin-top: 8px;
}
footer .legal-links a {
  font-size: 0.97rem;
  color: var(--electric-cyan);
  font-weight: 600;
  margin-right: 7px;
  transition: text-decoration .14s, color .17s;
}
footer .legal-links a:hover { text-decoration: underline; color: var(--vibrant-yellow); }
footer .social-links img {
  width: 32px;
  height: 32px;
  filter: grayscale(0) drop-shadow(0 3px 8px rgba(16,207,201,0.13));
  transition: filter .18s;
  border-radius: 8px;
}
footer .social-links img:hover {
  filter: grayscale(0) drop-shadow(0 4px 13px rgba(236,0,140,0.22)) brightness(1.2);
}
footer .contact-info a { color: var(--vibrant-yellow); text-decoration: underline; }

/* --- LOGO STRIP --- */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin: 32px 0 0 0;
}
.logo-strip img {
  height: 62px;
  filter: drop-shadow(0 1px 5px rgba(16,207,201,0.05));
}

/* --- SPECIALS: TEAM BIOS --- */
.team-bio-summaries {
  margin-top: 30px;
  background: var(--offwhite);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px 0 rgba(16,207,201, 0.07);
  max-width: 430px;
}
.team-bio-summaries h3 { color: var(--electric-violet); margin-bottom: 9px; }
.team-bio-summaries ul { margin: 0; }
.team-bio-summaries li { font-size: 1.03rem; color: var(--primary-dark);}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1060px) {
  .container { max-width: 100%; }
}
@media (max-width: 900px) {
  .container {max-width: 100vw;}
  nav { flex-wrap: wrap; gap: 8px; }
  header nav a, footer nav a { font-size: 1rem; padding: 7px 10px; }
}
@media (max-width: 768px) {
  .container { padding: 0 10px; }
  .section { padding: 28px 8px; margin-bottom: 38px; }
  .content-wrapper, .content-grid, .card-container {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .content-grid, .card-container {
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .team-bio-summaries {
    max-width: 100%;
  }
  .logo-strip img {
    height: 40px;
  }
  nav {display: none;}
  .mobile-menu-toggle {
    display: flex;
  }
  header nav { display: none !important; }
  .footer nav { display: none; }
  footer .content-wrapper {
    gap: 13px;
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 13px;
  }
}
@media (max-width: 510px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  .section { padding: 18px 4px; margin-bottom: 26px; }
}


/* --- COOKIE CONSENT BANNER + MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--offwhite);
  color: var(--primary-dark);
  box-shadow: 0 -6px 24px 4px rgba(16,207,201,0.10);
  border-top: 4px solid var(--electric-pink);
  z-index: 1600;
  padding: 22px 18px 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 1rem;
  animation: fadeInCookie .62s cubic-bezier(.35,.9,0,.89) 1;
}
@keyframes fadeInCookie {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner__msg {
  flex: 2 1 210px;
  font-size: 1em;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-banner__btn {
  background: var(--electric-cyan);
  color: #fff;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.01em;
  padding: 9px 19px;
  transition: background .16s, color .16s, filter .19s;
  border: none;
  cursor: pointer;
}
.cookie-banner__btn--accept {
  background: linear-gradient(89deg, var(--electric-pink) 13%, var(--electric-cyan) 81%);
}
.cookie-banner__btn--accept:hover { filter: brightness(1.12); }
.cookie-banner__btn--reject {
  background: var(--danger);
}
.cookie-banner__btn--reject:hover, .cookie-banner__btn--reject:focus {
  background: #b40720;
}
.cookie-banner__btn--settings {
  background: var(--accent);
  color: #fff;
}
.cookie-banner__btn--settings:hover { background: var(--electric-cyan); color: #232323; }

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal__overlay {
  position: fixed; left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(40,39,39,0.62);
  z-index: 1700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.23s;
}
@keyframes fadeInModal {
  from { opacity:0; } to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px 6px rgba(54,87,74,0.16);
  padding: 36px 28px;
  min-width: 340px;
  max-width: 94vw;
  z-index: 1701;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: popUp .34s cubic-bezier(.77,0,.19,1);
}
@keyframes popUp {
  from { transform: scale(0.7) translateY(28px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 { margin-bottom: 6px; color: var(--electric-pink); }
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 7px 0;
}
.cookie-modal__category-label {
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--primary);
}
.cookie-modal__toggle {
  width: 48px; height: 26px;
  position: relative;
  display: inline-block;
}
.cookie-modal__toggle input {
  width: 0; height: 0; opacity: 0;
}
.cookie-modal__slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--secondary);
  border-radius: 18px;
  box-shadow: 0 1px 5px 0 rgba(16,207,201,0.06);
  transition: background .18s;
}
.cookie-modal__toggle input:checked + .cookie-modal__slider {
  background: var(--electric-cyan);
}
.cookie-modal__slider::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px 0 rgba(176,116,28,0.11);
  transition: transform .16s;
}
.cookie-modal__toggle input:checked + .cookie-modal__slider::before {
  transform: translateX(20px);
}
.cookie-modal__category-desc {
  font-size: .98em;
  color: #666;
  margin-left: 15px;
}
.cookie-modal__actions {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.cookie-modal__btn {
  background: var(--electric-cyan);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 28px;
  font-size: 1.06rem;
  transition: background .19s, color .17s;
  cursor: pointer;
}
.cookie-modal__btn--close {
  background: var(--danger);
}
.cookie-modal__btn--close:hover { background: #ad0635; }
.cookie-modal__btn--save {
  background: linear-gradient(90deg, var(--electric-cyan) 25%, var(--electric-pink) 90%);
}

@media (max-width: 560px) {
  .cookie-modal { min-width: unset; padding: 23px 10px; }
  .cookie-modal h2 { font-size: 1.1rem; }
}

/* --- MISC. & MICRO-INTERACTIONS --- */
a, button, .cta-primary, .cta-secondary, .cookie-banner__btn, .cookie-modal__btn {
  transition: color .19s, background .18s, text-decoration .15s, box-shadow .18s, transform .18s, filter .19s;
}
.card, .content-grid > .card {
  transition: box-shadow .19s, transform .18s;
}

/* --- REMOVE SCROLLBAR ON MOBILE MENU --- */
.mobile-menu, .cookie-modal__overlay { -webkit-overflow-scrolling: touch; }

/* --- UTILS --- */
.hide { display: none !important; }

/* --- HIGH ENERGY VIBRANT ACCENTS --- */
::-webkit-scrollbar {
  width: 10px; background: var(--secondary); }
::-webkit-scrollbar-thumb {
  background: var(--electric-pink); border-radius: 20px; }


