/* CSS RESET & BASE TYPOGRAPHY ========================== */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #f9f8f4;
  color: #2b2b2b;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A2634;
  font-weight: 700;
  margin-bottom: 18px;
}
h1 { font-size: 2.4rem; line-height: 1.15; margin-bottom: 28px; }
h2 { font-size: 2rem; margin-bottom: 24px; }
h3 { font-size: 1.3rem; color: #D78521; margin-bottom: 16px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 14px; }
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 18px;
}
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }
.subheadline {
  color: #6D5B3C;
  font-size: 1.2rem;
  margin-bottom: 26px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
}
a {
  color: #E87722;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F9CB40;
  text-decoration: underline;
}
u, ins, mark { color: #D78521; }

/* FLEXBOX LAYOUT BASICS ========================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* HEADER & NAVIGATION ========================== */
header {
  background: #fff9ef;
  border-bottom: 1px solid #F2E3C6;
  padding: 0;
  width: 100%;
  box-shadow: 0 1px 6px 0 rgba(241,198,128,0.08);
  position: relative;
  z-index: 1010;
}
.logo img {
  height: 52px;
  border-radius: 9px;
  background: none;
  margin-right: 24px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #1A2634;
  font-size: 1rem;
  border-radius: 8px;
  padding: 5px 14px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F9CB40;
  color: #1A2634;
}

/* Primary Button */
.btn-primary {
  background: #F9CB40;
  color: #1A2634;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  padding: 12px 36px;
  margin-left: 18px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(249, 203, 64, 0.13);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.2s;
  outline: none;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FFD77D;
  color: #1A2634;
  box-shadow: 0 5px 18px rgba(249,203,64,0.23);
  transform: translateY(-2px) scale(1.045);
}
.cta-inline {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* HERO ========================== */
.hero {
  background: #FFEFD6;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  box-shadow: 0 4px 24px 0 rgba(249,203,64, 0.07);
  margin-bottom: 60px;
  padding: 50px 0 40px 0;
  text-align: center;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 12px;
}
.hero h1 {
  color: #D78521;
  margin-bottom: 18px;
}
.hero .subheadline {
  max-width: 600px;
}

/* SECTIONS & GLOBAL LAYOUT SPACING ========================== */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

ul, ol {
  margin-left: 28px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 10px;
  font-size: 1rem;
}
ul li::marker, ol li::marker {
  color: #E87722;
}
ul li strong {
  color: #D78521;
  font-weight: 700;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* CARDS AND FEATURE LAYOUTS ========================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff9ef;
  border-radius: 20px;
  box-shadow: 0 3px 24px rgba(244,194,105,0.10);
  padding: 28px 22px;
  flex: 1 1 330px;
  min-width: 270px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 26px;
  justify-content: space-between;
}
.feature-grid > div {
  background: #fff9ef;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(249,203,64,0.09);
  padding: 22px 16px;
  flex: 1 1 260px;
  min-width: 225px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.23s, transform 0.20s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 32px 0 rgba(249,203,64,0.17);
  transform: translateY(-3px) scale(1.02);
}
.feature-grid img {
  height: 40px;
  margin-bottom: 8px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.card-grid { /* for .content-grid usage */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Testimonial cards ========================== */
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 30px 0 rgba(26,38,52,0.10);
  padding: 20px 28px;
  flex: 1 1 320px;
  min-width: 250px;
  color: #1A2634;
  font-size: 1rem;
  transition: box-shadow 0.21s, transform 0.2s;
}
.testimonial-card strong {
  margin-top: 16px;
  color: #B6C3D1;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 16px 38px 0 rgba(249,203,64,0.13);
  transform: translateY(-2px);
}

.client-logos {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: center;
}
.client-logos img {
  background: #fff9ef;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(249,203,64,0.08);
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #fff;
  padding: 24px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 18px rgba(244,194,105, 0.08);
  margin-bottom: 28px;
  justify-content: space-between;
}
.offer-highlights ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-accordion h3 {
  color: #E87722;
  font-size: 1.07rem;
  cursor: pointer;
}
.faq-accordion h3::before {
  content: '⯈';
  margin-right: 7px;
  font-size: 0.93em;
  color: #F9CB40;
}
.faq-accordion h3:active, .faq-accordion h3:focus {
  color: #F9CB40;
}
.faq-accordion p {
  color: #34343c;
  font-size: 1rem;
  margin-left: 2px;
  margin-top: 2px;
}

/* Contact info ======================= */
.contact-info-brief, .contact-info-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff9ef;
  border-radius: 12px;
  padding: 18px 18px;
  font-size: 1.03rem;
  margin-bottom: 18px;
}
.contact-info-brief img, .contact-info-details img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 7px;
}

/* FOOTER ===================== */
footer {
  background: #1A2634;
  color: #fff;
  padding: 0;
  width: 100%;
  box-shadow: 0 -1px 8px 0 rgba(26,38,52,0.09);
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  margin-top: 60px;
}
footer .container {
  padding: 30px 20px 18px 20px;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
footer .content-wrapper {
  display: flex;
  flex: 1 1 0;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 40px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-menu a {
  color: #F9CB40;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
  border-radius: 6px;
  padding: 4px 8px;
}
.footer-menu a:hover, .footer-menu a:focus { color: #FFD77D; background: none; }
.company-legal-info {
  color: #B6C3D1;
  font-size: 0.97rem;
  line-height: 1.5;
}
.social-media-icons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.social-media-icons img {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background: #fff9ef;
  padding: 4px;
  box-shadow: 0 1px 5px rgba(249,203,64,0.06);
  transition: background 0.15s;
  cursor: pointer;
}
.social-media-icons img:hover {
  background: #FFE6B3;
}

/* MOBILE MENU =========================== */
.mobile-menu-toggle {
  display: none;
  background: #F9CB40;
  color: #1A2634;
  font-size: 2rem;
  border-radius: 50%;
  border: none;
  padding: 10px 16px;
  margin-right: 12px;
  margin-left: auto;
  cursor: pointer;
  z-index: 1201;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 7px rgba(249,203,64,0.10);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFD77D;
  color: #100b00;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #fff9ef;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.58,1.72,.41,.8);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 24px 18px 24px;
  box-shadow: -5px 0 15px rgba(26,38,52,0.10);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  color: #1A2634;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px 16px 8px 8px;
  margin-bottom: 16px;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFD77D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  width: 100%;
  margin-top: 14px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A2634;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 13px 18px;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F9CB40;
  color: #1A2634;
}

@media (max-width: 1024px) {
  header .container {
    gap: 10px;
  }
}
@media (max-width: 890px) {
  .footer .container {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 950px) {
  .feature-grid > div,
  .card, .card-grid > div {
    flex: 1 1 100%;
    min-width: 220px;
  }
  .content-wrapper, .container {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 9px;
  }
  .main-nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .hero {
    padding: 36px 0 28px 0;
    border-radius: 0 0 18px 18px;
    margin-bottom: 32px;
  }
  section {
    margin-bottom: 36px;
    padding: 24px 0;
  }
  .section {
    margin-bottom: 36px;
    padding: 18px 10px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card-container, .card-grid, .content-grid, .testimonials-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card, .feature-grid > div, .card {
    min-width: 0;
  }
  .footer .container, footer .container {
    flex-direction: column;
    gap: 20px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 8px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  body { font-size: 0.97rem; }
  section, .section {
    padding: 14px 0 10px 0;
  }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.15rem; }
  .hero .container { padding: 0 4px; }
  .testimonial-card { padding: 12px 8px; }
}

/* COOKIE CONSENT BANNER ================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  display: flex;
  justify-content: center;
  z-index: 1202;
  background: none;
  pointer-events: none;
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  background: #fff9ef;
  color: #1A2634;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -5px 30px rgba(244,194,105,0.15);
  padding: 18px 28px;
  margin: 12px 12px 0 12px;
  pointer-events: all;
  font-size: 1rem;
  transition: opacity 0.24s, transform 0.32s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
}
.cookie-banner .cookie-btn {
  border: none;
  border-radius: 100px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 28px;
  margin-right: 8px;
  margin-top: 0;
  margin-bottom: 0;
  transition: background 0.20s, box-shadow 0.21s, color 0.18s, transform 0.18s;
  box-shadow: 0 2px 9px rgba(249,203,64,0.08);
}
.cookie-banner .accept-all {
  background: #F9CB40;
  color: #1A2634;
}
.cookie-banner .accept-all:hover { background: #FFD77D; color: #1A2634; }
.cookie-banner .reject-all {
  background: #fff;
  color: #CD9031;
  border: 1.5px solid #f1df9a;
}
.cookie-banner .reject-all:hover { background: #f8dfa4; color: #1A2634; }
.cookie-banner .cookie-settings {
  background: transparent;
  color: #6D5B3C;
  border: 1.5px dotted #D78521;
}
.cookie-banner .cookie-settings:hover { background: #fff9da; color: #1A2634; }

/* COOKIE MODAL ========================== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(26,38,52,0.31);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  padding: 36px 26px 26px 26px;
  max-width: 390px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(249,203,64,0.13);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeinModal 0.35s;
}
@keyframes fadeinModal {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  font-size: 1.24rem;
  margin-bottom: 0px;
  color: #1A2634;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-category label {
  flex-grow: 1;
  color: #1A2634;
}
.cookie-category input[type="checkbox"] {
  accent-color: #F9CB40;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.cookie-category.required input {
  pointer-events: none;
  opacity: 0.7;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal .cookie-btn {
  padding: 9px 22px;
  min-width: 110px;
}
.cookie-modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  background: none;
  border: none;
  font-size: 2em;
  color: #B6C3D1;
  cursor: pointer;
  border-radius: 6px;
}
.cookie-modal-close:hover {
  background: #fff9ef;
  color: #E87722;
}

@media (max-width: 570px) {
  .cookie-modal { max-width: 96vw; padding: 22px 6vw; }
  .cookie-modal h2 { font-size: 1rem; }
  .cookie-banner-inner { font-size: 0.96rem; padding: 12px 9px 10px 10px; }
}

/* Utils, micro-interactions, and minor states ========== */
::-webkit-selection {
  background: #F9CB40;
  color: #1A2634;
}
::selection {
  background: #F9CB40;
  color: #1A2634;
}
::-webkit-scrollbar {
  width: 9px;
  background: #f0ece2;
}
::-webkit-scrollbar-thumb {
  background: #e6dbc5;
  border-radius: 15px;
}

/* Animations for hover / focus =================== */
.card, .feature-grid > div, .testimonial-card, .btn-primary {
  transition: box-shadow 0.22s, transform 0.20s, background 0.2s, color 0.19s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.02);
}

/* Small micro-interaction for lists */
ul li, ol li {
  transition: color 0.18s;
}
ul li:hover, ol li:hover {
  color: #E87722;
}

/* FORM FIELDS (if/when present) ========== */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 8px;
  border: 1.5px solid #f2eac7;
  padding: 13px 12px;
  background: #fff;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #1A2634;
  width: 100%;
  transition: border 0.18s, box-shadow 0.15s;
  box-shadow: 0 2px 7px rgba(249,203,64,0.05);
}
input:focus, textarea:focus, select:focus {
  border-color: #F9CB40;
  outline: none;
  box-shadow: 0 4px 16px rgba(249,203,64,0.13);
}

/* Responsive text sizes ========= */
@media (max-width: 540px) {
  h1 { font-size: 1.22rem; }
  h2 { font-size: 1.09rem; }
  h3 { font-size: 1rem; }
  p, ul, ol { font-size: 0.99rem; }
}

/* Utility classes ========== */
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center !important; }
.display-block { display: block !important; }

/* Z-INDEX Helper ========== */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
  z-index: 1200;
}

/* Prevent absolute/overlapping except for decoration */
/* (no absolute for content cards/text blocks) enforced via BEM, audit and above rules */

/* END OF STYLE.CSS */
