/* --- CSS RESET & BASE STYLES --- */
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 { height: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; width: 100vw; position: relative; line-height: 1.5; background: #FAFCFE; color: #232B34; font-family: 'Open Sans', Arial, sans-serif; font-size: 16px; -webkit-font-smoothing: antialiased; }
*, *:before, *:after { box-sizing: inherit; }
a { color: #0D3566; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #69B1D3; text-decoration: underline; }
ul, ol { list-style: disc; margin-left: 24px; }
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-weight: 700; margin-bottom: 14px; color: #0D3566; }
h1 { font-size: 2.2rem; line-height: 1.15; margin-bottom: 18px; }
h2 { font-size: 1.7rem; margin-bottom: 12px; }
h3 { font-size: 1.22rem; }
h4,h5,h6 { font-size: 1rem; }
p { margin-bottom: 12px; }
img { max-width:100%; display:block; height:auto; }
strong { font-weight: bold; }

/* --- LAYOUT HELPERS --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width:100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom:0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: transparent;
}
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; width: 100%; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; justify-content: space-between; }
.testimonial-card { display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 20px; justify-content: flex-start; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; background: #fff; }

/* --- BRAND COLORS --- */
:root {
  --clr-primary: #0D3566;
  --clr-secondary: #E2EFFA;
  --clr-accent: #69B1D3;
  --clr-cta: #FFA15E;
  --clr-success: #22BF7B;
  --clr-warning: #FFD13A;
  --clr-error: #F95E5A;
  --clr-gray: #F2F5FA;
  --clr-dark: #22292F;
  --clr-white: #FFFFFF;
  --shadow: 0 2px 16px 0 rgba(86, 133, 181, 0.15), 0 1.5px 3.5px 0 rgba(105,177,211,0.09);
}

/* --- HEADER/BANNER --- */
header {
  width: 100%;
  background: var(--clr-secondary);
  box-shadow: 0 2px 10px 0 rgba(51,98,171,0.07);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 0;
  min-height: 68px;
  z-index: 50;
}
header > a img {
  height: 48px;
  max-width: 170px;
  margin-left: 20px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
  margin-left: 30px;
  margin-right: auto;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.main-nav a {
  color: var(--clr-primary); padding:9px 4px; border-radius: 10px;
  transition: background 0.18s, color 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--clr-accent);
  color: #fff;
}
.cta-btn {
  display: inline-flex; align-items:center; justify-content:center;
  padding: 10px 28px;
  border: none;
  border-radius: 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 3px 18px 0 rgba(105,177,211,0.09);
  transition: background 0.2s, color 0.2s, transform 0.16s;
  margin-left: 28px;
  margin-right: 20px;
  cursor: pointer;
}
.cta-primary {
  background: var(--clr-cta);
  color: var(--clr-primary);
}
.cta-primary:hover,
.cta-primary:focus {
  background: #ffb982;
  transform: translateY(-2px) scale(1.04);
  color: var(--clr-dark);
}
.cta-secondary {
  background: var(--clr-accent);
  color: #fff;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #5fa6c3;
  transform: translateY(-1.5px) scale(1.03);
  color: var(--clr-dark);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: var(--clr-accent);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  margin-right: 16px;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  z-index: 109;
}
.mobile-menu-toggle:hover {
  background: var(--clr-primary);
  transform: rotate(12deg) scale(1.04);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 110;
  top: 0;
  right: 0;
  width: 90vw;
  max-width: 340px;
  min-width: 240px;
  min-height: 100vh;
  height: 100vh;
  background: linear-gradient(135deg, var(--clr-white) 80%, var(--clr-accent) 140%);
  box-shadow: -2px 0 68px -10px rgba(0, 72, 168,0.18), 0 2px 9px 0 rgba(105,177,211,0.06);
  transform: translateX(105%);
  transition: transform 0.38s cubic-bezier(0.6, 0.04, 0.49, 1.13);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  display: block;
  align-self: flex-end;
  background: var(--clr-cta);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin: 20px 20px 8px 0;
  cursor: pointer;
  transition: background 0.15s, transform 0.13s;
  z-index: 111;
}
.mobile-menu-close:hover {
  background: #fd994c;
  transform: rotate(-14deg) scale(1.06);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 14px 25px 32px 24px;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.19rem;
  color: var(--clr-primary);
  padding: 13px 0 13px 8px;
  border-radius: 12px;
  background: transparent;
  transition: background 0.17s, color 0.16s;
}
.mobile-nav a:active,
.mobile-nav a:hover {
  background: var(--clr-accent);
  color: #fff;
}

/* --- HERO SECTION --- */
.hero {
  background: var(--clr-secondary);
  padding: 48px 0 0 0;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  animation: slideFadeIn 1.3s cubic-bezier(0.77, 0, 0.15, 1.03) both;
  position: relative;
}
@keyframes slideFadeIn {
  0% { opacity:0; transform: translateY(40px) scale(0.96); }
  100% { opacity: 1; transform: none; }
}
.hero .content-wrapper {
  align-items: flex-start;
  padding: 24px 0 30px 0;
  max-width: 700px;
  gap:20px;
}
.hero h1 {
  font-size: 2.1rem;
  color: var(--clr-primary);
  text-shadow: 0 2px 12px rgba(105,177,211,0.10);
  margin-bottom: 8px;
}
.hero p {
  font-size: 1.11rem;
  color: #295184;
  margin-bottom:12px;
}

/* --- FEATURES GRID --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.feature-item {
  background: var(--clr-white);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 22px 20px 21px 20px;
  min-width: 220px;
  flex: 1 1 220px;
  max-width: 310px;
  transition: transform 0.18s, box-shadow 0.22s;
  margin-bottom: 20px;
  cursor: pointer;
  position: relative;
}
.feature-item:hover { transform: translateY(-7px) scale(1.025); box-shadow: 0 7px 40px 0 rgba(105,177,211,0.18); background: #eaf5fb; }
.feature-item img { height: 44px; width:44px; background:var(--clr-secondary); border-radius:8px; margin-bottom:12px; box-shadow:0 2px 7px 0 rgba(105,177,211,0.12); transition: box-shadow 0.2s; }
.feature-item h3 { font-size: 1.1rem; margin-bottom: 5px; font-weight:700; color:var(--clr-primary); }
.feature-item p { color: #355780; font-size: 0.96rem; }

/* --- SERVICE LISTS --- */
.service-list {
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: flex-start; margin-bottom: 16px;
}
.service-item {
  background: var(--clr-secondary);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 19px 20px;
  min-width: 210px;
  flex: 1 1 220px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.service-item:hover { box-shadow: 0 7px 32px 0 rgba(105,177,211,0.17); transform:scale(1.025) translateY(-4px); }
.service-item h3, .service-item h2 { font-size: 1.1rem; font-weight:700; color:var(--clr-primary); margin-bottom: 8px; }
.service-item p { color: #355780; font-size: 0.96rem; margin-bottom: 8px; }
.service-item ul { font-size: 0.96rem; color: #356080; margin-bottom:8px; }
.service-item .cta-btn { margin-top: 10px; }

/* --- PROCESS STEPS & OUTCOMES --- */
.process-steps {
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: flex-start; margin-bottom: 16px;
}
.process-steps .step {
  background: var(--clr-gray);
  border-radius: 15px;
  padding: 17px 18px 17px 18px;
  min-width: 180px; max-width: 260px;
  flex: 1 1 182px;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 9px; box-shadow: 0 2px 5px 0 rgba(105,177,211,0.06);
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom:20px;
  position:relative;
}
.process-steps .step:hover { box-shadow: 0 5px 32px 0 rgba(105,177,211,0.13); transform: scale(1.02) translateY(-4px); }

.process-steps img { height: 38px; width:38px; background:var(--clr-secondary); border-radius: 6px; margin-bottom:6px; }

.process-steps ol { margin-left: 28px; }
.process-steps li { margin-bottom: 9px; }

.outcome-examples { color: #295184; font-family: 'Montserrat',Arial,sans-serif; margin-top: 13px; font-size: 1.03rem; }
.outcome-examples li { margin-bottom: 11px; }


/* --- TESTIMONIALS --- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 15px;
  width: 100%;
}
.testimonial-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px 0 rgba(86,133,181,0.11), 0 2px 8px 0 rgba(150,180,220,0.07);
  padding: 30px 24px 22px 24px;
  min-width: 230px;
  flex: 1 1 220px;
  max-width: 340px;
  align-items: flex-start;
  color: #1F2935;
  transition: box-shadow 0.18s, transform 0.22s;
  margin-bottom: 20px;
  border-left: 6px solid var(--clr-accent);
  font-size: 1.02rem;
  gap: 10px;
  position:relative;
}
.testimonial-card:hover {
  box-shadow: 0 8px 35px 0 rgba(105, 177, 211, 0.17);
  transform: scale(1.025) translateY(-5px) rotate(-0.7deg);
  border-left-color: var(--clr-cta);
}
.testimonial-card p {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  color: #1B2432;
  margin-bottom: 10px;
}
.testimonial-card span:last-child {
  color: var(--clr-warning);
  font-size: 1.22rem;
}
.testimonial-card strong {
  color: var(--clr-primary);
  font-weight: 700;
}

/* --- CALL TO ACTION BLOCK --- */
.cta-block {
  background: var(--clr-accent);
  border-radius:22px;
  padding: 38px 29px 22px 29px;
  box-shadow:0 3px 16px 0 rgba(105,177,211,0.12);
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  margin-bottom:24px;
}
.cta-block h2 { color: #fff; margin-bottom:9px; }
.cta-block p { color: #EBF5F9; }
.cta-block .cta-btn { margin: 0 auto; }

/* --- FOOTER --- */
footer {
  background: var(--clr-primary);
  color: var(--clr-white);
  width: 100%;
  margin-top: 55px;
  position: relative;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 12px;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1.01rem;
}
.footer-nav a {
  color: #fff;
  opacity: 0.93;
  transition: color 0.18s, opacity 0.13s;
  margin-bottom: 2.9px;
}
.footer-nav a:hover {
  color: var(--clr-warning);
  opacity: 1;
}
.footer-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  border-top: 1.5px solid #3F608B;
  padding: 22px 0 14px 0;
  margin-top: 14px;
}
.footer-meta img { height: 38px; }
.footer-meta p { font-size: .98rem; opacity: 0.81; }


/* --- PRICING TABLE --- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-white);
  box-shadow: var(--shadow);
  border-radius: 18px;
  overflow: hidden;
  margin: 18px 0 22px 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table th, .pricing-table td {
  padding: 13px 9px;
  border-bottom: 1.5px solid #F3F3F7;
  text-align: left;
  font-size: 1.01rem;
}
.pricing-table th {
  background: var(--clr-accent);
  color: #fff;
  font-weight: bold;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: #F4FBFE; }

.guarantee-box {
  background: #FEFDEF;
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 16px 22px 16px 20px;
  box-shadow: 0 1.5px 8px 0 rgba(255,209,58,0.11);
  font-size: 1.07rem;
  color: #574d1f;
  font-family: 'Montserrat',Arial,sans-serif;
  margin: 20px 0 20px 0;
}
.guarantee-box img { height:33px; }

/* --- FAQ & ACCORDIONS --- */
.faq-list {
  display: flex; flex-direction: column; gap: 22px;
  margin: 20px 0; width: 100%;
}
.faq-item {
  background: var(--clr-white);
  border-radius: 13px;
  box-shadow: 0 1.5px 15px 0 rgba(105,177,211,0.07);
  padding: 18px 20px 13px 20px;
  font-size: 1rem;
  transition: box-shadow 0.18s, transform 0.14s;
  margin-bottom: 9px;
}
.faq-item:hover { box-shadow: 0 6px 18px 0 rgba(84,190,220,0.16); transform:scale(1.015); }
.faq-item h2 {
  font-size: 1.05rem;
  margin-bottom: 5px;
  color: var(--clr-primary);
}
.quick-links { margin: 6px 0 0 0; display:flex; flex-wrap:wrap; gap:14px; }
.quick-links li { background:var(--clr-secondary); border-radius:11px; padding:7px 15px; }
.quick-links a { color:var(--clr-primary); font-weight: 600; }
.quick-links a:hover { color:var(--clr-cta); }

/* --- TEXT SECTION --- */
.text-section {
  background: var(--clr-white);
  border-radius: 15px;
  box-shadow: 0 1.5px 12px 0 rgba(105,177,211,0.055);
  padding: 18px 18px 11px 18px;
  margin-bottom: 18px;
  font-size: 1.02rem;
  color: #164771;
}
.text-section h2 { margin-top:17px; }

/* --- MAP PLACEHOLDER --- */
.map-placeholder {
  display: flex; flex-direction: row; gap: 10px; align-items: center;
  background: var(--clr-secondary);
  border-radius: 13px;
  padding: 11px 18px;
  min-height: 46px;
  font-family:'Montserrat',Arial,sans-serif;
  color:var(--clr-primary);
  font-size:1.08rem;
  margin-top:12px;
}
.map-placeholder img { height:24px; width:24px; }

/* --- CONTACT INFO --- */
.contact-info { padding: 13px 0 0 2px; color: #295184; font-size: 1.03rem; display: flex; flex-direction: column; gap: 8px; }
.contact-info a { color: var(--clr-accent); }
.contact-info a:hover { color:var(--clr-cta); text-decoration: underline; }

/* --- SECTION SPACING (critical) --- */
section { margin-bottom: 60px; padding: 40px 20px; }

/* --- CARD GRID CLASSES (MANDATORY) --- */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; 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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* --- MODAL & OVERLAY GENERAL --- */
.modal-overlay {
  display: none;
  position: fixed;
  top:0; left:0; width:100vw; height:100vh;
  background: rgba(34,61,110,0.47);
  z-index: 2100;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  transition: opacity 0.23s;
}
.modal-overlay.open {
  display: flex;
  pointer-events: all;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 8px 40px 0 rgba(105,177,211,0.13);
  z-index: 2200;
  animation: popupBounceIn 0.49s cubic-bezier(0.74,0.17,0.11,1.12);
}
@keyframes popupBounceIn {
  0% { opacity:0; transform:scale(0.82) translateY(60px); }
  60% { opacity:1; transform:scale(1.13) translateY(-18px); }
  100% { opacity:1; transform:none; }
}
.cookie-modal h3 { font-size: 1.14rem; color: var(--clr-primary); margin-bottom: 8px; }
.cookie-modal label { margin: 8px 0 12px 0; font-size: 1.03rem; display: flex; flex-direction: row; align-items: center; gap: 11px; }
.cookie-modal input[type="checkbox"] { accent-color: var(--clr-accent); width: 18px; height:18px; }
.cookie-modal .btn-row {
  display: flex; gap: 14px; flex-direction:row; margin-top: 16px;
}
.cookie-modal .close-modal {
  position: absolute; top:17px; right:21px;
  border: none; background: #eee; border-radius:50%; width:32px; height:32px;
  font-size: 1.25rem; color: var(--clr-primary); cursor:pointer;
  transition: background 0.19s;
}
.cookie-modal .close-modal:hover { background: #E2EFFA; }

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 12px; right: 12px; bottom: 18px;
  margin: 0 auto;
  z-index: 2050;
  background: var(--clr-white);
  border-radius: 16px;
  box-shadow: 0 2px 24px 0 rgba(105,177,211,0.18);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 20px 30px 18px 23px;
 
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  color: #295184;
  opacity: 0.99;
  animation: cookieBannerIn 0.51s cubic-bezier(0.69,0.1,0.08,0.97);
}
@keyframes cookieBannerIn {
  0% { opacity:0; transform: translateY(40px); }
  100% { opacity:0.99; transform: none; }
}
.cookie-banner button {
  padding: 8px 17px;
  border-radius: 14px;
  border: none;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-right: 9px;
  margin-bottom: 0;
  cursor: pointer;
  transition: background 0.15s, color 0.13s, transform 0.13s;
}
.cookie-banner .accept { background: var(--clr-success); color: #fff; }
.cookie-banner .accept:hover { background: #36ce88; }
.cookie-banner .reject { background: var(--clr-error); color: #fff; }
.cookie-banner .reject:hover { background: #e94c4e; }
.cookie-banner .settings { background: var(--clr-cta); color: var(--clr-primary); }
.cookie-banner .settings:hover { background: #ffb982; color: #232B34; }


/* --- THANK YOU PAGE --- */
.thankyou { display:flex; justify-content:center; align-items:center; min-height: 480px; }
.thankyou .content-wrapper { align-items: center; gap:13px; }
.thankyou h1 { font-size: 2.44rem; margin-bottom: 18px; text-align:center; }
.confirmation-next-steps { background: var(--clr-secondary); padding: 11px 18px; border-radius:11px; margin: 18px 0 7px 0; color: #295184; }

/* --- GENERAL INTERACTIVE MICRO-ANIMATIONS --- */
button, .cta-btn { transition: background 0.18s,color 0.16s, transform 0.18s; outline: none; }
button:focus,.cta-btn:focus { outline: 2px solid var(--clr-accent); } 

input[type="text"], input[type="email"], textarea {
  border-radius: 12px;
  border: 1.5px solid var(--clr-accent);
  padding: 9px 13px;
  font-size: 1rem;
  transition: border 0.2s;
}
input:focus,textarea:focus { border-color: var(--clr-primary); outline: none; }

/* --- SPACING & GAP FOR ALL MAJOR FLEX CONTAINERS --- */
.card-container, .testimonial-list, .feature-grid, .service-list, .process-steps, .outcome-examples, .footer-nav, .content-grid, .text-image-section, .faq-list { gap: 20px; }

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1100px) {
  .container { max-width: 970px; }
}
@media (max-width: 900px) {
  .container { max-width: 87vw; }
  .main-nav { gap: 13px; font-size: 0.98rem; }
  .footer-nav { gap:24px; }
}
@media (max-width: 768px) {
  html { font-size: 96%; }
  .container { max-width: 100vw; padding: 0 6px; }
  header {
    padding: 0 0 0 0;
    min-height: 54px;
  }
  header > a img { height: 34px; margin-left: 10px; }
  .main-nav { display: none !important; }
  .cta-btn { display: none !important; }
  .mobile-menu-toggle { display: block; }
  .footer-meta { flex-direction: column; gap:10px; padding: 15px 0; }
  .footer-nav { flex-direction: column; gap:9px; }
  section, .section { padding: 25px 6px 20px 6px; margin-bottom: 34px; min-width: 0; }
  .card-container, .feature-grid, .service-list, .testimonial-list, .content-grid, .process-steps, .faq-list { flex-direction: column; gap: 17px; }
  .text-image-section { flex-direction: column !important; gap: 14px; }
}
@media (max-width: 540px) {
  html { font-size: 91%; }
  .hero { padding:20px 0 0 0; min-height: 220px; }
  .hero .content-wrapper { padding:11px 0 20px 0; }
  .content-wrapper, .cta-block { padding:9px 5px; }
  .cookie-banner { max-width:98vw; padding: 11px 8px; font-size:1rem; }
  .cookie-modal { width:98vw; min-width: 0; padding: 17px 5vw 17px 5vw; }
}

/* --- PLAYFUL DYNAMIC ADORNMENTS --- */
/* Fun animated underline for page section titles */
h1, h2 {
  position: relative;
  overflow: visible;
}
h1:after, h2:after {
  content: '';
  display: block;
  position: absolute;
  left: 14px;
  bottom: -8px;
  width: 54px;
  height: 7px;
  border-radius: 8px;
  background: var(--clr-warning);
  opacity: 0.82;
  transform: scaleX(0.6);
  animation: titleUnderline 1.3s cubic-bezier(0.69,0.18,0.11,1.12) 0.25s 1 both;
  pointer-events: none;
}
@keyframes titleUnderline {
  0% { width: 0; opacity: 0; }
  85% { width:66px; opacity: 1; }
  100%{ width: 54px; opacity: 0.82; }
}

/* Fun button scale pop on hover activates only on pointer devices */
@media (hover: hover) {
  .cta-btn, .cookie-banner button {
    transition: transform 0.19s cubic-bezier(.23,.67,.29,1) 0s;
  }
  .cta-btn:hover, .cookie-banner button:hover {
    transform: scale(1.06) skewY(-2deg) rotate(-1.5deg);
    box-shadow: 0 2px 27px 0 rgba(255,130,11,0.13);
    z-index: 1;
  }
}


/* --- ANIMATIONS FOR VISIBILITY --- */
.fade-in {
  opacity: 0;
  animation: fadeInAnimation 0.7s 0.13s both;
}
@keyframes fadeInAnimation {
  0% { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: none; }
}

/* --- PRINT FRIENDLY --- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  section { margin-bottom: 0; padding: 0; }
}

/* --- PLAYFUL FONTS FALLBACK --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700|Open+Sans:400,700&display=swap');

/* --- END OF STYLE.CSS --- */
