/* --- CSS RESET & BASE -------------------------------------------------- */
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;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-size: 16px;
  background: #FFF7F3;
  color: #2D2F32;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  word-break: break-word;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
a {
  color: #1A4465;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #328B6D;
}
ul, ol {
  margin-left: 1.25rem;
  margin-bottom: 16px;
}
input, textarea, button, select {
  font-family: inherit;
  font-size: 1rem;
}

/* --- BRAND COLORS & FONTS -------------------------------------------------- */
:root {
  --brand-primary: #1A4465;
  --brand-secondary: #EFF4F9;
  --brand-offwhite: #FFF7F3;
  --brand-accent: #4EB393;
  --brand-dark: #183042;
  --brand-grey: #7B838D;
  --brand-warm: #FFF7F3;
  --brand-yellow: #FFDCA9;
  --brand-orange: #FFB976;
  --brand-red: #FF9292;
  --radius-lg: 22px;
  --shadow-s: 0 2px 8px rgba(50, 139, 109, 0.05);
  --shadow-m: 0 4px 20px rgba(50, 139, 109, 0.13);
}
@import url('https://fonts.googleapis.com/css?family=Montserrat:wght@600;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.22; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; font-weight: 600; }
p, li, .subheadline, td, th {
  font-size: 1rem;
  color: #2D2F32;
  font-family: 'Roboto', Arial, sans-serif;
}
.subheadline {
  font-size: 1.16rem;
  color: var(--brand-grey);
  margin-bottom: 20px;
}

/* --- GENERAL SPACING UTILITIES --------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 14px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  background: var(--brand-warm);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: var(--shadow-s);
}

/* --- HEADER & NAVIGATION --------------------------------------------------- */
header {
  background: var(--brand-secondary);
  box-shadow: 0 2px 12px rgba(30,60,80,0.042);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}
nav .logo-link img {
  height: 42px;
  border-radius: 0;
}
nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  margin: 0;
}
nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 12px;
  color: var(--brand-primary);
  transition: background 0.18s;
}
nav ul li a:hover,
nav ul li a:focus {
  background: var(--brand-accent);
  color: #FFF;
}
nav .btn-primary {
  margin-left: 18px;
}
.mobile-menu-toggle {
  display: none;
  background: var(--brand-accent);
  color: #fff;
  border: none;
  padding: 7px 14px;
  font-size: 2rem;
  border-radius: 10px;
  margin-left: auto;
  cursor: pointer;
  transition: filter 0.18s, box-shadow 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  filter: brightness(0.92);
  box-shadow: 0 2px 10px #eee;
}

/* --- MOBILE MENU ---------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 10000;
  box-shadow: 0 4px 36px rgba(50, 139, 109, 0.13);
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.63, .03, .27, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 26px 0 32px;
  opacity: 0;
  visibility: hidden;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: var(--brand-primary);
  background: none;
  border: none;
  cursor: pointer;
  padding-bottom: 18px;
  margin-bottom: 6px;
  border-radius: 50%;
  transition: background 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--brand-accent);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: var(--brand-primary);
  padding: 9px 0 9px 2px;
  border-radius: 10px;
  font-weight: 700;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-accent);
  color: #fff;
}

/* Header responsivity */
@media (max-width: 990px) {
  nav ul { display: none; }
  nav .btn-primary { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 600px) {
  nav {
    flex-wrap: wrap;
    padding: 13px 0;
  }
}

/* --- HERO SECTION ---------------------------------------------------------- */
.hero {
  background: linear-gradient(100deg, #FFF7F3 65%, #FFDCA9 105%);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  box-shadow: var(--shadow-s);
  padding: 56px 0 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}
.hero .subheadline {
  color: #525252;
  font-size: 1.13rem;
  margin-bottom: 16px;
}
.hero .btn,
.hero .btn-accent {
  margin-top: 16px;
}

@media (max-width: 650px) {
  .hero {
    padding: 38px 0 28px 0;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
}

/* --- BUTTONS --------------------------------------------------------------- */
.btn, .btn-primary, .btn-accent {
  appearance: none;
  border: none;
  outline: none;
  padding: 12px 32px;
  border-radius: 18px;
  background: var(--brand-primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-s);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.16s;
  margin-top: 8px;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.btn-primary {
  background: var(--brand-primary);
  color: #fff;
}
.btn-accent {
  background: var(--brand-accent);
  color: #fff;
}
.btn:hover, .btn:focus, .btn-primary:hover, .btn-primary:focus, .btn-accent:hover, .btn-accent:focus {
  filter: brightness(0.95) saturate(1.2);
  box-shadow: 0 6px 22px -6px var(--brand-accent);
  transform: translateY(-2px) scale(1.025);
  outline: none;
}


/* --- FEATURE & CARD LAYOUTS (MANDATORY FLEX) ------------------------------- */
.features .feature-grid,
.values .value-list,
.benefits .benefit-cards,
.company-benefits-list,
.freelancer_benefits_list,
.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 8px;
  margin-top: 12px;
}
.features .feature-grid li,
.values .value-list li,
.benefit-cards li,
.company-benefits-list li,
.freelancer_benefits_list li,
.feature-icons li {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px 24px;
  flex: 1 1 260px;
  min-width: 240px;
  box-shadow: var(--shadow-s);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.18s, transform 0.16s;
  margin-bottom: 20px;
}
.features .feature-grid li:hover,
.values .value-list li:hover,
.benefit-cards li:hover,
.company-benefits-list li:hover,
.freelancer_benefits_list li:hover,
.feature-icons li:hover {
  box-shadow: var(--shadow-m);
  transform: translateY(-2px) scale(1.02);
}
.features .feature-grid img,
.values .value-list img,
.benefit-cards img,
.company-benefits-list img,
.freelancer_benefits_list img {
  width: 40px; height: 40px;
  margin-bottom: 4px;
  border-radius: 12px;
  background: #FFF8F5;
  box-shadow: var(--shadow-s);
}

.service-cards, .solution-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-s);
  flex: 1 1 280px;
  padding: 24px 23px 18px 23px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.service-card:hover {
  box-shadow: var(--shadow-m);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .features .feature-grid, .values .value-list, .benefit-cards, .company-benefits-list, .freelancer_benefits_list, .feature-icons,
  .service-cards, .solution-cards {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .features .feature-grid li, .values .value-list li, .benefit-cards li,
  .company-benefits-list li, .freelancer_benefits_list li, .feature-icons li,
  .service-card {
    padding: 21px 13px 18px 13px;
    min-width: unset;
    font-size: 1rem;
  }
}

/* --- TESTIMONIALS ------------------------------------------------------ */
.testimonials {
  background: var(--brand-secondary);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  padding: 38px 0 40px 0;
  box-shadow: var(--shadow-s);
}
.testimonials .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-s);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 28px 20px 28px;
  min-width: 240px;
  max-width: 340px;
  margin-bottom: 20px;
  align-items: flex-start;
  transition: box-shadow 0.16s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-m);
  transform: scale(1.03) translateY(-2px);
}
.testimonial-author {
  font-weight: 600;
  color: var(--brand-primary);
  font-size: 1rem;
  margin-top: 2px;
}
.star-rating {
  color: #FFB976;
  font-size: 1.25rem;
  letter-spacing: 1px;
}
.testimonials h2 {
  color: var(--brand-primary);
  margin-bottom: 12px;
}

@media (max-width: 800px) {
  .testimonials .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 98vw;
    padding: 18px 12px 16px 12px;
  }
}

/* --- CTA & HIGHLIGHTS -------------------------------------------------- */
.cta {
  background: linear-gradient(100deg, #FFF7F3 65%, #FFDCA9 105%);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 14px #FFE1BC22;
  padding: 30px 0 32px 0;
  margin-bottom: 52px;
  text-align: center;
}
.cta .btn {
  margin-top: 16px;
}
.cta h2 {
  color: var(--brand-primary);
  margin-bottom: 9px;
}

.service-highlights, .plan-features, .key-features, .next-steps {
  list-style: disc inside;
  color: var(--brand-dark);
  padding-left: 0;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-highlights li,
.plan-features li,
.key-features li,
.next-steps li {
  padding-left: 2px;
}

/* --- TABLES PRICING ---------------------------------------------------- */
.pricing-table, .comparison-chart {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: var(--shadow-s);
}
.pricing-table th, .pricing-table td,
.comparison-chart th, .comparison-chart td {
  text-align: left;
  padding: 15px 15px;
  font-size: 1rem;
}
.pricing-table thead, .comparison-chart thead {
  background: var(--brand-accent);
  color: #fff;
}
.pricing-table tbody tr:nth-child(even),
.comparison-chart tbody tr:nth-child(even) {
  background: #F8F7F3;
}
.pricing-table td, .comparison-chart td {
  border-bottom: 1px solid #F0E7E1;
}

@media (max-width: 700px) {
  .pricing-table, .comparison-chart { font-size: 0.97rem; }
  .pricing-table th, .pricing-table td, .comparison-chart th, .comparison-chart td {
    padding: 8px 4px;
  }
}
@media (max-width: 500px) {
  .pricing-table, .comparison-chart, .pricing-table th, .pricing-table td,
  .comparison-chart th, .comparison-chart td { font-size: 0.90rem; }
}

/* --- ACCORDION FAQ ----------------------------------------------------- */
.faq .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-s);
  padding: 18px 22px 10px 22px;
  transition: box-shadow 0.18s;
  margin-bottom: 20px;
}
.faq-item h3 {
  font-size: 1.11rem;
  cursor: pointer;
  margin-bottom: 6px;
  transition: color 0.17s;
  position: relative;
}
.faq-item h3:hover { color: var(--brand-accent); }
.faq-answer {
  color: #444;
  font-size: 1rem;
  padding-top: 6px;
  display: none;
}
.faq-item.active .faq-answer { display: block; animation: fadeIn 0.27s; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- LEGAL / POLICY SECTIONS -------------------------------------------- */
.legal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-s);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.legal h1, .legal h2 {
  margin-bottom: 12px;
}
.legal-text ul, .legal-text ol {
  margin-bottom: 12px;
}
.legal-text li {
  margin-left: 17px;
  margin-bottom: 7px;
}

/* --- FOOTER ------------------------------------------------------------- */
footer {
  background: var(--brand-primary);
  color: #fff;
  margin-top: 32px;
  font-size: 1rem;
}
footer section {
  padding: 32px 0 24px 0;
}
footer .container {
  max-width: 1200px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav.quick-links, footer nav.legal-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
footer nav.quick-links a, footer nav.legal-links a {
  color: #fff;
  opacity: 0.85;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: opacity 0.17s;
}
footer nav.quick-links a:hover, footer nav.legal-links a:hover {
  opacity: 1;
}
footer .contact-info h4 {
  color: #FFDCA9;
  margin-bottom: 8px;
}
footer .contact-info p, footer .contact-info img {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 5px;
}
footer .social-links {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 10px;
}
footer .social-links a img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  transition: box-shadow 0.18s;
}
footer .social-links a:hover img {
  box-shadow: 0 6px 22px -4px var(--brand-accent);
}
@media (max-width: 920px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 23px;
  }
}
@media (max-width: 600px) {
  footer section {
    padding: 18px 0 14px 0;
  }
  footer .content-wrapper {
    gap: 12px;
  }
}

/* --- SPECIAL SECTIONS --------------------------------------------------- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.timeline-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 18px;
}
.timeline-points li {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-s);
  flex: 1 1 210px;
  padding: 20px 16px;
  min-width: 140px;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .timeline-points { flex-direction: column; }
  .timeline-points li { min-width: unset; }
}

.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: 800px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-s);
  margin-bottom: 20px;
  padding: 24px 22px 12px 22px;
  position: relative;
  transition: box-shadow 0.15s, transform 0.15s;
}
.card:hover { box-shadow: var(--shadow-m); transform: scale(1.02); }

/* --- THANK YOU ---------------------------------------------------------- */
.thank-you-message {
  color: #1A4465;
  font-size: 1.18rem;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.next-steps {
  margin-bottom: 16px;
  margin-left: 1.1em;
}

/* --- CONTACT INFO SECTION ----------------------------------------------- */
.contact-info-section ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.contact-info-section li img {
  width: 26px;
  margin-right: 10px;
}

/* --- INTERACTIONS & ANIMATIONS ------------------------------------------ */
.btn,
.btn-primary,
.btn-accent,
.service-card,
.card,
.faq-item,
.testimonial-card {
  transition: box-shadow 0.16s, transform 0.14s, background 0.18s, color 0.18s;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  animation: fadein 0.5s ease-in forwards;
}
@keyframes fadein {
  to {
    opacity: 1;
    transform: none;
  }
}

/* --- RESPONSIVE: SECTIONS & FLEX ---------------------------------------- */
@media (max-width: 1024px) {
  .container { padding: 0 9px; }
}
@media (max-width: 820px) {
  .section, .legal {
    padding: 24px 9px;
  }
}
@media (max-width: 490px) {
  .section, .legal {
    padding: 10px 2px;
    margin-bottom: 35px;
  }
}

/* --- COOKIE CONSENT STYLES ---------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 11000;
  background: #fffbe3;
  color: #342713;
  box-shadow: 0 -3px 24px #FFDCA922, 0 -2px 10px #FFDCA933;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw 19px 6vw;
  gap: 24px;
  font-size: 1rem;
  border-radius: 18px 18px 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(80px);
  transition: opacity 0.33s, transform 0.37s cubic-bezier(.63,.03,.37,1);
}
.cookie-banner.active {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.cookie-banner-message {
  flex: 2 1 200px;
  color: #473A20;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn-cookie {
  background: var(--brand-accent);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 9px 26px;
  box-shadow: var(--shadow-s);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s;
}
.btn-cookie-reject {
  background: #FF9292;
  color: #fff;
}
.btn-cookie-settings {
  background: #FFDCA9;
  color: #47400a;
  border: 2px solid #FFE2B3;
}
.btn-cookie:hover, .btn-cookie:focus,
.btn-cookie-reject:hover, .btn-cookie-settings:hover {
  background: var(--brand-accent);
  color: #fff;
}
.btn-cookie-settings:hover {
  background: #FFD18E;
  color: #473A20;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 12px 13px 12px;
    gap: 10px;
    font-size: 0.95rem;
    border-radius: 12px 12px 0 0;
  }
}

/* --- COOKIE MODAL -------------------------------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  top:0; left: 0; right: 0; bottom:0;
  z-index: 12000;
  background: rgba(33, 37, 38, 0.32);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active { display: flex; animation: fadein 0.23s; }
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-m);
  max-width: 390px;
  width: 93vw;
  padding: 32px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadein 0.26s;
}
.cookie-modal h2 {
  color: var(--brand-primary);
  font-size: 1.22rem;
  margin-bottom: 8px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
}
.cookie-modal-category input[type=checkbox] {
  width: 22px; height: 22px; accent-color: var(--brand-accent); margin-right: 7px;
  border-radius: 8px;
}
.cookie-modal-category label {
  color: var(--brand-dark);
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
)
}
.cookie-modal-category .essential {
  color: #bd8600;
  font-style: italic;
  opacity: 0.82;
  font-size: 0.97em;
}
.cookie-modal .btn {
  margin-top: 8px;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--brand-primary);
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.16s;
}
.cookie-modal-close:hover { background: #fafafa; }

@media (max-width: 430px) {
  .cookie-modal { padding: 18px 7px 13px 7px; }
}

/* --- ACCESSIBILITY: FOCUS ------------------------------------------------ */
a:focus, button:focus, .btn:focus, .faq-item h3:focus {
  box-shadow: 0 0 0 3px #FFDCA9, 0 4px 22px 0px #CCC9;
  outline: none;
}

/* --- UTILITY: HIDE ------------------------------------------------------- */
.hide { display: none !important; }

/* --- MARGIN BETWEEN CARDS ------------------------------------------------ */
.card + .card,
.service-card + .service-card,
.benefit-cards li + li,
.feature-grid li + li,
.value-list li + li,
.timeline-points li + li,
.testimonial-card + .testimonial-card{
  margin-left: 0;
  margin-top: 0;
}

/* --- Z-INDEX STACKING FOR MENUS/BANNERS ---------------------------------- */
.header, header, nav { z-index: 10; position: relative; }
.mobile-menu { z-index: 10000; }
.cookie-banner { z-index: 11000; }
.cookie-modal-overlay { z-index: 12000; }

/* --- SPECIAL: SECTIONS FOR LEGIBILITY (e.g., testimonials) --------------- */
.testimonial-card p, .testimonial-card span {
  color: #2D2F32;
  background: none;
}

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