/* ========================================================
   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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #223046;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  background-color: transparent;
  color: #154973;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2D8A64;
  text-decoration: underline;
}
ul, ol {
  list-style: disc inside;
  padding-left: 1em;
}
ol {
  list-style-type: decimal;
}
b, strong {
  font-weight: 600;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button,
input[type="submit"],
.cta-btn {
  font-family: inherit;
}

/* ========================================================
   VARIABLES & CUSTOM PROPERTIES
======================================================== */
:root {
  --brand-primary: #154973;
  --brand-secondary: #2D8A64;
  --brand-accent: #F2F4F6;
  --gray-100: #F6F7F9;
  --gray-200: #E6ECF1;
  --gray-300: #D1D9E0;
  --gray-500: #8A99A7;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --radius-card: 16px;
  --radius-btn: 999px;
  --shadow-card: 0 2px 16px rgba(21,73,115,0.06);
  --shadow-hover: 0 6px 24px rgba(45,138,100,0.10);
  --transition-basic: 0.20s cubic-bezier(.2,.7,.5,1);
  --focus-outline: 2px solid var(--brand-secondary);
}

/* ========================================================
   TYPOGRAPHY
======================================================== */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: #154973;
  line-height: 1.18;
  margin-bottom: 24px;
  letter-spacing: -0.7px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #154973;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: #2D8A64;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #223046;
  margin-bottom: 12px;
}

p, li, blockquote, address {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #223046;
  margin-bottom: 12px;
}
blockquote {
  font-style: italic;
  color: #223046;
  border-left: 3px solid var(--brand-primary);
  padding-left: 1em;
  margin-bottom: 6px;
}

small {
  font-size: 0.9375rem;
  color: #8A99A7;
}

/* Lists */
ul, ol {
  margin-bottom: 20px;
}

/* ========================================================
   LAYOUT: CONTAINER & WRAPPERS
======================================================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 24px 10px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ========================================================
   HEADER & NAVIGATION
======================================================== */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(21, 73, 115, 0.03);
  position: sticky;
  top: 0;
  z-index: 10;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
}
.header img {
  margin-right: 12px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: #223046;
  transition: color var(--transition-basic);
  padding: 4px 0;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--brand-primary);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 34px;
  border: none;
  border-radius: var(--radius-btn);
  background: var(--brand-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(21,73,115,0.08);
  transition: background var(--transition-basic), box-shadow var(--transition-basic), color var(--transition-basic);
  margin-left: 20px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-secondary);
  color: #fff;
  box-shadow: 0 4px 24px rgba(45,138,100,0.15);
}

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--brand-primary);
  cursor: pointer;
  margin-left: 20px;
  padding: 0 8px;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: var(--focus-outline);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
  .cta-btn {
    padding: 10px 24px;
    font-size: 1rem;
    margin-left: 12px;
  }
}

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

/* ========================================================
   MOBILE MENU STYLES
======================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1111;
  box-shadow: 0 4px 24px rgba(21, 73, 115, 0.12);
  transition: transform 0.35s cubic-bezier(.6,.01,.5,1.5);
  transform: translateX(-100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.3rem;
  background: none;
  border: none;
  color: var(--brand-primary);
  cursor: pointer;
  padding: 24px 24px 8px 16px;
  align-self: flex-end;
  transition: color 0.16s;
}
.mobile-menu-close:focus {
  outline: var(--focus-outline);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width:100%;
  align-items: flex-start;
  margin-top: 16px;
  margin-left: 30px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: #223046;
  padding: 10px 0;
  min-width: 180px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  display: inline-block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
@media (max-width: 450px) {
  .mobile-nav {
    margin-left: 12px;
  }
  .mobile-nav a {
    min-width: 0;
  }
}

/* Hide .mobile-menu on desktop */
@media (min-width: 831px) {
  .mobile-menu {
    display: none;
  }
}

/* ========================================================
   HERO & CTA
======================================================== */
.hero {
  background: var(--brand-accent);
  padding: 64px 0 40px 0;
  border-radius: 0 0 20px 20px;
}
.hero .container {
  flex-direction: column;
}
.hero .content-wrapper {
  max-width: 640px;
  margin: 0 auto;
  align-items: flex-start;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.4rem;
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 28px;
}
.cta {
  background: var(--brand-accent);
  border-radius: var(--radius-card);
  text-align: center;
  padding: 32px 0;
  margin-bottom: 60px;
}
.cta .content-wrapper {
  align-items: center;
  gap: 12px;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.cta p {
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .hero {
    padding: 32px 0 18px 0;
    border-radius: 0 0 8px 8px;
  }
  .cta {
    padding: 20px 0;
    margin-bottom: 32px;
  }
}

/* ========================================================
   FEATURES & SERVICES
======================================================== */
.features-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 20px;
}
.feature {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 22px 22px 22px;
  min-width: 200px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition-basic), transform var(--transition-basic);
}
.feature img {
  margin-bottom: 10px;
  width: 38px;
  height: 38px;
}
.feature:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.015);
}
@media (max-width: 720px) {
  .features-grid {
    gap: 18px;
    flex-direction: column;
  }
  .feature {
    min-width: 0;
    width: 100%;
  }
}

.service-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
  align-items: center;
}
.service-list li {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #223046;
  gap: 12px;
  background: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  min-width: 160px;
  transition: box-shadow var(--transition-basic), background 0.18s;
}
.service-list li img {
  width: 32px; height: 32px;
}
.service-list li:hover {
  box-shadow: var(--shadow-hover);
  background: var(--brand-accent);
}
@media (max-width: 650px) {
  .service-list {
    flex-direction: column;
    gap: 14px;
  }
  .service-list li {
    min-width: 0;
    width: 100%;
  }
}

/* ========================================================
   CARD CONTAINER (MANDATORY RULES)
======================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 30px 24px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow var(--transition-basic), transform var(--transition-basic);
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.01);
}
@media (max-width: 800px) {
  .card-container {
    gap: 14px;
    flex-direction: column;
  }
  .card {
    width: 100%;
    padding: 22px 14px;
  }
}

/* ========================================================
   CONTENT GRID (MANDATORY RULES)
======================================================== */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/* ========================================================
   TEXT + IMAGE SECTIONS
======================================================== */
.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: 16px;
  }
}

/* ========================================================
   TESTIMONIALS
======================================================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  color: #223046;
  border-radius: var(--radius-card);
  padding: 20px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 540px;
  transition: box-shadow var(--transition-basic), background 0.2s;
}
.testimonial-card blockquote {
  color: #223046;
  font-style: italic;
  font-size: 1.13rem;
  border-left: 3px solid var(--brand-secondary);
  padding-left: 1em;
  margin-bottom: 6px;
  line-height: 1.6;
}
.testimonial-card strong {
  color: var(--brand-primary);
  font-size: 1rem;
}
.testimonial-card:hover {
  background: var(--brand-accent);
  box-shadow: var(--shadow-hover);
}
@media (max-width: 800px) {
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
}

/* ========================================================
   FEATURE ITEM (MANDATORY RULES)
======================================================== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 18px 20px;
  transition: box-shadow var(--transition-basic);
}
.feature-item:hover {
  box-shadow: var(--shadow-hover);
}

/* ========================================================
   TABLES & PRICING
======================================================== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}
.pricing-table th, .pricing-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--gray-200);
  text-align: left;
  font-size: 1rem;
  font-family: var(--font-body);
}
.pricing-table th {
  background: var(--brand-accent);
  font-weight: 700;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 650px) {
  .pricing-table, .pricing-table thead, .pricing-table tbody, .pricing-table tr { display: block; }
  .pricing-table tr {
    margin-bottom: 16px;
    background: #fff;
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-card);
    overflow: hidden;
  }
  .pricing-table th, .pricing-table td {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 8px;
    border-bottom: none;
  }
  .pricing-table tr:not(:last-child) {
    margin-bottom: 9px;
  }
}

/* ========================================================
   FOOTER & ADDRESS BLOCK
======================================================== */
footer {
  background: #fff;
  border-top: 1px solid var(--gray-200);
  padding: 40px 0 24px 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
footer img {
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #223046;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  transition: color 0.18s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--brand-secondary);
}
footer address {
  font-style: normal;
  color: #223046;
  font-size: 0.98rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 320px;
}
footer address a {
  display: flex;
  align-items: center;
  color: #154973;
  gap: 8px;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0;
}
footer address a:hover,
footer address a:focus {
  color: var(--brand-secondary);
}
footer address img {
  width: 18px;
  margin-right: 3px;
  opacity: 0.80;
}
footer span {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 13px;
    margin-bottom: 8px;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 24px 0 14px 0;
    margin-top: 30px;
  }
}

/* ========================================================
   MANDATORY LAYOUTS (Always FLEX)
======================================================== */
/* See card-container, content-grid, text-image-section, feature-item above! */
/* .section already defined above */

/* ========================================================
   BUTTONS + INTERACTIVES
======================================================== */
button, input[type="button"], input[type="submit"] {
  background: var(--brand-secondary);
  color: #fff;
  border-radius: var(--radius-btn);
  border: none;
  padding: 12px 34px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(21, 73, 115, 0.08);
  transition: background var(--transition-basic), box-shadow var(--transition-basic), color var(--transition-basic);
}
button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 2px 18px rgba(45,138,100,0.16);
}

/* ========================================================
   COOKIE CONSENT BANNER + MODAL
======================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  border-top: 1px solid var(--gray-300);
  box-shadow: 0 -1px 14px rgba(45, 138, 100, 0.08);
  z-index: 9900;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 42px 18px 28px;
  font-size: 1rem;
  color: #223046;
  transition: transform 0.36s cubic-bezier(.18,.89,.32,1.28), opacity 0.2s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner__message {
  flex: 1 1 0%;
  font-size: 1rem;
  color: #223046;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  padding: 10px 22px;
  border-radius: var(--radius-btn);
  font-size: 0.98rem;
  box-shadow: none;
  font-weight: 600;
  border: none;
  background: var(--brand-accent);
  color: #223046;
  transition: background 0.16s, color 0.16s;
}
.cookie-banner button.accept {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-banner button.reject {
  background: #fff;
  color: #223046;
  border: 1px solid var(--gray-300);
}
.cookie-banner button:hover:not(.accept) {
  background: var(--brand-secondary);
  color: #fff;
}
.cookie-banner button.accept:hover {
  background: var(--brand-secondary);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 12px 22px 12px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-banner__actions {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  background: rgba(34,48,70, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.cookie-modal__dialog {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: 0 2px 32px rgba(21,73,115,0.13);
  max-width: 425px;
  width: 100%;
  padding: 36px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  animation: fadeInScale 0.34s cubic-bezier(.18,.89,.32,1.28);
}
@keyframes fadeInScale {
  0% { opacity: 0; transform: scale(0.97); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal h3 {
  color: var(--brand-primary);
  font-size: 1.19rem;
  margin-bottom: 16px;
  font-family: var(--font-display);
}
.cookie-modal__categories {
  width: 100%;
  margin-bottom: 22px;
}
.cookie-modal__category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 13px;
  padding: 10px 0px 5px 0px;
  border-bottom: 1px solid var(--gray-200);
}
.cookie-modal__category:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: var(--gray-200);
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-toggle:checked {
  background: var(--brand-secondary);
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(21,73,115,0.09);
  transition: transform 0.19s cubic-bezier(.38,1.8,.6,1), background 0.14s;
}
.cookie-toggle:checked:before {
  transform: translateX(16px);
  background: #fff;
}
.cookie-toggle[disabled], .cookie-toggle[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  width: 100%;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal__close {
  position: absolute;
  top: 10px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--brand-primary);
  cursor: pointer;
  padding: 2px 5px;
  border-radius: 8px;
}
.cookie-modal__close:focus { outline: var(--focus-outline); }
.cookie-modal__actions button {
  padding: 10px 20px;
  font-size: 1rem;
  background: var(--brand-accent);
  color: #223046;
  border: none;
  border-radius: var(--radius-btn);
  transition: background 0.15s, color 0.15s;
}
.cookie-modal__actions button.accept {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-modal__actions button.reject {
  background: #fff;
  color: #223046;
  border: 1px solid var(--gray-200);
}
.cookie-modal__actions button:hover, .cookie-modal__actions button:focus {
  background: var(--brand-secondary);
  color: #fff;
}
.cookie-modal__actions button.accept:hover {
  background: var(--brand-secondary);
}

@media (max-width: 650px) {
  .cookie-modal__dialog {
    padding: 18px 6px 16px 6px;
    max-width: 96vw;
  }
}

/* ========================================================
   UTILITY & GLOBALS
======================================================== */
.bg-brand-accent { background: var(--brand-accent)!important; }
.bg-white { background: #fff!important; }
.text-brand-primary { color: var(--brand-primary)!important; }
.text-brand-secondary { color: var(--brand-secondary)!important; }
.shadow-card { box-shadow: var(--shadow-card)!important; }
.rounded-card { border-radius: var(--radius-card)!important; }

/* Responsive text scaling */
@media (max-width: 1100px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.3rem; }
}
@media (max-width: 700px) {
  h1, .h1 { font-size: 1.48rem; }
  h2, .h2 { font-size: 1.13rem; }
  h3, .h3 { font-size: 1.02rem; }
}

/* Margin bottom for all block elements */
h1, h2, h3, h4, h5, h6, p, ul, ol, table, blockquote, article, section, .feature, .card, .feature-item, .testimonial-card {
  margin-bottom: 20px;
}

/* Last child no margin */
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child, ul:last-child, ol:last-child, table:last-child, blockquote:last-child, article:last-child, section:last-child, .feature:last-child, .card:last-child, .feature-item:last-child, .testimonial-card:last-child {
  margin-bottom: 0;
}

/* Focus outline for accessibility */
:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 2px;
}

/* ========================================================
   FORMS (If needed in kontakt/cta/thank-you)
======================================================== */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  background: #fff;
  margin-bottom: 16px;
  width: 100%;
  box-shadow: none;
  transition: border 0.17s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--brand-primary);
  outline: none;
}

/* ========================================================
   ANIMATIONS / MICRO-INTERACTIONS
======================================================== */
.card, .feature, .feature-item, .testimonial-card, .service-list li {
  will-change: box-shadow, transform;
}
.cta-btn, button {
  transition: background var(--transition-basic), color var(--transition-basic), box-shadow var(--transition-basic);
}

/* ========================================================
   PRINT (Optional since minimalist)
======================================================== */
@media print {
  header, footer, .cta, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  body { color: #000; background: #fff; }
}
