/* === 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}

/* === FONT IMPORTS === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
  --primary: #184E77;
  --secondary: #F0F4F8;
  --accent: #FFB703;
  --gradient-from: #184E77;
  --gradient-to: #FFB703;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Helvetica, Arial, sans-serif;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 6px;
  --shadow-card: 0 4px 24px rgba(24,78,119,0.08);
  --shadow-elevate: 0 8px 32px rgba(24,78,119,0.10);
  --text-dark: #1A2733;
  --text-light: #FFF;
  --text-secondary: #60748A;
  --focus: #FFB703;
  --gap: 24px;
  --container-max: 1120px;
  --transition: 0.25s cubic-bezier(.4, 0, .2, 1);
}

body {
  font-family: var(--font-body);
  background: linear-gradient(135deg, var(--secondary) 60%, #f8fafc 100%);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
  transition: background 0.3s;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 8px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.subheadline {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* ===== HEADER ===== */
.header {
  background: linear-gradient(90deg, var(--gradient-from) 0%, var(--gradient-to) 120%);
  color: var(--text-light);
  padding: 0;
  width: 100%;
  box-shadow: 0 2px 16px rgba(24,78,119,0.045);
  z-index: 40;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 32px;
}
.header img {
  height: 40px;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  color: #f8fafc;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover, .main-nav a:focus {
  background: rgba(255,255,255,0.09);
  color: var(--accent);
}
.cta {
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius-md);
  padding: 10px 26px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-display);
  box-shadow: 0 3px 18px -7px var(--accent);
  margin-left: 12px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
  display: inline-block;
}
.cta.primary {
  background: linear-gradient(90deg, var(--accent) 60%, #ffd360 130%);
  color: var(--primary);
}
.cta.secondary {
  background: var(--primary);
  color: var(--text-light);
  border: 2px solid var(--accent);
  font-weight: 600;
}
.cta:hover, .cta:focus {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 8px 32px -7px var(--primary);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--accent);
  color: var(--primary);
}

/* === MOBILE HEADER & BURGER === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 24px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(24, 78, 119, 0.10);
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 1px 12px var(--accent);
}

.mobile-menu {
  display: none;
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--gradient-from) 70%, var(--accent) 120%);
  color: var(--text-light);
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 24px 16px;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: rgba(255,255,255,0.08);
  color: var(--accent);
  font-size: 2.2rem;
  border-radius: 50%;
  align-self: flex-end;
  margin-bottom: 12px;
  width: 40px;
  height: 40px;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--accent);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 16px 0 16px 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:active, .mobile-nav a:focus {
  background: rgba(255,255,255,0.08);
  color: var(--accent);
}

/* === HERO SECTION === */
.hero {
  width: 100%;
  background: linear-gradient(120deg, var(--primary) 52%, var(--accent) 160%);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin: 34px 0 50px 0;
  padding: 48px 0 48px 0;
}
.hero .container {
  align-items: stretch;
}
.hero .content-wrapper {
  color: #fff;
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #fff;
  font-size: 2.1rem;
}
.hero .subheadline {
  color: #fefefe;
}
.hero .cta {
  margin-top: 16px;
}

/* === FEATURES, STEPPER & CARDS === */
.features {
  width: 100%;
  padding: 40px 0;
}
.features .content-wrapper {
  gap: 24px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin-top: 8px;
}
.feature {
  background: #fff;
  flex: 1 1 220px;
  min-width: 230px;
  max-width: 330px;
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 5px;
}
.feature h3 {
  margin-bottom: 2px;
}
.feature:hover {
  box-shadow: var(--shadow-elevate);
  transform: translateY(-5px) scale(1.0205);
}

/* Stepper for how-it-works */
.stepper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 14px;
}
.step {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 20px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 180px;
  max-width: 250px;
  gap: 10px;
  margin-bottom: 24px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.3rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 0 2px 8px #fbd963be;
  margin-bottom: 6px;
}
.step:hover {
  box-shadow: var(--shadow-elevate);
  transform: translateY(-4px) scale(1.0205);
}

/* ===== SERVICES & OFFER (OFERTA) ===== */
.services {
  width: 100%;
  padding: 40px 0;
}
.services .content-wrapper {
  gap: 24px;
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 24px 0;
  justify-content: flex-start;
}
.service {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px 22px 20px 22px;
  flex: 1 1 260px;
  min-width: 230px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service h2 {
  font-size: 1.2rem;
  margin-bottom: 2px;
}
.service:hover {
  box-shadow: var(--shadow-elevate);
  transform: translateY(-5px) scale(1.0185);
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 16px 0;
}
.service-list li {
  color: var(--text-dark);
  font-size: 1.07rem;
  padding: 10px 12px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 8px rgba(24, 78, 119, 0.03);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  justify-content: space-between;
}
.price {
  color: var(--primary);
  background: var(--secondary);
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-left: 18px;
  font-size: 0.96em;
}

.benefits, .categories {
  width: 100%;
  padding: 40px 0;
}
.benefit-list, .about-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 14px;
}
.benefit-list li, .about-bullets li {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 15px;
  color: var(--text-dark);
  box-shadow: 0 1px 6px rgba(24,78,119,0.02);
  font-size: 1rem;
}

/* === TESTIMONIALS === */
.testimonials {
  background: var(--secondary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin: 42px 0 0 0;
  padding: 40px 0;
}
.testimonials .content-wrapper {
  gap: 28px;
}
.testimonial-slider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 26px 20px 24px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 22px rgba(24, 78, 119, 0.08);
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
  max-width: 360px;
  flex: 1 1 260px;
}
.testimonial-card p {
  color: var(--text-dark);
  font-size: 1.04rem;
  font-style: italic;
}
.testimonial-card .author {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-elevate);
  transform: translateY(-5px) scale(1.0185);
}

/* ========== ADVICE GRID (porady-zakupowe) ========== */
.advice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.advice {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 23px 20px 16px 20px;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 300px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.advice h3 {
  color: var(--primary);
  margin-bottom: 2px;
}
.advice:hover {
  box-shadow: var(--shadow-elevate);
  transform: translateY(-5px) scale(1.019);
}

/* === THANK YOU PAGE === */
.thank-you {
  width: 100%;
  background: linear-gradient(108deg, var(--accent) 36%, var(--primary) 120%);
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin: 42px 0 0 0;
  padding: 64px 0;
}
.thank-you .content-wrapper {
  color: #fff;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.thank-you h1, .thank-you .subheadline {
  color: #fff;
}

/* === CONTACT SECTION === */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 18px 0;
}
.contact-details p, .footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  font-size: 1rem;
}
.contact-map-block {
  margin: 18px 0 0 0;
  padding: 18px 16px 8px 16px;
  background: var(--secondary);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 9px rgba(24, 78, 119, 0.03);
}
.text-section {
  margin: 10px 0 22px 0;
  font-size: 1.02rem;
  color: var(--text-secondary);
}

/* === POLICY & TERMS PAGE LAYOUTS === */
.privacy-policy, .gdpr, .cookies-policy, .terms {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin: 40px 0;
  padding: 40px 0;
}
.privacy-policy .content-wrapper, .gdpr .content-wrapper, .cookies-policy .content-wrapper, .terms .content-wrapper {
  gap: 20px;
  align-items: flex-start;
}
.privacy-policy h1, .gdpr h1, .cookies-policy h1, .terms h1 {
  color: var(--primary);
}
.privacy-policy ul, .terms ul, .gdpr ul, .cookies-policy ul {
  margin-top: 16px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.privacy-policy ul li, .terms ul li, .gdpr ul li, .cookies-policy ul li {
  padding-left: 12px;
  line-height: 1.7;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
}

/* ===== FOOTER ===== */
.footer {
  width: 100%;
  background: linear-gradient(90deg, var(--gradient-from) 0%, var(--gradient-to) 110%);
  color: #fff;
  padding: 36px 0 0 0;
  box-shadow: 0 -2px 16px rgba(24,78,119,0.04);
  margin-top: 36px;
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer .content-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.footer-menu a {
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: color var(--transition);
  padding: 4px 0;
}
.footer-menu a:focus, .footer-menu a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.96rem;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  filter: brightness(90%) sepia(32%) saturate(62%) hue-rotate(175deg);
}
.footer-contact p {
  color: #fff;
  font-family: var(--font-body);
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 2000;
  background: #fffbe7;
  color: var(--primary);
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  box-shadow: 0 -4px 24px rgba(24, 78, 119, 0.15);
  padding: 26px 18px 26px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  animation: cookiefadein 0.66s cubic-bezier(.34,.53,.22,1);
}
@keyframes cookiefadein {
  from { transform: translateY(80px); opacity:0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-left: auto;
}
.cookie-banner button {
  font-size: 1rem;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  background: var(--primary);
  color: #fff;
  margin: 0 2px;
  box-shadow: 0 1px 8px #184e7713;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.cookie-banner button.cookie-settings {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner button.accept {
  background: linear-gradient(90deg, var(--accent) 40%, var(--primary) 160%);
  color: var(--primary);
}
.cookie-banner button.reject {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cookie-banner button.cookie-settings:hover, 
.cookie-banner button.reject:hover {
  background: var(--primary);
  color: var(--accent);
}
.cookie-banner button.accept:hover,
.cookie-banner button:focus {
  background: var(--primary);
  color: #fff;
}

/* COOKIE MODAL OVERLAY */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; width:100vw; height:100vh;
  background: rgba(24, 78, 119, 0.5);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookiefadein 0.4s cubic-bezier(.25, .74, .53, 1.09);
}
.cookie-modal {
  background: #fff;
  padding: 36px 34px 28px 34px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 44px 8px #184e771a;
  max-width: 380px;
  width: 98vw;
  text-align: left;
  animation: modal-in 0.34s cubic-bezier(.44,.60,.35,1.2);
}
@keyframes modal-in {
  from { transform: scale(0.98) translateY(40px); opacity:0; }
  to { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary);
}
.cookie-modal .category-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
  margin-bottom: 18px;
}
.cookie-modal .category {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-modal .category label {
  font-size: 1rem;
  color: var(--text-dark);
}
.cookie-modal .category input[type="checkbox"] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
  border-radius: 3px;
}
.cookie-modal .category.essential label {
  color: var(--text-secondary);
  font-style: italic;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 12px;
}
.cookie-modal .cookie-modal-close {
  background: none;
  color: var(--text-secondary);
  border: none;
  font-size: 1.2rem;
  padding: 3px 11px;
  border-radius: var(--radius-sm);
  margin-left: auto;
  transition: color var(--transition), background var(--transition);
}
.cookie-modal .cookie-modal-close:hover {
  color: var(--primary);
  background: var(--secondary);
}

/* === RESPONSIVE + FLEX MOBILE FIRST === */
@media (max-width: 1120px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 960px) {
  .container {
    max-width: 98vw;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .header .container {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .header .container {
    flex-direction: row;
    gap: 16px;
    padding-left: 10px;
    padding-right: 10px;
    min-height: 62px;
  }
  .main-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .section,
  .features,
  .services,
  .privacy-policy, 
  .gdpr, 
  .cookies-policy, 
  .terms,
  .benefits, 
  .categories {
    padding: 22px 4px 25px 4px;
    margin-bottom: 44px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .feature-grid, .service-grid, .advice-grid, .testimonial-slider {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .stepper {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .benefit-list, .about-bullets {
    gap: 10px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 8px 15px 8px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 9px;
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 520px) {
  .header img {
    height: 32px;
    margin-right: 7px;
  }
  h1 {
    font-size: 1.3rem;
  }
  h2 {
    font-size: 1.05rem;
  }
  .feature, .service, .advice, .step {
    min-width: 0;
    max-width: 100vw;
    padding: 15px 10px 12px 10px;
  }
}

/* === FOCUS STATES, MICRO-INTERACTIONS, ACCESSIBILITY === */
a:focus, button:focus, .cta:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .footer-menu a:focus {
  outline: 2px dashed var(--focus);
  outline-offset: 2px;
}
:active, .cta:active {
  filter: brightness(.93);
}
@media (hover: hover) and (pointer: fine) {
  .cta:hover {
    filter: brightness(.99) contrast(1.13);
    box-shadow: 0 2px 22px -2px var(--accent);
  }
  .feature:hover, .service:hover, .testimonial-card:hover, .advice:hover, .step:hover {
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(24, 78, 119, 0.13), 0 1.5px 10px -3px var(--accent);
    transform: translateY(-6px) scale(1.025);
  }
}

/* ===== UTILITIES ===== */
.text-center {
  text-align: center;
  align-items: center;
  justify-content: center;
}
.text-left {
  text-align: left;
}
.mt-2 { margin-top: 12px; }
.mt-4 { margin-top: 24px; }
.mb-2 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 24px; }

/* --- Accessibility for dark on light in testimonials --- */
.testimonial-card, .testimonial-card p, .testimonial-card .author {
  color: var(--text-dark) !important;
  background: #fff !important;
}

/* --- Hide scroll on body when mobile menu/modal active --- */
body.menu-open, body.modal-open {
  overflow: hidden;
}

/* ===== End of CSS ===== */

