/* ===== 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,
u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FAFBFA;
  color: #213127;
  line-height: 1.5;
  scroll-behavior: smooth;
  min-height: 100vh;
}
body {
  min-height: 100vh;
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #213127;
  background: #FAFBFA;
}
ul, ol {
  list-style-position: inside;
  margin-left: 0;
  padding-left: 0;
}
a {
  color: #185D3A;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #E7F755;
}
img {
  max-width: 100%;
  display: block;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 14px 10px;
  border-bottom: 1px solid #E5ECCB;
  text-align: left;
}

/* ===== FONT FACE (Google Fonts assumed preloaded) ===== */
:root {
  --primary: #185D3A;
  --secondary: #E7F755;
  --accent: #FFFFFF;
  --text: #213127;
  --muted-bg: #F5F6F2;
  --card-shadow: 0 2px 8px rgba(24,93,58,0.07);
  --border-radius-md: 18px;
  --border-radius-lg: 32px;
  --shadow-light: 0 2px 8px rgba(24, 93, 58, 0.05);
  --transition: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ===== SCANDINAVIAN CLEAN UTILITY CLASSES ===== */
.container {
  width: 100%;
  max-width: 1184px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--accent);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
  position: relative;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
}
.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;
}
.testimonials-section {
  background-color: var(--muted-bg);
  border-radius: var(--border-radius-lg);
}
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 350px;
  background: #fff;
  color: var(--text);
  box-shadow: var(--card-shadow);
  border-radius: var(--border-radius-md);
  margin-bottom: 20px;
  font-size: 1.09em;
}
.testimonial-card p {
  color: #213127;
  font-style: italic;
  font-size: 1.03em;
}
.testimonial-meta {
  color: #75846E;
  font-size: 0.97em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 210px;
  background: var(--accent);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
  padding: 22px 18px;
  min-width: 215px;
}
.feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 4px;
}

/* ===== HEADER ===== */
header {
  width: 100%;
  background: var(--accent);
  box-shadow: 0 1px 8px rgba(24,93,58,0.03);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 18px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 22px;
  border-radius: 0;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-body);
  color: var(--text);
  font-weight: 500;
  font-size: 1em;
  padding: 6px 0 2px 0;
  position: relative;
}
.main-nav a::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--secondary);
  width: 0;
  transition: width 0.28s;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 80%;
}
.cta-btn {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  padding: 10px 30px;
  border-radius: 40px;
  font-size: 1.12em;
  box-shadow: 0 2px 8px rgba(167,179,102,0.08);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  cursor: pointer;
  letter-spacing: 0.01em;
  outline: none;
  margin-left: 18px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(24,93,58,0.13);
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: var(--muted-bg);
  border-radius: var(--border-radius-lg);
  margin-bottom: 60px;
  padding: 60px 0 50px 0;
}
.hero-section .container {
  justify-content: center;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  max-width: 590px;
  gap: 24px;
}
.hero-section h1 {
  font-family: var(--font-display);
  font-size: 2.4em;
  color: var(--primary);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.hero-section p {
  font-size: 1.15em;
  margin-bottom: 12px;
}

/* ===== GENERIC SECTION ===== */
section:not(.hero-section):not(.testimonials-section):not(.cta-section):not(.legal-section) {
  background: var(--accent);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.18;
}
h1 { font-size: 2.1em; margin-bottom: 18px; }
h2 { font-size: 1.7em; margin-bottom: 12px; }
h3 { font-size: 1.26em; margin-bottom: 11px; color: #516B57; font-weight: 600; }
h4, h5, h6 { color: #677162; }
p, li, dd {
  font-family: var(--font-body);
  color: var(--text);
  font-size: 1em;
  margin-bottom: 8px;
}
ul li, ol li {
  margin-bottom: 6px;
}
strong { font-weight: 600; color: #213127; }

/* ===== PRICING TABLE SECTION ===== */
.pricing-table {
  overflow-x: auto;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-light);
  margin-bottom: 26px;
}
.pricing-table table {
  width: 100%;
}
.pricing-table thead tr {
  background: var(--secondary);
  color: var(--primary);
}
.pricing-table th {
  font-family: var(--font-display);
  font-size: 1.07em;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.pricing-table td {
  font-size: 1em;
}
.price-examples ul {
  margin-bottom: 0;
}

/* ===== BENEFITS/FEATURES CARDS GRIDS ===== */
.features-grid, .services-list, .benefits-grid, .stats-grid, .process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-grid .feature-item, .benefits-grid > div, .services-list > div, .process-steps > div, .stats-grid > div {
  flex: 1 1 215px;
  min-width: 220px;
}
.benefits-grid > div, .services-list > div, .process-steps > div, .stats-grid > div {
  background: #fff;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
  padding: 22px 17px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.services-list img, .process-steps img, .benefits-grid img, .stats-grid img {
  width: 32px;
  height: 32px;
  margin-bottom: 5px;
}
.stat-number {
  font-size: 1.8em;
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 2px;
  display: inline-block;
}

/* ===== ACCORDION FAQ ===== */
.faq-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-accordion dt {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.09em;
  font-weight: 700;
  margin-top: 14px;
  margin-bottom: 6px;
  background: var(--muted-bg);
  border-radius: var(--border-radius-md);
  padding: 13px 18px;
  transition: background 0.18s;
  position: relative;
}
.faq-accordion dt:hover, .faq-accordion dt:focus {
  background: #fffdd0;
}
.faq-accordion dd {
  background: #fff;
  border-left: 4px solid var(--secondary);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  margin-left: 8px;
  padding: 14px 16px 7px 18px;
  margin-bottom: 14px;
  box-shadow: 0 1px 4px rgba(24,93,58,0.06);
  font-size: 1em;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--secondary);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  margin-bottom: 60px;
  padding: 44px 20px 44px 20px;
  display: flex;
  align-items: center;
}
.cta-section .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.cta-section h2 {
  color: var(--primary);
}
.cta-section p {
  color: #40513E;
  margin-bottom: 10px;
}
.cta-section .cta-btn {
  margin-top: 6px;
  margin-left: 0;
}

/* ===== FOOTER ===== */
footer {
  background: #F3F6ED;
  margin-top: 50px;
  padding: 40px 0 26px 0;
  border-top: 1px solid #E5ECCB;
  font-family: var(--font-body);
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-brand img {
  width: 54px;
  height: auto;
  display: block;
  margin-right: 18px;
}
.footer-contact-short {
  font-size: 0.99em;
  margin-bottom: 10px;
  color: #4A5E53;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-right: 12px;
}
.footer-nav a {
  color: #1d4128;
  text-decoration: underline dotted 2px #bedd5d;
  font-size: 0.99em;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--primary);
  text-decoration: underline solid 2px var(--primary);
}

/* ===== CONTACT PAGE ===== */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 8px;
}
.contact-info > div {
  background: #fff;
  border-radius: var(--border-radius-md);
  padding: 17px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-light);
  font-size: 1em;
}
.contact-info strong {
  font-weight: 600;
  color: var(--primary);
}

/* ===== THANK YOU SECTION ===== */
.thank-you-message {
  background: #fff;
  border-radius: var(--border-radius-md);
  padding: 28px 32px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 0;
}

/* ===== LEGAL SECTION ===== */
.legal-section {
  background: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
}
.legal-section h1, .legal-section h2, .legal-section h3 {
  color: var(--primary);
}
.legal-section .text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #293C2A;
  font-size: 1.03em;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 26px;
  right: 24px;
  z-index: 111;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  font-size: 2em;
  padding: 7px 15px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(24,93,58,0.12);
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(250,250,246, 0.99);
  box-shadow: 0 0 50px 20px rgba(24,93,58,0.09);
  z-index: 222;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s var(--transition);
  overscroll-behavior: contain;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2em;
  color: var(--primary);
  background: none;
  border: none;
  align-self: flex-end;
  margin: 28px 26px 0 0;
  cursor: pointer;
  transition: color 0.15s;
  padding: 2px 10px;
  z-index: 223;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  margin: 58px 0 0 36px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.20em;
  font-weight: 700;
  color: var(--primary);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.18s, color 0.18s;
  min-width: 180px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -2px 16px rgba(24,93,58,0.10);
  padding: 22px 14px 22px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  z-index: 500;
  font-size: 1em;
  transition: transform 0.27s var(--transition);
}
.cookie-banner.hide {
  transform: translateY(130%);
}
.cookie-banner__text {
  flex: 1 1 250px;
  color: #213127;
  margin-right: 8px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-direction: row;
}
.cookie-btn {
  background: var(--secondary);
  color: var(--primary);
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 28px;
  font-size: 1em;
  transition: background 0.17s, color 0.17s;
  margin: 0 1px;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(185,221,93,0.07);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-btn.reject {
  background: #F0F1E3;
  color: #293C2A;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #e7efc2;
  color: #506b56;
}
.cookie-btn.settings {
  background: transparent;
  color: #213127;
  border: 1px solid #CECEBE;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #EEEFF0;
  color: #185D3A;
  border-color: var(--primary);
}

/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 599;
  top: 0; left: 0;width: 100vw;height: 100vh;
  background: rgba(58,61,45,0.26);
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.23s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 6px 36px rgba(24,93,58,0.16);
  min-width: 300px;
  max-width: 98vw;
  width: 440px;
  padding: 36px 36px 34px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookieFadeIn 0.4s;
}
@keyframes cookieFadeIn { from { opacity: 0; transform: translateY(60px);} to { opacity: 1; transform: translateY(0);}}
.cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 2em;
  color: #75846E;
  position: absolute;
  top: 21px; right: 21px;
  cursor: pointer;
  padding: 4px 10px;
  transition: color var(--transition);
}
.cookie-modal-close:hover,.cookie-modal-close:focus { color:var(--primary); }
.cookie-modal h2 {
  font-size: 1.2em;
  color: var(--primary);
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #ECECE3;
  padding-bottom: 10px;
  margin-bottom: 3px;
}
.cookie-category-row label {
  font-family: var(--font-body);
  font-weight: 500;
}
.cookie-toggle {
  accent-color: var(--primary);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}

/* ===== BUTTONS ===== */
button {
  font-family: var(--font-body);
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background .18s, color .18s;
}
button:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* ===== UTILS & ANIMATIONS ===== */
::-webkit-input-placeholder, ::-moz-placeholder, :-ms-input-placeholder, ::placeholder {
  color: #BCC4B0;
  opacity: 1;
}
@media (hover: hover) {
  .card, .feature-item, .testimonials-section .testimonial-card, .footer-brand img {
    transition: box-shadow .18s, transform .18s;
  }
  .card:hover, .feature-item:hover, .testimonial-card:hover {
    box-shadow: 0 6px 24px rgba(24,93,58,0.09);
    transform: translateY(-4px) scale(1.02);
    z-index:3;
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1150px) {
  .container { max-width: 1000px; }
}
@media (max-width: 950px) {
  .container { max-width: 94vw; }
  .features-grid, .benefits-grid, .services-list, .stats-grid, .process-steps, .testimonials-slider {
    gap: 16px;
  }
}
@media (max-width: 820px) {
  .main-nav {
    gap: 11px;
  }
  .footer-nav {
    gap: 5px;
  }
  .content-wrapper {
    gap: 20px;
  }
  .hero-section h1 {
    font-size: 1.47em;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 5vw;
    max-width: 100vw;
  }
  .main-nav {
    display: none !important;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-section {
    padding: 38px 0 34px 0;
  }
  .hero-section h1 {
    font-size: 1.35em;
  }
  .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .features-grid, .benefits-grid, .services-list, .stats-grid, .process-steps, .testimonials-slider {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .features-grid > .feature-item, .services-list > div, .benefits-grid > div, .stats-grid > div, .process-steps > div {
    min-width: 0;
    width: 100%;
  }
  .testimonials-slider {
    flex-direction: column;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
  .content-wrapper {
    gap: 12px;
  }
  .footer-brand img {
    width: 44px;
  }
  .footer-nav, .footer-contact-short, .footer-brand {
    align-items: flex-start;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .section, .cta-section, .testimonials-section, .legal-section {
    padding: 22px 5vw;
  }
  .contact-info {
    flex-direction: column;
    gap: 15px;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 500px) {
  .section, .cta-section, .testimonials-section, .legal-section {
    padding: 14px 3vw;
  }
  .hero-section h1 { font-size: 1.11em }
  .footer-brand img {
    width: 34px;
  }
  .thank-you-message {
    padding: 12px 6px;
  }
}
/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 2px solid #03be73;
  outline-offset: 2px;
}

/* ===== END ===== */
