/* =========================================================
   CSS RESET AND NORMALIZE (mobile first, classic reset)
   ========================================================= */
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;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F7F5F0;
  color: #243A52;
  font-family: 'Open Sans', Arial, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===============================
   CUSTOM FONTS (retro/vintage feel)
   =============================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

:root {
  --retro-blue: #243A52;
  --retro-orange: #E2B007;
  --retro-cream: #F7F5F0;
  --retro-brown: #988055;
  --retro-red: #BB5A3D;
  --retro-green: #35816B;
  --vintage-shadow: 0 2px 10px 0 rgba(41,36,37,0.12), 0 1.5px 0 0 #E2B007;
  --border-radius: 13px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* =====================================
   VINTAGE RETRO COLOR PALETTE
   ===================================== */
body {
  background: var(--retro-cream);
  color: var(--retro-blue);
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--retro-cream);
  border-radius: var(--border-radius);
  box-shadow: var(--vintage-shadow);
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  color: var(--retro-blue);
}
h1 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 12px;
  text-shadow: 0 3px 0 #E2B007, 0 2px 6px #98805522;
}
h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 0 #F7F5F0;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  text-shadow: 0 1px 0 #fff8;
}
h4 {
  font-size: 1.08rem;
  margin-bottom: 4px;
  color: var(--retro-brown);
}
p, li, address {
  font-family: var(--font-body);
  font-size: 1rem;
}
p, address {
  color: var(--retro-blue);
  margin-bottom: 8px;
}
strong {
  color: var(--retro-blue);
  font-weight: 700;
}
blockquote {
  font-family: var(--font-display);
  color: var(--retro-red);
  background: #ffeec7;
  border-left: 6px solid var(--retro-orange);
  border-radius: 8px;
  margin: 0 0 8px 0;
  padding: 18px 26px 14px 20px;
  font-size: 1.24rem;
  line-height: 1.5;
}

/* Retro font effect for hero titles */
.hero h1, .thankyou h1 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--retro-orange);
  text-shadow:
    1px 2px 0 #fff,
    3px 2px 0 var(--retro-blue),
    0 2px 13px #A69D8233;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.07rem;
  margin-bottom: 16px;
  color: var(--retro-brown);
  font-family: var(--font-body);
}

/* =============================
   MAIN NAVIGATION (Retro Navbar)
   ============================= */
header {
  background: var(--retro-blue);
  width: 100%;
  box-shadow: 0 2px 15px #201c1688;
  position: sticky;
  top: 0;
  z-index: 101;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.03rem;
  background: none;
}
.main-nav a {
  color: var(--retro-cream);
  text-decoration: none;
  padding: 7px 17px;
  border-radius: 7px;
  position: relative;
  transition: color 0.18s, background 0.22s, box-shadow 0.18s;
}
.main-nav a:not(.cta-button):hover, .main-nav a:not(.cta-button):focus {
  color: var(--retro-orange);
  background: #112235;
}
.main-nav img {
  height: 42px;
  width: auto;
  margin-right: 0px;
  filter: drop-shadow(0 2px 6px #F7F5F055);
}
.cta-button {
  background: var(--retro-orange);
  color: var(--retro-blue);
  padding: 8px 23px;
  border: none;
  border-radius: 21px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px #cba74a34, 0 1.5px 0 0 #988055;
  transition: background 0.2s, color 0.22s, box-shadow 0.19s;
  outline: none;
  margin-left: auto;
  margin-right: 0;
}
.cta-button:hover, .cta-button:focus {
  background: var(--retro-red);
  color: var(--retro-cream);
  box-shadow: 0 4px 14px #bb5a3d22, 0 1.5px 0 0 #F7F5F0;
  text-decoration: underline dotted var(--retro-cream) 2.5px;
}

/* ======================
   MOBILE NAVIGATION
   ====================== */
.mobile-menu-toggle {
  display: inline-flex;
  position: absolute;
  top: 15px;
  right: 14px;
  background: var(--retro-orange);
  color: var(--retro-blue);
  border-radius: 50%;
  font-size: 2.1rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--retro-blue);
  z-index: 999;
  box-shadow: 0 2px 6px #F7F5F088;
  cursor: pointer;
  transition: background .19s, color .19s, border .13s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--retro-blue);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  max-height: 100dvh;
  background: var(--retro-blue);
  z-index: 1002;
  transform: translateX(105vw);
  transition: transform .45s cubic-bezier(.7,1.25,.4,1), box-shadow .17s;
  box-shadow: 0 6px 40px #000b3d8f;
}
body.mobile-menu-open .mobile-menu {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 19px;
  right: 19px;
  font-size: 2.2rem;
  color: var(--retro-orange);
  background: var(--retro-cream);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  z-index: 1004;
  transition: background .14s, color .16s;
  border: 2px solid var(--retro-orange);
}
.mobile-menu-close:focus {
  background: var(--retro-orange);
  color: var(--retro-blue);
}
.mobile-nav {
  margin-top: 85px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--retro-cream);
  background: #264058;
  padding: 14px 27px;
  border-radius: 17px;
  font-weight: 700;
  font-size: 1.17rem;
  transition: background .22s, color .16s;
  margin: 0 13px;
  width: calc(100% - 26px);
  box-shadow: 0 1px 8px #e2b00718;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-orange);
  color: var(--retro-blue);
}

/* Hide desktop nav on mobile, show hamburger */
@media (max-width: 950px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 951px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}

/* ===================
   HERO & SECTION LAYOUT
   =================== */
.hero {
  background: repeating-linear-gradient(45deg, #F7F5F0, #FFEEC7 33px, #F7F5F0 68px) #FFEEC7;
  border-radius: var(--border-radius);
  min-height: 222px;
  margin-top: 18px;
  margin-bottom: 60px;
  box-shadow: var(--vintage-shadow);
  display: flex;
  align-items: center;
  padding-top: 33px;
  padding-bottom: 33px;
}
.hero .container { width: 100%; }
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

/* ==================================
   FEATURE, CARD AND GRID COMPONENTS
   ================================== */
.features {
  margin-bottom: 60px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  width: 100%;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fffbe3;
  border-radius: var(--border-radius);
  border: 1.5px solid #e7dac4;
  box-shadow: 0 1.5px 6px #E2B00744;
  padding: 26px 22px 18px 18px;
  gap: 15px;
  width: 275px;
  min-width: 182px;
  max-width: 98vw;
  transition: box-shadow .18s, transform .25s;
  margin-bottom: 20px;
  position: relative;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 8px #e2b00733);
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 5px 30px #e2b00733, 0 2px 9px #bb5a3d22;
  transform: translateY(-3px) scale(1.04);
  z-index: 2;
}

.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  margin-top: 16px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fffbe3;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 14px #98805511;
  padding: 28px 24px;
  min-width: 240px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--retro-cream);
  border-radius: var(--border-radius);
  box-shadow: var(--vintage-shadow);
  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;
}

/* TESTIMONIALS */
.testimonial-card, .testimonials .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 22px;
  background: #fffbe3;
  border-radius: var(--border-radius);
  box-shadow: 0 3px 19px #bb5a3d11;
  margin-bottom: 22px;
  min-width: 315px;
  max-width: 95vw;
  border: 1.3px solid #e2b00733;
  color: #243A52;
}
.testimonial-card blockquote {
  margin-bottom: 10px;
  font-size: 1.18rem;
  font-style: italic;
  color: #BB5A3D;
  background: transparent;
  border-left: 5px solid #E2B007;
}
.testimonial-card p {
  color: var(--retro-blue);
  font-size: 1rem;
}
.testimonial-card img {
  width: 27px;
  height: 27px;
  display: inline-block;
  margin: 0 1.5px;
}

/* ====================
   SERVICE LIST STYLES
   ==================== */
.services-list,
.usp-list,
.included-services,
.contact-details-block,
.faq-list,
.detailed-services-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 16px;
}
.services-list li, .detailed-services-list li, .included-services li, .usp-list li, .contact-details-block li, .faq-list li {
  background: #f3eacc;
  padding: 12px 17px 10px 18px;
  border-radius: 8px;
  color: var(--retro-blue);
  font-size: 1.03rem;
  border-left: 4px dashed var(--retro-orange);
  box-shadow: 0 1.5px 7px #e2b00711;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.detailed-services-list li {
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 19px 16px 16px 10px;
  background: #fffbe3;
  border-radius: 13px;
  border: 1.2px solid #e2b00723;
  box-shadow: 0 1px 10px #f2eedb88;
}
.detailed-services-list li img {
  width: 48px;
  height: 48px;
  margin-top: 3px;
}
.detailed-services-list li > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.detailed-services-list span {
  margin-top: 5px;
  font-size: 1rem;
  color: var(--retro-red);
  font-weight: 700;
}

/* ==================================
   PRICING TABLE & FAQ LAYOUT
   ================================== */
.pricing-table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 24px;
  background: #fffbe3;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 2px 13px #98805508;
}
.pricing-table th {
  background: var(--retro-orange);
  color: var(--retro-blue);
  font-family: var(--font-display);
  font-size: 1.13rem;
  padding: 15px 8px;
}
.pricing-table td {
  padding: 13px 7px;
  border-bottom: 1px solid #e2b00733;
  color: var(--retro-blue);
  font-size: 1.06rem;
}
.pricing-table tr:nth-child(even) td {
  background: #f6ebe3;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

.faq-list {
  margin-top: 10px;
}
.faq-list li {
  background: #f3eacc;
  border-left: 4px dotted var(--retro-green);
  font-size: 1.02rem;
}

/* ===============================
   QUALITY SEALS / LOGOS
   =============================== */
.quality-seals, .customer-logos, .local-advantages {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-top: 7px;
  margin-bottom: 7px;
}
.quality-seals img, .customer-logos img {
  background: #fffbe3;
  border-radius: 8px;
  box-shadow: 0 1.5px 6px #e2b00733;
  width: 49px;
  height: auto;
  border: 1px solid #e2b00734;
  padding: 9px 7px;
}

/* ===================
   CTA SECTIONS
   =================== */
.cta {
  background: repeating-linear-gradient(-45deg, #fffbe3, #FFEEC7 27px, #fffbe3 44px) #FFEEC7;
  border-radius: var(--border-radius);
  box-shadow: var(--vintage-shadow);
}
.cta-button {
  /* already defined above */
}
.cta ul, .cta li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cta ul {
  margin-top: 10px;
}
.cta li {
  color: var(--retro-blue);
  background: #fffbe3;
  margin-bottom: 9px;
  border-radius: 5px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  font-size: 1.04rem;
  border-left: 3px solid var(--retro-brown);
}
.cta li:last-child {
  margin-bottom: 0;
}

/* ===================
   LEGAL/ABOUT/ADDRESS
   =================== */
.legal address, .about address {
  font-style: normal;
  color: var(--retro-brown);
  margin-bottom: 6px;
  font-size: 1.02rem;
}

/* ===================
   FOOTER STYLES
   =================== */
footer {
  background: var(--retro-blue);
  color: var(--retro-cream);
  border-radius: 18px 18px 0 0;
  margin-top: 62px;
  box-shadow: 0 -2px 28px #201c1622;
  width: 100%;
}
footer .container {
  padding-top: 33px;
  padding-bottom: 12px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--retro-orange);
  font-family: var(--font-display);
  font-weight: 700;
  transition: color .19s, text-decoration .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--retro-cream);
  text-decoration: underline wavy var(--retro-orange) 3px;
}
footer img {
  width: 55px;
  margin: 0 0 8px 0;
  filter: drop-shadow(0 1px 3px #F7F5F088);
}
footer address {
  color: #dac8a9;
  font-size: 1.04rem;
  font-family: var(--font-body);
  margin-bottom: 3px;
}
.social-icons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 3px;
}
.social-icons img {
  width: 33px;
  height: 33px;
  border-radius: 10px;
  background: #fffbe3;
  border: 1.1px solid #e2b00731;
  padding: 7px;
  transition: filter .20s, box-shadow .18s;
}
.social-icons img:hover, .social-icons img:focus {
  filter: brightness(0.97) sepia(1) hue-rotate(17deg) saturate(1.3);
  box-shadow: 0 2px 9px #e2b00744;
}

/* ===================
   COOKIE CONSENT BANNER
   =================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  justify-content: center;
  background: #fffbe3;
  border-top: 5px solid #E2B007;
  padding: 24px 18px;
  box-shadow: 0 -2px 30px #98805530;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: transform .4s, opacity .22s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120px);
}
.cookie-banner__text {
  color: var(--retro-blue);
  max-width: 480px;
  margin-right: 26px;
}
.cookie-banner__btn-group {
  display: flex;
  gap: 13px;
}
.cookie-banner__btn,
.cookie-banner__settings {
  background: var(--retro-orange);
  color: var(--retro-blue);
  font-family: var(--font-display);
  font-size: 1.03rem;
  padding: 8px 21px;
  border-radius: 17px;
  border: none;
  font-weight: 700;
  margin: 0;
  transition: background .17s, color .15s, box-shadow .13s;
  box-shadow: 0 2px 7px #e2b00721;
}
.cookie-banner__btn:hover, .cookie-banner__btn:focus {
  background: var(--retro-red);
  color: var(--retro-cream);
  box-shadow: 0 3px 14px #bb5a3d22;
}
.cookie-banner__settings:hover, .cookie-banner__settings:focus {
  background: var(--retro-green);
  color: var(--retro-cream);
}

/* Cookie modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 11000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100dvh;
  background: #243A52bb;
  justify-content: center;
  align-items: center;
  transition: opacity .24s;
}
.cookie-modal-overlay.active {
  display: flex;
  animation: cookieFadeIn .37s ease-in;
}
@keyframes cookieFadeIn {
  0% { opacity: 0; }
  100%{ opacity: 1; }
}
.cookie-modal {
  background: #fffbe3;
  border-radius: 17px;
  box-shadow: 0 3px 55px #243A52cc;
  padding: 37px 28px 22px 28px;
  max-width: 440px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--font-body);
}
.cookie-modal h3 {
  font-family: var(--font-display);
  font-size: 1.24rem;
  color: var(--retro-blue);
  margin-bottom: 8px;
}
.cookie-modal__category {
  background: #f3eacc;
  border-radius: 11px;
  padding: 10px 13px 8px 13px;
  margin-bottom: 13px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--retro-blue);
}
.cookie-modal__category.essential {
  color: #888;
  font-weight: 800;
  background: #D2CCB9;
  opacity: 0.72;
}
.cookie-toggle {
  appearance: none;
  width: 34px; height: 18px;
  outline: none;
  border-radius: 10px;
  background: #bbb;
  position: relative;
  transition: background .16s;
}
.cookie-toggle:checked {
  background: var(--retro-orange);
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 2.5px; top: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px #88888822;
  transition: left .15s;
}
.cookie-toggle:checked::before {
  left: 16px;
}
.cookie-modal__actions {
  width: 100%;
  display: flex;
  gap: 17px;
  justify-content: flex-end;
  margin-top: 19px;
}
.cookie-modal__btn {
  background: var(--retro-orange);
  color: var(--retro-blue);
  font-family: var(--font-display);
  font-size: 1.01rem;
  font-weight: 700;
  padding: 7px 26px;
  border-radius: 13px;
  border: none;
  transition: background .17s, color .14s;
}
.cookie-modal__btn:hover, .cookie-modal__btn:focus {
  background: var(--retro-red);
  color: var(--retro-cream);
}
.cookie-modal__btn-alt {
  background: #fffbe3;
  color: var(--retro-blue);
  border: 1.2px solid #E2B00755;
}

/* ========== SPECIALS ========== */
.address, address {
  font-size: 1rem;
  font-family: var(--font-body);
}

/* =========== THANK YOU PAGE ============ */
.thankyou {
  background: repeating-linear-gradient(90deg, #fffbe3 0 50px, #E2B007 51px 102px);
  border-radius: var(--border-radius);
  box-shadow: var(--vintage-shadow);
}

/* ===========================
   RESPONSIVE ADJUSTMENTS
   =========================== */
@media (max-width: 1200px) {
  .container { max-width: 99vw; }
}
@media (max-width: 1000px) {
  .feature-grid, .card-container, .content-grid {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  .feature-item {
    min-width: 158px;
    width: 48vw;
  }
}
@media (max-width: 768px) {
  .section, section {
    padding: 20px 7px;
  }
  .hero, .cta, .thankyou {
    padding-top: 19px;
    padding-bottom: 16px;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature-item {
    min-width: 120px;
    width: 90vw;
    padding: 20px 10px 16px 13px;
  }
  .testimonial-card {
    min-width: 0;
    padding: 17px 7px;
  }
  .quality-seals, .customer-logos, .local-advantages {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .faq-list li, .included-services li, .usp-list li, .services-list li {
    font-size: 0.97rem;
    padding: 8px 10px 6px 10px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle { display: flex; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.09rem; }
  .hero h1 { font-size: 1.42rem; }
  .hero { min-height: unset;
    padding-top: 11px;
    padding-bottom: 7px;
  }
  .feature-item img, .detailed-services-list li img {
    width: 36px;
    height: 36px;
  }
  .testimonial-card {
    font-size: 0.9rem;
    min-width: 0;
  }
  .cookie-banner__text {
    margin-right: 0;
    margin-bottom: 9px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 17px 8px 17px 12px;
    font-size: 0.93rem;
  }
  .footer-nav {
    gap: 12px;
    font-size: 0.91rem;
  }
  .feature-item, .card, .testimonial-card {
    padding: 12px 7px 8px 7px;
  }
}

/* =========================
   MICRO-INTERACTIONS & EFFECTS
   ========================= */
a, button, .cta-button, .cookie-banner__btn, .cookie-modal__btn {
  transition: all .19s cubic-bezier(.69,.13,.32,1.1);
}
.feature-item:hover::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 10px; right: 10px;
  width: 39px; height: 19px;
  background: url('../assets/icons/icon-star.svg') no-repeat center / contain;
  opacity: 0.19;
  pointer-events: none;
}
input, textarea {
  font-family: var(--font-body);
  border: 1px solid #e2b00775;
  border-radius: 5px;
  padding: 7px;
  box-sizing: border-box;
  margin-bottom: 9px;
  background: #fffbe3;
  color: var(--retro-blue);
}
input:focus, textarea:focus {
  outline: 2px solid var(--retro-orange);
}

/* =========================
   HIDE/SHOW UTILS
   ========================= */
.hide, .hidden { display: none !important; }

/* Accessibility */
::-moz-selection { background: var(--retro-orange); color: var(--retro-blue); }
::selection { background: var(--retro-orange); color: var(--retro-blue); }
