/* =======================================
   SleekFizz Rhetorik – style.css
   Playful Dynamic Flexbox CSS Theme
   ======================================= */

/* 1. 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, 
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #F7F9FB;
  color: #272A44;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  padding-left: 24px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border-style: none;
}
a {
  color: #EE8548;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #EE8548;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #272A44;
  letter-spacing: -0.03em;
}
h1 { font-size: 2.4rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
p { margin-bottom: 16px; }

/* Fun Playful Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600&display=swap');

/* Brand Colors */
:root {
  --sf-primary: #272A44;
  --sf-secondary: #E1E8ED;
  --sf-accent: #EE8548;
  --sf-accent-light: #FFE1CE;
  --sf-bg-light: #F7F9FB;
  --sf-error: #F46060;
}

/* ------------ Layout Containers ------------ */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 24px 0 rgba(39,42,68,0.06);
}

/* ------------ HEADER & NAV ------------ */
header {
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(39, 42, 68, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 8px 10px;
  border-radius: 14px;
  color: var(--sf-primary);
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--sf-accent-light);
  color: var(--sf-accent);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: var(--sf-accent);
  color: #fff;
  padding: 13px 26px;
  margin-left: 18px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 6px 24px 0 rgba(238,133,72,0.08);
  letter-spacing: 0.01em;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  position: relative;
}
.cta-btn.primary {
  background: linear-gradient(90deg, var(--sf-accent) 80%, #FFB400 100%);
  color: #fff;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff;
  color: var(--sf-accent);
  box-shadow: 0 9px 28px 0 rgba(238,133,72,0.12);
  outline: none;
  transform: translateY(-2px) scale(1.03);
  border: 2px solid var(--sf-accent);
}

/* Burger button */
.mobile-menu-toggle {
  background: var(--sf-accent-light);
  color: var(--sf-primary);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  line-height: 1.8rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(238,133,72,0.10);
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
  z-index: 131;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--sf-accent);
  color: #fff;
}

/* ------------ MOBILE NAV MENU ------------ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(39,42,68,0.84);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(0.77,0,0.18,1), opacity 0.30s;
  z-index: 130;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: #fff;
  color: var(--sf-accent);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  margin: 18px 0 2px 16px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(255,255,255,0.25);
  align-items: center;
  justify-content: center;
  display: flex;
  z-index: 132;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--sf-accent);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100vw;
  max-width: 330px;
  margin-top: 14px;
  gap: 8px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  background: none;
  padding: 18px 24px 18px 32px;
  border-radius: 40px 0 0 40px;
  margin-bottom: 4px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--sf-accent);
  color: #fff;
  outline: none;
}

/* Responsive Header/Menu */
@media (max-width: 990px) {
  .main-nav, .cta-btn.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 991px) {
  .mobile-menu, .mobile-menu.open {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ------------ HERO SECTION ------------ */
.hero {
  background: linear-gradient(90deg, var(--sf-accent-light) 70%, #FFFDEE 100%);
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
.hero .container {
  min-height: 320px;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.7rem;
  color: var(--sf-primary);
  margin-bottom: 14px;
  animation: pop-in 1.2s cubic-bezier(.4,0,.2,1) 0.1s both;
}
.subheadline {
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--sf-primary);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.hero .cta-btn {
  margin-top: 16px;
  animation: bounce-in 1.8s .32s both;
}
@keyframes pop-in {
  0% { opacity: 0; transform: scale(.85) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes bounce-in {
  0% { opacity:0; transform: translateY(40px); }
  70% { opacity:1; transform: translateY(-8px); }
  100% { opacity:1; transform: translateY(0); }
}

/* ------------ FEATURES/USPS ------------ */
.features-section {
  background: #fff;
  border-radius: 30px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 8px;
}
.feature-item {
  background: var(--sf-secondary);
  border-radius: 22px;
  padding: 30px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 3px 12px 0 rgba(238,133,72,0.08);
  margin-bottom: 20px;
  border: 2.5px solid transparent;
  transition: border 0.17s, box-shadow 0.17s, background 0.17s;
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.feature-item img {
  width: 42px; height: 42px;
  margin-bottom: 8px;
  animation: twirl 2.4s infinite linear;
}
.feature-item h3 {
  font-size: 1.18rem;
}
.feature-item p {
  font-size: 1.08rem;
  color: var(--sf-primary);
}
.feature-item:hover, .feature-item:focus-within {
  border: 2.5px solid var(--sf-accent);
  background: #fff6ee;
  box-shadow: 0 10px 24px 0 rgba(238,133,72,0.12);
  transform: translateY(-4px) scale(1.015);
}
@keyframes twirl {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ------------ SERVICES LIST (OVERVIEW/DETAIL) ------------ */
.services-list {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin: 10px 0 0 0;
}
.services-list li {
  flex: 1 1 270px;
  background: var(--sf-accent-light);
  border-radius: 24px;
  padding: 26px 18px 26px 22px;
  min-width: 250px;
  box-shadow: 0 1px 7px 0 rgba(238,133,72,0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: background 0.15s, box-shadow 0.15s;
  border: 2px solid var(--sf-accent-light);
  position: relative;
}
.services-list li:hover, .services-list li:focus-within {
  background: #fff;
  border: 2px solid var(--sf-accent);
  box-shadow: 0 8px 24px 0 rgba(238,133,72,0.10);
  transform: translateY(-2px) scale(1.02);
}
.services-list h3 {
  font-size: 1.17rem;
}
.services-list p, .services-list strong {
  color: var(--sf-primary);
  font-size: 1.06rem;
}
.services-list .cta-btn {
  align-self: flex-end;
  margin-top: 10px;
}

/* ------------ TEAM / CARD / GRID ------------ */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-member {
  background: var(--sf-secondary);
  border-radius: 20px;
  padding: 22px 18px;
  min-width: 210px;
  max-width: 320px;
  flex: 1 1 210px;
  box-shadow: 0 2px 12px 0 rgba(39,42,68,0.07);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 6px solid var(--sf-accent);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.card {
  background: #fff;
  border-radius: 21px;
  box-shadow: 0 3px 11px 0 rgba(39,42,68,.06);
  margin-bottom: 20px;
  position: relative;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ------------ TESTIMONIALS ------------ */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 4px 18px 0 rgba(39,42,68,0.06);
  padding: 20px;
  margin-bottom: 20px;
  border-left: 6px solid var(--sf-accent);
  position: relative;
  font-size: 1.07rem;
  color: #22223B;
  transition: box-shadow 0.13s, transform 0.13s;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #272A44;
  font-weight: 700;
  font-size: 1.09rem;
  quotes: "\201C" "\201D";
  margin: 0;
  line-height: 1.6;
  display: block;
  letter-spacing: 0.01em;
}
.testimonial-card strong {
  color: var(--sf-accent);
  font-weight: 800;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 32px 0 rgba(238,133,72,0.13);
  transform: translateY(-2px);
}

.star-ratings {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 12px 0;
}
.star-ratings img {
  width: 32px;
  height: 32px;
  animation: sparkle 2s infinite alternate;
}
@keyframes sparkle {
  0% { filter: brightness(1); }
  80% { filter: brightness(1.3) drop-shadow(0 1px 2px gold); }
  100% { filter: brightness(1); }
}
.star-ratings span {
  font-weight: 700;
  color: var(--sf-primary);
  font-size: 1.08rem;
}

/* ------------ BLOG & ARTICLE LISTS ------------ */
.featured-articles, .article-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 8px 0;
}
.featured-articles li, .article-list li {
  background: var(--sf-secondary);
  padding: 20px 18px;
  border-radius: 20px;
  box-shadow: 0 2px 9px 0 rgba(238,133,72,0.09);
  margin-bottom: 20px;
  flex: 1 1 250px;
}
.featured-articles h3, .article-list h4 {
  font-size: 1.13rem;
  color: var(--sf-accent);
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.category {
  display: inline-block;
  background: var(--sf-accent-light);
  color: var(--sf-accent);
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 19px;
  font-size: .97rem;
  margin-bottom: 7px;
}

/* ------------ SERVICE TABLE ------------ */
.service-comparison {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: 1rem;
  margin: 16px 0 30px 0;
}
.service-comparison th, .service-comparison td {
  border: 1.8px solid var(--sf-secondary);
  padding: 14px 10px;
  text-align: left;
}
.service-comparison th {
  background: var(--sf-accent-light);
  color: var(--sf-accent);
  font-size: 1.1rem;
}
.service-comparison tr:nth-child(even) td {
  background: #fff9f2;
}
.service-comparison tr:hover td {
  background: var(--sf-accent-light);
}
.service-comparison td {
  color: var(--sf-primary);
}

/* ------------ TEXT-IMAGE (IDEALIZED) ------------ */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.text-image-section img {
  border-radius: 17px;
  box-shadow: 0 5px 20px 0 rgba(238,133,72,0.10);
  max-width: 260px;
  margin: 0;
}

/* ------------ CTA SECTION ------------ */
.cta-section {
  background: linear-gradient(90deg, var(--sf-accent) 75%, #FFB400 100%);
  border-radius: 26px;
  padding: 40px 18px;
  box-shadow: 0 8px 40px 0 rgba(238,133,72,0.13);
  color: #fff;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.cta-section h2, .cta-section p {
  color: #fff;
}
.cta-section .cta-btn {
  background: #fff;
  color: var(--sf-accent);
  font-weight: 700;
  margin-top: 12px;
}
.cta-section .cta-btn:hover {
  background: var(--sf-primary);
  color: #fff;
  border: 2px solid #fff;
}

/* ------------ FOOTER STYLES ------------ */
footer {
  background: #272A44;
  color: #fff;
  padding: 48px 0 20px 0;
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
  margin-top: 40px;
  box-shadow: 0 -8px 30px 0 rgba(39,42,68,0.10);
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #fff;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  opacity: .92;
  transition: color .18s, opacity .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--sf-accent);
  opacity: 1;
}
.footer-contact {
  font-size: .99rem;
  line-height: 1.7;
  font-family: 'Open Sans', Arial, sans-serif;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
}
.footer-legal {
  font-size: .92rem;
  opacity: .77;
  margin-top: 10px;
}

/* ------------ COOKIE CONSENT BANNER & MODAL ------------ */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #272A44;
  color: #fff;
  z-index: 2200;
  box-shadow: 0 -6px 28px 0 rgba(39,42,68,0.14);
  padding: 22px 12px 22px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 1rem;
  border-radius: 20px 20px 0 0;
  animation: cookieSlideUp .6s cubic-bezier(.54,2,.41,.95);
}
@keyframes cookieSlideUp {
  0% { transform: translateY(100px); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-consent-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn {
  padding: 8px 15px;
  border-radius: 19px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, border 0.17s;
  outline: none;
  margin-right: 3px;
}
.cookie-btn.accept {
  background: var(--sf-accent);
  color: #fff;
  border: 2px solid var(--sf-accent);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff;
  color: var(--sf-accent);
}
.cookie-btn.reject {
  background: #fff;
  color: var(--sf-accent);
  border: 2px solid var(--sf-accent);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--sf-accent);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--sf-accent-light);
  color: var(--sf-primary);
  border: 2px solid var(--sf-accent-light);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--sf-accent);
  color: #fff;
  border: 2px solid var(--sf-accent);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(39,42,68,0.78);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2250;
  opacity: 0;
  pointer-events: none;
  transition: opacity .29s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 23px;
  padding: 32px 24px 26px 24px;
  box-shadow: 0 12px 54px 0 rgba(39,42,68,0.17);
  max-width: 400px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modalPop .33s ease;
}
@keyframes modalPop {
  0% { opacity: 0; transform: scale(.9); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 14px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--sf-accent);
  cursor: pointer;
  transition: color .14s;
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--sf-accent-light);
  color: var(--sf-primary);
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--sf-accent);
}
.cookie-switch-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-switch {
  appearance: none;
  width: 42px; height: 24px;
  background: var(--sf-secondary);
  border-radius: 14px;
  position: relative;
  outline: none;
  transition: background 0.16s;
  cursor: pointer;
}
.cookie-switch:checked {
  background: var(--sf-accent);
}
.cookie-switch::before {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px 0 rgba(39,42,68,0.13);
  transition: transform 0.18s;
}
.cookie-switch:checked::before {
  transform: translateX(18px);
}
.category-label {
  font-weight: 600;
  color: var(--sf-primary);
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ------------ GENERIC TABLE, LIST, BLOCK STYLES ------------ */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
th, td {
  padding: 12px 10px;
  border-bottom: 1.5px solid var(--sf-secondary);
  text-align: left;
}
th {
  background: var(--sf-accent-light);
  color: var(--sf-accent);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
ul.custom-list, ul li {
  font-size: 1.04rem;
}

/* ------------ RESPONSIVE/UTILITY ------------ */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
}
@media (max-width: 900px) {
  .footer-nav nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .feature-grid, .team-list, .card-container,
  .featured-articles, .article-list, .services-list {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 7px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .hero {
    padding: 18px 0 14px 0;
    min-height: 250px;
  }
  .hero .container {
    min-height: 100px;
    padding: 32px 7px;
    align-items: flex-start;
  }
  h1 {
    font-size: 1.72rem;
    margin-bottom: 16px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.32rem;
    margin-bottom: 12px;
  }
  h3, .services-list h3, .team-member h3 {
    font-size: 1.04rem;
  }
  .section {
    margin-bottom: 38px;
    padding: 20px 8px;
  }
  .features-section, .cta-section {
    border-radius: 16px;
    padding: 22px 5px;
  }
  .feature-item, .team-member, .services-list li,
  .featured-articles li, .article-list li, .testimonial-card {
    min-width: 0;
    padding: 16px 9px;
    border-radius: 15px;
  }
  .card-container, .services-list, .feature-grid, .team-list, .testimonial-card, .featured-articles, .article-list {
    flex-direction: column;
    gap: 14px;
  }
  .cta-btn, .cta-btn.primary {
    padding: 11px 17px;
    font-size: .97rem;
    margin: 7px 0 0 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 7px 18px 11px;
    gap: 11px;
    font-size: .98rem;
  }
  .cookie-modal {
    max-width: 96vw;
    padding: 22px 8px 16px 8px;
  }
}

@media (max-width: 490px) {
  .footer-nav nav {
    flex-direction: column;
    gap: 7px;
  }
  footer {
    padding: 32px 0 12px 0;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
  }
  .cta-section {
    padding: 18px 4px;
  }
}

/* ------------ MICROINTERACTIONS & FUN TOUCHES ------------ */
.cta-btn, .cookie-btn {
  transition: background 0.17s, color 0.17s, border 0.17s, box-shadow 0.14s, transform 0.13s;
}
li, .team-member, .feature-item, .services-list li, .card {
  transition: box-shadow 0.12s, border .14s, transform 0.14s;
}
li:active, .card:active, .cta-btn:active {
  transform: scale(.985) translateY(2px);
}

/* ------------ Misc Helper Styles ------------ */
strong {
  font-weight: 700;
  color: var(--sf-primary);
}
em {
  font-style: italic;
}
blockquote {
  margin: 0;
  padding: 0;
  border-left: 0;
  background: transparent;
  color: var(--sf-accent);
  font-style: italic;
  opacity: .94;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ------------ Accessibility ------------ */
:focus-visible {
  outline: 2.5px dashed var(--sf-accent) !important;
  outline-offset: .5px;
}

/* ------------ Hide elements for a11y JS ----------- */
.sr-only {
  border: 0;
  clip: rect(1px,1px,1px,1px);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px;
}

/* ------------ END SleekFizz Rhetorik style.css ------------ */
