/* =====================================
   CSS RESET & BASELINE NORMALIZATION
   ===================================== */
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 {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7F8FA;
  color: #233654;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7F8FA;
  color: #233654;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #233654;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus-visible {
  color: #D7A17D;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  list-style: none;
}
strong, b {
  font-weight: bold;
}
button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}
*, *::before, *::after {
  box-sizing: border-box;
}

/* =====================================
   BRAND FONT & BOLD MODERN TYPE SCALE
   ===================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Roboto:wght@400;500;700&display=swap');

:root {
  --color-primary: #233654;
  --color-secondary: #A8C9E8;
  --color-accent: #D7A17D;
  --color-light: #F7F8FA;
  --color-dark: #1d2633;
  --color-neutral: #f2f4f7;
  --color-error: #D84838;
  --color-success: #22C187;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--color-primary);
  margin-bottom: 24px;
  line-height: 1.1;
}

h1 {
  font-size: 2.5rem;
  font-weight: 900;
}
h2 {
  font-size: 2rem;
  font-weight: 800;
}
h3 {
  font-size: 1.5rem;
  font-weight: 800;
}
h4 {
  font-size: 1.25rem;
  font-weight: 700;
}

p, li, a, span, label {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark);
}

.text-section h2, .text-section h3 {
  color: var(--color-primary);
}

.text-section ul {
  padding-left: 24px;
  margin-top: 12px;
  margin-bottom: 24px;
}
.text-section ul li {
  position: relative;
  margin-bottom: 12px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-dark);
  padding-left: 0;
}

/* =====================================
   CONTAINER & FLEXBOX LAYOUTS
   ===================================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-light);
  border-radius: 32px;
  box-shadow: 0 6px 24px rgba(35,54,84,0.07);
  position: relative;
  transition: box-shadow 0.3s;
}
.section:last-child {
  margin-bottom: 0;
}

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

/* FLEXBOX PATTERN CLASSES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(35, 54, 84, 0.12);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  min-width: 260px;
  max-width: 340px;
  transition: transform 0.28s, box-shadow 0.28s;
  z-index: 1;
}
.card:hover, .card:focus-within {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 28px rgba(35, 54, 84, 0.18);
}

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

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(35,54,84,0.10);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 430px;
  flex: 1 1 270px;
  color: #1d2633;
  font-size: 1rem;
  position: relative;
}
.testimonial-card p {
  color: #233654;
  font-size: 1.025rem;
  font-style: italic;
  font-family: var(--font-body);
}
.testimonial-card span {
  font-size: .96rem;
  color: #233654;
  font-family: var(--font-display);
}

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

/* More specific for main lists (features/services/categories) */
.content-wrapper > ul,
.text-section > ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 0;
}
.content-wrapper > ul li,
.text-section > ul li {
  font-size: 1.09rem;
  color: #1d2633;
  font-family: var(--font-body);
  background: none;
  padding-left: 0;
}
.content-wrapper > ul li img {
  margin-right: 12px;
  vertical-align: middle;
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: inline-block;
}

.commitments-badges {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 12px;
}
.commitments-badges img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(35,54,84,0.13));
}

.service-highlights ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.98rem;
}

/* ===============================
   BUTTONS & INTERACTIVE ELEMENTS
   =============================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.08rem;
  color: #fff;
  background-color: var(--color-primary);
  border-radius: 32px;
  padding: 16px 42px;
  margin-top: 18px;
  margin-bottom: 8px;
  min-width: 220px;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(35, 54, 84, 0.12);
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.21s, box-shadow 0.22s, transform 0.22s;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(215,161,125,0.13);
  transform: translateY(-2px) scale(1.04);
}

/* Footer/secondary links */
.footer a {
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 600;
}
.footer a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* ================================
   HEADER & MAIN NAVIGATION
   ================================ */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(35,54,84,0.06);
  position: sticky;
  top: 0;
  z-index: 60;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  min-height: 72px;
}
header img[alt="Patripein Mode"] {
  width: 166px;
  height: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  padding: 6px 20px;
  border-radius: 16px;
  transition: background 0.18s, color 0.16s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--color-secondary);
  color: var(--color-dark);
}

/* ===============
   MOBILE NAVIGATION
   =============== */
.mobile-menu-toggle {
  display: none;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 90;
  border: none;
  transition: background 0.17s, transform 0.19s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 130;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.36s cubic-bezier(.36,0,.64,1), transform 0.45s cubic-bezier(.14,.99,.36,1);
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  right: 26px;
  border-radius: 16px;
  border: none;
  z-index: 141;
  transition: background 0.18s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 90px;
  width: 100%;
  padding: 0 32px;
}
.mobile-nav a {
  font-size: 1.21rem;
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 900;
  padding: 18px 0 14px 0;
  border-bottom: 2px solid var(--color-neutral);
  width: 100%;
  transition: background 0.20s, color 0.15s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent);
  background: var(--color-secondary);
}

@media (max-width: 1024px) {
  header .container {
    flex-direction: row;
    gap: 18px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .main-nav {
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .container {
    max-width: 96vw;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 6px;
    padding: 10px 6px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* =====================================
   HERO SECTIONS
   ===================================== */
section:first-of-type {
  margin-top: 24px;
}
section .container > h1, section .container > h2 {
  margin-bottom: 22px;
}

/* =====================================
   FOOTER
   ===================================== */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 46px 0 34px 0;
}
footer .container {
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  padding-top: 0;
  padding-bottom: 0;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
footer nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  opacity: .96;
}
footer nav a:hover {
  color: var(--color-accent);
  opacity: 1;
}
.contact-info {
  color: var(--color-secondary);
  font-size: 1rem;
  background-color: #E9ECEF;
  font-family: var(--font-body);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  justify-content: flex-start;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 6px;
  align-items: center;
}
.social-links img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 6px rgba(168, 201, 232, 0.13));
  transition: filter 0.14s, transform 0.18s;
  border-radius: 50%;
  background: #fff;
  padding: 5px;
}
.social-links img:hover {
  filter: brightness(1.1) drop-shadow(0 4px 16px rgba(215,161,125,0.12));
  transform: scale(1.14) translateY(-2px);
}

/* =====================================
   SPACING UTILITIES (BOLD WHITESPACE)
   ===================================== */
.mt-40 { margin-top: 40px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }
.pb-40 { padding-bottom: 40px !important; }

/* =====================================
   RESPONSIVE: FLEX DIRECTION & LAYOUTS
   ===================================== */
@media (max-width: 900px) {
  .section {
    border-radius: 18px;
    padding: 28px 8px;
  }
  .content-wrapper, .card-container, .content-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .section {
    margin-bottom: 32px;
    padding: 24px 6px;
    border-radius: 12px;
  }
  .content-wrapper {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 18px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .testimonial-card {
    padding: 17px;
    min-width: 0;
    max-width: 100%;
  }
  .contact-info {
    flex-direction: column;
    gap: 4px;
  }
  footer .container {
    gap: 12px;
  }
}

/* ===============================
   COOKIE CONSENT BANNER & MODAL
   =============================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 1500;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -6px 20px rgba(35,54,84,0.18);
  border-radius: 18px 18px 0 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px 36px;
  font-size: 1.05rem;
  font-family: var(--font-body);
  transition: transform 0.44s cubic-bezier(.14,.99,.36,1), opacity 0.38s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.cookie-banner-buttons .btn-cookie {
  font-family: var(--font-display);
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 11px 23px;
  min-width: 130px;
  border: none;
  background: var(--color-secondary);
  color: var(--color-primary);
  margin: 0 4px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, transform 0.17s;
  text-transform: uppercase;
}
.cookie-banner-buttons .btn-cookie.accept {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-banner-buttons .btn-cookie.accept:hover, .cookie-banner-buttons .btn-cookie.accept:focus {
  background: var(--color-primary);
  color: #fff;
}
.cookie-banner-buttons .btn-cookie.reject {
  background: #E9ECEF;
  color: var(--color-dark);
}
.cookie-banner-buttons .btn-cookie.reject:hover {
  background: var(--color-error);
  color: #fff;
}
.cookie-banner-buttons .btn-cookie.settings {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner-buttons .btn-cookie.settings:hover {
  background: var(--color-primary);
  color: #fff;
}
@media (max-width: 768px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 12px;
    font-size: 0.97rem;
  }
  .cookie-banner-buttons {
    gap: 10px;
  }
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,54,84,0.08);
  z-index: 1700;
  align-items: center;
  justify-content: center;
  transition: opacity 0.33s;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: cookie-modal-fadein 0.29s;
}
@keyframes cookie-modal-fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(35,54,84,0.17);
  max-width: 420px;
  padding: 36px 32px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  font-size: 1.05rem;
  font-family: var(--font-body);
  position: relative;
  animation: cookie-modal-pop 0.35s cubic-bezier(.43,1.33,.7,1);
}
@keyframes cookie-modal-pop {
  0% { transform: scale(0.81) translateY(24px); opacity: 0; }
  90% { transform: scale(1.03) translateY(-3px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  right: 21px;
  top: 21px;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 8px;
  border: none;
  width: 34px;
  height: 34px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.17s, color 0.13s;
}
.cookie-modal-close:hover {
  background: var(--color-error);
  color: #fff;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}
.cookie-category input[type="checkbox"] {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  accent-color: var(--color-accent);
}
.cookie-category label {
  font-family: var(--font-display);
  font-weight: 700;
}
.cookie-category .disabled {
  opacity: 0.63;
}
.cookie-modal-actions {
  margin-top: 14px;
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-actions .btn-cookie {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 30px;
  padding: 10px 21px;
  border: none;
  cursor: pointer;
  background: var(--color-secondary);
  color: var(--color-primary);
  transition: background 0.18s, color 0.19s;
}
.cookie-modal-actions .btn-cookie.accept {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-modal-actions .btn-cookie.accept:hover {
  background: var(--color-primary);
  color: #fff;
}
.cookie-modal-actions .btn-cookie.reject {
  background: #E9ECEF;
  color: var(--color-dark);
}
.cookie-modal-actions .btn-cookie.reject:hover {
  background: var(--color-error);
  color: #fff;
}

@media (max-width: 540px) {
  .cookie-modal {
    max-width: 96vw;
    padding: 18px 6px 18px 9px;
    font-size: 0.93rem;
  }
}

/* =====================================
   CARDS, LISTS, HIGHLIGHTS
   ===================================== */
.card, .testimonial-card, .content-wrapper > ul li {
  box-shadow: 0 2px 6px rgba(35, 54, 84, 0.06);
  border-radius: 18px;
}
.card, .testimonial-card {
  transition: box-shadow 0.19s, transform 0.21s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(215,161,125,0.13);
}

.content-wrapper > ul li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  margin-right: 12px;
  background: var(--color-accent);
  opacity: 0.85;
}
.text-section > ul li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 10px;
  background: var(--color-secondary);
  opacity: 0.8;
}

/* =====================================
   MISC UTILITIES
   ===================================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.04rem;
  color: #1d2633;
  margin-top: 8px;
}

.contact-block {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(35,54,84,0.10);
  padding: 20px 18px;
  margin-bottom: 18px;
  font-family: var(--font-body);
  color: #233654;
}
.contact-block a { color: var(--color-primary); }
.contact-block a:hover { color: var(--color-accent); }

/* =========================================
   MICRO-INTERACTIONS & MOTION
   ========================================= */
.card, .btn-primary, .testimonial-card, .mobile-menu, .cookie-consent-banner {
  will-change: transform, box-shadow, opacity;
}
.btn-primary, .btn-cookie {
  transition: background .18s, color .15s, box-shadow 0.17s, transform 0.16s;
}
.card:hover, .testimonial-card:hover {
  transform: translateY(-3px) scale(1.03);
}

/* =========================================
   BOLD MODERN: COLORS & ACCENTS
   ========================================= */
.section {
  background: var(--color-light);
  border: 2.5px solid var(--color-secondary);
}
.card {
  background: #fff;
  border: 1.5px solid var(--color-secondary);
}
.card::after {
  content: '';
  position: absolute;
  right: -9px;
  top: -9px;
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.card:hover::after {
  opacity: 0.3;
}

.testimonial-card {
  border: 2px solid var(--color-secondary);
  background: #fff;
}
.text-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(168,201,232,0.09);
  padding: 20px 18px 14px 18px;
}

/* =========================================
   BOLD HEADINGS ACCENT LINES
   ========================================= */
.section > .container > h1,
.section > .container > h2 {
  position: relative;
  padding-left: 10px;
}
.section > .container > h1:before,
.section > .container > h2:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 60%;
  background: var(--color-accent);
  border-radius: 5px;
}

/* =========================================
   BOLD & MODERN: GEOMETRIC TOUCHES
   ========================================= */
.section {
  position: relative;
}
.section::before {
  content: '';
  position: absolute;
  left: -18px;
  top: -18px;
  width: 54px;
  height: 54px;
  background: var(--color-secondary);
  opacity: 0.17;
  border-radius: 18px 44px 22px 20px;
  z-index: 0;
  pointer-events: none;
}
.section::after {
  content: '';
  position: absolute;
  right: -12px;
  bottom: -18px;
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  opacity: 0.11;
  border-radius: 20px 0 23px 12px;
  z-index: 0;
  pointer-events: none;
}

/* Responsive: Hide geometric on small screen */
@media (max-width: 768px) {
  .section::before, .section::after {
    display: none;
  }
}

/* =========================================
   ACCESSIBILITY
   ========================================= */
:focus-visible {
  outline: 2.5px solid var(--color-accent);
  outline-offset: 2px;
}

/* =========================================
   END OF CSS FILE
   ========================================= */
