/* --- 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #184772;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus {
  outline: 2px solid #20A08A;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
}
img {
  border-style: none;
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* --- FONT FACES --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  margin-bottom: 16px;
  color: #184772;
}
h1 { font-size: 2.75rem; line-height: 1.15; }
h2 { font-size: 2rem; line-height: 1.2; }
h3 { font-size: 1.25rem; }

@media (max-width: 700px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
  body { font-size: 15px; }
}

strong, b {
  font-weight: 700;
}
p, ul, ol {
  font-size: 1rem;
  color: #184772;
  margin-bottom: 16px;
}

/* --- BRAND COLORS --- */
:root {
  --color-primary: #184772;
  --color-secondary: #20A08A;
  --color-accent: #F8F8F6;
  --color-electro1: #FFE500;
  --color-electro2: #EF0048;
  --color-electro3: #00CFFF;
}

/* --- CONTAINERS & LAYOUT HELPERS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(32,160,138,0.08), 0 1.5px 8px 0 rgba(24,71,114,.09);
  transition: box-shadow .3s cubic-bezier(.4,1.1,.3,1);
  padding: 32px 24px;
  min-width: 260px;
  flex: 1 1 220px;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(239,0,72,0.13), 0 4px 16px 0 rgba(0,207,255,.16);
  transform: translateY(-4px) scale(1.03);
  z-index: 1;
}
.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) {
  .section { padding: 28px 10px; margin-bottom: 36px; }
  .card { min-width: 100%; }
  .card-container, .content-grid { flex-direction: column; gap: 16px; }
  .text-image-section { flex-direction: column; gap: 18px; }
}

/* --- HEADER --- */
header {
  width: 100%;
  background: var(--color-primary);
  box-shadow: 0 3px 24px 0 rgba(24,71,114,0.07);
  color: #fff;
  padding: 0;
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 16px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  letter-spacing: .04em;
  font-weight: 700;
  color: #fff;
  position: relative;
  padding: 6px 0;
  transition: color .18s cubic-bezier(.47,.32,.54,.99);
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-electro2);
}
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 24px;
  background: linear-gradient(90deg, #FFE500 0%, #20A08A 100%);
  color: #184772;
  text-shadow: 0 1px 0 #fff5;
  box-shadow: 0 2px 8px 0 rgba(255,229,0,0.10);
  border: none;
  transition: box-shadow .2s,transform .2s;
  display: inline-block;
  margin-left: 20px;
  transition: background .18s, color .18s;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #EF0048 0%, #FFE500 100%);
  color: #fff;
  box-shadow: 0 8px 24px 0 rgba(239,0,72,0.12);
  transform: translateY(-2px) scale(1.025);
}

.btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 20px;
  background: #20A08A;
  color: #fff;
  box-shadow: 0 1.5px 8px 0 rgba(32,160,138,0.15);
  border: none;
  transition: background .16s, color .16s, box-shadow .18s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #184772;
  color: #FFE500;
  box-shadow: 0 4px 16px 0 rgba(32,160,138,0.22);
}

header img {
  height: 46px;
  width: auto;
}
@media (max-width: 900px) {
  .main-nav { gap: 12px; }
  .btn-primary { margin-left: 8px; padding: 11px 20px; }
}
@media (max-width: 700px) {
  header .container {
    padding: 0 8px;
    gap: 12px;
  }
  header img { height: 37px; }
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-electro2);
  color: #fff;
  border-radius: 50%;
  border: none;
  font-size: 2.1rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 16px;
  right: 19px;
  z-index: 220;
  transition: background .2s, color .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFE500;
  color: #184772;
}
.mobile-menu {
  display: none;
}
@media (max-width: 900px) {
  .main-nav, .btn-primary { display: none !important; }
  .mobile-menu-toggle { display: flex; }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: var(--color-primary);
    position: fixed;
    z-index: 9999;
    height: 100%;
    width: 100vw;
    left: 0; top: 0;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform .33s cubic-bezier(.51,1.6,.44,1), opacity .18s;
  }
  .mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  .mobile-menu-close {
    color: #fff;
    font-size: 2.1rem;
    background: #20A08A;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 10px 19px;
    border: none;
    transition: background .2s;
  }
  .mobile-menu-close:hover, .mobile-menu-close:focus {
    background: #EF0048;
    color: #fff;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    padding: 18px 32px 0 32px;
  }
  .mobile-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.15rem;
    color: #fff;
    border-bottom: 2px solid transparent;
    padding: 7px 0;
    border-radius: 0;
    width: 100%;
    transition: color .15s, border .16s, background .16s;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: #20A08A;
    color: #FFE500;
    border-bottom: 2px solid #EF0048;
  }
}

/* --- HERO --- */
.hero {
  width: 100%;
  background: linear-gradient(90deg, #20A08A 0%, #00CFFF 56%, #EF0048 100%);
  background-size: 200% 100%;
  animation: heroBgMove 11s ease-in-out infinite alternate;
  color: #fff;
  padding: 64px 0 56px 0;
  display: flex;
  align-items: center;
}
@keyframes heroBgMove {
  0% { background-position: left; }
  100% { background-position: right; }
}
.hero h1 {
  color: #fff;
  font-size: 2.6rem;
  text-shadow: 0 2px 12px rgba(24,71,114,0.18);
}
@media (max-width: 700px) {
  .hero { padding: 36px 0 20px 0; }
  .hero h1 { font-size: 1.45rem; }
}
.hero .btn-primary {
  margin-top: 26px;
}

/* --- FEATURES --- */
.features, .feature-grid {
  width: 100%;
  display: flex;
  flex-direction: column; /* Mobile */
  gap: 24px;
}
.feature-grid {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(32,160,138,0.10);
  padding: 26px 20px 22px 20px;
  min-width: 220px;
  flex: 1 1 220px;
  border-left: 6px solid #EF0048;
  transition: box-shadow .25s, border-color .2s;
}
.feature-item:hover {
  box-shadow: 0 6px 24px 0 rgba(32,160,138,0.20), 0 2.5px 8px 0 #FFE50044;
  border-left: 6px solid #20A08A;
}
.feature-item img {
  width: 40px; height: 40px;
}
.feature-item h3 {
  color: #184772;
  font-weight: bold;
  margin-bottom: 4px;
}
.feature-item p {
  color: #184772;
}
@media (max-width: 900px) {
  .feature-grid { flex-direction: column; gap: 18px; }
}

/* --- SERVICE PREVIEW & LIST --- */
.services-preview ul, .service-highlights ul, .usp ul, .policy ul {
  padding-left: 24px;
  margin-bottom: 20px;
}
.services-preview ul li,
.service-highlights ul li,
.usp ul li, .policy ul li{
  position: relative;
  margin-bottom: 10px;
  color: #184772;
  font-size: 1rem;
  padding-left: 16px;
}
.services-preview ul li::before,
.service-highlights ul li::before, 
.usp ul li::before, .policy ul li::before{
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #EF0048;
  position: absolute;
  left: 0; top: 8px;
}
.service-highlights h3 {
  margin-top: 18px;
  color: #20A08A;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item {
  background: #F8F8F6;
  border-radius: 16px;
  padding: 28px 22px;
  min-width: 230px;
  flex: 1 1 240px;
  box-shadow: 0 1.5px 8px 0 rgba(24,71,114,0.10);
  transition: box-shadow .2s;
}
.service-item:hover {
  box-shadow: 0 8px 20px 0 rgba(32,160,138,0.13);
}
@media (max-width: 900px) {
  .service-grid { flex-direction: column; gap: 16px; }
}

/* --- TESTIMONIALS --- */
.testimonials-preview, .testimonials, .testimonial-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial-list {
  flex-wrap: wrap;
  gap: 22px;
}
.testimonial-card {
  background: #fff;
  color: #184772;
  border-radius: 16px;
  box-shadow: 0 2.5px 12px 0 #18477217;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 560px;
}
.testimonial-list .testimonial-card {
  flex: 1 1 250px;
  margin-bottom: 0;
}
.testimonial-meta strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #184772;
}
.testimonial-meta {
  font-size: 1rem;
  color: #184772;
  margin: 0;
}
.testimonial-meta span {
  color: #EF0048;
  margin-left: 10px;
  font-size: 1.05em;
  font-weight: bold;
  letter-spacing: 0.09em;
}

.testimonial-card:hover {
  box-shadow: 0 8px 28px 0 rgba(239,0,72,0.12);
  transform: scale(1.03) translateY(-2px);
  border-left: 5px solid #20A08A;
}
@media (max-width: 900px) {
  .testimonial-list {
    gap: 14px;
  }
}

.rating-summary p {
  background: #20A08A;
  color: #fff;
  padding: 10px 22px;
  border-radius: 16px;
  font-weight: bold;
  display: inline-block;
  margin-top: 15px;
}

.client-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 6px;
}
.client-logos img {
  height: 38px;
  filter: brightness(0) saturate(1) invert(26%) sepia(76%) saturate(1468%) hue-rotate(139deg) brightness(98%) contrast(100%);
}

/* --- CTA BOX --- */
.cta-box {
  background: linear-gradient(90deg, #00CFFF 20%, #20A08A 100%);
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 #20A08A21, 0 2px 8px 0 #FFE50029;
  padding: 40px 28px;
  margin-bottom: 0;
  text-align: center;
  align-items: center;
  gap: 18px;
}
.cta-box h2 { color: #fff; }
.cta-box p { color: #fff; }

.cta-box .btn-primary {
  margin-top: 10px;
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .cta-box {
    padding: 24px 10px;
    border-radius: 13px;
  }
}

/* --- FOOTER --- */
footer {
  width: 100%;
  background: #184772;
  color: #fff;
  padding: 0;
  font-size: 1rem;
}
footer .container {
  padding-top: 38px;
  padding-bottom: 22px;
}
.content-wrapper > *:not(:last-child) {
  margin-bottom: 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 22px;
}
.footer-nav a {
  color: #fff;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color .16s;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #20A08A;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #F8F8F6;
  font-size: 0.99rem;
}
.footer-contact img {
  vertical-align: middle;
  margin-right: 8px;
  width: 18px;
  height: 18px;
  opacity: .90;
}
.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}
.footer-social a img {
  height: 30px;
  transition: filter .16s, transform .22s;
  filter: brightness(0) saturate(1) invert(100%) sepia(16%) saturate(2%) hue-rotate(76deg) brightness(105%) contrast(108%);
}
.footer-social a:hover img {
  filter: brightness(0) saturate(1) invert(44%) sepia(65%) saturate(816%) hue-rotate(124deg) brightness(96%) contrast(98%);
  transform: scale(1.13) rotate(-7deg);
}
.footer-copy {
  margin-top: 18px;
  font-size: 0.95rem;
  color: #FFE500;
}
footer img {
  height: 42px;
}
@media (max-width: 700px) {
  .footer-nav { gap: 8px; font-size: 13px; }
  .footer-contact { font-size: 0.89rem; }
}

/* --- POLICY & LEGAL --- */
.policy {
  background: #F8F8F6;
  border-radius: 13px;
  color: #184772;
  margin: 40px 0;
  padding: 36px 24px;
  font-size: 1.06rem;
}
.policy h2, .policy h1 {
  color: #20A08A;
}
@media (max-width: 700px) {
  .policy { padding: 15px 6px; margin: 20px 0; }
}

/* --- FORM & CONTACT DETAILS --- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 1.10rem;
}
.contact-details img {
  vertical-align: middle;
  margin-right: 8px;
  width: 20px;
  height: 20px;
  opacity: 0.89;
}
.address-map {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.address-map img {
  width: 60px; height: 60px;
}
.address-map address {
  font-size: 1rem;
  font-style: normal;
  color: #184772;
}
@media (max-width: 700px) {
  .contact-details { font-size: 0.96rem; }
  .address-map img { width: 32px; height: 32px; }
}

/* --- THANK YOU, ABOUT, ETC. --- */
.about, .values, .thank-you, .location, .usp, .process {
  background: #F8F8F6;
  border-radius: 13px;
  margin-bottom: 40px;
  padding: 32px 18px 30px 18px;
}
@media (max-width: 700px) {
  .about, .values, .thank-you, .location, .usp, .process {
    padding: 14px 4px 11px 7px;
    margin-bottom: 18px;
  }
}

.infographic {
  margin-top: 26px;
  text-align: center;
}
.infographic img {
  width: 120px; max-width: 100%;
}

/* --- TABLES (PRICING) --- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 #20A08A17;
  overflow: hidden;
}
th, td {
  text-align: left;
  padding: 18px 12px;
  font-size: 1.09rem;
}
th {
  background: #FFE500;
  color: #184772;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  letter-spacing: .02em;
}
tbody tr:nth-child(even) {
  background: #F8F8F6;
}
tbody tr:hover {
  background: #20A08A12;
}
@media (max-width: 700px) {
  table, th, td { font-size: 0.92rem; padding: 10px 6px; }
}

/* --- SPACING RULES (MANDATORY) --- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  width: 100vw;
  background: linear-gradient(90deg, #184772 80%, #20A08A 100%);
  color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 20px 20px 24px;
  box-shadow: 0 -2px 20px 0 #18477244;
  font-size: 1rem;
  gap: 28px;
  animation: cookieBannerIn .7s cubic-bezier(.52,1.6,.46,0.77);
}
@keyframes cookieBannerIn {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 auto;
  margin-right: 20px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn {
  padding: 9px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 22px;
  font-size: 1rem;
  border: none;
  outline: none;
  transition: background .15s, color .15s, box-shadow .16s;
  box-shadow: 0 1px 8px 0 #18477211;
  margin-left: 0;
}
.cookie-btn.accept {
  background: #FFE500;
  color: #184772;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #EF0048;
  color: #fff;
}
.cookie-btn.reject {
  background: #EF0048;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FFE500;
  color: #184772;
}
.cookie-btn.settings {
  background: #20A08A;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #00CFFF;
  color: #184772;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 7px 17px 10px;
    font-size: 0.97rem;
  }
  .cookie-banner__text{
    margin-right: 0;
  }
  .cookie-banner__actions {
    gap: 10px;
    width: 100%;
    justify-content: flex-start;
  }
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,71,114,0.84);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .19s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal__dialog {
  background: #fff;
  color: #184772;
  border-radius: 18px;
  padding: 38px 32px 26px 32px;
  max-width: 370px;
  width: 93vw;
  box-shadow: 0 8px 32px 0 #20A08A36, 0 1.5px 8px 0 #18477224;
  position: relative;
  animation: cookieModalIn .29s cubic-bezier(.97,1.7,.41,.99);
}
@keyframes cookieModalIn {
  0% { transform: translateY(46px) scale(.94); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.32rem;
  margin-bottom: 18px;
  color: #20A08A;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
}
.cookie-modal__essential {
  color: #EF0048;
  font-weight: bold;
}
.cookie-toggle {
  width: 34px;
  height: 20px;
  border-radius: 12px;
  background: #F8F8F6;
  box-shadow: 0 1px 4px 0 #18477218;
  border: 2px solid #20A08A;
  position: relative;
  cursor: pointer;
  transition: background .15s, border .16s;
}
.cookie-toggle[data-checked="true"] {
  background: #20A08A;
  border-color: #184772;
}
.cookie-toggle__dot {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1.5px 5px 0 #18477222;
  transition: left .16s;
}
.cookie-toggle[data-checked="true"] .cookie-toggle__dot {
  left: 16px;
}
.cookie-modal__actions {
  display: flex;
  margin-top: 22px;
  gap: 14px;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.cookie-modal__close {
  position: absolute;
  right: 15px;
  top: 16px;
  color: #184772;
  font-size: 1.65rem;
  background: none;
  border: none;
  line-height: 1;
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #EF0048;
}
@media (max-width: 520px) {
  .cookie-modal__dialog {
    padding: 23px 8px 15px 8px;
    max-width: 99vw;
  }
}

/* --- MICRO-INTERACTIONS --- */
a, .btn-primary, .btn-secondary, .cookie-btn, .main-nav a, .footer-nav a {
  transition: background .14s, color .16s, box-shadow .15s, border .18s, transform .14s;
}

/* --- OVERRIDES FOR VISUAL SEPARATION --- */
section + section, .card + .card, .feature-item + .feature-item {
  margin-top: 20px;
}

/* --- Z-INDEX LAYERING --- */
header, .mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 9999;
}

/* --- ACCESSIBILITY --- */
:focus {
  outline: 2px solid #00CFFF;
  outline-offset: 2px;
}

/* --- VIBRANT/ENERGETIC HIGHLIGHTS --- */
::selection {
  background: #FFE500;
  color: #184772;
}
.feature-item::after, .service-item::after {
  content: '';
  display: block;
  height: 3px;
  width: 40px;
  background: #EF0048;
  margin-top: 10px;
  border-radius: 3px;
  opacity: 0.13;
}

/* --- UTILITY --- */
.hidden { display: none !important; }
.vert-center { align-items: center; display: flex; }

 /* --- FINISH --- */