/* ==== 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F8F6F4;
  color: #2A2D34;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #1A3365;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #40A682;
  outline: none;
}
ul, ol {
  margin-left: 24px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}
button {
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.2s;
}

/* ==== BRAND COLORS ==== */
:root {
  --color-primary: #1A3365;
  --color-secondary: #40A682;
  --color-accent: #F3F3F6;
  --color-bg: #FAF3EF;
  --color-btn-bg: #FFB873;
  --color-btn-bg-hover: #FF9F3C;
  --color-white: #FFF;
  --color-black: #111;
  --color-shadow: rgba(32,41,56,0.07);
}

body {
  background: var(--color-bg);
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: var(--color-primary);
  letter-spacing: -1px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.09;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 7px;
}
p {
  font-size: 1rem;
  margin-bottom: 12px;
}
.section p:last-child {
  margin-bottom: 0;
}

/* Text sections */
.text-section {
  margin: 20px 0 32px 0;
  line-height: 1.7;
  color: #3A425A;
}
.text-section ul,
.text-section ol {
  margin: 12px 0 12px 24px;
  font-size: 1rem;
}
.text-section ul li,
.text-section ol li {
  margin-bottom: 8px;
}

/* ==== CONTAINER ==== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* ==== HEADER/NAVIGATION ==== */
header {
  background: var(--color-white);
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  min-height: 56px;
  gap: 24px;
}
header img {
  max-height: 42px;
  margin-right: 24px;
  border-radius: 0;
}
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--color-primary);
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
nav a:hover, nav a:focus {
  background: var(--color-secondary);
  color: var(--color-white);
}
.cta.primary {
  display: inline-block;
  background: var(--color-btn-bg);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 28px;
  margin-left: 20px;
  box-shadow: 0 1px 6px var(--color-shadow);
  border: 2px solid var(--color-btn-bg);
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.21s;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--color-btn-bg-hover);
  color: var(--color-white);
  box-shadow: 0 2px 12px var(--color-shadow);
  border-color: var(--color-btn-bg-hover);
}
.cta {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 11px 24px;
  border-radius: 28px;
  box-shadow: 0 1px 6px var(--color-shadow);
  margin-top: 12px;
  margin-bottom: 8px;
  transition: background 0.2s, color 0.2s;
}
.cta:hover, .cta:focus {
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
}
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-white);
  font-size: 2rem;
  padding: 6px 13px 5px 13px;
  border-radius: 50%;
  border: none;
  margin-left: 10px;
  margin-right: 0;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  z-index: 1003;
  box-shadow: 0 1px 7px var(--color-shadow);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: var(--color-btn-bg);
}

@media (max-width: 1020px) {
  header .container {
    gap: 8px;
  }
  nav {
    gap: 11px;
  }
}

@media (max-width: 900px) {
  header nav,
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF7F0;
  box-shadow: 0 4px 40px 0 rgba(38, 32, 30, 0.21);
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.77,.2,.05,1), opacity 0.23s ease;
  visibility: hidden;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  background: #FF9F3C;
  color: var(--color-white);
  font-size: 2rem;
  border-radius: 50%;
  padding: 10px 16px 10px 16px;
  margin: 24px 30px 0 0;
  border: none;
  box-shadow: 0 1px 6px var(--color-shadow);
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
}
.mobile-nav {
  width: 100%;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 40px;
  gap: 8px;
}
.mobile-nav a {
  color: var(--color-primary);
  font-size: 1.25rem;
  padding: 12px 0;
  border-radius: 10px;
  width: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-btn-bg);
  color: var(--color-primary);
}
@media (max-width: 600px) {
  .mobile-nav {
    padding-left: 24px;
    margin-top: 28px;
  }
  .mobile-menu-close {
    margin: 19px 15px 0 0;
    font-size: 1.8rem;
  }
}

/* ==== HERO ==== */
.hero {
  background: linear-gradient(135deg, #FFEEC7 0%, #FFFBF5 85%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 6px 50px 0 rgba(88, 63, 43, 0.10);
  margin-bottom: 0;
  padding: 64px 0 48px 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 640px;
  gap: 18px;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.6rem;
  margin-bottom: 16px;
}
.hero p {
  color: #40331F;
  font-size: 1.19rem;
  margin-bottom: 20px;
}
.hero .cta {
  margin-top: 16px;
  font-size: 1.13rem;
}
@media (max-width: 660px) {
  .hero {
    padding: 40px 0 22px 0;
    border-radius: 0 0 20px 20px;
  }
  .hero .container { padding: 0 6px; }
}

/* ==== SECTIONS, SPACING & LAYOUT ==== */
main > section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: 0 2px 20px var(--color-shadow);
}
main > section:last-child { margin-bottom: 0; }
.services-preview, .main-cta { background: #FFF6EA; }

.features {
  background: #FDF7EE;
}

.features .content-wrapper { align-items: flex-start; }

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.feature-grid li {
  flex: 1 1 220px;
  min-width: 190px;
  max-width: 280px;
  background: var(--color-accent);
  border-radius: 18px;
  padding: 24px 18px;
  box-shadow: 0 1px 10px var(--color-shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.15s, transform 0.14s;
}
.feature-grid li:hover {
  box-shadow: 0 4px 20px var(--color-shadow);
  transform: translateY(-3px) scale(1.023);
}
.feature-grid img {
  width: 48px;
  margin-bottom: 10px;
  border-radius: 12px;
}
.feature-grid h3 {
  font-size: 1.13rem;
  color: var(--color-secondary);
  margin-bottom: 7px;
}
.feature-grid p {
  font-size: 0.99rem;
  margin-bottom: 0;
}

/* Service shortlist */
.service-shortlist {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  margin-top: 15px;
}
.service-shortlist > div {
  flex: 1 1 200px;
  min-width: 170px;
  background: #F7ECDC;
  border-radius: 17px;
  padding: 20px 12px;
  box-shadow: 0 1px 10px var(--color-shadow);
}
.service-shortlist h3 {
  color: var(--color-primary);
  margin-bottom: 7px;
  font-size: 1.11rem;
}
.service-shortlist p {
  margin-bottom: 0;
  color: #564230;
}

/* Section with testimonials */
.testimonials {
  background: #FFF9EE;
}
.testimonials h2 { color: var(--color-secondary); }
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 26px 19px 26px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 2px 14px var(--color-shadow);
  min-width: 210px;
  max-width: 370px;
  font-size: 1.1rem;
  color: #232527;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 5px 25px var(--color-shadow);
  transform: scale(1.025);
}
.testimonial-card p {
  margin-bottom: 6px;
  color: #233253;
  font-size: 1.09rem;
}
.testimonial-card span {
  font-size: 0.99rem;
  color: #7B7F89;
}

/* Main CTA section */
.main-cta {
  background: #FFF2E0;
}

/* ==== CARD CONTAINERS & FLEXBOX PRESCRIBED ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 1px 9px var(--color-shadow);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.16s, transform 0.11s;
}
.card:hover {
  box-shadow: 0 4px 20px var(--color-shadow);
  transform: translateY(-2px) scale(1.019);
}
.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;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== TYPED LISTS & FAQ ==== */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 15px 0 22px 0;
}
.process-steps li {
  flex: 1 1 160px;
  background: #FDF6E8;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 10px 14px 10px;
  font-size: 1rem;
  color: #233253;
  box-shadow: 0 1px 7px var(--color-shadow);
}
.process-steps img {
  width: 38px;
  margin-bottom: 7px;
}
.assurances p {
  font-size: 1.07rem;
}
.client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 18px 0 18px 0;
  font-size: 1rem;
  color: #204C43;
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.faq-item {
  flex: 1 1 220px;
  background: #F5F9F6;
  border-radius: 13px;
  box-shadow: 0 1px 4px var(--color-shadow);
  padding: 17px 18px 14px 18px;
  margin-bottom: 20px;
  font-size: 0.99rem;
}
.faq-item h3 {
  color: var(--color-secondary);
}

/* ==== TABLES ==== */
.package-comparison-table,
.pricing-table {
  width: 100%;
  margin: 18px 0 26px 0;
  border-spacing: 0;
  border-collapse: separate;
  background: #FFEBCB;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 9px var(--color-shadow);
  font-size: 1rem;
}
.package-comparison-table th,
.pricing-table th {
  background: #FFA95A;
  color: #1A3365;
  padding: 14px 10px;
  font-weight: bold;
}
.package-comparison-table td,
.pricing-table td {
  color: #3A425A;
  padding: 13px 8px;
  background: #FFFAF1;
  border-bottom: 1px solid #FFC77D;
}
.package-comparison-table tr:last-child td,
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* ==== FOOTER ==== */
footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 36px 0 0 0;
  margin-top: 60px;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -4px 28px var(--color-shadow);
}
.footer-content {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 23px;
}
.footer-content > a img {
  height: 40px;
  border-radius: 0;
  margin-right: 8px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-right: 30px;
}
.footer-nav a {
  color: var(--color-white);
  font-size: 1rem;
  font-family: 'Montserrat';
  padding: 5px 0;
  border-radius: 8px;
  transition: background 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 1rem;
}
.footer-contact img {
  display: inline-block;
  height: 1em;
  border-radius: 0;
  margin-right: 6px;
  vertical-align: middle;
}
.copy {
  font-size: 0.95rem;
  color: #DED9D6;
  text-align: center;
  margin: 0 auto;
  padding: 7px 0 14px 0;
  opacity: 0.93;
}

/* ==== CONTACT DETAILS ==== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
  font-size: 1rem;
  list-style: none;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 11px;
}
.contact-details img {
  height: 23px;
  border-radius: 6px;
  margin-right: 5px;
}
.map-location {
  margin-top: 15px;
  background: #FDF7EE;
  border-radius: 11px;
  padding: 13px 19px;
  color: #3A425A;
  font-size: 1.04rem;
}

/* ==== CONFIRMATION (THANK YOU) PAGE ==== */
.confirmation {
  background: linear-gradient(96deg, #FFF5E5 10%, #ECECEC 100%);
  box-shadow: 0 1px 12px var(--color-shadow);
  border-radius: 32px;
  text-align: center;
  padding-top: 44px;
  padding-bottom: 44px;
}
.confirmation .cta.primary {
  margin-top: 22px;
  font-size: 1.17rem;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFDCA8;
  color: #2A2D34;
  box-shadow: 0 -2px 22px rgba(128,60,0,0.16);
  padding: 22px 12px 22px 12px;
  z-index: 1200;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  border-radius: 28px 28px 0 0;
  font-size: 1.03rem;
  justify-content: space-between;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s, transform 0.32s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(45px);
  pointer-events: none;
}
.cookie-consent-banner p {
  margin-bottom: 0;
  flex: 1 1 160px;
  color: #4A3D26;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 18px;
  border: none;
  padding: 11px 23px;
  cursor: pointer;
  margin-right: 0;
  transition: background 0.13s, color 0.15s, box-shadow 0.13s;
  box-shadow: 0 1px 6px var(--color-shadow);
}
.cookie-btn.accept {
  background: var(--color-secondary);
  color: var(--color-white);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--color-primary);
  color: var(--color-btn-bg);
}
.cookie-btn.reject {
  background: #E46D38;
  color: var(--color-white);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #CE5220;
}
.cookie-btn.settings {
  background: var(--color-btn-bg);
  color: var(--color-primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-btn-bg-hover);
  color: var(--color-white);
}

/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(54,44,32,0.35);
  z-index: 1800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.18s;
}
.cookie-modal-bg.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #FFF7F0;
  border-radius: 24px;
  max-width: 430px;
  width: calc(100vw - 32px);
  padding: 38px 28px 28px 28px;
  box-shadow: 0 4px 36px rgba(168, 124, 36, 0.11);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 19px;
  z-index: 1802;
  animation: modal-entry 0.32s cubic-bezier(.88,.32,.53,1.29);
}
@keyframes modal-entry {
  from { opacity: 0; transform: translateY(70px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h3 {
  font-size: 1.31rem;
  color: var(--color-primary);
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFBF7;
  border-radius: 13px;
  padding: 11px 15px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-category .switch {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-category label {
  font-weight: 600;
  color: var(--color-secondary);
  margin-right: 8px;
}
.cookie-category input[type="checkbox"] {
  width: 34px; height: 18px;
  accent-color: var(--color-secondary);
}
.cookie-category input[disabled] { opacity: 0.5; cursor: not-allowed; }
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 5px;
}
.cookie-modal .cookie-btn {
  font-size: 0.97rem;
  padding: 9px 22px;
}
.cookie-modal-close {
  position: absolute;
  right: 19px; top: 18px;
  background: transparent;
  color: var(--color-secondary);
  font-size: 1.55rem;
  border-radius: 50%;
  padding: 2px 8px;
  transition: background 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F7E1C2;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 900px) {
  .footer-content { flex-direction: column; gap: 16px; }
  .footer-contact, .footer-nav { margin-left: 0; }
  .container { padding-left: 8px; padding-right: 8px; }
  .hero h1 { font-size: 2rem; }
}
@media (max-width: 790px) {
  .feature-grid, .testimonial-list, .service-shortlist, .process-steps, .client-list, .faq-list, .content-grid { flex-direction: column; gap: 20px; }
  .feature-grid li, .testimonial-card, .faq-item, .service-shortlist > div { max-width: 100%; }
}
@media (max-width: 650px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.13rem; }
  .main-cta, .hero, .section { padding: 22px 4px; border-radius: 13px; }
  .confirmation { border-radius: 17px; }
  .map-location { font-size: 0.95rem; }
  .testimonial-card { padding: 15px 10px; }
}
@media (max-width: 450px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.96rem;
  }
  .cookie-consent-banner .cookie-actions {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }
}

/* ==== ANIMATION & INTERACTIVITY ==== */
.cta, .cta.primary, .cookie-btn, nav a, .footer-nav a, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, color 0.14s, box-shadow 0.15s, transform 0.14s;
}
.card, .feature-grid li, .testimonial-card, .faq-item, .service-shortlist > div {
  transition: box-shadow 0.17s, transform 0.12s;
}
.card:hover, .feature-grid li:hover, .testimonial-card:hover, .faq-item:hover, .service-shortlist > div:hover {
  box-shadow: 0 6px 25px var(--color-shadow);
  transform: translateY(-2px) scale(1.016);
}
a:focus-visible, .cta:focus, .cta.primary:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 1px;
}

/* ==== SCROLLBAR FOR WARM, SOFT FEEL ==== */
::-webkit-scrollbar {
  width: 10px;
  background: #FFECD8;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 10px;
}

/* ==== VISUAL HIERARCHY, SPACING, SHADOWS ==== */
.section, main > section {
  box-shadow: 0 2px 20px var(--color-shadow);
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card, .feature-grid li, .faq-item, .service-shortlist > div {
  box-shadow: 0 1px 10px var(--color-shadow);
  margin-bottom: 20px;
}

/* ==== MISCELLANEOUS ==== */
hr {
  border: 0; height: 1px;
  background: var(--color-accent);
  margin: 24px 0;
}
pre, code {
  background: #FFF5ED;
  color: #471c08;
  font-size: 0.98rem;
  border-radius: 8px;
  padding: 7px 11px;
}

/* ==== ACCESSIBILITY ==== */
:focus-visible {
  outline: 2px solid var(--color-secondary) !important;
  outline-offset: 2px;
}

/* ==== END ==== */