/* --- 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;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #f1faee 0%, #e4eefd 100%);
  font-family: 'Roboto', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  color: #28354D;
  line-height: 1.6;
  overflow-x: hidden;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #1d3557;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #457b9d;
}
img {
  max-width: 100%;
  display: block;
}
ul,ol {
  margin-bottom: 1.5em;
}
strong {
  font-weight: 700;
}

/* --- BRAND COLORS --- */
:root {
  --primary: #1D3557;
  --accent: #224C7A;
  --secondary: #F1FAEE;
  --hover: #457B9D;
  --white: #fff;
  --gray: #f4f7fa;
  --shadow: rgba(34, 76, 122, 0.12);
  --danger: #c82d2d;
  --success: #37aa5e;
  --border: #d7e3ef;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  color: var(--primary);
  margin-bottom: 12px;
}
h1 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
}
p, li, .footer-nav a, .footer-legal a, .footer-contact, .footer-social {
  font-size: 1rem;
  color: #28354D;
}
.center {
  text-align: center!important;
}

/* --- CONTAINER & WRAPPERS --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto 24px auto;
  padding: 0;
}
.content-wrapper.center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- HEADER/NAV STYLES --- */
header {
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 98;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  min-height: 72px;
}
header img {
  height: 38px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial,sans-serif;
  font-size: 1rem;
  color: var(--primary);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  font-weight: 500;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--hover);
  border-bottom: 2px solid var(--hover);
}
header .button.primary {
  margin-left: 18px;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  padding: 8px 12px;
  margin-left: 8px;
  z-index: 110;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: var(--hover);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  right: 0;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.6,0,0.4,1);
  z-index: 2000;
  box-shadow: 2px 0 32px rgba(34, 76, 122, 0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 28px 26px 30px 26px;
  width: 90vw;
  max-width: 330px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  align-self: flex-end;
  padding: 0 0 8px 0;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--hover);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial,sans-serif;
  font-size: 1.12rem;
  color: var(--primary);
  padding: 12px 0;
  font-weight: 500;
  transition: color 0.15s, background 0.15s;
  border-radius: 8px;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--secondary);
  color: var(--hover);
}
/* Hide desktop nav on mobile, show burger */
@media(max-width: 992px) {
  .main-nav, header .button.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block !important;
  }
}
@media(max-width: 992px) {
  header .container {
    gap: 12px;
  }
}

/* --- HERO SECTION --- */
.hero {
  padding: 60px 0 45px 0;
  background: linear-gradient(105deg, #f1faee 44%, #e9f2f9 100%);
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 300px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 580px;
  gap: 18px;
  background: rgba(255,255,255,0.96);
  border-radius: 22px;
  padding: 38px 36px 34px 36px;
  box-shadow: 0 10px 44px -12px var(--shadow);
}
.hero h1 {
  color: var(--primary);
  font-size: 2.1rem;
  margin-bottom: 14px;
  margin-top: 0;
}
.hero p {
  font-size: 1.16rem;
  margin-bottom: 20px;
}

/* --- BUTTONS --- */
.button {
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 130px;
  background: none;
  border: none;
  border-radius: 24px;
  padding: 13px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--shadow);
  transition: background 0.23s, color 0.18s, box-shadow 0.22s;
  text-align: center;
  letter-spacing: 0.01em;
}
.button.primary {
  background: linear-gradient(100deg, var(--primary) 60%, var(--accent) 100%);
  color: var(--secondary);
  border: none;
}
.button.primary:hover,
.button.primary:focus {
  background: linear-gradient(100deg, var(--hover) 45%, var(--primary) 100%);
  color: var(--secondary);
  box-shadow: 0 6px 24px var(--shadow);
}
.button.secondary {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.button.secondary:hover,
.button.secondary:focus {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--hover);
  box-shadow: 0 3px 15px var(--shadow);
}
.button[disabled],
.button.disabled {
  opacity: 0.55;
  pointer-events: none;
}

/* --- FLEXBOX LAYOUT COMPONENTS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 0 0 20px 0;
}
.card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 16px -4px var(--shadow);
  padding: 30px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  flex: 1 1 270px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 4px 28px -4px var(--shadow);
  transform: translateY(-6px) scale(1.015);
}
.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;
    gap: 20px;
    align-items: flex-start;
  }
}

/* --- HOMEPAGE FEATURES GRID --- */
.features-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.feature {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 2px 14px -6px var(--shadow);
  min-width: 260px;
  flex: 1 1 280px;
  min-height: 190px;
  padding: 28px 22px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.15s;
  gap: 12px;
}
.feature img {
  width: 38px; height: 38px; margin-bottom: 7px;
}
.feature h3 {
  font-size: 1.09rem;
  margin-bottom: 6px;
}
.feature p {
  font-size: 1rem;
  color: #35445d;
}
.feature:hover {
  box-shadow: 0 6px 28px -8px var(--shadow);
  transform: translateY(-5px) scale(1.018);
}


/* --- STEPPER --- */
.stepper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.step {
  background: var(--white);
  border-radius: 100px 18px 18px 18px;
  box-shadow: 0 2px 14px -7px var(--shadow);
  min-width: 160px;
  max-width: 220px;
  flex: 1 1 160px;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  font-family: 'Roboto', Arial, sans-serif;
  transition: box-shadow 0.18s, transform 0.17s;
  gap: 7px;
}
.step span {
  display: block;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: var(--secondary);
  font-size: 1.25rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-align: center;
  line-height: 38px;
  margin-bottom: 9px;
}
.step:hover {
  box-shadow: 0 8px 28px -8px var(--shadow);
  transform: translateY(-5px) scale(1.018);
}
.step p {
  font-size: 1.05rem;
}


/* --- TESTIMONIALS --- */
.testimonials-preview {
  margin-bottom: 60px;
  padding: 40px 0;
  background: linear-gradient(95deg, #e6effc 40%, #fdfdfd 120%);
}
.testimonials-preview .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 28px 16px 28px;
  background: var(--secondary);
  border-radius: 15px;
  box-shadow: 0 2px 10px -6px var(--shadow);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 510px;
}
.testimonial-card p {
  font-size: 1.18rem;
  color: #1a263a;
  margin-bottom: 4px;
}
.testimonial-card span {
  font-size: .98rem;
  color: #385073;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- SERVICES PAGE --- */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
}
.service {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 12px -5px var(--shadow);
  padding: 26px 24px 18px 24px;
  min-width: 220px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow 0.17s, transform 0.15s;
}
.service:hover {
  box-shadow: 0 6px 18px -8px var(--shadow);
  transform: translateY(-3px) scale(1.014);
}
.service img {
  width: 35px; height: 35px; margin-bottom: 6px;
}
.service h3 {
  margin-bottom: 7px;
  font-size: 1.12rem;
}

.service-icons-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
}
.service-icons-row img {
  width: 28px; height: 28px;
  margin-bottom: 0;
}

.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.benefit {
  background: var(--white);
  border-radius: 13px;
  box-shadow: 0 2px 12px -5px var(--shadow);
  padding: 22px 18px 17px 18px;
  min-width: 180px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  transition: box-shadow 0.12s, transform 0.13s;
}
.benefit:hover {
  box-shadow: 0 6px 13px -8px var(--shadow);
  transform: translateY(-2px) scale(1.012);
}

/* --- PRICING TABLE --- */
.pricing-table {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.pricing-option {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 2px 15px -6px var(--shadow);
  min-width: 240px;
  max-width: 330px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  padding: 28px 26px 20px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  transition: box-shadow 0.14s, transform 0.14s;
}
.pricing-option h3 {
  font-size: 1.23rem;
  margin-bottom: 8px;
}
.pricing-option p {
  font-size: 1.09rem;
  color: var(--accent);
  font-weight: 600;
}
.pricing-option ul {
  margin-left: 16px;
  margin-bottom: 0;
}
.pricing-option li {
  padding-bottom: 5px;
  font-size: 1rem;
}
.pricing-option:hover {
  box-shadow: 0 8px 24px -9px var(--shadow);
  transform: translateY(-3px) scale(1.017);
}
.price-inclusions p {
  font-size: 1rem;
  margin-bottom: 7px;
}

/* --- FAQ / LEGAL --- */
.faq-preview, .faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.faq-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 10px -7px var(--shadow);
  padding: 24px 18px 14px 18px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-item h3, .faq-item h2 {
  font-size: 1.11rem;
  margin-bottom: 7px;
}
.legal-content {
  margin-bottom: 12px;
}
.legal-content p,
.legal-content li, .legal-content ul {
  font-size: 1rem;
  color: #34435D;
  margin-bottom: 7px;
}
.legal-content ul {
  list-style: disc inside;
  margin-left: 16px;
}

/* --- CONTACT DETAILS --- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}
.contact-details img {
  width: 21px;
  margin-right: 9px;
  vertical-align: middle;
}

/* --- EMBEDDED MAP --- */
.embedded-map {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  background: var(--white);
  border-radius: 9px;
  box-shadow: 0 2px 8px -5px var(--shadow);
  padding: 15px 19px;
  margin-top: 8px;
}
.embedded-map img {
  width: 42px; height: 42px;
}

/* --- PROCESS PAGE --- */
.process-steps {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
}
.process-steps li {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 2px 11px -5px var(--shadow);
  min-width: 190px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  padding: 24px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow 0.16s, transform 0.14s;
}
.process-steps img {
  width: 28px; height: 28px;
}
.process-steps li strong {
  color: var(--accent);
}
.process-steps li:hover {
  box-shadow: 0 8px 20px -8px var(--shadow);
  transform: translateY(-2px) scale(1.013);
}
.process-steps li span {
  font-size: 0.96rem;
  color: #3d5070;
}

/* --- FOOTER --- */
footer {
  background: linear-gradient(125deg,#e6effc 0,#f1faee 90%);
  border-top: 1px solid var(--border);
  padding: 38px 0 18px 0;
  position: relative;
  width: 100%;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav, .footer-legal, .footer-contact, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a, .footer-legal a {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0;
  font-family: 'Montserrat';
  padding: 1px 0;
  transition: color 0.2s;
}
.footer-legal a:hover,
.footer-nav a:hover {
  color: var(--hover);
}
.footer-contact p {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
}
.footer-contact img {
  width: 19px;
}
.footer-social {
  flex-direction: row;
  gap: 18px;
}
.footer-social a img {
  width: 30px;height: 30px;
}
footer span {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 34px;
  font-size: 0.97rem;
  color: #8597C0;
  letter-spacing: 0.02em;
}

/* --- THANK YOU PAGE LOGO --- */
.content-wrapper.center img[alt="Tide Steuerhilfe"] {
  margin: 0 0 18px 0;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  box-shadow: 0 -2px 18px 0 var(--shadow);
  border-top: 1px solid var(--border);
  width: 100vw;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 25px 20px;
  animation: fadeInSlideUp 0.8s;
}
@keyframes fadeInSlideUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.cookie-banner p {
  color: #28517B;
  font-size: 1.03rem;
  font-weight: 500;
  margin-right: 22px;
  flex: 1 0 290px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}
.cookie-banner .button {
  min-width: 90px;
  padding: 9px 18px;
  font-size: 1rem;
  border-radius: 22px;
  box-shadow: 0 1px 3px var(--shadow);
}
.cookie-banner .button.primary { background: var(--success); color: var(--white);}
.cookie-banner .button.secondary { background: var(--danger); color: var(--white); border: none;}
.cookie-banner .button.settings { background: var(--accent); color: var(--white); }
.cookie-banner .button.primary:hover,
.cookie-banner .button.secondary:hover,
.cookie-banner .button.settings:hover {
  opacity: 0.88;
}
@media(max-width: 610px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 15px 10px;
  }
  .cookie-banner p { margin-right: 0; }
}

.cookie-modal-overlay {
  position: fixed;
  left:0;right:0;top:0;bottom:0;
  z-index: 4000;
  background: rgba(42,61,102,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModalBg 0.28s;}
@keyframes fadeInModalBg { from { opacity: 0; } to { opacity: 1; } }

.cookie-modal {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 6px 40px rgba(35,76,122,0.18);
  padding: 36px 30px 22px 30px;
  max-width: 380px;
  width: 88vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeInModal 0.33s;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
.cookie-modal h3 {
  font-size: 1.24rem;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: var(--gray);
  padding: 11px 14px;
  border-radius: 12px;
}
.cookie-category label {
  font-size: 1.04rem;
  flex: 1;
}
.cookie-category input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: var(--accent);
}
.cookie-category .always-on {
  font-size: 0.97rem;
  color: var(--accent);
  margin-left: 11px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 8px;
}
.cookie-modal .button {
  min-width: 90px;
  padding: 9px 20px;
  border-radius: 22px;
  box-shadow: 0 1px 3px var(--shadow);
}
.cookie-modal .button.accept { background: var(--success); color: var(--white); }
.cookie-modal .button.reject { background: var(--danger); color: var(--white); }
.cookie-modal .button.close { background: var(--accent); color: var(--white); }
.cookie-modal .button.accept:hover,
.cookie-modal .button.reject:hover,
.cookie-modal .button.close:hover { opacity: 0.88; }

/* --- MEDIA QUERIES: RESPONSIVENESS --- */
@media(max-width: 1140px) {
  .container { padding-left: 12px; padding-right: 12px; }
}
@media(max-width: 992px) {
  .hero .container { min-height: unset; }
  .features-grid,.services-list,.benefit-grid,.pricing-table,.content-grid,.process-steps,.faq-preview,.faq-accordion {
    flex-direction: column;
    gap: 18px;
  }
  .footer-nav, .footer-legal, .footer-contact, .footer-social {
    gap: 7px;
  }
  .pricing-option,
  .benefit,
  .feature,
  .service,
  .faq-item,
  .card {
    min-width: 0;
    max-width: 100%;
    flex: 1 1 100%;
  }
}
@media(max-width: 768px) {
  .container { max-width: 95vw; }
  h1 { font-size: 1.47rem; }
  h2 { font-size: 1.13rem; }
  .footer-social a img { width: 22px; height: 22px; }
  .hero {
    padding: 40px 0 28px 0;
  }
  .hero .content-wrapper {
    padding: 20px 10px 17px 10px;
    border-radius: 14px;
    max-width: 97vw;
  }
  .content-wrapper, .content-wrapper.center {
    padding: 0;
  }
}
@media(max-width: 560px) {
  .hero {
    padding: 30px 0 17px 0;
  }
  section { padding: 22px 5px; }
  .testimonials-preview, .testimonials-preview .content-wrapper { padding: 7px 0; }
  .container { padding-left: 3px; padding-right: 3px; }
}

/* --- ACCESSIBILITY: FOCUS STATES --- */
a:focus, .button:focus, button:focus, .footer-nav a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- MICRO INTERACTIONS (eg. for FAQ toggle) --- */
.faq-item {
  cursor: pointer;
  transition: background 0.15s;
}
.faq-item:active, .faq-item.open {
  background: var(--gray);
}

/* --- CUSTOM SCROLLBAR FOR MODERN FEEL --- */
::-webkit-scrollbar {
  width: 12px;
  background: var(--secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 6px;
}

/* --- MISC: Z-INDEXS AND UTILS --- */
.sticky {
  position: sticky;
  top: 0;
  z-index: 1001;
}

/* --- Hide elements by utility --- */
.hide {
  display: none!important;
}

/* --- END OF STYLES --- */
