/* Turkusowe Tłumaczenia – Vibrant Energetic Style CSS */
/* CSS RESET & 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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #F3F6F7;
  color: #15344D;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #007C8A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #00D9AB;
}

/* BRAND COLORS */
:root {
  --primary: #007C8A;
  --primary-rgb: 0,124,138;
  --secondary: #15344D;
  --accent: #F3F6F7;
  --electric-cyan: #26F0FF;
  --hot-pink: #FF008A;
  --vivid-yellow: #ffe23b;
  --electric-green: #00ffa7;
  --white: #fff;
  --black: #11142d;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -1px;
}
h1 {
  font-size: 2.7rem; /* 43px */
  line-height: 1.12;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem; /* 20px */
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol {
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 1rem;
  font-family: "Roboto", Arial, sans-serif;
}
ul, ol {
  padding-left: 24px;
}
strong, b {
  font-weight: 700;
}
.text-section {
  margin-bottom: 24px;
}
span.service-price {
  background: var(--electric-cyan);
  color: var(--black);
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0 3px;
}

/* RESPONSIVE TYPOGRAPHY */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
  p, ul, ol { font-size: 0.98rem; }
}

/* BUTTONS */
.btn-primary, .main-nav .btn-primary, .mobile-nav .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #007C8A 60%, #00D9AB 100%);
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 34px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  transition: background 0.22s, transform 0.14s, box-shadow 0.22s;
  box-shadow: 0 3px 16px 0 rgba(0,124,138,0.09);
  margin-top: 18px;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #00D9AB 40%, #007C8A 100%);
  color: #ffe23b;
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 6px 24px 0 rgba(0,124,138,0.17);
}
button, .btn-primary {
  outline: none;
}

/* LAYOUT: CONTAINER, SECTIONS, CARDS, WRAPPERS */
.container {
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 3px 18px 0 rgba(0,124,138,0.09);
  position: relative;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--accent);
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 18px 0 rgba(0,124,138,0.07);
  padding: 28px;
  flex: 1 1 320px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  transition: box-shadow 0.21s, transform 0.19s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 32px 0 rgba(0,124,138,0.15);
  transform: translateY(-3px) scale(1.03);
}

.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;
    align-items: flex-start;
    gap: 22px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F3F6F7;
  border: 2.5px solid var(--electric-cyan);
  border-radius: 18px;
  font-size: 1.05rem;
  color: var(--secondary);
  box-shadow: 0 4px 16px 0 rgba(0,124,138,0.12);
  margin-bottom: 20px;
  transition: box-shadow 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(0,124,138,.21);
  background: #fff;
  transform: translateY(-2px);
}
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 0 0 10px 0;
  border-left: 5px solid var(--hot-pink);
  padding-left: 16px;
}

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

.process-steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 22px;
}
.process-steps-grid > div {
  flex: 1 1 220px;
  min-width: 220px;
  background: var(--electric-green);
  background: linear-gradient(90deg, #26F0FF 0%, #00ffa7 100%);
  color: #15344D;
  border-radius: 20px;
  padding: 22px 18px 20px 18px;
  box-shadow: 0 2px 10px 0 rgba(0, 220, 196, 0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.14s;
}
.process-steps-grid > div img {
  height: 44px;
  width: 44px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 4px rgba(0,124,138,0.08));
}
.process-steps-grid > div:hover {
  box-shadow: 0 8px 28px 0 rgba(0,220,196,0.17);
  transform: translateY(-4px);
}
@media (max-width: 992px) {
  .process-steps-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .process-steps-grid > div {
    min-width: unset;
  }
}

/*****************************
HEADER & NAVIGATION
*****************************/
header {
  background: var(--white);
  box-shadow: 0 2px 8px 0 rgba(21,52,77,.06);
  width: 100%;
  z-index: 11;
  position: relative;
}
.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 11px 0;
  width: 100%;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--secondary);
  padding: 12px 20px;
  border-radius: 20px;
  transition: background 0.16s, color 0.11s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--electric-cyan);
  color: var(--hot-pink);
}
.main-nav .btn-primary {
  margin-left: 10px;
  font-size: 1rem;
}
.mobile-menu-toggle {
  display: none;
  background: var(--hot-pink);
  color: var(--white);
  font-size: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.21s;
  box-shadow: 0 2px 12px 0 rgba(255,0,138,0.09);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--vivid-yellow);
  color: var(--secondary);
  box-shadow: 0 5px 32px 0 rgba(255,0,138,0.17);
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/*****************************
MOBILE MENU
*****************************/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(21,52,77,0.97);
  z-index: 33;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.68,-0.21,.28,1.22);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 220px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--electric-cyan);
  color: var(--hot-pink);
  font-size: 2.4rem;
  border: none;
  border-radius: 16px;
  margin: 20px 0 12px 20px;
  cursor: pointer;
  width: 44px; height: 44px;
  transition: background 0.2s,color 0.13s;
  box-shadow: 0 2px 12px 0 rgba(38,240,255,0.11);
  align-items: center;
  display: flex;
  justify-content: center;
  outline: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--vivid-yellow);
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin: 16px 0 0 24px;
}
.mobile-nav a {
  color: var(--electric-cyan);
  background: none;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 6px;
  width: 84vw;
  max-width: 320px;
  transition: background 0.12s, color 0.08s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--hot-pink);
  color: #fff;
}
@media (min-width:993px) {
  .mobile-menu { display: none !important; }
}

/*****************************
HERO SECTION
*****************************/
.hero {
  background: linear-gradient(99deg, #26F0FF 0%, #007C8A 80%);
  color: var(--secondary);
  margin-bottom: 60px;
  padding: 70px 0 60px 0;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 10px 36px 0 rgba(0,124,138,0.08);
  position: relative;
}
.hero .container, .hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero h1 {
  color: var(--secondary);
  text-shadow: 1px 2px 0 var(--electric-cyan);
  letter-spacing: -2px;
  font-size: 2.6rem;
  margin: 0 0 14px 0;
}
.hero p {
  color: var(--black);
  font-size: 1.2rem;
  margin: 0 auto 14px auto;
  max-width: 540px;
}
.hero .btn-primary {
  font-size: 1.18rem;
  background: linear-gradient(90deg, #FF008A 20%, #007C8A 80%);
}
.hero .btn-primary:hover {
  background: linear-gradient(90deg, #007C8A 5%, #26F0FF 95%);
  color: var(--vivid-yellow);
}
@media (max-width: 768px) {
  .hero {
    padding: 34px 0 26px 0;
    border-radius: 0 0 28px 28px;
  }
  .hero h1 { font-size: 1.48rem; }
}

/*****************************
FEATURES SECTION
*****************************/
.features {
  background: var(--white);
  border-radius: 20px;
  margin-bottom: 50px;
  padding: 32px 20px;
  box-shadow: 0 2px 16px 0 rgba(0,124,138,0.06);
}
.features h2 {
  color: var(--primary);
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  list-style: none;
}
.features ul li {
  flex: 1 1 210px;
  background: var(--electric-green);
  color: #15344D;
  border-radius: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  padding: 18px 18px 16px 16px;
  box-shadow: 0 2px 12px 0 rgba(0, 220, 196, 0.07);
  margin-bottom: 10px;
  min-width: 180px;
  transition: box-shadow 0.19s, transform 0.14s;
}
.features ul li:hover {
  box-shadow: 0 10px 32px 0 rgba(0,220,196,0.18);
  background: #fff;
  transform: translateY(-2px);
  color: var(--hot-pink);
}
@media (max-width: 992px) {
  .features ul {
    flex-direction: column;
  }
}

/*****************************
SERVICES SECTION
*****************************/
.services, .services-list {
  background: var(--accent);
  border-radius: 20px;
  padding: 30px 20px 30px 20px;
  margin-bottom: 50px;
  box-shadow: 0 2px 10px 0 rgba(0,124,138,0.07);
}
.services h2, .services-list h1 {
  color: var(--primary);
}
.services ul, .services-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
}
.services ul li, .services-list ul li {
  background: #fff;
  color: var(--secondary);
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(0,124,138,0.08);
  padding: 18px 22px 14px 22px;
  min-width: 230px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s, transform 0.13s;
}
.services ul li a, .services-list ul li a {
  margin-top: 6px;
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  font-size: 1.03rem;
  transition: color 0.15s;
}
.services ul li a:hover, .services-list ul li a:hover {
  color: var(--hot-pink);
}
.services-list ul li img {
  height: 32px;
  width: 32px;
  margin-bottom: 7px;
  filter: drop-shadow(0 1px 6px rgba(0,124,138,0.13));
}
@media (max-width: 992px) {
  .services ul, .services-list ul {
    flex-direction: column;
  }
}

/*****************************
PRICING TABLE
*****************************/
.pricing {
  background: #fff;
  border-radius: 20px;
  padding: 36px 20px 22px 20px;
  margin-bottom: 38px;
  box-shadow: 0 1.5px 10px 0 rgba(0,124,138,0.06);
}
.pricing table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 18px 0;
  font-size: 1.05rem;
}
.pricing th, .pricing td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid #e3ecf0;
}
.pricing thead th {
  background: var(--electric-cyan);
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
}
.pricing tbody tr:hover {
  background: var(--electric-green);
}

/*****************************
CALLOUT & HIGHLIGHTS
*****************************/
.callout, .feature-highlight .callout {
  background: linear-gradient(90deg, #FF008A 20%, #26F0FF 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  border-radius: 12px;
  padding: 18px 28px;
  margin-top: 20px;
  margin-bottom: 18px;
  box-shadow: 0 2px 14px 0 rgba(255,0,138,0.08);
}

/*****************************
TIMELINE BAR IN PROCESS/STEP
*****************************/
.timeline {
  width: 100%;
  background: var(--vivid-yellow);
  color: var(--secondary);
  padding: 20px;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 2px 9px 0 rgba(255,226,59,0.13);
  text-align: center;
  margin-bottom: 12px;
}

/*****************************
TESTIMONIALS
*****************************/
.testimonials {
  background: #fff;
  border-radius: 18px;
  padding: 42px 20px 38px 20px;
  margin-bottom: 50px;
}
.testimonials h2 {
  color: var(--primary);
}
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 16px;
}
@media (max-width: 992px) {
  .testimonials-list {
    flex-direction: column;
  }
}

/*****************************
CTA BANNER
*****************************/
.cta {
  background: linear-gradient(90deg, #00ffa7, #007C8A 84%);
  color: var(--secondary);
  border-radius: 28px;
  padding: 42px 20px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px 0 rgba(0,220,196,0.11);
  text-align: center;
}
.cta h2 {
  color: var(--hot-pink);
  text-shadow: 1px 1px 0 #ffe23b;
  font-size: 2rem;
}
.cta p {
  color: var(--secondary);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.13rem;
}
.cta .btn-primary {
  margin-top: 12px;
}

@media (max-width: 768px) {
  .cta {
    padding: 20px 12px;
    border-radius: 16px;
  }
}

/*****************************
ABOUT, CONTACT, THANK-YOU
*****************************/
.about, .contact, .thank-you, .legal, .faq, .stats, .team {
  background: #fff;
  border-radius: 18px;
  padding: 36px 20px;
  margin-bottom: 48px;
  box-shadow: 0 2px 14px 0 rgba(0,124,138,0.08);
}
.about ul, .stats ul, .team ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: disc inside;
}
.about ul li, .stats ul li, .team ul li {
  min-width: 200px;
  margin-bottom: 10px;
}
.team ul li {
  background: var(--accent);
  border-radius: 10px;
  padding: 14px 14px 10px 14px;
}

/*****************************
CONTACT DETAILS
*****************************/
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 18px;
}
.contact-details > .text-section, .contact-details > ul {
  flex: 1 1 250px;
  min-width: 200px;
}
@media (max-width: 800px) {
  .contact-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/*****************************
FOOTER
*****************************/
footer {
  background: var(--secondary);
  color: #fff;
  margin-top: 44px;
  font-size: 0.98rem;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -2px 19px 0 rgba(21,52,77,0.09);
  padding-top: 30px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1.2px solid rgba(38,240,255,0.17);
  margin-bottom: 14px;
}
.footer-main > * {
  flex: 1 1 190px;
  min-width: 140px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a, .footer-legal a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.13s;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: var(--vivid-yellow);
}
.footer-contact {
  font-family: 'Roboto', Arial, sans-serif;
  color: #fff;
  margin-top: 5px;
}
.footer-bottom {
  text-align: center;
  color: #26F0FF;
  font-size: 1rem;
  margin: 12px 0 0 0;
  letter-spacing: 0.6px;
}
@media (max-width: 992px) {
  .footer-main {
    flex-direction: column;
    gap: 12px;
  }
}

/*****************************
COOKIE CONSENT BANNER + MODAL
*****************************/
.cookie-banner {
  position: fixed;
  z-index: 999;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, #26F0FF 85%, #FF008A 100%);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  gap: 32px;
  box-shadow: 0 -2px 18px 0 rgba(0,220,196,0.14);
  opacity: 1;
  transition: transform 0.34s, opacity 0.2s;
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-msg {
  font-size: 1.08rem;
  max-width: 520px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  padding: 10px 22px;
  cursor: pointer;
  background: var(--primary);
  color: #fff;
  transition: background 0.14s, color 0.14s, transform 0.15s;
  margin-left: 4px;
  margin-right: 4px;
}
.cookie-banner .cookie-settings-btn {
  background: var(--hot-pink);
  color: #fff;
}
.cookie-banner .cookie-reject-btn {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--vivid-yellow);
  color: var(--secondary);
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 19px 11px;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1200;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(21,52,77,.84);
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  max-width: 440px;
  width: 92vw;
  padding: 34px 26px 21px 26px;
  box-shadow: 0 6px 44px 0 rgba(0,220,196,0.21);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: slideYin 0.32s cubic-bezier(.71,.07,.52,.97);
  position: relative;
}
@keyframes slideYin {
  0% { transform: translateY(60px) scale(0.9); opacity: 0; }
  80% { opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
  color: var(--secondary);
}
.cookie-category input[type='checkbox'] {
  width: 18px; height: 18px;
  accent-color: var(--hot-pink);
  margin-right: 8px;
}
.cookie-category input[disabled] {
  accent-color: var(--primary);
  opacity: 0.62;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 10px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: var(--electric-cyan);
  color: var(--hot-pink);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  width: 34px; height: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal .cookie-modal-close:hover {
  background: var(--hot-pink);
  color: #fff;
}

/*****************************
FAQ
*****************************/
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}
.faq-list > div {
  background: var(--accent);
  border-radius: 10px;
  box-shadow: 0 1px 6px 0 rgba(0,124,138,0.05);
  padding: 17px 14px 12px 14px;
  flex: 1 1 322px;
  min-width: 190px;
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .faq-list {
    flex-direction: column;
    gap: 10px;
  }
}

/*****************************
THANK-YOU / NEXT STEPS
*****************************/
.next-steps ul {
  list-style: disc inside;
  color: var(--primary);
  margin-left: 0;
  margin-top: 6px;
}
.next-steps ul li {
  margin-bottom: 7px;
  font-size: 1.04rem;
}

/*****************************
MEDIA QUERIES FOR MOBILE
*****************************/
@media (max-width: 600px) {
  .container {
    padding: 0 8px;
  }
  .hero {
    padding: 14px 0 8px 0;
  }
  .cta, .section, .features, .services, .testimonials {
    padding: 14px 5px;
    border-radius: 12px;
  }
  .footer-main {
    gap: 6px;
  }
}

/*****************************
INTERACTIVE ELEMENTS EFFECTS
*****************************/
.card, .testimonial-card, .process-steps-grid > div, .services ul li, .features ul li {
  transition: box-shadow 0.23s, background 0.14s, transform 0.13s;
}

/* Scrollbar for energetic flavor */
::-webkit-scrollbar {
  width: 10px;
  background: var(--accent);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  background: var(--electric-cyan);
  border-radius: 5px;
  transition: background 0.23s;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--hot-pink);
}

/* Hide outline except for keyboard focus */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2.5px solid var(--hot-pink);
  outline-offset: 1px;
}

/* Utility: visually-hidden for a11y text */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px; overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0; padding: 0; margin: 0;
}

/* Extra responsive adjustments */
@media (max-width: 600px) {
  .content-wrapper, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 12px;
  }
}
