/* ====================================================
   Vintage Retro Style for LinguaExpress (Flexbox Only)
   ==================================================== */
/* ==== 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,main,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 { box-sizing: border-box; height: 100%; }
*,*:before,*:after { box-sizing: inherit; }
body { line-height: 1.6; background: #FEF7EE; color: #252331; width: 100%; min-height: 100vh; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: #163152; text-decoration: none; transition: color .2s; }
a:focus { outline: 2px dotted #FEA900; outline-offset: 2px; }
button, select, input, textarea {
  font-family: inherit;
  font-size: inherit;
  border-radius: 0;
}
ol, ul { list-style: none; }

/* ==== Custom Fonts ==== */
@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');
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #FEF7EE;
  color: #252331;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #163152;
  letter-spacing: 0.03em;
}
h1 { font-size: 2.4rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; color: #A45A2A; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 10px; }

p, li, td {
  font-size: 1rem;
  line-height: 1.7;
}
strong, b { font-weight: 700; }
small { font-size: 0.92rem; color: #806153; }

/* ==== Vintage Retro Color Palette ==== */
:root {
  --primary: #163152;
  --secondary: #D7D9DA;
  --accent: #FEA900;
  --retro-coral: #EA7462;
  --retro-sand: #F5E4B8;
  --retro-blue: #85A6A6;
  --retro-olive: #63633D;
  --retro-brown: #8A4E27;
  --bg: #FEF7EE;
  --text: #252331;
}

/* ===============================
   Layout & Containers
   =============================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FEF7EE;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fffaf3;
  border-radius: 16px;
  box-shadow: 0 2px 9px 0 rgba(66,36,13,0.07);
  overflow: hidden;
  position: relative;
  border: 1.5px solid #D7D9DA;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 14px;
  border-radius: 8px;
  background: #fff7df;
  box-shadow: 0 2px 6px 0 rgba(66,36,13,0.06);
  margin-bottom: 20px;
}

/* ===============================
   Header & Navigation (Desktop)
   =============================== */
header {
  background: #F5E4B8;
  border-bottom: 4px solid #A45A2A;
  box-shadow: 0 4px 18px -8px #D7D9DA66;
  padding: 0;  
  width: 100%;
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 72px;
}
.logo img {
  height: 48px;
  width: auto;
  filter: sepia(0.3) hue-rotate(-18deg) contrast(1.1);
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #8A4E27;
  letter-spacing: 0.05em;
  font-size: 1.08rem;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background .18s, color .18s;
  background: transparent;
}
.main-nav a:hover, .main-nav a:focus {
  background: #EA7462;
  color: #FEF7EE;
}
.main-nav .cta.primary {
  background: var(--accent);
  color: #163152;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 2px 10px 0 #EA746228;
  padding: 10px 24px;
  letter-spacing: 0.14em;
  margin-left: 14px;
}
.main-nav .cta.primary:hover, .main-nav .cta.primary:focus {
  background: #EA7462;
  color: #fff;
  box-shadow: 0 4px 20px 0 #EA746249;
}
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.7rem;
  color: #163152;
  margin-left: 16px;
  transition: background 0.18s;
  box-shadow: 0 1px 6px 0 #D7D9DA60;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #EA7462;
  color: #fff;
}

/* ===============================
   Mobile Nav Overlay & Animations
   =============================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F5E4B8;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.68 -.55, .27 1.55, .76 .93);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: #EA7462;
  color: #fff;
  border: none;
  font-size: 2rem;
  position: absolute;
  right: 24px;
  top: 16px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 6px 0 #EA746233;
  z-index: 101;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #163152;
  color: #FEA900;
}
.mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 84px 36px 32px 36px;
  margin-top: 30px;
}
.mobile-menu .mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #8A4E27;
  font-size: 1.2rem;
  padding: 12px 18px;
  border-radius: 8px;
  background: transparent;
  transition: background .18s, color .18s;
}
.mobile-menu .mobile-nav a:hover, .mobile-menu .mobile-nav a:focus {
  color: #fff;
  background: #FEA900;
}

/* Hide main nav, show burger on mobile */
@media (max-width: 990px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 991px) {
  .mobile-menu       { display: none !important; }
}

/* ===============================
   Hero
   =============================== */
.hero {
  background: linear-gradient(90deg, #F5E4B8 0%, #EA7462 100%);
  padding-top: 56px;
  padding-bottom: 56px;
  box-shadow: 0 4px 32px 0 #D7D9DA44;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 370px;
}
.hero .content-wrapper {
  max-width: 550px;
  margin: auto;
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  font-size: 2.6rem;
  color: #163152;
  letter-spacing: 0.08em;
  text-shadow: 1px 2px 0 #FEA90033;
}
.hero p {
  font-size: 1.14rem;
  color: #80512A;
}

/* ===============================
   CTA Button
   =============================== */
.cta, .cta.primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #FEA900;
  color: #163152;
  border-radius: 999px;
  font-size: 1.18rem;
  font-weight: 900;
  padding: 12px 30px;
  text-align: center;
  letter-spacing: 0.09em;
  box-shadow: 0 2px 10px 0 #8A4E2733;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background .18s, color .18s, transform .12s;
}
.cta:hover, .cta:focus {
  background: #EA7462;
  color: #fff;
  transform: scale(1.04);
}

/* ===============================
   Features Section / Retro Cards
   =============================== */
.features {
  background: #fffaf3;
  border-top: 3px solid #F5E4B8;
  border-bottom: 3px solid #F5E4B8;
  box-shadow: 0 2px 12px 0 #D7D9DA22;
  margin-bottom: 60px;
}
.features h2 {
  color: #A45A2A;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 22px;
  margin-bottom: 15px;
}
.feature-grid li {
  background: repeating-linear-gradient(-45deg, #FEF7EE, #FEF7EE 10px, #F5E4B8 10px, #F5E4B8 20px);
  box-shadow: 0 5px 18px -5px #8A4E2722;
  border-radius: 16px;
  min-width: 200px;
  max-width: 340px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #6E3632;
  border: 1.25px solid #D7D9DA;
}
.feature-grid img {
  width: 38px; height: 38px;
  margin-right: 8px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px 0 #EA746220;
  padding: 4px;
}

/* ===============================
   Service List & Step Guides
   =============================== */
.service-list, .step-by-step-guide {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-list li, .step-by-step-guide li {
  background: #fffaf3;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 #D7D9DA33;
  padding: 26px 20px 22px 20px;
  min-width: 220px;
  max-width: 300px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  border: 1px solid #D7D9DA;
  position: relative;
  transition: box-shadow .18s, transform .14s;
}
.service-list li:hover, .step-by-step-guide li:hover {
  box-shadow: 0 6px 24px 0 #FEA90030;
  transform: translateY(-3px) scale(1.03);
}
.service-list img, .step-by-step-guide img {
  width: 42px; height: 42px;
}
.service-list h3, .step-by-step-guide strong {
  font-size: 1.18rem; color: #163152; margin-bottom: 8px; margin-top: 0;
}
.service-list p, .step-by-step-guide p {
  font-size: 0.99rem;
  color: #5B4639;
}
/* Step numerals subtle retro style */
.step-by-step-guide li strong:before {
  content: "";
  display: inline-block;
  width: 26px; height: 26px;
  margin-right: 8px;
  background: var(--accent);
  border-radius: 100%;
  box-shadow: 0 1px 6px 0 #EA74622b;
  vertical-align: middle;
}

/* ===============================
   Pricing Table
   =============================== */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 #EA746229;
  border-radius: 12px;
  overflow: hidden;
  background: #fffaf3;
}
.pricing-table th, .pricing-table td {
  padding: 16px 18px;
}
.pricing-table th {
  background: #F5E4B8;
  color: #8A4E27;
  font-size: 1.14rem;
  letter-spacing: .06em;
}
.pricing-table td {
  border-bottom: 1px solid #D7D9DA;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* ===============================
   Testimonials
   =============================== */
.testimonials {
  background: #fffaf3;
  border-top: 3px solid #F5E4B8;
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: #FEF7EE;
  border-radius: 16px;
  border: 1.5px solid #EA7462;
  box-shadow: 0 2px 14px 0 #F5E4B855;
  min-width: 240px;
  max-width: 420px;
  color: #252331;
  font-size: 1.05rem;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px 0 #FEA90035;
  transform: scale(1.025);
}
.testimonial-card p {
  color: #351A14;
  letter-spacing: .01em;
  font-size: 1.05rem;
  font-style: italic;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .98rem;
  color: #A45A2A;
}
.aggregate-score {
  background: #F5E4B8;
  margin-top: 20px;
  border-radius: 10px;
  padding: 14px 20px;
  color: #8A4E27;
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-align: center;
  box-shadow: 0 2px 7px 0 #FEA90011;
  justify-content: center;
}

/* ===============================
   Footer
   =============================== */
footer {
  background: #F5E4B8;
  border-top: 4px solid #A45A2A;
  padding-top: 36px;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1.5px dashed #D7D9DA;
}
.footer-logo img {
  width: 88px; height: auto;
  filter: sepia(.4) hue-rotate(-10deg) contrast(1.14);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #8A4E27;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  padding-left: 10px;
  border-left: 3px solid #FEA900;
  transition: color .17s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #EA7462; }
.footer-contact {
  color: #8A4E27;
  font-size: 0.99rem;
  line-height: 1.7;
  letter-spacing: .01em;
}
.footer-contact a { color: #8A4E27; border-bottom: 1px dotted #8A4E27; transition: color .16s; }
.footer-contact a:hover { color: #EA7462; }
.footer-rights {
  text-align: center;
  color: #B5875F;
  padding: 18px 0 2px 0;
  font-size: 0.94rem;
  letter-spacing: .03em;
}

/* ===============================
   CTA Block
   =============================== */
.cta-block {
  background: #EA7462;
  box-shadow: 0 3px 30px 0 #FEA90022;
  color: #fff;
  border-radius: 18px;
  margin-bottom: 60px;
}
.cta-block .content-wrapper { align-items: center; text-align: center; }
.cta-block h2 { color: #F5E4B8; font-size: 2rem; text-shadow: 0 2px 6px #A45A2A33; }
.cta-block p { color: #fff8e4; font-size: 1.13rem; }
.cta-block .cta {
  background: #FEA900;
  color: #163152;
  font-weight: 800;
  margin: 12px auto 0 auto;
  box-shadow: 0 2px 13px 0 #16315225;
}
.cta-block .cta:hover, .cta-block .cta:focus { background: #fff; color: #EA7462; }
.quick-contact {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  color: #fffbd6;
}
.quick-contact img {
  width: 18px; height: 18px; display: inline-block;
  filter: sepia(.4) hue-rotate(-14deg) contrast(1);
}
.quick-contact a { color: #FFF7EE; font-weight: bold; text-decoration: underline; }

/* ===============================
   Misc Sections
   =============================== */
.about, .legal, .pricing, .services, .steps, .contact-section, .thank-you, .hours {
  background: #FEF7EE;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 #EA746214;
  margin-bottom: 60px;
  padding-top: 32px;
  padding-bottom: 32px;
}
.about h1, .legal h1, .steps h1, .contact-section h1, .thank-you h1 { color: #A45A2A; margin-bottom: 18px; }
.company-contact-info {
  margin-top: 16px;
  margin-bottom: 18px;
  color: #8A4E27;
  font-size: 1.01rem;
  background: #fff7df;
  padding: 14px 16px;
  border-radius: 8px;
  box-shadow: 0 1px 5px #F5E4B855;
}
.company-contact-info img {
  width: 17px; height: 17px; vertical-align: text-bottom; margin-right: 6px;
}
.map-embed {
  margin: 18px 0 8px 0;
  background: #F5E4B8;
  border: 1.2px dashed #EA7462;
  border-radius: 12px;
  text-align: center;
  padding: 22px;
  color: #A45A2A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
}
.hours .business-hours {
  background: #F5E4B8;
  border-radius: 12px;
  box-shadow: 0 1px 6px #F5E4B810;
  padding: 20px 26px;
  color: #8A4E27;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

/* ===============================
   Cookie Consent Banner
   =============================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #EA7462;
  color: #fff;
  padding: 20px 20px 16px 20px;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  box-shadow: 0 -4px 30px 0 #8A4E2742;
  font-size: 1.01rem;
  flex-wrap: wrap;
  animation: ccBannerFadeIn .9s cubic-bezier(.21,.94,.39,.97);
}
@keyframes ccBannerFadeIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner button {
  margin-left: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 999px;
  padding: 8px 22px;
  border: none;
  margin-right: 10px;
  box-shadow: 0 1px 5px #FEA90015;
  cursor: pointer;
  transition: background .15s, color .14s, transform .12s;
}
.cookie-consent-banner .accept {
  background: #FEA900;
  color: #163152;
  font-weight: 800;
}
.cookie-consent-banner .accept:hover, .cookie-consent-banner .accept:focus { background: #fff; color: #EA7462;}
.cookie-consent-banner .reject{
  background: #fff;
  color: #A45A2A;
  font-weight: 600;
  border: 1.2px solid #FEA900;
}
.cookie-consent-banner .reject:hover, .cookie-consent-banner .reject:focus { background: #A45A2A; color: #fff;}
.cookie-consent-banner .settings{
  background: #F5E4B8;
  color: #8A4E27;
  font-weight: 700;
  border: 1.2px solid #FEA900;
}
.cookie-consent-banner .settings:hover, .cookie-consent-banner .settings:focus {
  background: #FEA900;
  color: #163152;
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(.93);
  background: #fff7df;
  color: #163152;
  min-width: 330px;
  box-shadow: 0 4px 34px #EA746277;
  padding: 34px 28px 28px 28px;
  border-radius: 15px;
  z-index: 4000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s .12s, transform 0.34s cubic-bezier(.95,-0.09,.27,1.25);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  transition-delay: 0s;
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.24rem;
  color: #A45A2A;
  margin-bottom: 16px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 17px;
  font-size: 1.08rem;
}
.cookie-modal .category label {
  font-weight: 600; color: #8A4E27;
}
.cookie-modal .toggle {
  display: inline-block;
  width: 44px; height: 24px;
  background: #D7D9DA;
  border-radius: 999px;
  position: relative;
  cursor: pointer;
}
.cookie-modal .toggle input { display: none; }
.cookie-modal .toggle span {
  position: absolute;
  left: 2px; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #EA7462;
  transition: left 0.2s cubic-bezier(.38,.57,.47,1.7);
}
.cookie-modal .toggle input:checked + span {
  left: 22px;
  background: #FEA900;
}
.cookie-modal .modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 1px 5px #FEA90017;
  cursor: pointer;
  font-weight: 700;
  transition: background .13s, color .14s;
}
.cookie-modal .accept { background: #FEA900; color: #163152; }
.cookie-modal .accept:hover, .cookie-modal .accept:focus { background: #EA7462; color: #fff; }
.cookie-modal .close {
  background: #EA7462;
  color: #fff;
  margin-left: 8px;
}
.cookie-modal .close:hover, .cookie-modal .close:focus { background: #163152; color: #FEA900; }
.cookie-modal .category .desc { color: #806153; font-size: 0.97rem; margin-left: 8px; }

/* ===============================
   RESPONSIVE DESIGN
   =============================== */
@media (max-width: 1140px) {
  .container { max-width: 98vw; }
}
@media (max-width: 990px) {
  header .container {
    flex-direction: row;
    gap: 14px;
    height: 62px;
  }
  .footer-logo img {
    width: 68px;
  }
  .feature-grid, .service-list, .step-by-step-guide {
    gap: 16px;
  }
  .content-wrapper {
    gap: 15px;
  }
}
@media (max-width: 850px) {
  .content-wrapper, .footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .feature-grid, .service-list, .step-by-step-guide {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .about, .legal, .pricing, .services, .steps, .contact-section, .thank-you {
    border-radius: 10px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
    max-width: 99vw;
  }
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: block; }

  .hero h1 {
    font-size: 1.52rem;
  }
  .section, section, .hero, .features {
    padding: 24px 9px;
    margin-bottom: 40px;
  }
  .feature-grid, .service-list, .step-by-step-guide {
    flex-direction: column;
    gap: 12px;
  }
  .testimonials .content-wrapper, .footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .card, .testimonial-card {
    max-width: 100%;
    padding: 18px 10px;
  }
  .cta-block {
    padding-bottom: 30px;
    border-radius: 11px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    font-size: .97rem;
  }
  .footer-nav { gap: 7px; }
  .footer-logo img { width: 53px; }
  .footer .content-wrapper { gap: 12px; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.23rem; }
  h2 { font-size: 1.02rem; }
  h3 { font-size: 1rem; }
  .hero h1 { font-size: 1.13rem; }
  .feature-grid li, .service-list li, .step-by-step-guide li {
    min-width: 0;
    padding: 12px 8px;
  }
  .container { padding: 0 4px; }
}

/* ===============================
   Animations & Micro-interactions
   =============================== */
.cta, .cta.primary, .main-nav a, .feature-grid li, .testimonial-card, .service-list li, .step-by-step-guide li {
  transition: box-shadow .16s, background .18s, color 0.15s, transform 0.11s;
}
.testimonial-card:hover, .feature-grid li:hover, .service-list li:hover {
  box-shadow: 0 7px 26px 0 #FEA90033;
  transform: translateY(-2px) scale(1.03);
}
.cta:active, .cta.primary:active {
  transform: scale(.97) translateY(1px);
}

/* ===============================
   Misc Utilities & Patterns
   =============================== */
.card { background: #fffaf3; }
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
ul, ol {
  margin-left: 16px;
  margin-bottom: 18px;
}
ul li, ol li { margin-bottom: 8px; }
ahref:focus-visible {
  outline: 2px solid #FEA900;
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 11px;
  background: #F5E4B8;
}
::-webkit-scrollbar-thumb {
  background: #EA7462;
  border-radius: 8px;
}

/* End of CSS */
