/* === RiparaScudo CREATIVE_ARTISTIC STYLE CSS === */
/* === 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.6;
  background: #f7fbfd;
  color: #123a52;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: color 0.22s cubic-bezier(.4,0,.2,1);
}
ul, ol {
  list-style: none;
}
button {  
  font-family: inherit; 
  font-size: 16px;
  background: none; 
  border: none; 
  cursor: pointer;
  outline: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #123a52;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, .text-section, .subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  color: #1f3442;
}
strong, b {
  font-weight: 700;
}
.subheadline {
  font-size: 1.32rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  color: #193e61;
  margin-bottom: 16px;
}

/* === CONTAINER & LAYOUT SYSTEM === */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  background: #fffbe6;
  box-shadow: 0 7px 24px 0 rgba(18,58,82,.07);
  z-index: 60;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 32px;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 24px;
  display: block;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.025rem;
  font-weight: 700;
  color: #123a52;
  opacity: 0.98;
  padding: 8px 14px;
  border-radius: 36px;
  position: relative;
  transition: background 0.18s, color 0.18s, opacity 0.15s;
}
nav a:hover, nav a:focus {
  background: #f6b700;
  color: #123a52;
  opacity: 1;
}
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  color: #123a52;
  background: #f6b700;
  padding: 12px 32px;
  border-radius: 32px;
  margin-left: 12px;
  border: none;
  box-shadow: 0 4px 20px 0 rgba(246,183,0,0.11);
  transition: background 0.22s, color 0.22s, box-shadow 0.25s;
  letter-spacing: 0.06em;
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.cta-button:hover, .cta-button:focus {
  background: #123a52;
  color: #fff;
  box-shadow: 0 2px 16px 0 rgba(18,58,82,0.17);
}

/* === MOBILE MENU (Burger, Overlay, Slide) === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 22px;
  top: 18px;
  z-index: 130;
  background: #f6b700;
  border-radius: 50%;
  padding: 10px 18px;
  font-size: 2.1rem;
  color: #123a52;
  border: 2px solid #123a52;
  transition: background 0.19s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #ffd84d;
  outline: none;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  width: 85vw;
  max-width: 390px;
  height: 100vh;
  background: #123a52;
  color: #fff;
  transform: translateX(-110%);
  transition: transform 0.37s cubic-bezier(.63,-0.1,.19,1.12);
  box-shadow: 12px 0 16px 0 rgba(18,58,82,0.15);
  padding: 32px 24px 24px 20px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 22px;
  background: #f6b700;
  color: #123a52;
  font-size: 1.7rem;
  border-radius: 50%;
  border: 2px solid #123a52;
  padding: 5px 14px;
  cursor: pointer;
  z-index: 220;
  transition: background 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #ffe05b;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  margin-top: 28px;
  width: 100%;
}
.mobile-nav a {
  padding: 14px 0 14px 8px;
  font-size: 1.14rem;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-left: 4px solid #f6b700;
  border-radius: 0 28px 28px 0;
  background: rgba(255,255,255,0.07);
  margin-bottom: 2px;
  transition: background 0.16s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f6b700;
  color: #194262;
}
/* Overlay behind mobile menu */
body.mobile-menu-open::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(18,58,82, 0.36);
  z-index: 105;
  transition: opacity 0.29s;
}

/* --- Hide nav & show burger on mobile --- */
@media (max-width: 1024px) {
  header nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 700px) {
  header img {
    height: 34px;
  }
  .container {
    padding: 0 13px;
  }
}

/* === HERO AREA === */
.hero {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(115deg, #f6b700 50%, #fffbe6 100%);
  border-radius: 0 0 50px 50px;
  box-shadow: 0 1.5px 32px 0 rgba(246,183,0,0.10);
}
.hero .container {
  min-height: 320px;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 22px;
}

/* === FLEX SECTION LAYOUTS & SPACING === */
.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: 26px;
  box-shadow: 0 10px 34px 0 rgba(18,58,82,0.11);
  padding: 30px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.18s, box-shadow 0.23s;
}
.card:hover {
  transform: translateY(-6px) scale(1.025) rotate(-1.5deg);
  box-shadow: 0 18px 54px 0 rgba(246,183,0,0.13);
}
.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: 24px 30px 20px 24px;
  margin-bottom: 20px;
  background: #fffdfa;
  border-radius: 24px;
  border-left: 6px solid #f6b700;
  box-shadow: 0 4px 22px 0 rgba(25,62,97,0.09);
  font-size: 1.1rem;
  transition: box-shadow 0.2s, border-color 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 38px 0 rgba(18,58,82,0.19);
  border-left: 6px solid #ffd84d;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === SECTIONS FOR FEATURES === */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #f7fbfd;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 14px;
}
.feature-grid li {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 20px 0 rgba(18,58,82,0.06);
  padding: 28px 24px 22px 22px;
  flex: 1 1 250px;
  max-width: 290px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .18s;
}
.feature-grid li img {
  height: 48px;
  width: auto;
  margin-bottom: 8px;
}
.feature-grid li h3 {
  text-align: center;
  color: #f6b700;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-grid li p {
  text-align: center;
}
.feature-grid li:hover {
  box-shadow: 0 16px 40px 0 rgba(18,58,82,0.13);
}

/* === SERVICE LIST STYLES === */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  justify-content: flex-start;
}
.service-list li {
  background: #fffdfa;
  border-radius: 22px;
  padding: 26px 20px;
  box-shadow: 0 4px 22px 0 rgba(246,183,0,0.08);
  flex: 1 1 250px;
  max-width: 295px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: box-shadow .19s;
  margin-bottom: 20px;
}
.service-list li:hover {
  box-shadow: 0 14px 34px 0 rgba(18,58,82,0.14);
}
.service-list li img {
  height: 46px;
  margin-bottom: 10px;
}
.service-list li h2 {
  font-size: 1.18rem;
  font-family: 'Montserrat';
  color: #123a52;
}

/* == HOW-IT-WORKS & STEP BY STEP == */
.how-it-works,
.faq, .about, .contact, .legal, .confirmation {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fffefa;
}
.step-by-step {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.step {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(18,58,82,0.08);
  padding: 22px 17px 18px 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 175px;
  max-width: 220px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .17s;
}
.step-number {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #f6b700;
  background: #123a52;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 3px 11px 0 rgba(18,58,82,0.14);
}
.step h2 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #123a52;
  text-align: center;
}
.step p {
  font-size: 1rem;
  text-align: center;
}

.illustrated-steps {
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

/* === TESTIMONIALS/REVIEWS === */
.testimonials, .testimonials-preview {
  background: #f7fbfd;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials .testimonial-card, .testimonials-preview .testimonial-card {
  background: #fffdfa;
  color: #1c2238;
  border-left: 6px solid #f6b700;
  border-radius: 22px;
  box-shadow: 0 4px 22px rgba(25, 62, 97, 0.085);
  margin-bottom: 20px;
  padding: 22px 28px 20px 22px;
  font-size: 1.15rem;
}
.testimonials .testimonial-card strong, .testimonials-preview .testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #123a52;
  font-size: 1rem;
  font-weight: 800;
}
.review-summaries {
  background: #fffbe6;
  border-radius: 18px;
  margin-top: 34px;
  padding: 18px 24px;
  color: #1f3442;
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* === FORM/INPUTS (for cookie banner/settings) === */
input[type=checkbox], input[type=radio] {
  accent-color: #f6b700;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  vertical-align: middle;
}

/* === BUTTONS & MICRO-INTERACTIONS === */
button, .cta-button, input[type=button], input[type=submit] {
  transition: background 0.23s, color 0.18s, box-shadow 0.22s;
}

/* === SPECIAL SECTIONS === */
.trust-badges {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  margin-top: 14px;
}
.trust-badges img {
  height: 48px;
}

/* === ABOUT PAGE LISTS === */
.about ul, .why-us ul {
  margin: 14px 0 14px 0;
  padding-left: 18px;
}
.about ul li, .why-us ul li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.07rem;
  margin-bottom: 10px;
  color: #1d2736;
  position: relative;
  padding-left: 1.6em;
}
.about ul li::before, .why-us ul li::before {
  content: '\2022';
  color: #f6b700;
  font-weight: 800;
  display: inline-block;
  left: 0;
  width: 1em;
  position: absolute;
}

/* === CONTACT PAGE === */
.contact-info, .contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
}
.contact-info .info-block {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.11rem;
  color: #123a52;
  background: #fffdfa;
  border-radius: 14px;
  padding: 8px 16px;
  box-shadow: 0 2px 11px 0 rgba(18,58,82,0.06);
}
.map-embed {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: #fffefa;
  border-radius: 17px;
  margin-top: 18px;
  padding: 10px 20px;
}
.map-embed img {
  height: 40px;
}

/* === CTA SECTION === */
.cta-section {
  margin-bottom: 55px;
  background: #f6b700;
  border-radius: 34px;
  padding: 48px 20px;
  box-shadow: 0 2px 38px 0 rgba(246,183,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section .container, .cta-section .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.cta-section h2 {
  color: #123a52;
}
.cta-section p {
  color: #193e61;
}

/* === FOOTER === */
footer {
  width: 100%;
  padding: 38px 0 22px 0;
  background: #123a52;
  color: #fff;
  border-top: 5px solid #f6b700;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
footer a, .footer-nav a {
  color: #f6b700;
  margin: 0 8px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: text-decoration .19s;
}
footer a:hover, .footer-nav a:hover {
  text-decoration: underline wavy #ffe053 1.5px;
}
footer img {
  height: 38px;
  margin-bottom: 10px;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  width: 100%;
}
.footer-contact img {
  height: 20px;
}
footer p {
  font-size: 0.92rem;
  margin-top: 12px;
  color: #ffe400;
}

/* === FAQ ACCORDION (readable contrast) === */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #fffdfa;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(18,58,82,0.07);
  padding: 18px 22px 16px 22px;
  color: #193e61;
  font-size: 1.04rem;
  margin-bottom: 20px;
}
.faq-item h2 {
  font-size: 1.08rem;
  font-family: 'Montserrat';
  color: #f6b700;
  margin-bottom: 5px;
}

/* === COOKIE CONSENT BANNER (fixed, animated) === */
.cookie-consent-banner {
  position: fixed;
  z-index: 500;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #123a52;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px 14px 20px 17px;
  box-shadow: 0 -2px 20px 0 rgba(18,58,82,0.13);
  animation: slideUpBanner 0.6s cubic-bezier(.22,1.17,.7,1) 1;
}
@keyframes slideUpBanner {
  from {transform: translateY(120%);} to {transform: translateY(0);}
}
.cookie-consent-banner p {
  font-size: 1rem;
  margin: 0 24px 0 4px;
  flex: 2 1 240px;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 22px;
  padding: 9px 19px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
  outline: none;
}
.cookie-btn.accept {
  background: #f6b700;
  color: #123a52;
  box-shadow: 0 1px 7px 0 rgba(246,183,0,0.09);
}
.cookie-btn.accept:focus, .cookie-btn.accept:hover {
  background: #ffd84d;
  color: #123a52;
}
.cookie-btn.reject {
  background: #fff;
  color: #f6b700;
  border: 2px solid #f6b700;
}
.cookie-btn.reject:focus, .cookie-btn.reject:hover {
  background: #f6b700;
  color: #123a52;
}
.cookie-btn.settings {
  background: transparent;
  color: #ffe053;
  border: 2px dashed #ffe053;
}
.cookie-btn.settings:focus, .cookie-btn.settings:hover {
  background: #ffe053;
  color: #123a52;
}

/* === COOKIE MODAL POPUP === */
.cookie-modal-overlay {
  position: fixed;
  top:0;
  left:0;
  width:100vw;
  height:100vh;
  background: rgba(18,58,82,0.48);
  z-index: 510;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookie-modal {
  background: #fffdfa;
  color: #193e61;
  border-radius: 28px;
  padding: 34px 30px 28px 34px;
  min-width: 300px;
  max-width: 94vw;
  box-shadow: 0 9px 42px 0 rgba(18,58,82, 0.22);
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: popInModal 0.42s cubic-bezier(.28,1.24,.7,1.1) 1;
}
@keyframes popInModal {
  from {transform: scale(.88); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}
.cookie-modal h2 {
  color: #f6b700;
  font-size: 1.21rem;
  margin-bottom: 10px;
}
.cookie-modal ul {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-modal li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal li.essential label {
  font-weight: 700;
  color: #123a52;
}
.cookie-modal li.essential input[type=checkbox]:disabled {
  opacity: 0.5;
}
.cookie-modal .modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 14px;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.6rem;
  color: #123a52;
  background: #fffbea;
  border-radius: 50%;
  border: 2px solid #ffe053;
  padding: 4px 11px;
  cursor: pointer;
  transition: background 0.12s;
}
.cookie-modal .close-modal-btn:hover, .cookie-modal .close-modal-btn:focus {
  background: #ffe053;
  color: #123a52;
}

/* === SECTION SPACING & BOTTOM MARGINS === */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:last-child {
  margin-bottom: 0;
}

/* === RESPONSIVE LAYOUT === */
@media (max-width: 1200px) {
  .container {
    max-width: 99vw;
  }
}
@media (max-width: 800px) {
  .feature-grid, .service-list, .card-container, .content-grid, .step-by-step {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .feature-grid li, .service-list li, .card {
    max-width: 100%;
    min-width: 170px;
    width: 100%;
  }
  .about .trust-badges {
    flex-direction: row;
    justify-content: flex-start;
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .container, .content-wrapper {
    padding: 0 10px;
  }
  .text-image-section, .content-grid, .step-by-step {
    flex-direction: column;
    gap: 18px;
  }
  .hero, .features, .testimonials, .testimonials-preview, .how-it-works, .about, .faq, .cta-section, .legal, .contact, .confirmation {
    padding: 30px 10px;
  }
  .cta-section {
    padding: 34px 10px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.40rem;
  }
  .feature-grid li, .service-list li, .card, .testimonial-card {
    padding: 20px 13px;
    font-size: 1rem;
  }
  .testimonial-card {
    padding: 12px 11px;
    font-size: 1rem;
  }
  .footer-contact {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 8px 17px 8px;
  }
  .cookie-consent-banner p {
    margin: 0 0 12px 0;
    font-size: 0.98rem;
    max-width: 95vw;
  }
  footer {
    padding: 21px 4px 16px 4px;
  }
}

/* === CREATIVE_ARTISTIC VISUALS === */
/* Unique torn border on hero for artistic touch */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; bottom: -12px; right: 0;
  height: 34px;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='100%25' height='34' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,17 C50,44 150,4 250,17 C350,35 450,0 500,22 L500,34 L0,34 Z' fill='%23fffbe6'/%3E%3C/svg%3E") repeat-x;
  background-size: cover;
  z-index: 2;
  /* Artistic torn effect at bottom */
}
/* Artistic hand-drawn border/shadow on cards */
.card, .feature-grid li, .service-list li {
  border: 2.5px solid #f7da7b;
  box-shadow: 1px 6px 36px -10px #f5a20050, 0 0.5px 2px 0 rgba(18,58,82,0.13);
}
.card::after, .feature-grid li::after, .service-list li::after {
  content: '';
  position: absolute;
  pointer-events: none;
  left: 6px; right: 6px; bottom: 6px; height: 8px;
  background: rgba(246,183,0,0.08);
  border-radius: 80px;
  filter: blur(2.8px);
  z-index: 0;
}
.card::after { top: auto; }

/* Micro-interactions */
a, .cta-button, .card, .feature-grid li, .service-list li, .step {
  transition: box-shadow .22s, background .19s, color .21s, transform .18s;
}
.cta-button:active {
  transform: scale(.97);
}
.card:active, .feature-grid li:active, .service-list li:active {
  transform: scale(.97);
}

/* Unique dot decorations for artistic flair */
.section::before {
  content: '';
  display: block;
  position: absolute;
  top: 28px;
  left: -46px;
  width: 10px;
  height: 90px;
  background: repeating-linear-gradient(
    180deg, #ffd84d, #ffd84d 7px, transparent 8px, transparent 23px
  );
  border-radius: 32px;
  opacity: .34;
  z-index: 0;
}
@media (max-width: 800px) {
  .section::before {
    display: none;
  }
}

/* === UTILITIES === */
.text-center { text-align: center; }
.align-center { align-items: center; }

/* === PRINT STYLES === */
@media print {
  header, nav, .mobile-menu, .mobile-menu-toggle, footer, .cookie-consent-banner, .cookie-modal-overlay, .cta-button {
    display: none!important;
  }
  body {
    background: #fff;
    color: #1e262d;
  }
  .container {
    max-width: 99vw;
    padding: 0 12px;
  }
}


/* == END == */
