/* --- CSS RESET & NORMALIZE --- */
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;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #22272A;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-tap-highlight-color:rgba(0,0,0,0.04);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
a {
  color: #22272A;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus-visible {
  outline: 2px solid #E1B382;
  outline-offset: 2px;
}

ul, ol {
  margin-left: 1.5em;
  margin-bottom: 16px;
}

strong, b {
  font-weight: 700;
}

/* Typography & Headings */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #22272A;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 28px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
}

p, ul, ol {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #22272A;
  font-size: 1rem;
  margin-bottom: 16px;
}

blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  color: #22272A;
  font-style: italic;
  margin-bottom: 12px;
  margin-top: 0;
  line-height: 1.6;
}

hr {
  height: 1px;
  border: none;
  background: #F7F7F7;
  margin: 32px 0;
}

/* --- CONTAINER SYSTEM --- */
.container {
  width: 100%;
  max-width: 1060px;
  padding: 0 16px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 34px;
    padding: 28px 8px;
  }
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 18px;
  }
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #F7F7F7;
  box-shadow: 0 2px 10px -10px rgba(34,39,42,0.08);
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}
header a img {
  height: 38px;
  width: auto;
  margin-right: 10px;
  display: block;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 2px;
  border-radius: 3px;
  transition: color 0.18s, background 0.18s;
}
header nav a:hover,
header nav a:focus {
  color: #E1B382;
  background: #F7F7F7;
}
header .btn-primary {
  margin-left: 12px;
}

.mobile-menu-toggle {
  display: none;
  padding: 10px 14px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #22272A;
  cursor: pointer;
  border-radius: 5px;
  margin-left: 16px;
  transition: background 0.15s;
  z-index: 1011;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F7F7F7;
}

@media (max-width: 1024px) {
  header nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  header nav a {
    font-size: 0.97rem;
  }
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 6px 32px -6px rgba(34,39,42,0.12);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.73,.1,.34,1.55);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.3rem;
  align-self: flex-end;
  padding: 18px 18px 0 0;
  cursor: pointer;
  color: #22272A;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #E1B382;
}
.mobile-nav {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding-left: 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: #22272A;
  background: none;
  padding: 10px 0;
  width: 100%;
  border-radius: 3px;
  transition: background 0.18s, color 0.18s;
  min-width: 160px;
  margin-right: 24px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7F7F7;
  color: #E1B382;
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none;
  }
}

/* --- HERO SECTION --- */
.hero {
  padding: 60px 0 32px 0;
  background: #F7F7F7;
}
.hero .container {
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 530px;
  gap: 22px;
}
.hero h1 {
  color: #22272A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 2.7rem;
  margin-bottom: 12px;
}
.hero p {
  color: #444;
  margin-bottom: 22px;
}
.hero .btn-primary {
  font-size: 1.09rem;
}
@media (max-width: 768px) {
  .hero {
    padding: 28px 0 24px 0;
  }
  .hero .content-wrapper {
    gap: 16px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background: #22272A;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 24px;
  box-shadow: 0 3px 16px -10px #22272A26;
  cursor: pointer;
  transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #E1B382;
  color: #22272A;
  box-shadow: 0 6px 32px -8px #E1B38233;
  transform: translateY(-1px) scale(1.04);
}

/* --- FEATURE GRID & CARDS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
  justify-content: flex-start;
  margin-top: 8px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px -14px rgba(34,39,42,0.11);
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 210px;
  max-width: 275px;
  flex: 1 1 180px;
  border: 1px solid #F7F7F7;
  margin-bottom: 24px;
  transition: box-shadow 0.18s, transform 0.19s;
}
.feature-grid > div:hover {
  box-shadow: 0 10px 32px -10px #E1B3821a;
  transform: translateY(-2px) scale(1.03);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  filter: grayscale(0.45);
  opacity: 0.85;
}

@media (max-width: 1100px) {
  .feature-grid {
    gap: 18px;
  }
  .feature-grid > div {
    max-width: 47vw;
    min-width: 150px;
    padding: 20px 11px 18px 11px;
  }
}
@media (max-width: 768px) {
  .feature-grid {
    gap: 14px;
  }
  .feature-grid > div {
    max-width: 100%;
    min-width: 150px;
    width: 95vw;
    margin-bottom: 18px;
  }
}

/* --- TESTIMONIAL CARD --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 30px 22px 30px;
  margin-bottom: 20px;
  background: #F7F7F7;
  border-radius: 12px;
  box-shadow: 0 4px 16px -8px #22272A18;
  border: 1px solid #E1B38218;
  max-width: 540px;
  transition: box-shadow 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 34px -12px #E1B3822a;
}
.testimonial-card blockquote {
  color: #22272A;
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.5;
  margin: 0 0 4px 0;
}
.testimonial-card footer {
  font-size: 0.97rem;
  color: #666;
  font-style: normal;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-top: 2px;
  opacity: 0.86;
}

@media (max-width: 660px) {
  .testimonial-card {
    padding: 18px 8px 14px 12px;
  }
  .testimonial-card blockquote {
    font-size: 1rem;
  }
}

/* --- LISTS & HIGHLIGHTS --- */
ul, ol {
  margin-left: 22px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tagline-highlight {
  background: #E1B38211;
  color: #22272A;
  padding: 16px 20px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

/* --- PRICING TABLE --- */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 12px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 14px -8px #22272A14;
}
.pricing-table th, .pricing-table td {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #22272A;
  padding: 13px 16px;
  text-align: left;
  font-size: 1rem;
}
.pricing-table thead th {
  background: #F7F7F7;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  font-weight: 700;
}
.pricing-table tr {
  border-bottom: 1px solid #F7F7F7;
}
.pricing-table tbody tr:last-child {
  border-bottom: none;
}
@media (max-width: 600px) {
  .pricing-table th, .pricing-table td {
    padding: 8px 7px;
    font-size: 0.98rem;
  }
  .pricing-table {
    box-shadow: none;
  }
}

/* --- FOOTER --- */
footer {
  background: #fff;
  border-top: 1px solid #F7F7F7;
  padding: 50px 0 32px 0;
  margin-top: 50px;
  font-size: 1rem;
  color: #22272A;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px 30px;
}
.footer-brand img {
  height: 38px;
  margin-bottom: 22px;
  display: block;
}
footer nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a, .footer-legal a {
  color: #22272A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 3px;
  padding: 4px 0;
  transition: color 0.16s;
}
footer nav a:hover, .footer-legal a:hover {
  color: #E1B382;
}
.footer-contact ul {
  list-style: none;
  gap: 10px;
  margin-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  color: #22272A;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  opacity: 0.72;
}

@media (max-width: 920px) {
  footer .container {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
  footer {
    padding: 38px 0 18px 0;
  }
}

/* --- GENERIC FLEXBOX LAYOUTS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 24px -14px rgba(34,39,42,0.08);
}
.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;
}
@media (max-width: 768px) {
  .content-grid,
  .text-image-section,
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- CARD MICRO-INTERACTIONS & SHADOWS --- */
.card, .card-container > .card, .feature-item, .feature-grid > div {
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .feature-grid > div:hover, .card-container > .card:hover {
  box-shadow: 0 14px 40px -12px #E1B38233;
  transform: translateY(-3px) scale(1.025);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #22272A;
  color: #fff;
  z-index: 3000;
  padding: 20px 18px 28px 18px;
  box-shadow: 0 -2px 18px -8px #22272A44;
  border-radius: 18px 18px 0 0;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  max-width: 720px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  visibility: hidden;
  opacity: 0;
  transition: transform 0.38s, opacity 0.28s, visibility 0.38s;
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}
.cookie-banner p {
  margin-bottom: 0;
  font-size: 0.99rem;
  color: #fff;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-banner .btn-cookie {
  border-radius: 22px;
  border: none;
  background: #E1B382;
  color: #22272A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 8px 18px;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.cookie-banner .btn-cookie.reject {
  background: #fff;
  color: #22272A;
  border: 1px solid #E1B382;
}
.cookie-banner .btn-cookie.settings {
  background: transparent;
  color: #E1B382;
  border: 0;
  font-weight: 600;
  padding-left: 2px;
}
.cookie-banner .btn-cookie:hover, .cookie-banner .btn-cookie:focus {
  background: #F7F7F7;
  color: #22272A;
}
.cookie-banner .btn-cookie.settings:hover, .cookie-banner .btn-cookie.settings:focus {
  background: #E1B38233;
  color: #22272A;
}

@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    left: 0;
    right: 0;
    max-width: 98vw;
    margin: 0 2vw;
    transform: translateY(100px);
  }
  .cookie-banner.visible {
    transform: translateY(0);
  }
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,39,42,0.54);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s, visibility 0.32s;
}
.cookie-modal.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  color: #22272A;
  border-radius: 14px;
  padding: 34px 26px 22px 30px;
  min-width: 300px;
  max-width: 95vw;
  box-shadow: 0 10px 46px -18px #22272A44;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  animation: cookieModalIn 0.34s cubic-bezier(.71,1.7,.47,1) 1;
}
@keyframes cookieModalIn {
  from { transform: translateY(60px) scale(0.98); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal-content h2 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1rem;
  color: #22272A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.cookie-category .category-toggle {
  accent-color: #E1B382;
  width: 1.1em;
  height: 1.1em;
}
.cookie-category.essential label {
  opacity: 0.7;
}
.cookie-modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #22272A;
  cursor: pointer;
  border-radius: 5px;
  padding: 8px;
  transition: background 0.16s, color 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F7F7F7;
  color: #E1B382;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .btn-cookie {
  min-width: 96px;
}

/* --- ACCESSIBILITY FOCUS STATE --- */
.btn-primary:focus-visible, .btn-cookie:focus-visible {
  outline: 2px solid #E1B382;
  outline-offset: 2px;
}

/* --- RESPONSIVE IMAGES/ICONS --- */
img[alt*='icon'], img[src*='icon'] {
  max-width: 32px;
  max-height: 32px;
  margin-right: 8px;
  vertical-align: middle;
}

img[alt*='Logo'], img[src*='logo'] {
  max-height: 44px;
  margin-bottom: 0 !important;
}

/* --- INPUT FIELDS --- */
input, textarea, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: 1px solid #F7F7F7;
  outline: none;
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  margin-bottom: 16px;
  width: 100%;
  transition: border 0.16s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #E1B382;
  box-shadow: 0 2px 10px -6px #E1B38244;
}

/* --- GENERAL SPACING & UTILITIES --- */
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-24 { margin-top: 24px !important; }
.pt-16 { padding-top: 16px !important; }
.pb-16 { padding-bottom: 16px !important; }
.text-center { text-align: center !important; }

/* --- MEDIA QUERIES FOR MOBILE --- */
@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.17rem; }
  .hero .content-wrapper {max-width: 100%;}
  .footer-brand img { height: 26px; }
  .cookie-banner { padding: 13px 7px 18px 7px; font-size: 0.97rem; }
  .cookie-modal-content { padding: 15px 5vw 12px 5vw; }
}

/* --- HIDE PRINT FOR NAV, FOOTER, COOKIE BAR, MOBILE MENU --- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
}

/* --- SPECIAL: fix min spacing between cards/sections --- */
section, .section {
  margin-bottom: 60px;
}
section:last-child, .section:last-child {
  margin-bottom: 0;
}
.card, .card-container > * {
  margin-bottom: 20px;
}

/* --- ACCENT COLOR HIGHLIGHT (elements such as hr, lines) --- */
hr {
  background: #E1B38233;
}

/* --- SPECIAL FORMS: basic form layout styles --- */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 540px;
  margin: 0 auto;
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
@media (max-width: 540px) {
  form, .form-row { gap: 12px; }
}

/* --- END OF CSS --- */

/* --- BRAND FONTS: Load fallbacks if fonts missing --- */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Montserrat'), local('Montserrat-Regular'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&display=swap');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans'), local('OpenSans-Regular'), url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
}
