/* =========================================
   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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: #f2f2ee;
  color: #25323d;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}

/* =========================================
   VARIABLES (Fallback CSS Custom Properties)
========================================= */
:root {
  --color-primary: #25323d;
  --color-secondary: #f2f2ee;
  --color-accent: #a3834e;
  --color-accent-dark: #856324;
  --color-white: #ffffff;
  --color-black: #10151a;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* =========================================
   CONTAINERS & GENERAL SECTIONS
========================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(37, 50, 61, 0.06);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .section, section {
    padding: 24px 8px;
    border-radius: 16px;
    margin-bottom: 32px;
  }
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

/* =========================================
   TYPOGRAPHY
========================================= */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--color-primary);
  letter-spacing: -1px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--color-accent-dark);
  letter-spacing: -0.5px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 6px;
  color: var(--color-primary);
}
h4, .h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
p, li, span, strong {
  font-family: var(--font-body);
  color: var(--color-primary);
  font-size: 1rem;
  background-color: #a3834e;
  font-weight: 400;
}
strong {
  font-weight: 700;
  color: var(--color-accent-dark);
}
.subheadline {
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.approach-highlight, .confirmation-message {
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 600;
  padding: 16px 24px;
  border-radius: 12px;
  margin-top: 16px;
  box-shadow: 0 2px 8px rgba(37,50,61, 0.12);
}
@media (max-width: 600px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.4rem; }
  h3, .h3 { font-size: 1.1rem; }
  p, li, span, strong { font-size: 0.97rem; }
  .subheadline { font-size: 1.05rem; }
}

/* =========================================
   HEADER & NAVIGATION
========================================= */
header {
  background: var(--color-white);
  box-shadow: 0 2px 12px rgba(37,50,61,0.08);
  position: relative;
  z-index: 50;
  padding: 0;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 20px;
}
.logo {
  display: flex;
  align-items: center;
  height: 48px;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  letter-spacing: 0.03em;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: var(--color-white);
}
.cta-btn {
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  border-radius: 999px;
  padding: 12px 32px;
  margin-left: 12px;
  box-shadow: 0 4px 18px 0 rgba(163,131,78,0.10);
  cursor: pointer;
  transition: background 0.23s, box-shadow 0.23s, transform 0.17s;
  border: none;
  outline: none;
  text-align: center;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: 0 2px 8px 0 rgba(37,50,61,0.14);
  transform: translateY(-2px) scale(1.03);
}
@media (max-width: 960px) {
  .main-nav { gap: 12px; }
  .cta-btn { margin-left: 4px; padding: 10px 20px; }
  header .container { gap: 8px; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .cta-btn { display: none; }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: var(--color-primary);
  background: var(--color-white);
  border-radius: 8px;
  border: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(37,50,61,0.04);
  position: absolute;
  right: 24px;
  top: 18px;
  z-index: 103;
  transition: background 0.15s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--color-accent);
  color: var(--color-white);
}
@media (max-width: 768px) {
  .mobile-menu-toggle { display: flex; }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(37, 50, 61, 0.95);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.65,.05,.36,1);
  z-index: 2000;
  padding: 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--color-accent);
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px 12px 24px;
  align-self: flex-end;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 40px;
  width: 100%;
}
.mobile-nav a {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 8px;
  padding: 10px 8px;
  width: 100%;
  margin-left: -8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff8ea;
}

/* =========================
   HERO SECTIONS
========================= */
.hero, .trends-hero, .inspiration-hero, .blog-hero {
  background: var(--color-primary);
  padding: 70px 0 60px 0;
  border-radius: 0 0 32px 32px;
  margin-bottom: 56px;
  color: var(--color-white);
}
.hero .container, .trends-hero .container, .inspiration-hero .container, .blog-hero .container {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  display: flex;
  gap: 0;
}
.hero h1, .trends-hero h1, .inspiration-hero h1, .blog-hero h1 {
  color: var(--color-white);
  font-size: 2.8rem;
  font-family: var(--font-display);
  margin-bottom: 14px;
  letter-spacing: -2px;
  font-weight: 800;
}
.hero p, .trends-hero p, .inspiration-hero .subheadline, .blog-hero .subheadline {
  color: #f2f2ee;
  font-size: 1.25rem;
  margin-bottom: 28px;
  font-family: var(--font-body);
}
.hero .cta-btn, .trends-hero .cta-btn, .inspiration-hero .cta-btn,
.blog-hero .cta-btn {
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 100px;
  padding: 14px 40px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 32px 0 rgba(163,131,78,0.19);
  margin-top: 10px;
}
.hero .cta-btn:hover, .trends-hero .cta-btn:hover, .inspiration-hero .cta-btn:hover, .blog-hero .cta-btn:hover {
  background: #f2f2ee;
  color: var(--color-accent);
}
@media (max-width: 768px) {
  .hero, .trends-hero, .inspiration-hero, .blog-hero {
    padding: 38px 0 34px 0;
    margin-bottom: 26px;
    border-radius: 0 0 20px 20px;
  }
  .hero h1, .trends-hero h1, .inspiration-hero h1, .blog-hero h1 {
    font-size: 1.6rem;
  }
}

/* =========================================
   FLEX LAYOUT SYSTEMS (MANDATORY)
========================================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(37,50,61,0.09);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  padding: 28px 24px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 8px 40px 0 rgba(37,50,61,0.15);
  transform: translateY(-6px) scale(1.025);
}

.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) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

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

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(37,50,61,0.10);
  min-width: 0;
  flex: 1 1 280px;
  flex-direction: column;
  transition: box-shadow 0.20s;
}
.testimonial-card h3 {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.testimonial-card p {
  color: var(--color-primary);
  font-size: 1rem;
}
.testimonial-card strong {
  color: var(--color-accent-dark);
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px 0 rgba(37,50,61,0.16);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* =========================================
   INDEX FEATURES & GRIDS
========================================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 24px;
}
.feature {
  flex: 1 1 220px;
  background: var(--color-secondary);
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(163,131,78,0.07);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.15s;
  min-width: 200px;
  min-height: 212px;
}
.feature img {
  height: 36px;
  width: auto;
  margin-bottom: 14px;
}
.feature h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 7px;
}
.feature p {
  color: var(--color-primary);
}
.feature:hover {
  box-shadow: 0 6px 40px 0 rgba(163,131,78,0.13);
  transform: translateY(-3px) scale(1.023);
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 650px) {
  .feature-grid {
    flex-direction: column;
  }
  .feature {
    width: 100%;
    min-width: 0;
    min-height: 160px;
  }
}

/* =========================================
   TREND, INSPIRATIONS, BLOG LISTS
========================================= */
.trend-list, .inspiration-teasers, .theme-list, .post-list, .values-list, .team-profiles, .expertise-highlights ul, .trend-recommendations, .category-list, .tag-list, .guarantees-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 14px 0 10px 0;
}
.trend-list li, .inspiration-teasers li, .theme-list li, .post-list li, .values-list li, .team-profiles li, .guarantees-list li, .trend-recommendations li, .company-details li, .hour-list li, .faq ul li {
  font-size: 1.08rem;
  background: var(--color-secondary);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--color-primary);
  font-family: var(--font-body);
  box-shadow: 0 1px 5px 0 rgba(37,50,61,0.04);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.trend-list li img {
  height: 32px; width: 32px; margin-right: 10px;
}
.theme-list li strong, .inspiration-teasers li strong, .values-list li strong {
  color: var(--color-accent-dark);
  font-weight: 700;
}

/* =========================================
   MORE LINK / READ MORE
========================================= */
.more-link, .read-more {
  font-family: var(--font-display);
  color: var(--color-accent);
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.17s;
  margin-top: 10px;
  display: inline-block;
}
.more-link:hover, .read-more:hover {
  color: var(--color-primary);
}

/* =========================================
   INSPIRATION STORIES CARDS
========================================= */
.story-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width: 800px) {
  .story-list {
    flex-direction: column;
    gap: 14px;
  }
}

/* =========================================
   FOOTER
========================================= */
footer {
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 32px 0 16px 0;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  color: var(--color-secondary);
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 6px;
  padding: 2px 8px;
  transition: background 0.16s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-accent);
  color: var(--color-white);
}
.footer-contact {
  color: var(--color-secondary);
  font-size: 0.95rem;
  font-family: var(--font-body);
  margin-bottom: 4px;
  opacity: 0.95;
}
.footer-copy {
  font-size: 0.85rem;
  opacity: 0.75;
}
@media (max-width: 700px) {
  .footer-nav { flex-direction: column; gap: 10px; }
}

/* =========================================
   COOKIE CONSENT BANNER & MODAL
========================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--color-primary);
  color: var(--color-secondary);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  z-index: 5000;
  font-size: 1rem;
  box-shadow: 0 -2px 16px rgba(37,50,61, 0.22);
  border-radius: 16px 16px 0 0;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.56,.11,.96,.77), opacity 0.25s;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
}
.cookie-banner .banner-btn {
  font-family: var(--font-display);
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 1.05rem;
  cursor: pointer;
  background: var(--color-accent);
  color: var(--color-white);
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .banner-btn:hover {
  background: var(--color-white);
  color: var(--color-accent-dark);
}
.cookie-banner .banner-btn.reject {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
}
.cookie-banner .banner-btn.reject:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* MODAL BACKDROP */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  z-index: 5100;
  top:0; left:0; right:0; bottom:0;
  background: rgba(37,50,61,0.52);
  justify-content: center;
  align-items: center;
}
.cookie-modal-backdrop.show {
  display: flex;
}
.cookie-modal {
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: 18px;
  box-shadow: 0 12px 48px 0 rgba(37,50,61,0.27);
  padding: 40px 28px 30px 28px;
  width: 100%;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modal-popup 0.24s ease;
}
@keyframes modal-popup {
  from { opacity: 0; transform: scale(0.93); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  color: var(--color-accent-dark);
  font-size: 1.5rem;
  font-family: var(--font-display);
  margin-bottom: 6px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cookie-modal-category label {
  font-family: var(--font-body);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e0e0df;
  border-radius: 18px;
  transition: background 0.15s;
}
.cookie-switch input:checked + .cookie-switch-slider {
  background: var(--color-accent);
}
.cookie-switch-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--color-white);
  border-radius: 50%;
  transition: transform 0.15s;
  box-shadow: 0 2px 8px rgba(37,50,61,0.13);
}
.cookie-switch input:checked + .cookie-switch-slider:before {
  transform: translateX(18px);
}
.cookie-modal__actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .modal-btn {
  font-family: var(--font-display);
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 7px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  background: var(--color-accent);
  color: var(--color-white);
  transition: background 0.14s, color 0.14s;
}
.cookie-modal .modal-btn.cancel {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
}
.cookie-modal .modal-btn.cancel:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* =========================================
   CONTACT CTA & CONTACT INFO
========================================= */
.contact-cta {
  background: var(--color-accent);
  color: var(--color-white);
  margin-bottom: 0;
  border-radius: 20px;
  box-shadow: 0 10px 32px rgba(163,131,78,0.11);
  padding-bottom: 20px;
  margin-top: 38px;
}
.contact-cta h2 {
  color: var(--color-white);
}
.contact-cta .cta-btn {
  background: var(--color-white);
  color: var(--color-accent);
}
.contact-cta .cta-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1.09rem;
  margin-top: 16px;
}
.contact-info img {
  width: 22px; height: 22px;
  margin-right: 4px;
}
@media (max-width: 720px) {
  .contact-info {
    flex-direction: column;
    gap: 6px;
    font-size: 0.98rem;
  }
}

/* =========================================
   TABLES - TRENDY PAGE
========================================= */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 16px 0;
  font-family: var(--font-body);
  box-shadow: 0 2px 14px 0 rgba(37,50,61,0.08);
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-white);
}
.comparison-table th, .comparison-table td {
  padding: 14px 13px;
  font-size: 1rem;
  border-bottom: 1px solid #ececec;
}
.comparison-table th {
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.07rem;
}
.comparison-table tr:last-child td { border-bottom: none; }
@media (max-width:680px) {
  .comparison-table th,
  .comparison-table td {
    padding: 9px 5px;
    font-size: 0.96rem;
  }
}

/* =========================================
   MISC LISTS, FAQ, CATEGORIES
========================================= */
.service-list, .step-list, .faq ul, .usp-highlights ul, .expert-tips ul, .step-by-step-guides {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 10px 0;
}
.category-list, .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 10px 0 8px 0;
}
.category-list span, .tag-list span {
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: 8px;
  padding: 7px 18px;
  margin-bottom: 3px;
}

.tips {
  background: var(--color-secondary);
  padding: 18px 16px;
  border-radius: 12px;
}
.tips h3 { color: var(--color-accent-dark); margin-bottom: 8px; }
.tips ul { gap: 7px; }

.faq h3, .usp-highlights ul li strong {
  color: var(--color-accent-dark);
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.map {
  background: #e9e7e3;
  border-radius: 14px;
  padding: 28px 0;
  text-align: center;
  font-weight: 700;
  color: var(--color-primary);
}

/* =========================================
   RESPONSIVE SPACING & FLEX-DIRECTION
========================================= */
@media (max-width: 768px) {
  .card-container, .content-grid, .feature-grid, .story-list {
    flex-direction: column;
    gap: 17px;
  }
}

/* =========================================
   MICRO-INTERACTIONS & TRANSITIONS
========================================= */
*:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
a, button, .cta-btn, .main-nav a, .mobile-nav a, .footer-nav a {
  transition: color 0.19s, background 0.18s, box-shadow 0.18s, transform 0.17s;
}
.cta-btn, .banner-btn, .modal-btn {
  transition: background 0.20s, color 0.20s, transform 0.14s, box-shadow 0.16s;
  will-change: background, color, transform;
}
.card:hover, .feature:hover, .testimonial-card:hover {
  transition: box-shadow 0.18s, transform 0.18s;
  will-change: box-shadow, transform;
}

/* =========================================
   PRINT & SELECTION
========================================= */
::selection {
  background: var(--color-accent);
  color: var(--color-white);
}

/* END STYLES */