/* --- 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;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.5;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #283053;
  background: linear-gradient(135deg, #FFFFFF 0%, #f9fafc 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #283053;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: 2.2rem; margin-bottom: 20px; }
h2 { font-size: 1.7rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 1rem; }
}
p, ul, ol, li, table, th, td {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #283053;
  font-size: 1rem;
  line-height: 1.7;
}
ul, ol { margin-left: 24px; }
strong, b { font-weight: 700; }

/* --- UTILS --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #283053;
  text-decoration: underline;
  transition: color 0.3s cubic-bezier(.5,1.5,.7,1);
}
a:hover, a:focus {
  color: #FFD700;
  text-decoration: none;
}

/* --- HEADER --- */
header {
  background: linear-gradient(90deg, #fff 60%, #f3f5fa 100%);
  box-shadow: 0 2px 14px -8px rgba(40,48,83,0.09);
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 0;
}
header nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #283053;
  background: none;
  padding: 7px 14px;
  border-radius: 22px;
  transition: background 0.2s, color 0.2s;
}
header nav a.primary-btn {
  color: #fff;
  background: linear-gradient(90deg, #283053 60%, #FFD700 200%);
  background-size: 200% auto;
  font-weight: 700;
  box-shadow: 0 2px 8px -3px rgba(40,48,83,0.11);
  border: none;
  outline: none;
  text-decoration: none;
}
header nav a.primary-btn:hover, header nav a.primary-btn:focus {
  background-position: right center;
  color: #283053;
}
header nav a:hover:not(.primary-btn), header nav a:focus:not(.primary-btn) {
  background: #FFD70022;
  color: #283053;
  text-decoration: underline;
}
header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #283053;
  cursor: pointer;
  margin-left: 16px;
}
@media (max-width: 992px) {
  header .container {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  header nav {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  header .mobile-menu-toggle {
    display: block;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(120deg, #283053 85%, #FFD700 100%);
  color: #fff;
  z-index: 101;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.34s cubic-bezier(.8,.01,.2,1), opacity 0.32s;
  display: flex;
  flex-direction: column;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  right: 22px;
  top: 18px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #FFD700;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin: 100px 0 0 32px;
}
.mobile-menu .mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 8px 30px 8px 0;
  border-radius: 20px;
  transition: background .15s, color .2s;
  background: none;
}
.mobile-menu .mobile-nav a:hover, .mobile-menu .mobile-nav a:focus {
  color: #FFD700;
  background: #fff2;
}
.mobile-menu .mobile-nav a.primary-btn {
  color: #283053;
  background: #FFD700;
  font-weight: 700;
  padding: 10px 32px;
  transition: background .2s, color .2s;
}
.mobile-menu .mobile-nav a.primary-btn:hover {
  background: #fff;
  color: #283053;
}

@media (max-width: 768px) {
  .mobile-menu {
    padding: 0;
  }
  .mobile-menu .mobile-nav {
    margin-left: 20px;
  }
}

/* --- HERO SECTION --- */
.hero {
  width: 100%;
  background: linear-gradient(110deg, #f8fafb 55%, #FFD700 250%);
  min-height: 350px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 640px;
  gap: 20px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #283053;
  background: none;
}
.hero p {
  font-size: 1.14rem;
  margin-bottom: 8px;
  color: #283053;
}
@media (max-width: 900px) {
  .hero .content-wrapper {
    max-width: 100%;
  }
  .hero h1 { font-size: 1.7rem; }
}
@media (max-width: 768px) {
  .hero {
    padding: 36px 0 36px 0;
  }
  .hero .container {
    padding: 0 10px;
  }
  .hero .content-wrapper {
    align-items: flex-start;
    gap: 14px;
  }
}

/* --- SECTION GENERIC SPACING --- */
.section, .features, .about, .values, .testimonials, .pricing, .services, .faq-section, .resources, .contact, .map, .thank-you-section, .legal, .about-preview, .services-preview, .cta {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 768px) {
  .section, .features, .about, .values, .testimonials, .pricing, .services, .faq-section, .resources, .contact, .map, .thank-you-section, .legal, .about-preview, .services-preview, .cta {
    padding: 24px 6px;
    margin-bottom: 32px;
  }
}

/* --- FEATURES GRIDS --- */
.features-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.feature-item, .service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px -6px rgba(40,48,83,.11);
  padding: 24px 22px 20px 22px;
  margin-bottom: 20px;
  transition: box-shadow .2s, transform .2s;
  min-width: 247px;
  flex: 1 1 270px;
  max-width: 316px;
}
.feature-item:hover, .service-item:hover {
  box-shadow: 0 6px 22px -7px rgba(40,48,83,.14);
  transform: translateY(-4px) scale(1.018);
}
.feature-item img, .service-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 0;
}
.features-more ul, .service-benefits ul {
  margin-top: 16px;
  margin-bottom: 0;
  padding-left: 20px;
}
.features-more li, .service-benefits li {
  margin-bottom: 7px;
  padding-left: 5px;
  font-size: 1rem;
  position: relative;
}
.features-more li::before, .service-benefits li::before {
  content: '•';
  color: #FFD700;
  position: absolute;
  left: -13px;
  top: 0;
}
@media (max-width: 992px) {
  .features-grid, .service-list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .features-grid, .service-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .service-item {
    min-width: unset;
    max-width: 100%;
    width: 100%;
  }
}

/* --- GENERAL CARDS, FLEX GRIDS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px -5px rgba(40,48,83,.08);
  padding: 22px 18px;
  transition: box-shadow .2s, transform .21s;
}
.card:hover {
  box-shadow: 0 8px 24px -9px rgba(40,48,83,.15);
  transform: translateY(-2px) scale(1.012);
}

.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) {
  .content-grid { flex-direction: column; gap: 16px; }
  .text-image-section { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* --- ABOUT, VALUES, TEXT SECTIONS --- */
.text-section {
  margin-bottom: 22px;
}
.text-section h3 {
  margin-top: 24px;
  font-size: 1.1rem;
}
.text-section ul {
  margin: 18px 0 0 20px;
  padding: 0;
}
.text-section li {
  margin-bottom: 9px;
  font-size: 1rem;
}

/* --- TESTIMONIALS --- */
.testimonials .testimonial-card, .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFEFA2;
  color: #283053;
  border-radius: 18px;
  padding: 20px 26px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px -6px rgba(40,48,83,.10);
  transition: box-shadow .2s;
  min-width: 220px;
  font-size: 1.05rem;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #283053;
  quotes: '“' '”';
}
.testimonial-card blockquote:before {
  content: open-quote;
  color: #FFD700;
  font-size: 1.5rem;
}
.testimonial-card blockquote:after {
  content: close-quote;
  color: #FFD700;
  font-size: 1.5rem;
}
.testimonial-card p {
  font-size: 0.98rem;
  color: #283053;
  margin-bottom: 0;
}

/* --- CTA --- */
.cta {
  background: linear-gradient(90deg, #FFD70022 10%, #fff 85%);
  border-radius: 16px;
  box-shadow: 0 2px 16px -6px rgba(40,48,83,.13);
  margin-bottom: 60px;
  padding: 40px 20px 40px 20px;
}
.cta .content-wrapper {
  align-items: flex-start;
  gap: 10px;
}
.cta a.primary-btn {
  margin-top: 10px;
}

/* --- BUTTONS --- */
.primary-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  color: #fff;
  background: linear-gradient(90deg, #283053 60%, #FFD700 200%);
  border: none;
  border-radius: 32px;
  padding: 12px 32px;
  box-shadow: 0 2px 8px -4px rgba(40,48,83,0.13);
  cursor: pointer;
  transition: background .22s, color .22s, box-shadow .18s;
  outline: none;
  text-decoration: none;
  margin-top: 12px;
}
.primary-btn:hover, .primary-btn:focus {
  background-position: right center;
  background: linear-gradient(90deg, #FFD700 10%, #283053 120%);
  color: #283053;
  box-shadow: 0 4px 18px -8px rgba(40,48,83,.18);
}
.secondary-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #283053;
  background: none;
  border: 2px solid #FFD700;
  border-radius: 32px;
  padding: 10px 26px;
  transition: background .2s, color .2s;
  margin-top: 10px;
}
.secondary-btn:hover, .secondary-btn:focus {
  background: #FFD700;
  color: #283053;
}

/* --- TABLES (Pricing) --- */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px -5px rgba(40,48,83,.07);
  margin: 26px 0 22px 0;
  font-size: 0.99rem;
}
.pricing-table th, .pricing-table td {
  padding: 13px 18px;
  border-bottom: 1px solid #f2ecd4;
  text-align: left;
  color: #283053;
}
.pricing-table th {
  background: #FFD70022;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.1px;
  font-weight: 700;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 768px) {
  .pricing-table,
  .pricing-table thead,
  .pricing-table tbody,
  .pricing-table th,
  .pricing-table td,
  .pricing-table tr {
    display: block;
    width: 100%;
  }
  .pricing-table tr {
    margin-bottom: 22px;
    box-shadow: 0 1px 8px -5px rgba(40,48,83,.09);
    border-radius: 7px;
    background: #fff;
    padding: 6px 0 4px 0;
  }
  .pricing-table th {
    background: transparent;
    padding: 7px 14px;
  }
  .pricing-table td {
    padding: 7px 14px;
  }
}

/* --- LISTS --- */
ul {list-style: disc outside;}
ul li {margin-bottom: 7px;}
ol {list-style: decimal outside;}

/* --- TYPICAL BOXES, TIP BOXES --- */
.tip-box {
  background: #fffcdf;
  color: #283053;
  border-left: 4px solid #FFD700;
  border-radius: 9px;
  padding: 13px 22px;
  font-size: 1rem;
  margin: 15px 0 0 0;
  box-shadow: 0 2px 8px -5px rgba(40,48,83,.07);
}

/* --- CONTACT & MAP --- */
.contact-notice {
  background: #ffe291;
  color: #283053;
  border-radius: 10px;
  padding: 11px 18px;
  margin-top: 12px;
  box-shadow: 0 2px 10px -5px rgba(40,48,83,.12);
}
.map-placeholder {
  background: #fff;
  color: #b7b7b7;
  border: 2px dashed #FFD70050;
  border-radius: 12px;
  height: 250px;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin: 18px 0 0 0;
}

/* --- FAQ --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 11px -5px rgba(40,48,83,.12);
  padding: 22px 24px 18px 22px;
  transition: box-shadow .17s;
}
.faq-item h3 {
  font-size: 1.16rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-item p {
  font-size: 1rem;
  color: #283053;
}
.contact-prompt {
  margin: 26px 0 0 0;
  text-align: left;
  font-size: 1.04rem;
}
.contact-prompt a {
  color: #FFD700;
  font-weight: 700;
}

/* --- THANK YOU --- */
.thank-you-section .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 12px;
}
.thank-you-section h1 {
  color: #283053;
  font-size: 2.2rem;
}
.thank-you-section .primary-btn {
  margin: 22px auto 0 auto;
  display: inline-block;
}

/* --- LEGAL PAGES --- */
.legal .content-wrapper, .legal .text-section {
  align-items: flex-start;
  gap: 15px;
}
.legal h1 {
  font-size: 2rem;
  color: #283053;
  margin-bottom: 18px;
}
.legal h2 {
  margin-top: 20px;
  font-size: 1.13rem;
}
.legal ul {
  margin-left: 20px;
}

/* --- FOOTER --- */
footer {
  background: linear-gradient(90deg, #f2f4f9 80%, #FFD700 800%);
  border-top: 2px solid #FFD70044;
  font-size: 1rem;
  color: #283053;
  padding: 36px 0 8px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 38px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo-contact {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  min-width: 260px;
  flex: 1 1 200px;
}
.footer-logo-contact img {
  width: 54px;
  height: 54px;
}
.footer-logo-contact .text-section {
  margin: 0;
  font-size: 0.99rem;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-links nav a {
  color: #283053;
  text-decoration: none;
  font-size: 1rem;
  transition: color .2s;
}
.footer-links nav a:hover {
  color: #FFD700;
  text-decoration: underline;
}
.footer-social {
  margin-top: 16px;
  color: #283053;
  font-size: 0.93rem;
  opacity: 0.85;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .footer-logo-contact { margin-bottom: 15px; }
}
@media (max-width: 768px) {
  footer {
    padding: 20px 0 7px 0;
  }
  footer .content-wrapper, .footer-logo-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 120;
  background: linear-gradient(90deg, #FFD700 60%, #fff 120%);
  color: #283053;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  box-shadow: 0 -2px 28px -8px rgba(40,48,83,.16);
  padding: 18px 36px;
  font-size: 1.02rem;
  transition: transform .36s cubic-bezier(.8,.1,.3,1);
}
.cookie-consent-banner.hide {
  transform: translateY(110%);
}
.cookie-consent-banner p {
  flex: 3 1 350px;
  margin-bottom: 0;
}
.cookie-consent-actions {
  display: flex;
  gap: 18px;
  flex: 1 1 180px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 22px;
  padding: 9px 22px;
  margin: 0 0 0 0;
  cursor: pointer;
  font-weight: 700;
  transition: background .18s, color .18s;
}
.cookie-btn.accept {
  background: #283053;
  color: #FFD700;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #FFD700; color: #283053;
}
.cookie-btn.reject {
  background: none;
  color: #283053;
  border: 2px solid #FFD700;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FFD700;
  color: #283053;
}
.cookie-btn.settings {
  background: none;
  border: 2px solid #283053;
  color: #283053;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #283053;
  color: #FFD700;
}
@media (max-width: 800px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 9px 20px 9px;
    font-size: 0.99rem;
  }
  .cookie-consent-actions {
    gap: 10px;
  }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 130;
  background: rgba(40, 48, 83, 0.34);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal .cookie-popup {
  background: linear-gradient(90deg, #fff 80%, #FFD700 250%);
  border-radius: 24px;
  box-shadow: 0 9px 48px -12px rgba(40,48,83,0.18);
  max-width: 370px;
  width: 92vw;
  padding: 30px 26px 24px 26px;
  color: #283053;
  font-size: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popupIn .38s cubic-bezier(.34,1.5,.3,1);
}
@keyframes popupIn {
  from { transform: scale(0.91) translateY(80px); opacity: 0.3; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal .cookie-popup h2 {
  font-size: 1.16rem;
  color: #283053;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 7px;
}
.cookie-modal .cookie-popup .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 9px;
}
.cookie-modal .cookie-popup .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
}
.cookie-toggle {
  width: 32px;
  height: 18px;
  background: #fff;
  border-radius: 9px;
  border: 2px solid #FFD700;
  position: relative;
  cursor: pointer;
  transition: background .17s, border-color .17s;
  margin-right: 9px;
}
.cookie-toggle.on {
  background: #FFD700;
  border-color: #283053;
}
.cookie-toggle .toggle-knob {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 14px;
  height: 14px;
  background: #283053;
  border-radius: 50%;
  transition: left .2s, background .2s;
}
.cookie-toggle.on .toggle-knob {
  left: 15px;
  background: #FFD700;
}
.cookie-popup-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 9px;
  justify-content: flex-end;
}
.cookie-popup-actions .cookie-btn {
  min-width: 90px;
  padding: 8px 20px;
}
.cookie-modal .cookie-popup .cookie-category.disabled {
  opacity: 0.7;
  pointer-events: none;
}
.cookie-modal .popup-close {
  position: absolute;
  top: 17px;
  right: 18px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #283053;
  cursor: pointer;
}
.cookie-modal .popup-close:hover, .cookie-modal .popup-close:focus {
  color: #FFD700;
}

/* --- MISC --- */
::-webkit-scrollbar { width: 7px; background: #fffbde; }
::-webkit-scrollbar-thumb { background: #FFD70099; border-radius: 8px; }
::-webkit-input-placeholder { color: #838991; }
::-moz-placeholder { color: #838991; }
:-ms-input-placeholder { color: #838991; }
::placeholder { color: #838991; }

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
}

/* --- UTIL CLASSES --- */
.d-none { display: none !important; }
.d-block { display: block !important; }

/* --- ANIMATIONS & INTERACTIONS --- */
.card, .feature-item, .service-item,
.testimonial-card, .faq-item {
  transition: box-shadow .2s, transform .16s;
}
.primary-btn, .secondary-btn, .cookie-btn {
  transition: background .17s, color .19s, box-shadow .16s;
}
.primary-btn:active, .secondary-btn:active { transform: scale(0.96); }

/* --- ACCESSIBILITY --- */
a:focus-visible, button:focus-visible, .primary-btn:focus-visible {
  outline: 2px solid #FFD700;
  outline-offset: 2px;
}

/* --- MINIMUM GAPS BETWEEN COMPONENTS --- */
.features-grid > *, .service-list > *, .card-container > *, .content-grid > *, .faq-list > *, .testimonials .testimonial-card, .about-preview > *, .services-preview > * {
  margin-bottom: 20px;
}

/* --- END --- */
