/* RESET & NORMALIZATION (mobile-first) */
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-size: 100%; font: inherit; vertical-align: baseline;
  box-sizing: border-box;
}
html { font-size: 16px; scroll-behavior: smooth; }
body { line-height: 1.55; background: #F7F6F2; color: #22313F; min-height: 100vh; font-family: 'Roboto', Arial, sans-serif; }
img { max-width: 100%; height: auto; display: block; border: 0; border-radius: 10px; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
strong { font-weight: 600; }
button, input, select, textarea { font-family: inherit; font-size: 100%; line-height: 1.2; background: none; border: none; outline: none; }

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* COLOR PALETTE */
:root {
  --color-primary: #22313F;
  --color-secondary: #E0E0E0;
  --color-background: #F7F6F2;
  --color-accent: #A8713B;
  --color-green: #3F7F4C;
  --color-brown: #915117;
  --color-footer: #22313F;
  --color-button-hover: #3F7F4C;
  --color-card-bg: #FFFFFF;
  --color-shadow: rgba(34,49,63,0.07);
  --color-lines: #C7CBB1;
  --color-overlay: rgba(34,49,63,0.95);
}

/* LAYOUT CONTAINERS & SPACING */
.container {
  width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 18px;
}
.content-wrapper {
  display: flex; flex-direction: column; gap: 24px;
}
.section {
  margin-bottom: 60px; padding: 40px 20px;
  background: var(--color-card-bg);
  border-radius: 28px;
  box-shadow: 0 4px 28px var(--color-shadow);
  transition: box-shadow 0.3s;
}
.card-container {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.card {
  margin-bottom: 20px; position: relative;
  background: var(--color-card-bg);
  border-radius: 20px;
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-5px) scale(1.015); box-shadow: 0 8px 24px var(--color-shadow); }
.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; flex-direction: column; align-items: flex-start; gap: 20px; padding: 20px;
  background: #F3F7F3;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px var(--color-shadow);
}
.feature-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 15px;
}
.text-section {
  background: #F7F6F2;
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 18px;
  font-size: 1rem;
}

/* HEADER & NAVIGATION */
header {
  background: var(--color-card-bg);
  box-shadow: 0 2px 16px var(--color-shadow);
  padding: 0; margin-bottom: 8px;
  position: sticky; top: 0; z-index: 30;
}
header .container { padding: 0 18px; }
header .content-wrapper {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
}
header nav {
  display: flex; flex-direction: row; gap: 16px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-secondary);
  color: var(--color-green);
}

.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff; background: var(--color-green);
  border: none;
  border-radius: 28px;
  padding: 12px 30px;
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.25px;
  box-shadow: 0 2px 12px var(--color-shadow);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.18s;
  outline: none;
  margin-left: 10px;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 6px 16px var(--color-shadow);
  transform: translateY(-2px) scale(1.025);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 100;
  width: 44px; height: 44px;
  background: var(--color-green);
  color: #fff; font-size: 2rem;
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 10px var(--color-shadow);
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-accent);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: var(--color-overlay);
  z-index: 101;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(0.72,0.12,0.16,1);
  box-shadow: 0 10px 60px 0 rgba(34,49,63,0.25);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 25px 0 0 25px;
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 46px; height: 46px;
  box-shadow: 0 2px 10px rgba(100,100,80,0.10);
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-accent);
  color: #fff;
}
.mobile-nav {
  display: flex; flex-direction: column;
  width: 100%;
  margin-top: 38px;
  gap: 0;
}
.mobile-nav a {
  padding: 22px 34px;
  font-size: 1.23rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--color-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.13);
  transition: background 0.17s, color 0.16s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}

/* Hide nav on mobile, show hamburger */
@media (max-width: 990px) {
  header nav, header .cta-btn { display: none!important; }
  .mobile-menu-toggle { display: block!important; }
}

/* Show desktop nav again if above breakpoint */
@media (min-width: 991px) {
  .mobile-menu, .mobile-menu-toggle { display: none!important; }
}

/* HERO & HEADINGS */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.18;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}
h1 { font-size: 2.2rem; margin-bottom: 14px; }
h2 { font-size: 1.38rem; margin-bottom: 8px; }
h3 { font-size: 1.19rem; margin-bottom: 0; color: var(--color-green); }
h4 { font-size: 1.07rem; }
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

/* ICON/IMAGE LISTS */
ul {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border-radius: 8px;
  padding: 0 0 0 0;
}
ul li img {
  width: 36px; min-width: 36px; height: 36px; margin-right: 12px; background: #e8f5e9; border-radius: 50%; padding: 5px;
}

/* SERVICE CARDS */
.service-list {
  display: flex; flex-wrap: wrap; gap: 24px; margin-bottom: 32px; justify-content: center;
}
.service-card {
  flex: 1 1 240px; max-width: 270px; min-width: 210px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  background: var(--color-card-bg);
  border-radius: 20px;
  padding: 28px 19px 20px 19px;
  box-shadow: 0 2px 14px var(--color-shadow);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 7px 18px var(--color-shadow);
}
.service-card h3 {
  font-size: 1.09rem;
  margin-top: 10px;
  margin-bottom: 2px;
}
.service-card p {
  font-size: 0.97rem;
}
.service-card img { width: 42px; height: 42px; margin-bottom: 4px; background: #EDF6EA; border-radius: 14px; }

/* EARLY ACCESS CARDS */
.early-access {
  background: #EBF4E4;
  border-radius: 14px;
  padding: 18px 18px;
  margin-bottom: 22px;
}
.early-access h3 { color: var(--color-brown); }

/* FEATURES (flex) */
.features {
  display: flex; flex-wrap: wrap; gap: 20px; margin: 16px 0;
}

/* CONTACT DETAILS */
.contact-details {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px;
}

/* BUTTONS GENERAL */
button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
}

/* FOOTER */
footer {
  margin-top: 80px; background: var(--color-footer);
  color: #fff;
  padding: 40px 0 20px 0;
}
footer .container { padding: 0 18px; }
footer .content-wrapper {
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer a, footer nav {
  color: #fff;
  font-size: 0.99rem;
}
footer nav {
  display: flex; flex-direction: row; flex-wrap: wrap; gap: 6px;
}
footer nav a { opacity: 0.98; transition: color 0.14s, opacity 0.14s; }
footer nav a:hover, footer nav a:focus { color: var(--color-accent); text-decoration: underline; opacity: 1; }
footer img { width: 41px; height: auto; }
footer .text-section {
  color: #E0E0E0;
  background: none;
  border: none;
  padding: 0;
  font-size: 0.96rem;
}

/* TESTIMONIALS */
.testimonial-card {
  background: #F3F7F3;
  color: var(--color-primary);
  border-left: 4px solid var(--color-green);
  margin-bottom: 20px;
  box-shadow: 0 2px 15px var(--color-shadow);
  font-size: 1.06rem;
}
.testimonial-card cite {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-accent);
  font-size: 0.99rem;
  margin-top: 11px;
  font-style: normal;
  letter-spacing: 0.05rem;
}

/* FORM ELEMENTS (if present in future) */
input[type="text"], input[type="email"], textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--color-lines);
  font-size: 1rem;
  margin-bottom: 18px;
  background: #F7F6F2;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #F7F6F2;
  border-top: 2px solid var(--color-green);
  box-shadow: 0 -2px 22px 0 rgba(50,87,60,0.21);
  z-index: 180;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 16px 18px 16px;
  gap: 14px;
  animation: cookieslideup .45s cubic-bezier(.72,0,.27,1);
}
@keyframes cookieslideup {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1.03rem;
  color: var(--color-primary);
  margin-bottom: 5px;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn {
  padding: 9px 18px;
  border-radius: 19px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  color: #fff;
  background: var(--color-green);
  box-shadow: 0 2px 8px var(--color-shadow);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-btn.reject { background: var(--color-brown); }
.cookie-btn.settings { background: var(--color-accent); }
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-primary);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.93);
  background: #FFFFFF;
  box-shadow: 0 10px 60px rgba(43,57,39,0.18);
  border-radius: 18px;
  padding: 32px 20px 20px 20px;
  z-index: 201;
  min-width: 330px;
  max-width: 96vw;
  min-height: 240px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 17px;
  animation: cookiemodalin .32s cubic-bezier(.85,0,.17,1.1);
}
@keyframes cookiemodalin {
  from { opacity: 0; transform: translate(-50%,-30%) scale(0.95); }
  to { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.21rem;
}
.cookie-modal label {
  font-size: 1rem;
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 11px;
}
.cookie-modal input[type=checkbox] {
  accent-color: var(--color-green);
  width: 19px; height: 19px;
}
.cookie-modal .cookie-modal-actions {
  display: flex; flex-direction: row; gap: 16px; margin-top: 18px;
}
.cookie-modal .cookie-btn {
  font-size: 1.02rem;
}
.cookie-modal .close {
  position: absolute; right: 16px; top: 9px;
  font-size: 1.9rem;
  color: var(--color-brown);
  background: transparent;
  border: none;
  cursor: pointer;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  color: var(--color-accent);
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .container { max-width: 97vw; }
  .service-list { gap: 12px; }
  .service-card { max-width: 46vw; min-width: 170px; }
  footer .content-wrapper { flex-direction: column; gap: 24px; align-items: flex-start; }
}
@media (max-width: 768px) {
  .container { padding: 0 9px; }
  .content-wrapper { gap: 14px; }
  .section { padding: 21px 5px; margin-bottom: 35px; }
  .card-container, .content-grid, .features { gap: 12px; }
  .service-list { flex-direction: column; gap: 14px; }
  .service-card { max-width: 96vw; min-width: 0; }
  .text-image-section { flex-direction: column; gap: 14px; }
  header .content-wrapper, footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
  }
  h1 { font-size: 1.49rem; }
  h2 { font-size: 1.12rem; }
  .cta-btn { padding: 11px 19px; font-size: 0.99rem; }
  .testimonial-card { font-size: 0.98rem; padding: 14px; }
}
@media (max-width: 450px) {
  h1 { font-size: 1.14rem; }
  .service-card, .section { padding: 10px 1px; }
  .testimonial-card { font-size: 0.92rem; }
  .early-access { padding: 10px 8px; }
}
/* Ensure card/section gap and no overlap */
main .section + .section, main .section { margin-bottom: 60px; }
@media (max-width: 600px) { main .section + .section, main .section { margin-bottom: 28px; } }

/* ORGANIC DECORATIVE ELEMENTS (waves, etc., for optional use via absolute z-index) */
.organic-shape {
  position: absolute;
  z-index: 0;
  opacity: 0.05;
  filter: blur(2px);
  pointer-events: none;
}

/* Unique micro-interactions */
.card, .service-card, .testimonial-card, .cta-btn {
  transition: box-shadow 0.22s, transform 0.18s, background 0.22s;
}
.card:active, .service-card:active, .cta-btn:active {
  transform: scale(0.98);
  box-shadow: 0 1px 6px var(--color-shadow);
}

/* Accent links (e.g., cookie policy) */
a[href*='cookie'] { color: var(--color-accent); font-weight: 600; }
a[href*='cookie']:hover { color: var(--color-green); text-decoration: underline; }

/* VISUAL HIERARCHY & NATURAL/ORGANIC FEEL */
.section, .card, .service-card, .testimonial-card {
  border-radius: 18px;
  box-shadow: 0 4px 19px var(--color-shadow);
  background: #fffce7 url(''); /* fallback solid bg, add organic bg-img if needed */
}

/* NATURAL EFFECTS */
.section {
  background: linear-gradient(105deg, #FFFFFF 78%, #EDF7EE 120%);
  box-shadow: 0 3px 22px var(--color-shadow);
  border-radius: 28px 60px 28px 32px/50px 28px 30px 51px;
}

/* Remove outline unless focus-visible for accessibility */
:focus { outline: 2px dotted var(--color-brown); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }

/* SCROLLBAR STYLING FOR ORGANIC FEEL */
::-webkit-scrollbar {
  width: 9px;
  background: #F7F6F2;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #C1DFBA;
  border-radius: 24px;
}

/* Organic-curve highlight for CTA, optional use */
.cta-btn {
  box-shadow: 0 6px 28px 0 rgba(80,111,85,0.13), 0 1px 2px #C1DFBA;
  border: 2px solid transparent;
}
.cta-btn:focus { border-color: var(--color-brown); }

/* Hide visually (for a11y only elements) */
.visually-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
