/* 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;
}

html {
  line-height: 1.15;
  font-size: 16px;
  font-family: 'Source Serif Pro', Georgia, 'Times New Roman', Times, serif;
  color: #22313A;
  background: #FAFAF9;
  scroll-behavior: smooth;
}
body {
  font-family: 'Source Serif Pro', Georgia, 'Times New Roman', Times, serif;
  color: #22313A;
  background: #FAFAF9;
  min-height: 100vh;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
a {
  color: #1F485C;
  text-decoration: none;
  transition: color .2s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #F5BE2C;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1.25em;
}
strong, b {
  font-weight: 600;
}

/* FONT FACE FALLBACKS */
@font-face {
  font-family: 'Source Serif Pro';
  src: local('Source Serif Pro'), local('Times New Roman'), local('Georgia');
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'), local('Verdana');
  font-display: swap;
}

/* UTILITY CLASSES */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* BRAND COLORS AS VARIABLES with fallback */
:root {
  --primary: #1F485C;
  --primary-dark: #183948;
  --secondary: #B8C2D1;
  --accent: #F5BE2C;
  --bg: #FAFAF9;
  --border: #DDDEE3;
  --shadow: rgba(31, 72, 92, 0.08);
  --heading: #1F485C;
  --text-dark: #22313A;
  --text-muted: #6B7A89;
  --card-bg: #fff;
  --footer-bg: #F7F7F6;
  --danger: #CA506D;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', 'Source Serif Pro', Georgia, Times, serif;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 12px;
}
h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 10px;
}
h3 {
  font-size: 1.32rem;
  line-height: 1.3;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.1rem;
  line-height: 1.2;
}
p {
  font-size: 1.08rem;
  color: var(--text-dark);
  margin-bottom: 1.1em;
}
.subheadline {
  font-size: 1.32rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-family: 'Source Serif Pro', Georgia, Times, serif;
  font-weight: 400;
}
.review-author {
  margin-top: 10px;
  font-size: 1rem;
  color: var(--primary);
  font-family: 'Montserrat', 'Source Serif Pro', serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* BUTTONS */
.cta-btn, .secondary-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Source Serif Pro', Georgia, Times, serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 28px;
  padding: 13px 38px;
  margin-top: 10px;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  box-shadow: 0 2px 8px var(--shadow);
  transition: background .2s,border-color.2s, color .2s;
  cursor: pointer;
  text-decoration: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  outline: none;
}
.secondary-cta-btn {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.secondary-cta-btn:hover, .secondary-cta-btn:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary-dark);
}
.link {
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  font-weight: 500;
  display: inline;
  margin-top: 12px;
  transition: color .2s, border-color .2s;
}
.link:hover, .link:focus {
  color: var(--accent);
  border-color: var(--accent);
}

/* HEADER AND NAVIGATION */
header {
  padding-top: 12px;
  padding-bottom: 12px;
  background: #fff;
  box-shadow: 0 1px 8px var(--shadow);
  position: sticky;
  top: 0; z-index: 50;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: 'Montserrat', 'Source Serif Pro', Georgia, Times, serif;
  font-size: 1rem;
}
.main-nav a {
  color: var(--primary);
  position: relative;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.main-nav a:not(.cta-btn):hover, .main-nav a:not(.cta-btn):focus {
  background: var(--secondary);
  color: var(--primary-dark);
}
.main-nav .cta-btn {
  margin-left: 12px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  margin-left: 14px;
  padding: 5px 12px;
  border-radius: 8px;
  transition: background .2s, color .2s;
  z-index: 102;
}
.mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--accent);
}

/* MOBILE NAV */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 101;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .33s cubic-bezier(.4, .0, .2, 1);
  box-shadow: 0 0 24px 0 var(--shadow);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.0rem;
  color: var(--primary);
  align-self: flex-end;
  padding: 16px 22px 10px 0px;
  cursor: pointer;
  margin-right: 8px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 24px 0 36px;
}
.mobile-nav a {
  font-size: 1.32rem;
  font-family: 'Montserrat', 'Source Serif Pro', Georgia, Times, serif;
  color: var(--primary);
  padding: 10px 0;
  margin: 0 0 3px 0;
  border-bottom: 1px solid #EBEBEB;
  border-radius: 0;
  transition: color .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  outline: none;
}

/* HERO SECTION & BANNER CTA */
.hero {
  background: linear-gradient(120deg, #F3F5F7 40%, #fff 100%);
  padding: 48px 0 24px;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.hero .cta-btn {
  margin-top: 23px;
  min-width: 210px;
}
.cta-banner {
  background: var(--primary);
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 5px 28px -6px var(--shadow);
  margin: 56px 0 0 0;
}
.cta-banner .content-wrapper {
  align-items: center;
  text-align: center;
  padding: 32px 0 28px 0;
  gap: 13px;
}
.cta-banner h2, .cta-banner p {
  color: #fff;
}
.cta-banner .cta-btn {
  margin-top: 14px;
  background: #fff;
  color: var(--primary);
}
.cta-banner .cta-btn:hover {
  background: var(--accent);
  color: var(--primary-dark);
}

/* FLEXBOX PATTERNS */
.card-container,
.service-cards,
.feature-grid,
.icon-steps,
.testimonial-cards,
.content-grid,
.service-detailed-cards,
.pricing-table,
.step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 3px 18px -6px var(--shadow);
  padding: 32px 24px 36px 24px;
  min-width: 0;
  flex: 1 1 320px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 24px 18px 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 9px var(--shadow);
  max-width: 330px;
  min-width: 220px;
  margin-bottom: 20px;
  flex: 1 1 250px;
  border: 1px solid var(--border);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  gap: 15px;
  border-radius: 16px;
  box-shadow: 0 2px 7px var(--shadow);
  padding: 28px 20px 18px 20px;
  min-width: 220px;
  flex: 1 1 200px;
}

.icon-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.icon-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 12px;
  box-shadow: 0 1px 6px var(--shadow);
  min-width: 128px;
}
.icon-step img {
  height: 38px;
  width: auto;
  margin-bottom: 5px;
}
.icon-step span {
  font-size: 1.02rem;
  color: var(--text-dark);
  font-family: 'Montserrat', 'Source Serif Pro', serif;
}
.feature-item img, .service-card img {
  height: 40px;
  width: 40px;
}

/* SERVICES, PRICING, REQUEST SECTIONS */
.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px var(--shadow);
  padding: 28px 20px 22px 20px;
  margin-bottom: 20px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
}
.service-card strong {
  color: var(--accent);
  font-size: 1.02rem;
}
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.pricing-row {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px var(--shadow);
  padding: 26px 22px;
  flex: 1 1 220px;
  min-width: 220px;
  margin-bottom: 20px;
  border-left: 5px solid var(--primary);
}
.price {
  font-size: 1.22rem;
  color: var(--accent);
  font-family: 'Montserrat', 'Source Serif Pro', Georgia, Times, serif;
  font-weight: 700;
}

/* TESTIMONIAL STYLES */
.testimonials {
  background: var(--bg);
  padding: 55px 0 35px 0;
}
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 34px;
}
.testimonial-card p {
  color: #22313A;
  font-size: 1.05rem;
}
.stars {
  display: flex;
  flex-direction: row;
  gap: 3px;
}
.stars img {
  height: 18px;
  width: auto;
}
.trust-seals {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 14px;
  margin-bottom: 10px;
}
.trust-seals img {
  height: 38px;
  width: auto;
}

/* ACCORDION FAQ */
.accordion-faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 8px var(--shadow);
  padding: 22px 18px 16px 22px;
  border: 1px solid var(--border);
  transition: box-shadow .18s, border-color .18s;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 4px 20px var(--shadow);
  border-color: var(--accent);
}
.faq-item h3 {
  font-size: 1.16rem;
  font-family: 'Montserrat', serif;
  color: var(--primary);
  margin-bottom: 8px;
}
.faq-item p {
  margin: 0;
  color: var(--text-dark);
}

/* VALUE-LIST and TIP-LIST */
.value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}
.value-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.11rem;
  color: var(--primary-dark);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow);
  padding: 17px 14px;
}
.value-list img {
  height: 28px;
  width: 28px;
}
.tip-list {
  margin-top: 12px;
  list-style: inside disc;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

/* TEXT-SECTION */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.09rem;
  color: var(--text-dark);
}

/* FOOTER */
footer {
  background: var(--footer-bg);
  color: var(--text-dark);
  font-family: 'Source Serif Pro', Georgia, Times, serif;
  margin-top: 60px;
  border-top: 1px solid var(--border);
}
footer .container {
  flex-direction: column;
  gap: 28px;
  justify-content: flex-start;
  padding: 28px 20px 18px 20px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--primary-dark);
  font-size: 1.05rem;
  transition: color .2s;
}
.footer-nav a:hover {
  color: var(--accent);
}
.footer-brand-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-brand-contact img {
  height: 48px;
  width: 48px;
}
.contact-snippet{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-snippet p {
  font-size: 1.01rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Source Serif Pro', Georgia, Times, serif;
}
.footer-social {
  display: flex;
  gap: 23px;
  margin-top: 12px;
  align-items: center;
}
.footer-social img {
  height: 22px;
  width: 22px;
  filter: grayscale(0.35) brightness(1.2);
  transition: filter .2s;
}
.footer-social a:hover img {
  filter: none;
}
.copyright {
  margin-top: 14px;
  color: #979d9f;
  font-size: .98rem;
}

/* CONTACT PAGE INFO AND MAP */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.map-embed {
  margin-top: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px var(--shadow);
  padding: 22px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
}

/* PRIVACY, GDPR, COOKIE, TERMS TEXT SECTION */
.privacy-policy, .gdpr-section, .cookie-section, .terms-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px var(--shadow);
  margin: 52px 0 0 0;
}
.privacy-policy .text-section,
.gdpr-section .text-section,
.cookie-section .text-section,
.terms-section .text-section {
  gap: 15px;
  font-size: 1.07rem;
  color: var(--text-dark);
}

/* THANK YOU SECTION */
.thank-you-section {
  background: linear-gradient(100deg, #fff 90%, #B8C2D1 100%);
  border-radius: 24px;
  box-shadow: 0 2px 14px var(--shadow);
  margin: 72px 0 0 0;
}
.confirmation {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 22px -6px var(--shadow);
  border-top: 1px solid var(--border);
  padding: 28px 22px 18px 22px;
  z-index: 1200;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
  justify-content: space-between;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .3s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  color: var(--primary);
  font-size: 1.02rem;
  flex: 3;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-banner__btn, .cookie-banner__settings {
  font-family: 'Montserrat', 'Source Serif Pro', serif;
  font-weight: 600;
  font-size: 1.04rem;
  border-radius: 32px;
  padding: 9px 26px;
  border: 2px solid var(--primary);
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  margin-right: 0;
  transition: background .2s, color .2s, border-color .2s;
}
.cookie-banner__btn.accept {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.cookie-banner__btn.reject {
  background: #fff;
  color: var(--danger);
  border-color: var(--danger);
}
.cookie-banner__btn.accept:hover,
.cookie-banner__btn.accept:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.cookie-banner__btn.reject:hover,
.cookie-banner__btn.reject:focus {
  background: var(--danger);
  color: #fff;
  border-color: var(--danger);
}
.cookie-banner__settings {
  background: #fff;
  color: var(--primary);
  border-color: var(--primary);
}
.cookie-banner__settings:hover, .cookie-banner__settings:focus {
  background: var(--primary);
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%) translateY(100%);
  min-width: 335px;
  max-width: 98vw;
  width: 430px;
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 4px 40px rgba(31, 72, 92,.15);
  z-index: 1222;
  padding: 34px 30px 28px 30px;
  animation: cookie-modal-slidein .4s forwards;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.open {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
  transition: transform 0.36s cubic-bezier(.38,.06,.44,.98), opacity .3s;
}
@keyframes cookie-modal-slidein {
  to { opacity: 1; }
}
.cookie-modal__close {
  position: absolute;
  top: 13px; right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary);
  cursor: pointer;
}
.cookie-modal__title {
  margin-bottom: 8px;
  font-size: 1.29rem;
  color: var(--primary);
}
.cookie-modal__list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.06rem;
  color: var(--primary-dark);
}
.cookie-switch {
  appearance: none;
  width: 38px;
  height: 20px;
  border-radius: 12px;
  background: var(--secondary);
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .2s;
}
.cookie-switch:checked {
  background: var(--accent);
}
.cookie-switch:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(60,60,75,0.07);
  transition: left .18s;
}
.cookie-switch:checked:before {
  left: 20px;
}
.cookie-modal__actions {
  display: flex;
  gap: 13px;
  margin-top: 22px;
  flex-direction: row;
  justify-content: flex-end;
}
.cookie-modal__btn {
  padding: 8px 22px;
  border-radius: 28px;
  border: 2px solid var(--primary);
  font-family: 'Montserrat', serif;
  font-weight: 600;
  background: var(--primary);
  color: #fff;
  font-size: 1.03rem;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.cookie-modal__btn:hover,
.cookie-modal__btn:focus {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

/* RESPONSIVE: MOBILE-FIRST (default), adaptations for tablets/desktops below */
@media (max-width: 768px) {
  .container { padding-left: 10px; padding-right: 10px; }
  header .container {
    flex-direction: row;
    padding-left: 8px;
    padding-right: 8px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .card-container,
  .service-cards,
  .feature-grid,
  .icon-steps,
  .testimonial-cards,
  .content-grid,
  .service-detailed-cards,
  .pricing-table,
  .step-list {
    flex-direction: column;
    gap: 20px;
  }
  .hero {
    padding: 22px 0 18px;
    text-align: center;
  }
  .hero h1 {
    font-size: 1.42rem;
  }
  .cta-banner {
    border-radius: 15px;
    margin: 35px 0 0 0;
  }
  .cta-banner .content-wrapper {
    padding: 16px 0 9px 0;
  }
  .section {
    padding: 22px 7px;
    margin-bottom: 38px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-nav, .footer-brand-contact, .footer-social {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-brand-contact img {
    height: 34px;
    width: 34px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
    padding: 18px 9px 11px 9px;
    font-size: 0.98rem;
  }
  .testimonials {
    padding: 19px 0 18px 0;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 16px 9px 16px 12px;
  }
  .cookie-banner__actions {
    flex-direction: column;
    gap: 9px;
  }
  .cookie-modal {
    padding: 20px 10px 17px 10px;
    min-width: 222px;
    width: 96vw;
  }
  .about-section, .privacy-policy, .gdpr-section, .terms-section, .cookie-section {
    margin: 14px 0 0 0;
    border-radius: 12px;
  }
}
@media (min-width: 769px) {
  .container {
    flex-direction: row;
    align-items: flex-start;
  }
  .main-nav {
    display: flex;
  }
  .mobile-menu-toggle {
    display: none;
  }
  .content-wrapper {
    gap: 0;
  }
  .testimonial-cards {
    flex-direction: row;
    justify-content: flex-start;
  }
  .footer-nav, .footer-brand-contact, .footer-social {
    flex-direction: row;
    align-items: center;
  }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.cta-btn, .secondary-cta-btn, .cookie-banner__btn, .cookie-banner__settings, .cookie-modal__btn {
  transition: background .2s, color .2s, border-color .2s, box-shadow .16s;
}
.card:hover, .feature-item:hover, .service-card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 26px -4px var(--shadow);
  transform: translateY(-3px) scale(1.014);
  transition: transform .14s, box-shadow .16s;
  z-index: 2;
}

/* Z-INDEX LAYERING */
header { z-index: 50; }
.mobile-menu { z-index: 101; }
.cookie-banner { z-index: 1200; }
.cookie-modal { z-index: 1222; }

/* CUSTOM SCROLLBAR FOR DESKTOP */
@media (min-width:1024px) {
  ::-webkit-scrollbar {
    width: 9px;
    background: var(--secondary);
    border-radius: 8px;
  }
  ::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 8px;
  }
}

/* END CSS */
