/* CSS RESET & BASE **************************************************/
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;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color .2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fff;
  color: #101010;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* COLOR VARIABLES FOR MONOCHROME SOPHISTICATED */
:root {
  --color-bg: #fafaf9;
  --color-bg-alt: #f6f6f2;
  --color-contrast: #101010;
  --color-mid: #575757;
  --color-light: #e5e5e5;
  --color-white: #fff;
  --color-black: #101010;
  --accent: #F7B733; /* from brand, use as subtle highlight */
  --primary: #101010; /* overrule green, monochrome priority */
  --secondary: #575757;
}

/* TYPOGRAPHY *************************************************************/
h1, .display {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #101010;
  font-size: 2.75rem;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #101010;
  font-size: 2rem;
  line-height: 1.18;
  margin-bottom: 20px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #222;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
p, li, blockquote {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  color: #222;
  font-size: 1rem;
  margin-bottom: 12px;
}
blockquote {
  border-left: 4px solid #101010;
  background: #f6f6f6;
  color: #101010;
  padding: 18px 24px;
  font-style: italic;
  margin: 18px 0;
}
strong {
  font-weight: 700;
}

/* CONTAINERS *************************************************************/
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1060px;
  padding: 0 18px;
}

.content-wrapper {
  margin: 0 auto;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-alt);
  border-radius: 16px;
  box-shadow: 0px 2px 16px rgba(10,10,10,0.07);
}

/* FLEX LAYOUTS ***********************************************************/
.header-flex, .footer-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.features-grid, .trend-list, .card-container, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 8px;
}

.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(10,10,10,0.09);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  gap: 15px;
  min-width: 220px;
  transition: box-shadow .18s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(16,16,16,0.13);
  z-index: 2;
}

.text-section {
  margin: 0 0 20px 0;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #101010;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(20,20,20,.08);
  padding: 20px;
  margin-bottom: 20px;
  max-width: 670px;
  transition: box-shadow .18s, transform .18s;
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: 0 5px 26px rgba(20,20,20,.18);
  transform: translateY(-3px) scale(1.014);
}
.testimonial-card p {
  color: #101010;
  margin: 0 0 8px 0;
}
.testimonial-card span {
  color: #575757;
  font-size: 0.96rem;
  font-style: italic;
  align-self: flex-end;
}

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

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.quick-tips {
  background: #f6f6f6;
  border-radius: 10px;
  padding: 18px 24px;
  margin-top: 24px;
  margin-bottom: 10px;
}

.contact-block {
  background: #fcfcfc;
  border: 1px solid #e5e5e5;
  box-shadow: 0 1.5px 5px rgba(25,25,25,.02);
  border-radius: 13px;
  padding: 20px 25px;
  margin-bottom: 20px;
}
.info-note {
  margin-top: 8px;
  color: #343434;
  background: #f8f8f8;
  border-left: 4px solid #cacaca;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1rem;
}

/* NAVIGATION *************************************************************/
header {
  background: #101010;
  color: #fff;
  box-shadow: 0 2px 14px rgba(18,18,18,.07);
  padding: 0;
}
.header-flex {
  min-height: 76px;
  padding: 12px 0;
  gap: 18px;
}
header img {
  height: 46px;
  width: auto;
}
.desktop-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.desktop-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 1.08rem;
  padding: 7px 14px;
  letter-spacing: 0.015em;
  border-radius: 6px;
  transition: background .18s, color .16s;
}
.desktop-nav a:hover, .desktop-nav a:focus {
  background: #fff;
  color: #101010;
}

.cta-primary {
  display: inline-block;
  background: #101010;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  padding: 12px 28px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(20,20,20,.10);
  text-align: center;
  letter-spacing: 0.033em;
  margin: 0 0 0 10px;
  border: 2px solid #101010;
  transition: background .18s, color .15s, border .19s, box-shadow .15s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #fff;
  color: #101010;
  border: 2px solid #101010;
  box-shadow: 0 8px 36px rgba(28,28,28,.12);
}

/* MOBILE NAVIGATION ******************************************************/
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #101010;
  border: none;
  border-radius: 7px;
  font-size: 2rem;
  padding: 0 13px;
  height: 44px;
  width: 44px;
  align-items: center;
  justify-content: center;
  margin-left: 14px;
  transition: background .19s, color .18s;
  z-index: 102;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #f1f1f1;
  color: #101010;
  box-shadow: 0 2px 14px rgba(80,80,80,0.05);
}
.mobile-menu {
  position: fixed;
  left: 0; top:0; right:0; bottom:0;
  background: #101010;
  color: #fff;
  z-index: 300;
  padding: 28px 24px 18px 24px;
  transform: translateX(100vw) scale(1.03);
  transition: transform .32s cubic-bezier(.75,.1,.3,1), opacity .24s;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.5rem;
  color: #fff;
  background: transparent;
  border: none;
  margin-bottom: 22px;
  padding: 0 10px;
  border-radius: 6px;
  transition: background .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #232323;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 13px 0;
  border-radius: 0;
  transition: color .14s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: #F7B733;
}

@media (max-width: 1000px) {
  .desktop-nav {
    gap: 13px;
  }
}
@media (max-width: 899px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width:900px) {
  .mobile-menu {
    display: none !important;
  }
}

/* SECTION AND CONTENT SPACING *******************************************/
main {
  padding-top: 24px;
  padding-bottom: 60px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  section {
    padding: 28px 0 24px 0;
    margin-bottom: 34px;
  }
  .section {
    padding: 28px 0 24px 0;
    margin-bottom: 34px;
  }
}

/* FLEXBOX RESPONSIVE ****************************************************/
@media (max-width: 768px) {
  .header-flex,
  .footer-flex {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid, .features-grid, .trend-list, .card-container, .card-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 17px 12px;
    max-width: 100%;
  }
}

/* FOOTER **************************************************************/
footer {
  background: #181818;
  color: #e5e5e5;
  padding: 35px 0 24px 0;
  font-size: 1rem;
}
.footer-flex {
  display: flex;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer p {
  color: white;
}
footer img {
  height: 38px;
  margin-bottom: 11px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 8px;
}
footer nav a {
  color: #e5e5e5;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: .012em;
  transition: color .14s;
}
footer nav a:hover,footer nav a:focus {
  color: #F7B733;
}
.contact-info {
  font-size: 0.96rem;
  color: #b9b9b9;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer .contact-info img {
  height: 1.1em;
  width: auto;
  margin-right: 8px;
  display: inline-block;
}
@media (max-width: 900px) {
  .footer-flex {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* BUTTONS: REFINED *****************************************************/
button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 8px;
  outline: none;
  border: none;
  font-weight: 700;
  transition: background .17s, color .14s, box-shadow .18s, border .13s;
}
.button-secondary, .quick-tips button {
  background: #fff;
  color: #101010;
  border: 2px solid #101010;
  padding: 9px 20px;
}
.button-secondary:hover, .quick-tips button:hover {
  background: #101010;
  color: #fff;
}

/* FORM ELEMENTS ********************************************************/
input, textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 14px;
  border: 1px solid #dadada;
  border-radius: 8px;
  background: #fff;
  color: #101010;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 16px;
  transition: border-color .14s;
}
input:focus, textarea:focus {
  border-color: #101010;
}
label {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: #232323;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* MICRO-INTERACTIONS & EFFECTS *****************************************/
a, button, .cta-primary, .desktop-nav a, .mobile-nav a {
  transition: color .14s, background .18s, border .13s, box-shadow .13s, transform .13s;
}
.card:hover, .testimonial-card:hover,
.cta-primary:hover, .desktop-nav a:hover, .footer nav a:hover, .button-secondary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px) scale(1.015);
}

/* ICONS **************************************************************/
.features-grid img,
.trend-list img,
footer .contact-info img,
.contact-block img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 12px;
}

@media (max-width: 600px) {
  .features-grid img,
  .trend-list img {
    width: 34px; height: 34px;
    margin-bottom: 8px;
  }
}

/******** COOKIE CONSENT BANNER ****************************************/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #101010;
  color: #fff;
  width: 100%;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 18px 18px 18px;
  box-shadow: 0 -2px 16px rgba(10,10,10,0.15);
  animation: cookiebanner-fadein .55s cubic-bezier(.23, 1.09, .53, .98);
}
@keyframes cookiebanner-fadein {
  from { transform: translateY(60px); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-consent-banner p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
}
.cookie-consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-consent-banner button {
  padding: 11px 22px;
  border-radius: 7px;
  border: none;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background .18s, color .13s, border .12s, box-shadow .12s;
}
.cookie-accept {
  background: #fff;
  color: #101010;
  border: 2px solid #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #101010;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-reject {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #fff;
  color: #101010;
}
.cookie-settings {
  background: #181818;
  color: #fff;
  border: 2px solid #3a3a3a;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #232323;
  color: #F7B733;
  border: 2px solid #F7B733;
}

/**** COOKIE MODAL POPUP *********************************************/
.cookie-modal {
  position: fixed;
  left:0; right:0; top:0; bottom:0;
  background: rgba(20,20,20,0.81);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity .23s;
}
.cookie-modal.closed {
  pointer-events: none;
  opacity: 0;
}
.cookie-modal-content {
  background: #fff;
  color: #101010;
  padding: 36px 28px 32px 28px;
  border-radius: 16px;
  max-width: 400px;
  width: 92vw;
  box-shadow: 0 8px 32px rgba(20,20,20,0.18);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookiepopup-appear .32s cubic-bezier(.13, .82, .68, 1.21);
}
@keyframes cookiepopup-appear {
  from { transform: translateY(60px) scale(.98); opacity:0; }
  to { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-modal-content h3 {
  font-size: 1.42rem;
  margin-bottom: 2px;
  font-weight: 700;
  color: #101010;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.02rem;
}
.cookie-category input[type="checkbox"] {
  width: 21px;
  height: 21px;
}
.cookie-essential { opacity: 0.6; }
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal-content button {
  min-width: 95px;
  padding: 10px 0;
}
.cookie-modal-close {
  position: absolute;
  right: 30px;
  top: 14px;
  background: none;
  border: none;
  color: #101010;
  font-size: 1.85rem;
  cursor: pointer;
  border-radius: 5px;
  padding: 3px 13px;
}
.cookie-modal-close:hover {
  background: #f5f5f5;
}

/* ACCESSIBLE FOCUS STYLES ***********************************************/
a:focus, button:focus, .cta-primary:focus {
  outline: 2px dotted #101010;
  outline-offset: 3px;
}

/* MISC OVERRIDES FOR CLEAN LOOK ******************************************/
ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
  color: #2a2a2a;
}
ul li, ol li {
  margin-bottom: 7px;
}
.section ul li, .text-section ul li {
  padding-left: 6px;
}
main ul {
  list-style: disc outside;
}

hr {
  border:none;
  border-top:1px solid #e5e5e5;
  margin: 32px 0;
}

::-webkit-selection {background: #232323; color: #fff;}
::-moz-selection {background: #232323; color: #fff;}
::selection {background: #232323; color: #fff;}

/* THANK YOU PAGE CTA BUTTON *********************************************/
.thank-you-cta, .thank-you-cta.cta-primary {
  margin-top: 24px;
  font-size: 1.22rem;
}

/* HIGH CONTRAST FOR ACCESSIBILITY IN TESTIMONIALS ETC *******************/
.testimonial-card, .testimonial-card * {
  color: #101010 !important;
  background: #fff !important;
}


/* END OF CSS */
