/* ======================  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, 
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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FFFFFF;
  color: #18342B;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  border: 0;
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #115C3B;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #FFB000;
  outline: none;
}
ul, ol {
  margin: 0;
  padding: 0 0 0 20px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
button {
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
strong, b {
  font-weight: 600;
}

::-webkit-input-placeholder { color: #899484; }
::-moz-placeholder { color: #899484; }
:-ms-input-placeholder { color: #899484; }
::placeholder { color: #899484; }

/* ==================  BRAND & SCANDINAVIAN THEME  ==================== */
:root {
  --brand-primary: #115C3B;
  --brand-primary-dark: #0E4A2E;
  --brand-secondary: #F2F2F2;
  --brand-white: #FFFFFF;
  --brand-accent: #FFB000;
  --brand-gray: #E4E4E4;
  --font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

body {
  background: var(--brand-white);
  color: #233229;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--brand-primary);
  letter-spacing: -0.01em;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 16px; }
h4, h5, h6 { font-size: 1.1rem; }

p, li, td, th {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #233229;
}

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

section, .section {
  background: transparent;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
}
@media (max-width: 768px) {
  section, .section {
    padding: 32px 8px;
    margin-bottom: 36px;
    border-radius: 12px;
  }
}

/* =================== HEADER & NAVIGATION BAR ====================== */
header {
  background: var(--brand-white);
  border-bottom: 1px solid var(--brand-gray);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 0 0 0;
  height: 80px;
}
.logo {
  margin-right: 28px;
  display: flex;
  align-items: center;
  height: 100%;
}
.logo img {
  height: 46px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex: 1 1 auto;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 8px 12px;
  border-radius: 7px;
  color: #233229;
  transition: background 0.17s, color 0.17s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.cta.primary {
  margin-left: 18px;
  padding: 10px 28px;
  border-radius: 10px;
  background: var(--brand-primary);
  color: var(--brand-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px 0 rgba(17,92,59,0.05);
  border: none;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s;
  display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--brand-accent);
  color: var(--brand-primary-dark);
  box-shadow: 0 4px 24px 0 rgba(17,92,59,0.08);
}
.mobile-menu-toggle {
  display: none;
  background: var(--brand-accent);
  color: var(--brand-primary-dark);
  font-size: 2rem;
  border-radius: 8px;
  padding: 6px 14px 6px 10px;
  margin-left: 22px;
  border: none;
  z-index: 101;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--brand-primary);
  color: var(--brand-white);
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =============== MOBILE MENU ====================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,38,33,0.14);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.33s cubic-bezier(0.5,0,0.5,1);
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  margin: 32px 28px 0 0;
  font-size: 2.2rem;
  color: var(--brand-primary);
  background: var(--brand-secondary);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid var(--brand-gray);
  box-shadow: 0 2px 12px 0 rgba(17,92,59,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--brand-accent);
  color: var(--brand-primary-dark);
}
.mobile-nav {
  margin: 54px 22px 0 0;
  background: var(--brand-white);
  border-radius: 16px 0 0 16px;
  box-shadow: -4px 0 32px 0 rgba(17,92,59,0.07);
  padding: 32px 36px 36px 38px;
  min-width: 230px;
  width: 85vw;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.5,0,0.5,1);
}
.mobile-menu.open .mobile-nav {
  transform: translateX(0);
}
.mobile-nav a {
  color: var(--brand-primary-dark);
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 600;
  padding: 13px 0 13px 0;
  border-radius: 7px;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-secondary);
  color: var(--brand-accent);
}
@media (max-width: 480px) {
  .mobile-nav {
    padding: 28px 12px 26px 20px;
    min-width: 0;
    width: 98vw;
    max-width: 99vw;
  }
  .mobile-menu-close {
    margin: 20px 10px 0 0;
    width: 42px; height: 42px;
  }
}

/* ================= HERO SECTION =================== */
.hero {
  background: linear-gradient(112deg, var(--brand-secondary) 84%, #ffffff 100%);
  box-shadow: none;
  display: flex;
  align-items: center;
  min-height: 420px;
  margin-bottom: 60px;
  border-radius: 30px;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 330px;
}
.hero .content-wrapper {
  gap: 20px;
}
.hero h1 {
  font-size: 2.1rem;
  color: var(--brand-primary);
  margin-bottom: 22px;
}
.hero p {
  max-width: 520px;
  color: #294B3A;
  font-size: 1.15rem;
  margin-bottom: 22px;
}
@media (max-width: 700px) {
  .hero {
    min-height: 240px;
    margin-bottom: 36px;
    border-radius: 18px;
  }
  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 11px;
  }
}

/* =================== FLEX PATTERNS & UTILITIES =================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-white);
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(47,62,56,0.06);
  position: relative;
  display: flex;
  flex-direction: column;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 24px;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 26px;
  background: var(--brand-secondary);
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(47,62,56,0.04);
  margin-bottom: 20px;
  min-width: 0;
  max-width: 460px;
}
.testimonial-meta {
  font-size: 1rem;
  color: var(--brand-primary);
  font-weight: 500;
  margin-top: 3px;
}
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

@media (max-width: 920px) {
  .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
}

/* =================== FEATURES =================== */
.features ul, .benefits ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  margin-top: 8px;
  margin-bottom: 12px;
}
.features ul li, .benefits ul li {
  background: var(--brand-white);
  border-radius: 13px;
  box-shadow: 0 1px 7px 0 rgba(47,62,56,0.039);
  padding: 16px 18px 16px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
  font-size: 1.08rem;
  color: #233229;
}
.features ul li img, .benefits ul li img {
  width: 30px; height: 30px; margin-right: 3px;
}
@media (max-width: 700px) {
  .features ul, .benefits ul { flex-direction: column; gap: 12px; }
}

/* ================== SERVICES CARDS & LIST ================== */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  background: var(--brand-white);
  box-shadow: 0 2px 12px 0 rgba(17,92,59,0.04);
  border-radius: 14px;
  padding: 24px 20px 18px 20px;
  flex: 1 1 300px;
  min-width: 260px;
  max-width: 340px;
  display: flex; flex-direction: column;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, border-color 0.19s;
  border: 1.5px solid transparent;
}
.service-card:hover, .service-card:focus-within {
  border-color: var(--brand-accent);
  box-shadow: 0 4px 20px 0 rgba(255,176,0,0.07);
}
.service-card h3 {
  font-size: 1.23rem;
  color: var(--brand-primary);
  margin-bottom: 7px;
}
.service-card p {
  color: #294B3A;
}
@media (max-width: 1000px) {
  .service-cards { gap: 12px; }
  .service-card { min-width: 96%; max-width: 100%; }
}

/* ================ SERVICES LIST PAGE ================ */
.service-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  list-style: none;
  margin-bottom: 36px;
}
.service-list li {
  background: var(--brand-secondary);
  border-radius: 12px;
  padding: 24px 24px;
  box-shadow: 0 1px 8px 0 rgba(40,50,46,0.03);
}
.service-list h2 {
  font-size: 1.35rem;
  color: var(--brand-primary);
}

/* ================== FAQ ACCORDION ==================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
}
.faq-accordion > div {
  background: var(--brand-white);
  border-radius: 11px;
  box-shadow: 0 2px 8px 0 rgba(36,54,42,0.045);
  padding: 18px 22px;
  transition: box-shadow 0.18s;
}
.faq-accordion > div:hover,
.faq-accordion > div:focus-within {
  box-shadow: 0 8px 24px 0 rgba(17,92,59,0.09);
}
.faq-accordion h3 {
  font-size: 1.12rem; margin-bottom: 8px;
}
.faq-accordion p {
  font-size: 1rem; color: #294B3A;
}

/* ===================== PRICING ======================= */
.pricing-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--brand-white);
  box-shadow: 0 1px 10px 0 rgba(17,92,59,0.04);
  border-radius: 15px;
  margin-bottom: 26px;
}
.pricing-table th, .pricing-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 1.04rem;
}
.pricing-table th {
  background: var(--brand-secondary);
  color: var(--brand-primary-dark);
  font-weight: 700;
}
.pricing-table tr:nth-child(even) td {
  background: #FAFAFA;
}
.pricing-notes ul {
  margin: 0 0 0 18px;
  color: #294B3A;
  font-size: 0.99rem;
}

/* =============== CONTACT PAGE & TEASERS =============== */
.contact-short-info p,
.contact-details p,
.address-info p,
.working-hours p {
  margin-bottom: 7px;
  color: #294B3A;
}
.contact-form {
  background: var(--brand-secondary);
  border-radius: 16px;
}
.form-fields {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-fields .cta.primary {
  width: fit-content;
}
.map-info .address-info,
.map-info .working-hours {
  margin-bottom: 10px;
}

/* ================ CARDS and TEXT SECTIONS ================= */
.text-section {
  background: var(--brand-white);
  border-radius: 14px;
  box-shadow: 0 1px 7px 0 rgba(47,62,56,0.039);
  padding: 18px 19px 17px 19px;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .text-section, .service-card {
    padding: 14px 10px;
  }
}

/* ================ PROJECTS & TEAMS ================ */
.team-bios, .project-descriptions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.team-bios .text-section, .project-descriptions .text-section {
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 330px;
}
.result-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0 0 12px 0;
}
.result-highlights ul li {
  background: var(--brand-secondary);
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--brand-primary);
  font-size: 1.03rem;
}

/* =============== FOOTER =============== */
footer {
  background: var(--brand-secondary);
  color: #233229;
  padding: 0 0 0 0;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 48px 0 20px 0;
  border-bottom: 1px solid var(--brand-gray);
}
.logo-foot img {
  width: 63px; height: 63px;
}
.footer-nav {
  display: flex;
  gap: 26px;
  flex-direction: column;
}
.footer-nav a {
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-size: 1.07rem;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-accent);
}
.footer-contact {
  font-size: 0.99rem;
  max-width: 320px;
}
.footer-bottom {
  width: 100%;
  text-align: center;
  padding: 20px 0 5px 0;
  font-size: 0.95rem;
  color: #899484;
}
@media (max-width: 800px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 42px 0 18px 0;
  }
  .footer-nav {
    flex-direction: row;
    gap: 14px;
  }
}

/* =============== THANK YOU / SUCCESS ================== */
.thank-you .next-steps {
  background: var(--brand-secondary);
  border-radius: 11px;
  padding: 16px 22px;
  margin: 14px 0 14px 0;
  color: #294B3A;
}

/* ============== LEGAL TEXTS (privacy, rodo, cookies, terms) ============ */
.legal-text {
  font-size: 1rem;
  color: #294B3A;
  background: var(--brand-white);
  border-radius: 11px;
  padding: 22px 18px;
  box-shadow: 0 1px 7px 0 rgba(80, 95, 80, 0.037);
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}
.legal-text h2 { font-size: 1.08rem; margin-top: 15px; }

/* ===================== BUTTONS ===================== */
.cta,
button,
input[type="submit"] {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 11px 22px;
  background: var(--brand-primary);
  color: var(--brand-white);
  border: none;
  box-shadow: 0 1px 8px 0 rgba(17,92,59,0.07);
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, border-color 0.17s;
}
.cta.secondary {
  background: var(--brand-accent);
  color: var(--brand-primary-dark);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--brand-primary);
  color: var(--brand-white);
}
.cta:focus {
  outline: 2px solid var(--brand-accent);
}
button:active, .cta:active {
  background: var(--brand-primary-dark);
}

/* ================ TABLES ================ */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.99rem;
}
th, td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--brand-gray);
}
th {
  background: var(--brand-secondary);
}

/* ========== COOKIES BANNER & MODAL =========== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--brand-white);
  border-top: 2px solid var(--brand-accent);
  box-shadow: 0 -4px 24px 0 rgba(17, 92, 59, 0.09);
  padding: 18px 14px;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: center;
  transition: transform 0.33s cubic-bezier(0.5,0,0.5,1), opacity 0.25s;
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 300px;
  color: #294B3A;
  font-size: 1rem;
  max-width: 575px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
}
.cookie-banner .cookie-btn {
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.17s;
}
.cookie-banner .cookie-accept {
  background: var(--brand-primary);
  color: var(--brand-white);
}
.cookie-banner .cookie-accept:hover,
.cookie-banner .cookie-accept:focus {
  background: var(--brand-accent);
  color: var(--brand-primary-dark);
}
.cookie-banner .cookie-reject {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border: 1px solid var(--brand-gray);
}
.cookie-banner .cookie-reject:hover,
.cookie-banner .cookie-reject:focus {
  background: #f7e6cb;
  color: var(--brand-primary-dark);
  border-color: var(--brand-accent);
}
.cookie-banner .cookie-settings {
  background: var(--brand-accent);
  color: var(--brand-primary-dark);
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--brand-primary-dark);
  color: var(--brand-white);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px 8px 18px 8px;
  }
  .cookie-banner .cookie-actions {
    gap: 9px;
  }
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22,27,20,0.35);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.27s cubic-bezier(0.51,0,0.5,1);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--brand-white);
  border-radius: 16px;
  box-shadow: 0 8px 36px 0 rgba(14,74,46,0.13);
  padding: 38px 32px 28px 32px;
  min-width: 310px;
  max-width: 95vw;
  max-height: 94vh;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 12;
  animation: cookieModalIn 0.45s cubic-bezier(0.39,1.5,0.45,1.01);
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: translateY(80px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
.cookie-modal h2 {
  font-size: 1.38rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-category .category-label {
  font-weight: 500;
  color: var(--brand-primary);
}
.cookie-category .cookie-toggle {
  accent-color: var(--brand-accent);
  width: 26px;
  height: 26px;
}
.cookie-category .cookie-always {
  color: #899484;
  font-size: 0.97rem;
  margin-left: 8px;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 10px;
}
.cookie-modal-actions button {
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 15px;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  border: 1px solid var(--brand-gray);
  z-index: 13;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--brand-accent);
  color: var(--brand-primary-dark);
}
@media (max-width: 600px) {
  .cookie-modal {
    padding: 18px 6px 18px 8px;
    min-width: 80vw;
  }
}

/* =============== ANIMATIONS & MICROINTERACTIONS ================ */
.card, .testimonial-card, .service-card, .text-section, .faq-accordion > div, .feature-item {
  transition: box-shadow 0.15s, border 0.14s, transform 0.17s;
}
.card:hover, .testimonial-card:hover, .service-card:hover, .text-section:hover {
  box-shadow: 0 8px 30px 0 rgba(255,176,0,0.10), 0 2px 16px 0 rgba(17,92,59,0.07);
  transform: translateY(-2px) scale(1.011);
}
.cta, button, .cookie-banner .cookie-btn {
  transition: background 0.16s, color 0.16s, box-shadow 0.15s, border-color 0.13s, transform 0.17s;
}
.cta.primary:active, .cookie-banner .cookie-accept:active {
  background: var(--brand-primary-dark);
  transform: scale(0.97);
}

/* ================== SCROLLBAR STYLE (subtle) ================== */
::-webkit-scrollbar {
  width: 10px;
  background: #efefef;
}
::-webkit-scrollbar-thumb {
  background: var(--brand-secondary);
  border-radius: 6px;
  border: 1.5px solid #e3e3e3;
}

/* =================== RESPONSIVE DESIGN =================== */
@media (max-width: 1200px) {
  .container { max-width: 970px; }
}
@media (max-width: 900px) {
  .container { max-width: 740px; }
  body { font-size: 15px; }
}
@media (max-width: 700px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.07rem; }
  .container { max-width: 96vw; }
}
@media (max-width: 540px) {
  .container { padding: 0 3vw; }
  .footer-contact { font-size: 0.95rem; }
}

/* =============== ACCESSIBILITY ================ */
a:focus, .cta:focus, .cta.primary:focus, button:focus, .cookie-btn:focus {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 2.5px #FFD26B91;
}

/* ================= CUSTOM UTILITIES =================== */
.hide { display: none !important; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.mr-2 { margin-right: 8px; }
.ml-2 { margin-left: 8px; }
.mt-2 { margin-top: 8px; }
.mb-2 { margin-bottom: 8px; }

/* ============== USEFUL FLEX FILL SPACERS (for clean alignment) ============= */
.spacer { flex: 1 1 auto; min-width: 2px; }
/* End of stylesheet - Scandinavian clean, NO grid, all flex layouts */
