/* --- 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;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #F9F9F9;
  color: #344955;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #344955;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #FDBF57;
  outline: none;
}
ul, ol {
  list-style: none;
}
strong, b {
  font-weight: 600;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #212C35;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; letter-spacing: -1px; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 16px; }
h4, h5, h6 { font-size: 1.1rem; }

/* --- BRAND COLORS AS CSS VARS --- */
:root {
  --color-primary: #344955;
  --color-secondary: #F9F9F9;
  --color-accent: #FDBF57;
  --color-on-primary: #ffffff;
  --color-footer-bg: #212C35;
  --color-shadow: rgba(52, 73, 85, 0.10);
}

/* --- CONTAINER & LAYOUT --- */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: 0 2px 12px var(--color-shadow);
  border-radius: 18px;
  padding: 32px 28px;
  flex: 1 1 320px;
}
.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;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 20px 28px;
  border-radius: 16px;
  box-shadow: 0 1px 8px var(--color-shadow);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/**** PRIMARY BUTTON ****/
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-on-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 14px 36px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 3px 18px var(--color-shadow);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
  letter-spacing: 0.5px;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}
.btn-primary:after {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 30px;
  background: linear-gradient(90deg, #FFD70033 0%, #FDBF57 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.25s;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-accent);
  color: #222;
  box-shadow: 0 6px 24px var(--color-shadow);
  transform: translateY(-2px) scale(1.04);
}
.btn-primary:hover:after, .btn-primary:focus:after {
  opacity: 0.18;
}

/**** SECONDARY BUTTON ****/
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: #222;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 28px;
  border: none;
  border-radius: 26px;
  box-shadow: 0 1px 7px var(--color-shadow);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
  margin-top: 6px;
  position: relative;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #fff2db;
  color: var(--color-primary);
  box-shadow: 0 4px 18px var(--color-shadow);
  transform: translateY(-1px) scale(1.03);
  outline: none;
}

/**** HEADER & NAVIGATION ****/
header {
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  width: 100%;
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 28px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #344955;
  opacity: 0.92;
  padding: 3px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
header nav a:hover,
header nav a:focus {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  outline: none;
}
header img {
  max-height: 46px;
  width: auto;
}

/* ORDER BUTTON in header */
header .btn-primary {
  margin-left: 18px;
  font-size: 1rem;
  min-width: 148px;
}

/**** MOBILE NAVIGATION (BURGER MENU) ****/
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  border: none;
  color: #212C35;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  margin-left: 8px;
  box-shadow: 0 1px 8px var(--color-shadow);
  transition: background 0.16s, box-shadow 0.16s;
  z-index: 51;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ffd777;
  box-shadow: 0 3px 24px var(--color-shadow);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,43,55,0.98);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.68,.12,.21,1.17);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--color-accent);
  margin: 36px 0 10px 22px;
  cursor: pointer;
  z-index: 10001;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 30px;
  margin-top: 16px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.6rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding: 12px 0;
  opacity: 0.96;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent);
  border-bottom: 1.5px solid var(--color-accent);
}

@media (max-width: 1020px) {
  header .container {
    gap: 12px;
  }
  header nav {
    gap: 12px;
  }
  header .btn-primary {
    min-width: 124px;
  }
}

@media (max-width: 900px) {
  header nav {
    display: none;
  }
  header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
}

/**** MAIN LAYOUT ****/
main {
  margin-top: 0px;
  min-height: 76vh;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 600px) {
  section {
    margin-bottom: 40px;
    padding: 25px 0 28px 0;
  }
  .card {
    padding: 16px 10px;
  }
}

/**** CCA-BANNER ****/
.cta-banner {
  background: var(--color-primary);
  color: var(--color-on-primary);
  border-radius: 22px;
  box-shadow: 0 2px 18px var(--color-shadow);
  padding: 40px 40px 36px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
}
.cta-banner h2 {
  color: var(--color-accent);
  margin-bottom: 8px;
}
.cta-banner p {
  color: #fff;
  opacity: 0.93;
}

/**** SOLUTION-SNIPPET (for index) ****/
.solution-snippet {
  background: #fff;
  border-radius: 18px;
  border-left: 5px solid var(--color-accent);
  margin-bottom: 24px;
  padding: 30px 32px;
  box-shadow: 0 1px 7px var(--color-shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.solution-snippet h3 {
  color: var(--color-primary);
  margin-bottom: 4px;
}

/**** BENEFITS-GRID or ROWS ****/
.benefits-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin: 15px 0 20px 0;
}
.benefits-grid ul {
  background: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 1px 6px var(--color-shadow);
  flex: 1 1 220px;
  font-size: 1rem;
  color: #344955;
  list-style: disc inside;
}

/**** TESTIMONIALS ****/
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 20px 28px;
  color: #344955;
  font-size: 1rem;
  margin-bottom: 20px;
  gap: 20px;
  position: relative;
}
.testimonial-card blockquote {
  color: #344955;
  font-size: 1.14rem;
  line-height: 1.6;
  font-style: italic;
  quotes: "\201E" "\201D";
}
.testimonial-card span {
  color: #555C6C;
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-top: 0;
}
.testimonial-card img {
  height: 30px;
  width: 30px;
  margin-right: 3px;
}

/**** FOOTER ****/
footer {
  background: var(--color-footer-bg);
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.01rem;
  margin-top: 60px;
  padding: 0 0 0 0;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding: 42px 0 0 0;
  align-items: flex-start;
}
.footer-main > * { min-width: 180px; }
.footer-main a {
  color: #fff;
  opacity: 0.84;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 5px;
  display: inline-block;
  font-size: 1em;
  transition: color 0.2s, opacity 0.2s;
}
.footer-main a:hover, 
.footer-main a:focus {
  color: var(--color-accent);
  opacity: 1;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .98em;
  color: #eaf3fa;
  opacity: 0.9;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  margin-right: 6px;
  vertical-align: middle;
}
.footer-bottom {
  border-top: 1px solid #34495544;
  margin-top: 34px;
  text-align: center;
  padding: 18px 0 20px 0;
  color: #c4c6ce;
  font-size: 0.92em;
  opacity: 0.8;
}

/**** TEXT-SECTIONS for TIPS/ARTICLES ****/
.text-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 7px var(--color-shadow);
  padding: 22px 24px;
  margin-bottom: 20px;
  min-width: 220px;
}

/**** FEATURE ITEM ****/
.feature-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px 18px;
  box-shadow: 0 1px 8px var(--color-shadow);
  margin-bottom: 20px;
}

/**** CONTACT DETAILS ****/
.contact-details, .location-map {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 1px 8px var(--color-shadow);
  margin-bottom: 20px;
  flex: 1 1 280px;
}
.contact-details ul, .location-map ul {
  margin-bottom: 12px;
}
.contact-details ul li, .location-map ul li {
  padding-bottom: 7px;
}
.contact-details img, .location-map img {
  height: 22px;
  width: 22px;
  margin-right: 8px;
  vertical-align: middle;
}

/**** UL & LI ENHANCEMENT ****/
ul li {
  padding-left: 0;
  margin-bottom: 12px;
  position: relative;
  font-size: 1.06em;
}
ul li strong {
  color: var(--color-primary);
}
ul li img {
  height: 20px;
  width: 20px;
  margin-right: 7px;
  vertical-align: middle;
}

/**** LINKS INSIDE TEXT ****/
.content-wrapper a {
  color: var(--color-accent);
  border-bottom: 1px solid transparent;
  transition: color 0.16s, border-color 0.16s;
}
.content-wrapper a:hover, .content-wrapper a:focus {
  color: #db9b14;
  border-bottom: 1.5px solid var(--color-accent);
  outline: none;
}

/**** TYPOGRAPHY FOR EMPHASIS ****/
blockquote {
  border-left: 3px solid var(--color-accent);
  margin-left: 0;
  padding-left: 16px;
  color: #344955;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-style: italic;
  background: none;
}

/**** RESPONSIVENESS ****/
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .footer-contact {
    margin-bottom: 10px;
  }
}
@media (max-width: 1020px) {
  .container {
    max-width: 100vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .benefits-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
  .cta-banner {
    padding: 26px 14px 22px 14px;
  }
  .footer-main {
    gap: 18px;
    padding: 32px 0 0 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .solution-snippet {
    padding: 16px 8px;
  }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.26rem; }
}
@media (max-width: 480px) {
  .card, .cta-banner, .solution-snippet, .text-section, .feature-item, .contact-details, .location-map {
    padding-left: 8px;
    padding-right: 8px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 14px 6px;
  }
}

/* --- MICRO INTERACTIONS / SUBTLE ANIMATIONS --- */
.btn-primary, .btn-secondary, header nav a, .mobile-nav a {
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.16s, border-color 0.2s;
}
.card, .solution-snippet, .testimonial-card, .text-section, .feature-item, .contact-details, .location-map {
  transition: box-shadow 0.18s, transform 0.13s;
}
.card:hover, .solution-snippet:hover, .testimonial-card:hover, .text-section:hover, .feature-item:hover {
  box-shadow: 0 10px 35px var(--color-shadow);
  transform: translateY(-2px) scale(1.01);
}

/**** COOKIE CONSENT BANNER & MODAL ****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #212C35;
  color: #fff;
  z-index: 50000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 26px 12px 18px 12px;
  box-shadow: 0 -3px 15px rgba(52, 73, 85, 0.11);
  border-radius: 20px 20px 0 0;
  width: 100%;
  animation: banner-slide 0.7s cubic-bezier(.53,.05,.45,1.11);
}
@keyframes banner-slide {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  opacity: 0.93;
  font-size: 0.98rem;
  text-align: center;
  margin-bottom: 8px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  margin-top: 3px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border-radius: 25px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  font-weight: 600;
  padding: 10px 28px;
  font-size: 1rem;
  margin: 0 3px;
  box-shadow: 0 1px 6px var(--color-shadow);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.16s;
}
.cookie-banner .cookie-accept {
  background: var(--color-accent);
  color: #222;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #ffd777;
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid #ddd;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #e7e7e7;
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: var(--color-accent);
  text-decoration: underline;
  border: 1px solid #FDBF57;
  font-weight: 500;
}
.cookie-banner .cookie-settings:hover, .cookie-settings:focus {
  background: #FDBF57;
  color: #212C35;
}

.cookie-modal {
  position: fixed;
  z-index: 50100;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(36,43,55,0.80);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: modal-fade 0.4s cubic-bezier(.6,.07,.36,1.04);
}
@keyframes modal-fade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #344955;
  border-radius: 18px;
  padding: 34px 28px 28px 28px;
  width: 90vw;
  max-width: 420px;
  min-width: 290px;
  box-shadow: 0 8px 42px var(--color-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.cookie-modal-content h2 {
  color: var(--color-primary);
  margin-bottom: 6px;
  font-size: 1.28rem;
}
.cookie-modal-content label {
  font-size: 1rem;
  font-weight: 500;
  margin-right: 18px;
}
.cookie-modal-content .category-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 14px 0 14px 0;
}
.cookie-modal-content .category-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-modal-content .category-item input[type="checkbox"] {
  accent-color: var(--color-accent);
  width: 17px; height: 17px;
  border-radius: 4px;
}
.cookie-modal-content .essential {
  font-weight: 600;
  color: var(--color-accent);
  opacity: 1;
  cursor: not-allowed;
}
.cookie-modal-content .cookie-modal-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 16px;
}
.cookie-modal-content button {
  border-radius: 25px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 10px 24px;
  font-size: 1rem;
  box-shadow: 0 1px 6px var(--color-shadow);
  cursor: pointer;
  background: var(--color-accent);
  color: #222;
  transition: background 0.2s, color 0.2s, box-shadow 0.16s;
}
.cookie-modal-content button:hover, .cookie-modal-content button:focus {
  background: #ffd777;
}
.cookie-modal-content .close-modal {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid #ddd;
  position: absolute;
  top: 10px; right: 13px;
  font-size: 1.7em;
  box-shadow: none;
  padding: 0 13px;
}
.cookie-modal-content .close-modal:hover,
.cookie-modal-content .close-modal:focus {
  color: var(--color-accent);
  background: #fff2db;
}

/**** MINIMUM SPACING AND FLEX-WRAP PATTERNS (MANDATORY) ****/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,500,600&display=swap');
body, .content-wrapper {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* --- SELECTION --- */
::selection {
  background: #FDBF57;
  color: #222;
}

/* --- HIDE SCROLL ON MOBILE-MENU OPEN --- */
body.mobile-menu-open {
  overflow: hidden;
}

/* --- ACCESSIBLE FOCUS STATES --- */
*:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* --- Z-INDEX LAYERING FOR MENUS AND BANNERS --- */
header {
  z-index: 50;
}
.mobile-menu {
  z-index: 9999;
}
.cookie-banner, .cookie-modal {
  z-index: 50000;
}

/* --- MINIMUM 20px BETWEEN CARDS/SECTIONS (MANDATORY) --- */
.card, .solution-snippet, .testimonial-card, .text-section, .feature-item, .contact-details, .location-map, .cta-banner {
  margin-bottom: 20px;
}

/* --- NO absolute positioning for content cards (only decorative) --- */
/* --- All container layouts: display: flex; gap/padding as defined --- */

