/* =======================
   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 {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  height: 100%;
}
body {
  min-height: 100vh;
  min-width: 320px;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  color: #22425b;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  background: none;
  color: #22425b;
  text-decoration: none;
  outline: none;
  transition: color 0.18s linear;
}
a:active, a:focus {
  outline: 2px solid #b8a174;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: none;
  border: none;
  padding: 0;
  outline: none;
  cursor: pointer;
  appearance: none;
  transition: background 0.18s, color 0.18s;
}
input, textarea, select {
  font: inherit;
  font-size: 1em;
  color: #22425b;
}
strong, b {
  font-weight: 700;
}

/* ===========================================
   GEOMETRIC STRUCTURED DESIGN SYSTEM VARIABLES
   =========================================== */
:root {
  --color-primary: #22425b;
  --color-secondary: #b8a174;
  --color-accent: #ededed;
  --color-bg: #fff;
  --color-card-bg: #f9fafb;
  --color-grey-50: #ededed;
  --color-grey-100: #e3e3e3;
  --color-grey-700: #33506c;
  --color-dark-text: #1c2834;
  --color-success: #178a59;
  --color-error: #b4002d;
  --shadow-drop: 0 2px 16px 0 rgba(34, 66, 91, .08);
  --shadow-card: 0 2px 12px 0 rgba(34,66,91,0.08);
  --radius-default: 14px;
  --radius-card: 18px;
  --radius-button: 8px;
  --radius-circle: 100px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  --transition-fast: 0.18s cubic-bezier(.55,.03,.78,.23);
  --transition-medium: 0.28s cubic-bezier(.42,0,.79,1.19);
  --nav-height: 72px;
}

/* =======================
   TYPOGRAPHY
   ======================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.18;
  margin-bottom: 24px;
  letter-spacing: -1px;
  text-transform: none;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: none;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0px;
  text-transform: none;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 700;
}
p, ul, ol, li, blockquote {
  font-family: var(--font-body);
  color: var(--color-dark-text);
  font-size: 1rem;
  margin-bottom: 16px;
}
p:last-child, ul:last-child, ol:last-child, .text-section p:last-child {
  margin-bottom: 0;
}
.text-section ul, .text-section ol, .features ul, .features ol {
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 1rem;
}
.text-section li, .features li {
  margin-bottom: 10px;
  list-style: disc inside;
}
.text-section li:last-child, .features li:last-child {
  margin-bottom: 0;
}
strong {
  font-weight: 700;
}

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.38rem; }
  h3 { font-size: 1.09rem; }
}

/* =======================
   GEOMETRIC CONTAINER SYSTEM
   ======================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

/* =======================
   HEADER & NAVIGATION
   ======================= */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(34, 66, 91, 0.06);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: var(--nav-height);
}
.logo img {
  max-height: 48px;
  width: auto;
  margin-right: 20px;
  padding: 4px 0;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  flex: 1 1 auto;
  margin-left: 30px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  padding: 6px 0;
  border-bottom: 2.5px solid transparent;
  transition: border-color 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-secondary);
  border-bottom: 2.5px solid var(--color-secondary);
}

.btn-primary, .btn-secondary {
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-button);
  padding: 12px 26px;
  font-size: 1.03rem;
  line-height: 1.18;
  cursor: pointer;
  display: inline-block;
  margin-left: 26px;
  z-index: 2;
  box-shadow: var(--shadow-drop);
  transition: background .2s, color .2s, box-shadow .25s;
  text-align: center;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  letter-spacing: 0.1em;
  box-shadow: 0 2px 8px rgba(34,66,91,0.12);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 3px 16px rgba(34,66,91,0.18);
}
.btn-secondary {
  background: var(--color-secondary);
  color: #fff;
  letter-spacing: 0.08em;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(34,66,91,0.15);
}

@media (max-width: 1020px) {
  .main-nav { gap: 13px; margin-left: 13px; }
  .btn-primary, .btn-secondary { margin-left: 10px; padding: 12px 18px; }
}
@media (max-width: 800px) {
  header .container { padding-left: 12px; padding-right: 12px; }
}

/* ====================
   MOBILE NAVIGATION
   ==================== */
.mobile-menu-toggle {
  display: none;
  background: var(--color-primary);
  color: #fff;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-circle);
  align-items: center;
  justify-content: center;
  margin-left: 13px;
  transition: filter .18s;
  z-index: 55;
  position: relative;
  border: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  filter: brightness(0.92);
}

.mobile-menu {
  background: var(--color-primary);
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.42,0,.79,1.19);
  box-shadow: 0 12px 42px 0 rgba(34,66,91,0.20);
  padding-top: 22px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 0 18px 13px 0;
  border: none;
  line-height: 1;
  transition: color .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 38px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  padding: 16px 0;
  border-radius: var(--radius-default);
  transition: background 0.16s, color 0.15s;
  text-align: left;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(184,161,116,0.14);
  color: var(--color-secondary);
}

@media (max-width: 1100px) {
  .main-nav, .btn-primary { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 1101px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* ========================
   HERO SECTIONS
   ======================== */
.hero {
  background: var(--color-primary);
  background-image: url('../assets/bg-geometry.svg');
  background-size: cover;
  background-position: center right;
  color: #fff;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 6px 32px 0 rgba(34,66,91,0.13);
  margin-bottom: 62px;
  padding: 46px 0 62px 0;
  position: relative;
}
.hero .container, .hero .content-wrapper {
  align-items: flex-start;
  gap: 28px;
}
.hero h1, .hero h2, .hero p {
  color: #fff;
}
.hero .btn-primary {
  margin-left: 0;
  margin-top: 12px;
}
@media (max-width: 900px) {
  .hero {
    padding: 32px 0 38px 0;
    border-radius: 0 0 28px 28px;
  }
}
@media (max-width: 700px) {
  .hero {
    padding: 18px 0 22px 0;
    border-radius: 0 0 15px 15px;
  }
  .hero .container { padding-left: 8px; padding-right: 8px; }
}

/* =========================
   FLEXBOX LAYOUTS
   ========================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-default);
  box-shadow: 0 1.5px 10px rgba(34,66,91,.08);
  margin-bottom: 20px;
  font-size: 1.06rem;
  color: var(--color-dark-text);
  border-left: 6px solid var(--color-secondary);
  transition: box-shadow .18s, border-color .22s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 20px rgba(34,66,91,.14);
  border-left-color: var(--color-primary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Features section flex grid  (UL/OLs used as flexbox grid here) */
.feature-grid, .step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 0 0;
  padding: 0;
}
.feature-grid li, .step-list li {
  background: var(--color-card-bg);
  border-radius: var(--radius-default);
  box-shadow: 0 2px 12px 0 rgba(34,66,91,0.05);
  flex: 1 1 272px;
  min-width: 220px;
  max-width: 300px;
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  border: 2.5px solid transparent;
  margin-bottom: 12px;
  transition: box-shadow .18s, border-color .16s;
  position: relative;
}
.feature-grid li img {
  width: 40px; height: 40px; margin-bottom: 12px;
}
.feature-grid li:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 4px 14px rgba(34,66,91,0.18);
}

@media (max-width: 1100px) {
  .feature-grid li, .step-list li { min-width: 210px; }
}
@media (max-width: 800px) {
  .feature-grid, .step-list {
    gap: 14px;
  }
  .feature-grid li, .step-list li {
    max-width: 100%;
    min-width: 170px;
    flex: 1 1 47%;
  }
}
@media (max-width: 600px) {
  .feature-grid, .step-list {
    flex-direction: column;
  }
  .feature-grid li, .step-list li {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}

/* Services block */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 14px 0;
}
.service-item {
  background: var(--color-accent);
  border-radius: var(--radius-default);
  box-shadow: var(--shadow-card);
  padding: 24px 18px 18px 18px;
  flex: 1 1 272px;
  min-width: 220px;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  border-left: 6px solid var(--color-primary);
  position: relative;
  transition: box-shadow .19s, border-color .18s;
}
.service-item:hover {
  box-shadow: 0 6px 26px rgba(34,66,91,.15);
  border-left-color: var(--color-secondary);
}
.service-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-secondary);
  font-size: 1.1rem;
  margin-top: 7px;
}
@media (max-width: 800px) {
  .service-list { gap: 14px; }
  .service-item { min-width: 140px; flex: 1 1 47%; }
}
@media (max-width: 600px) {
  .service-list { flex-direction: column; }
  .service-item { min-width: 0; max-width: 100%; width: 100%; }
}

/* =======================
   TESTIMONIALS
   ======================= */
.testimonials {
  padding: 36px 0;
}
.testimonials .testimonial-card {
  margin-bottom: 20px;
}
.customer-stats {
  margin-top: 16px;
  font-family: var(--font-display);
  color: var(--color-secondary);
  font-size: 1.18rem;
  background: #fffbe4;
  border-radius: var(--radius-default);
  padding: 16px 26px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(184,161,116,.10);
}

/* ===================
   CONTACT INFO BLOCK
   =================== */
.contact-info {
  margin: 14px 0 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 1rem;
}
.contact-info a {
  color: var(--color-secondary);
  font-weight: 700;
  word-break: break-word;
}
.contact-info a:hover {
  color: var(--color-primary);
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: var(--color-accent);
  padding: 38px 0 28px 0;
  border-radius: 38px 38px 0 0;
  box-shadow: 0 -2px 12px rgba(34,66,91,0.06);
  margin-top: 52px;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-logo img {
  width: 57px;
  height: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 600;
  opacity: .92;
  transition: color .13s, opacity .12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-secondary);
  opacity: 1;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.98rem;
  color: var(--color-primary);
  opacity: .95;
}
.footer-contact a {
  color: var(--color-secondary);
  font-weight: 600;
  transition: color .15s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: var(--color-primary);
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
  }
  footer {
    padding: 24px 0 18px 0;
    margin-top: 32px;
    border-radius: 24px 24px 0 0;
  }
}

/* =====================
   FAQ ACCORDION
   ===================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}
.faq-item {
  background: var(--color-card-bg);
  border-radius: var(--radius-default);
  box-shadow: 0 1.5px 8px rgba(34,66,91,.06);
  padding: 17px 18px;
  cursor: pointer;
  border-left: 4px solid var(--color-secondary);
  transition: box-shadow 0.17s;
  position: relative;
}
.faq-item h3 {
  margin-bottom: 9px;
}
.faq-item.open, .faq-item:hover {
  box-shadow: 0 4px 14px rgba(34,66,91,0.13);
}
.faq-answer {
  color: var(--color-dark-text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding-top: 6px;
  line-height: 1.5;
}

/* ======================
   LEGAL TEXTS
   ====================== */
.legal-text {
  background: var(--color-accent);
  border-radius: var(--radius-default);
  box-shadow: var(--shadow-card);
  padding: 28px 22px;
  color: var(--color-dark-text);
  font-size: 1.03rem;
  margin-top: 19px;
  line-height: 1.75;
  border-left: 6px solid var(--color-secondary);
}
.legal-text ul {
  margin: 12px 0 0 0;
  padding-left: 19px;
}
.legal-text li { margin-bottom: 6px; }

/* Thank you message */
.thank-you-message {
  font-size: 1.28rem;
  font-family: var(--font-display);
  color: var(--color-secondary);
  margin: 20px 0 !important;
  font-weight: 600;
}

/* ===================
   RESPONSIVENESS
   =================== */
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  .container { max-width: 99vw; }
  .content-wrapper { max-width: 99vw; }
}
@media (max-width: 700px) {
  body { font-size: 15px; }
  h2 { font-size: 1.18rem; }
  .section { padding: 20px 2px; }
}

/* ================
   TRANSITIONS
   ================ */
.btn-primary, .btn-secondary, .main-nav a, .footer-nav a, .mobile-menu, .mobile-nav a, .service-item, .feature-grid li {
  transition: box-shadow .18s, background .16s, color .14s, border .14s;
}

/* ================
   MICROINTERACTIONS
   ================ */
.card:hover, .service-item:hover, .feature-grid li:hover, .testimonial-card:hover {
  box-shadow: 0 6px 26px rgba(34,66,91,.10), 0 2px 12px rgba(184,161,116,.06);
  position: relative;
  z-index: 3;
}

/* ===========
   UTILITIES
   =========== */
.break { flex-basis: 100%; height: 0; }
.z-top { z-index: 999; }

/* ============== COOKIE CONSENT BANNER ============== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 3px solid var(--color-secondary);
  box-shadow: 0 -2px 16px rgba(34,66,91,.11);
  padding: 22px 40px 18px 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  z-index: 300;
  animation: cookie-slide-up .44s cubic-bezier(.34,.98,.78,.23);
}
.cookie-banner p {
  color: var(--color-primary);
  font-size: 1rem;
  margin: 0 20px 0 0;
  flex: 1;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: var(--radius-default);
  border: none;
  padding: 11px 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 1px 7px rgba(34,66,91,0.10);
  transition: background .14s, color .13s;
}
.cookie-banner .accept {
  background: var(--color-success);
  color: #fff;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus { background: #146849; }
.cookie-banner .reject {
  background: var(--color-error);
  color: #fff;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus { background: #990024; }
.cookie-banner .settings {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus { background: var(--color-primary); }

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 7px 11px 7px;
    gap: 10px;
  }
  .cookie-banner p { font-size: 0.96rem; }
  .cookie-banner .cookie-actions { gap: 6px; }
}

/* Cookie modal (cookie settings modal) */
.cookie-modal {
  position: fixed;
  z-index: 401;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(34,42,81,.46);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-appear 0.32s cubic-bezier(.42,0,.79,1.19);
}
.cookie-modal-content {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px 24px 28px;
  min-width: 330px;
  max-width: 99vw;
  box-shadow: 0 7px 36px rgba(34,66,91,.16);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 6px;
  letter-spacing: 0px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 18px;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--color-primary);
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 7px 0;
}
.cookie-category .switch {
  width: 38px;
  height: 24px;
  background: var(--color-grey-100);
  border-radius: 12px;
  position: relative;
  margin-right: 7px;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-category .switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-category .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(34,66,91,.08);
  transition: left .2s;
}
.cookie-category .switch input:checked + .slider {
  left: 16px;
  background: var(--color-secondary);
}
.cookie-category .always-on {
  color: var(--color-primary);
  font-size: 0.92rem;
  background: var(--color-accent);
  border-radius: 28px;
  padding: 3.5px 13px;
  font-weight: 600;
  margin-left: 6px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  font-family: var(--font-display);
  font-size: 1.04rem;
  border-radius: var(--radius-default);
  border: none;
  padding: 10px 18px;
  font-weight: 700;
  margin-top: 6px;
  transition: background .13s, color .13s;
  cursor: pointer;
  box-shadow: 0 1px 7px rgba(34,66,91,0.10);
}
.cookie-modal-actions .save {
  background: var(--color-success);
  color: #fff;
}
.cookie-modal-actions .save:hover,
.cookie-modal-actions .save:focus { background: #146849; }
.cookie-modal-actions .cancel {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-modal-actions .cancel:hover, .cookie-modal-actions .cancel:focus {
  background: var(--color-primary);
}
@media (max-width: 500px) {
  .cookie-modal-content { min-width: 0; padding: 18px 5px 10px 11px; }
}

@keyframes cookie-slide-up {
  from { transform: translateY(160px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes modal-appear {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Focus highlights for accessibility on all buttons/links */
button:focus-visible, a:focus-visible, .btn-primary:focus-visible, .btn-secondary:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
  z-index: 2;
}

/* ==============
   GEOMETRIC DECORATIVE ACCENTS
   ============== */
.feature-grid li::before, .service-item::before {
  content: "";
  display: block;
  width: 32px;
  height: 5px;
  border-radius: 3px;
  background: var(--color-secondary);
  margin-bottom: 9px;
  opacity: 0.19;
}
.feature-grid li img {
  margin-top: -13px;
  margin-bottom: 3px;
}

/* ==== Only for hero and accent sections: example geometric effect === */
.hero::after {
  content: '';
  display: block;
  position: absolute;
  right: 0; bottom: -19px;
  width: 180px; height: 49px;
  background: var(--color-secondary);
  opacity: 0.20;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  border-radius: 0 0 33px 0;
  z-index: 0;
}

/* Typography for section headings geometric accent bars */
.content-wrapper > h2, .content-wrapper > h1 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.content-wrapper > h2::before, .content-wrapper > h1::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 6px;
  border-radius: 3px;
  background: var(--color-secondary);
  opacity: 0.39;
}

/* angular font for numbers and stat highlights */
.customer-stats strong, .service-price {
  font-family: var(--font-display);
  font-feature-settings: "ss01" on, "lnum" on;
  letter-spacing: 0.02em;
}

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