/* 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-size:100%;
  font:inherit;
  vertical-align:baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior:smooth;
  height:100%;
}
*,*:before,*:after { box-sizing:inherit; }
body {
  line-height:1.5;
  font-family:'Roboto', Arial, sans-serif;
  background-color:#F5F5F7;
  color:#183152;
  min-height:100vh;
  -webkit-font-smoothing: antialiased;
}
ul,ol { list-style-position:inside; }
img {
  max-width:100%;
  height:auto;
  display:block;
}
a {
  color:#1a77d6;
  text-decoration:none;
  transition: color 0.2s;
  cursor:pointer;
}
a:hover, a:focus {
  color:#FF497C;
  outline:none;
}

/* BRAND COLORS & FONTS - playful_dynamic theme */
:root {
  --primary:#183152;
  --secondary:#F5F5F7;
  --accent:#9DBC98;
  --dynamic-accent: #F84571;
  --yellow: #FFE156;
  --turquoise: #06D6A0;
  --blue: #2887E3; 
  --brand-gradient: linear-gradient(90deg,#9DBC98 0%,#FFE156 70%,#F84571 100%);
  --radius-lg:24px;
  --radius:18px;
  --radius-sm:10px;
  --shadow:0 6px 32px 0 rgba(25,50,100,0.14),0 2px 6px rgba(20,34,66,0.06);
  --shadow-sm:0 1.5px 8px rgba(24,49,82,0.10);
  --transition:0.24s cubic-bezier(0.61,0.31,0.55,1);
  --font-display:'Montserrat',Helvetica,sans-serif;
  --font-body:'Roboto',Arial,sans-serif;
}

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

body {
  font-family:var(--font-body);
  background:var(--secondary);
  color:var(--primary);
  font-size:16px;
}

/* CONTAINER & SECTIONS */
.container {
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 16px;
}
.section {
  margin-bottom:60px;
  padding:40px 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  position:relative;
}
.content-wrapper {
  display:flex;
  flex-direction:column;
  gap:20px;
}

/* TYPOGRAPHY */
h1,h2,h3,h4 {
  font-family:var(--font-display);
  color:var(--primary);
  letter-spacing:-1.5px;
  font-weight:900;
  line-height:1.22;
}
h1 {
  font-size:2.7rem;
  color:var(--dynamic-accent);
  text-shadow: 1px 2px 0 #FFE15633, 0 2px 6px #2887E314;
  margin-bottom:8px;
}
h2 {
  font-size:2rem;
  margin-bottom:4px;
  color:var(--primary);
}
h3 {
  font-size:1.28rem;
  color:var(--blue);
  font-weight: 800;
}
h4 { font-size:1.07rem; }
p,li {
  font-size:1rem; color:var(--primary); line-height:1.7;
}
strong {color: var(--dynamic-accent);font-weight:700;}

/* FUN PLAYFUL FONTS */
.hero h1, .thank-you h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: var(--yellow);
  background:var(--brand-gradient);
  background-clip:text;
  -webkit-background-clip:text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: -2px;
  text-shadow:none;
  animation: popin 1s cubic-bezier(.61,.31,.55,1) both;
}
@keyframes popin {
  0% { opacity: 0; transform: scale(0.88) rotate(-3deg);}
  60% {opacity:1;transform:scale(1.05) rotate(1.5deg);}
  100% {opacity:1;transform:scale(1) rotate(0);}
}

.main-nav a, .footer-menu a, .mobile-nav a {
  font-family:var(--font-display);
  font-weight:700;
  font-size:1.05rem;
  margin:0 8px;
  padding:6px 12px;
  border-radius:var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover,.footer-menu a:hover,.mobile-nav a:hover {
  background:var(--dynamic-accent);
  color:#fff;
}

/* PRIMARY BUTTON STYLE */
.cta-btn, .cookie-btn, .cookie-banner button {
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-display);
  font-weight:900;
  font-size:1.1rem;
  padding:12px 28px;
  border-radius: var(--radius);
  color:#fff;
  background:var(--dynamic-accent);
  border:none;
  box-shadow: 0 2.5px 16px #F8457122, 0 0.5px 2px rgba(24,49,82,.09);
  cursor:pointer;
  letter-spacing: -0.5px;
  margin-top: 8px;
  margin-bottom: 8px;
  transition:background var(--transition),transform var(--transition),box-shadow var(--transition);
  position: relative;
  z-index:1;
  outline: none;
}
.cta-btn:hover, .cookie-btn:hover, .cookie-banner button:hover {
  background:var(--blue);
  color:#fff;
  transform: translateY(-2px) scale(1.04) rotate(-1.5deg);
  box-shadow: 0 10px 24px #2887E324, 0 2px 6px rgba(24,49,82,.17);
}
.cta-btn:focus, .cookie-btn:focus { outline:2px solid var(--yellow); }

/* HEADER */
header {
  background: #fff;
  box-shadow: 0 3px 16px rgba(24,49,82,0.06);
  position:sticky;
  top:0; left:0; right:0;
  z-index:101;
  padding:0;
}
header .container {
  min-height:70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
header img {
  max-height:48px;
  margin-right:16px;
}
.main-nav {
  display:flex;
  align-items:center;
  gap:20px; 
}
.main-nav a {
  color:var(--primary);
  background: none;
}

/* Hamburger menu (mobile) */
.mobile-menu-toggle {
  display:block;
  background:none;
  border:none;
  padding:8px 16px;
  font-size:2rem;
  color:var(--dynamic-accent);
  cursor:pointer;
  border-radius:var(--radius-sm);
  transition: background .18s;
  z-index:200;
}
.mobile-menu-toggle:focus { outline:2px solid var(--yellow); background:var(--accen);}

@media (min-width: 1000px) {
  .mobile-menu-toggle { display: none; }
  .main-nav     { display: flex; }
  .cta-btn      { margin-left: 12px;}
}
@media (max-width: 999px) {
  .main-nav, .cta-btn {
    display:none !important;
  }
  header .container {
    justify-content:space-between;
  }
}

/* Responsive header image sizing */
@media (max-width:600px){
  header img{max-height:38px;}
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position:fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(24,49,82,0.98);
  z-index:1001;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(.83,.03,.23,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 0 0;
  visibility: hidden;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  margin: 30px 30px 0 0;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #fff;
  transition: color .22s;
  cursor: pointer;
  z-index: 1002;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--yellow);
  color: var(--yellow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  width: 100%;
  margin-top: 40px;
  padding: 24px 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.35rem;
  font-family: var(--font-display);
  padding: 12px 0;
  width: 100%;
  border-radius: var(--radius-sm);
  transition: background .18s, color .18s;
  background: none;
}
.mobile-nav a:hover,
.mobile-nav a:active {
  background:var(--dynamic-accent);
  color:var(--yellow);
}

/* HERO SECTIONS */
.hero,.thank-you {
  min-height:340px;
  background:#FFF7E6;
  border-radius:var(--radius-lg);
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 48px #FFE15625;
  margin-top:36px;
  margin-bottom:64px;
  overflow:hidden;
  animation: slideinHero 1.3s cubic-bezier(.62,.21,.29,1);
}
@keyframes slideinHero {
  0% {opacity:0;transform:translateY(100px) scale(1.06);}
  100% {opacity:1;transform:none;}
}
.hero .content-wrapper,.thank-you .content-wrapper{
  align-items: center;
  gap: 18px;
}
.hero p, .thank-you p { font-size:1.13rem; max-width:550px;text-align:center;}

/* FEATURE GRID */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
  margin-top:28px;
}
.features .feature-grid > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow:var(--shadow);
  padding:32px 20px;
  flex:1 1 220px;
  min-width:220px;
  max-width:256px;
  display:flex;
  flex-direction:column;
  align-items: center;
  gap:12px;
  margin-bottom:20px;
  position: relative;
  transition: box-shadow .22s, transform .22s;
  z-index: 0;
}
.features .feature-grid > div:hover {
  background: #FFE15622;
  box-shadow:0 16px 40px #9DBC9833,0 2px 8px #18315214;
  transform:translateY(-4px) scale(1.02) rotate(-2.5deg);
}
.features .feature-grid img {
  width:54px; height:54px;
  margin-bottom:4px;
  transition: transform .22s;
}
.features .feature-grid > div:hover img {
  transform:scale(1.18) rotate(12deg);
}

/* SECTION TEMPLATES */
.about-preview,.services-preview,.projects-preview{
  background:#9DBC9812;
  border-radius:var(--radius);
  margin-bottom:48px;
  box-shadow:none;
}
.about-preview h2,
.services-preview h2,
.projects-preview h2 {
  color:var(--blue);
}
.about-preview a,
.services-preview a,
.projects-preview a {
  margin-top:12px;
  font-weight:700;
  color:var(--dynamic-accent);
  font-family:var(--font-display);
  background:none;
  border-bottom:2px solid var(--dynamic-accent);
  padding-bottom:2px;
  transition:border-color .17s,color.17s;
}
.about-preview a:hover,
.services-preview a:hover,
.projects-preview a:hover {
  color:var(--blue);
  border-color:var(--blue);
}

/* CTA Contact Center */
.cta-contact {
  background: var(--brand-gradient);
  color: #183152;
  border-radius: var(--radius-lg);
  box-shadow:0 10px 48px #9DBC9832,0 2px 8px #18315212;
  margin-bottom:48px;
}
.cta-contact h2 {
  background: none;
  color: #183152;
  font-size: 1.7rem;
  font-weight: bold;
}
.cta-contact p, .cta-contact a {color:#183152;font-size:1.11rem;font-weight:500;}
.cta-contact .cta-btn {
  background:var(--blue);
}
.cta-contact .cta-btn:hover {background:var(--dynamic-accent); color:#fff;}
.cta-contact img { margin-bottom:-3px;margin-right:2px;width:19px;vertical-align:middle;}

/* SERVICES LIST PAGE */
.service-list-detailed {
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  margin-top:16px;
}
.service-list-detailed > div {
  background:#fff;
  border-radius:var(--radius);
  box-shadow: var(--shadow-sm);
  padding:28px 20px;
  flex:1 1 210px;
  min-width:210px;
  max-width:270px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:12px;
  margin-bottom:20px;
  position:relative;
  transition: box-shadow .19s, background .19s, transform .16s;
}
.service-list-detailed > div:hover {
  background: var(--turquoise);
  color: #fff;
  box-shadow:0 10px 30px #2887E332,0 2px 8px #18315211;
  transform: translateY(-2px) scale(1.02);
}
.service-list-detailed > div img { width:47px;height:47px;margin-bottom:5px;}

.Benefit-icons {
  display:flex;
  gap:16px;
  margin-top:18px;
}
.benefit-icons img {
  width:36px;height:36px;filter:drop-shadow(0.5px 1.5px 5px #2887E311);
}

/* TEAM */
.team-member-list {
  display:flex;
  flex-wrap:wrap;
  gap:22px;
  align-items:flex-start;
  margin-bottom:18px;
}
.team-member-list > div {
  flex:1 0 245px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow:var(--shadow-sm);
  padding:18px 14px;
  margin-bottom:20px;
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:7px;
  transition: box-shadow .16s, transform .16s;
}
.team-member-list > div:hover {
  background:#FFE15644;
  box-shadow:0 7px 18px #FFE15634;
  transform:scale(1.03) rotate(-1deg);
}
.team-member-list h3 { margin-bottom:0;}
.team-member-list em {color:#18315299; font-size:0.97rem; font-style:italic;}

/* MAP HOLDER */
.map-placeholder {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding:36px 12px;
  margin-top:10px;
  gap:10px;
  min-height:150px;
}
.map-placeholder img { width:64px;height:64px;margin-bottom:2px;}

/* CONTENT GRIDS, CARDS, FLEX LAYOUTS */
.card-container, .feature-grid, .content-grid, .service-list-detailed, .team-member-list {
  display: flex;
  flex-wrap: wrap;
  gap:24px;
}
.card {
  margin-bottom:20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position:relative;
}
.card-content {
  display:flex;
  flex-direction:column;
  justify-content: center;
  gap:16px;
  padding:24px 18px;
}
.text-image-section {
  display:flex;
  align-items:center;
  gap:30px;
  flex-wrap:wrap;
  margin-bottom:30px;
}
.feature-item {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:15px;
  margin-bottom:20px;
}

/* TESTIMONIALS */
.testimonial-card {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
  padding:20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow:0px 6px 30px #18315218,0 2px 8px #FFD21B08;
  margin-bottom:28px;
  margin-top:12px;
  max-width:560px;
  margin-left:auto;
  margin-right:auto;
  transition:box-shadow .14s, transform .18s;
  position:relative;
  text-align:center;
  animation: testimonialPop 1.05s cubic-bezier(.71,.16,.31,1.1);
}
.testimonial-card p {
  color:#183152;
  font-weight:500;
  font-size:1.1rem;
  line-height:1.4;
}
.testimonial-card strong {
  color:var(--dynamic-accent);
  font-size:0.98rem;
  font-weight:700;
}
.testimonial-card:hover {
  box-shadow:0px 12px 50px #2887E327;
  background:#EFFCFF;
  transform: scale(1.04) rotate(-1deg);
}
@keyframes testimonialPop {
  0%{opacity:0;transform:scale(0.89) translateY(30px);}
  60%{opacity:1;transform: scale(1.08) translateY(-4px);}
  100%{opacity:1;transform:none;}
}

/* lists inside pages */
.content-wrapper ul {
  margin:5px 0 16px 0;
  padding-left:18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.content-wrapper ul li:before {
  content:'☀';
  color:var(--yellow);
  margin-right:9px;
  font-size:1.2em;
  font-weight:700;
}
.content-wrapper ol {
  list-style-type:decimal;
  margin:7px 0 12px 20px;
  padding-left:5px;
  display: flex;
  flex-direction: column;
  gap:8px;
}

/* FOOTER */
footer {
  background: #fff;
  box-shadow: 0 -1.5px 10px #18315209;
  padding:0;
  width:100%;
  margin-top:68px;
}
footer .container {
  display:flex;
  flex-wrap:wrap;
  align-items: center;
  justify-content:space-between;
  gap: 32px;
  padding:28px 14px 18px 14px;
}
.footer-menu {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:19px;
}
.footer-info {
  display:flex;
  align-items:center;
  gap:17px;
}
.footer-info img { width:46px;}
.footer-info p {
  font-size:1rem;
  color:#183152cc;
  line-height:1.5;
  letter-spacing:.02em;
}

/* RESPONSIVE STYLES */
@media (max-width:1100px) {
  .container {max-width:96vw;}
}
@media (max-width:900px) {
  .content-wrapper, .container {
    padding-left:10px; padding-right:10px;
  }
  .features .feature-grid, .service-list-detailed, .team-member-list, .card-container, .content-grid {
    gap:16px;
  }
  .hero, .thank-you { padding:28px 0; min-height:210px; }
}
@media (max-width:768px) {
  .container {max-width:98vw;}
  .hero, .thank-you {border-radius:var(--radius);margin-top:10px; margin-bottom:30px;}
  .section {padding:30px 7px; margin-bottom:38px;}
  .features .feature-grid, .service-list-detailed, .team-member-list {
    flex-direction:column;
    gap:12px;
  }
  .feature-grid > div, .service-list-detailed > div, .team-member-list > div {
    max-width: 100%;
  }
  .footer-info {
    flex-wrap:wrap;
    gap:8px;
    justify-content:left;
  }
  .content-grid, .card-container {
    flex-direction:column;
    gap:10px;
  }
  .text-image-section {
    flex-direction:column !important;
    gap:16px;
    align-items:flex-start;
  }
}
@media (max-width:600px) {
  h1 {font-size:2rem;}
  h2 {font-size:1.41rem;}
  .footer-info img {width:32px;}
  .footer-menu {gap: 10px;}
  .testimonial-card {padding:13px;}
}

/* CTA BARS */
.cta-about,.cta-services,.cta-projects,.cta-team {
  background: var(--blue);
  color:#fff;
  border-radius:var(--radius);
  padding:36px 0 36px 0;
  box-shadow:0 3.5px 24px #2887E310,0 2px 6px #18315206;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:40px;
}
.cta-about .cta-btn, .cta-services .cta-btn, .cta-projects .cta-btn, .cta-team .cta-btn {
  background:var(--yellow);
  color:var(--primary);
}
.cta-about .cta-btn:hover, .cta-services .cta-btn:hover, .cta-projects .cta-btn:hover, .cta-team .cta-btn:hover {
  background:var(--blue);
  color:#fff;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position:fixed;
  bottom:0; left:0; right:0;
  width:100%;
  background:#ffe156ee;
  color: #183152;
  box-shadow: 0 -2.5px 32px #18315224;
  z-index:20000;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  padding:20px 12px;
  gap:18px;
  font-size:1rem;
  border-radius: var(--radius) var(--radius) 0 0;
  animation:cookieUpslide 1.1s .2s cubic-bezier(.71,0,.36,1) both;
}
@keyframes cookieUpslide {
  0%{transform:translateY(80px);opacity:0;}
  100%{transform:translateY(0);opacity:1;}
}
.cookie-banner p {
  margin-bottom:0;
  font-weight:500;
  color:#183152;
}
.cookie-btn, .cookie-settings-btn {
  background:var(--accent);
  color:#183152;
  font-family:var(--font-display);
  font-weight:600;
  padding:8px 19px;
  border-radius: var(--radius-sm);
  margin:0 6px;
  border:none;
  cursor:pointer;
  margin-top:0;
  box-shadow:var(--shadow-sm);
  transition:background .17s, color .15s;
}
.cookie-btn.accept {
  background: var(--dynamic-accent);
  color: #fff;
}
.cookie-btn.reject {
  background: #ccc;
  color:#183152;
}
.cookie-btn:hover, .cookie-settings-btn:hover {
  background:var(--blue);
  color:#fff;
}

/* COOKIE MODAL */
.cookie-modal {
  position:fixed;
  left:0; top:0; right:0; bottom:0;
  background: rgba(24,49,82,0.83);
  z-index:20400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity:0;
  pointer-events:none;
  transition:opacity .29s;
}
.cookie-modal.open {
  opacity:1;
  pointer-events:auto;
}
.cookie-modal-content {
  background: #fff;
  padding:32px 22px 22px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 390px;
  width: 96vw;
  gap: 18px;
  animation: modalPop 0.7s cubic-bezier(.71,0,.36,1) both;
  position:relative;
}
@keyframes modalPop {
  0%{transform:scale(0.82) translateY(-52px);opacity:0;}
 80%{transform:scale(1.04) translateY(7px); opacity:1;}
 100%{transform:scale(1) translateY(0); opacity:1;}
}
.cookie-modal-content h2 {margin-bottom:6px;}
.cookie-option-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size:1.09rem;
}
.cookie-option-category label {
  font-weight:500;
  color:var(--primary);
  margin-bottom:0;
}
.cookie-toggle {
  appearance:none;
  width:40px;
  height:20px;
  background:var(--accent);
  border-radius:16px;
  position:relative;
  outline:none;
  cursor:pointer;
  margin-left:5px;
  margin-right:0;
}
.cookie-toggle:checked {
  background:var(--dynamic-accent);
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow:0 1px 3px #18315216;
  position: absolute;
  top:1px; left:1px;
  transition:transform 0.2s;
}
.cookie-toggle:checked::before {
  transform:translateX(20px);
}
.cookie-modal-close {
  background:none;
  border:none;
  font-size:2rem;
  color:var(--dynamic-accent);
  cursor:pointer;
  position:absolute;
  top:10px;
  right:13px;
  z-index:1;
}
.cookie-modal-close:hover {
  color:var(--blue);
}
.cookie-modal-actions {
  display: flex;
  gap:12px;
  margin-top:16px;
}
/* TABLES, FORMS (minimal for privacy/contact) */
table {
  border-collapse:collapse;
  width:100%;
  background:#fff;
  box-shadow: 0 1.5px 8px #18315213;
  border-radius:8px;
  overflow:hidden;
}
th,td {
  padding:11px 12px;
  border-bottom: 1px solid #e5e7ea;
  text-align:left;
  font-size:1rem;
}
th {background: #f9fafb;}

input,select,textarea {
  border:1.5px solid var(--accent);
  border-radius: var(--radius-sm);
  font-size:1rem;
  padding:10px 15px;
  font-family:var(--font-body);
  background:#fff;
  box-sizing:border-box;
  margin-bottom:15px;
  outline:none;
  transition:border .17s;
  width:100%;
}
input:focus,select:focus,textarea:focus {
  border-color:var(--dynamic-accent);
  background: #FFFFFC;
}

/* MISC: SELECTION, SCROLLBAR */
::selection { background: #FFE15688; }
::-webkit-scrollbar { width:10px; background:#F5F5F7; }
::-webkit-scrollbar-thumb { background:var(--accent); border-radius:6px; }
::-webkit-scrollbar-thumb:hover {background:#FFE156;}

/* Animation microinteractions */
.card, .feature-grid > div, .testimonial-card, .card-content, .service-list-detailed > div {
  transition:box-shadow .22s, background .22s, transform .19s;
}
.card:active, .feature-grid > div:active, .testimonial-card:active, .service-list-detailed > div:active {
  transform: scale(.97) rotate(1.5deg);
}

/* Accessibility: skip link -- optional */
.skip-link {
  position: absolute;
  top: -45px;
  left: 5px;
  background: var(--dynamic-accent);
  color: #fff;
  font-weight: 700;
  padding: 8px 18px;
  z-index: 9999;
  border-radius:var(--radius-sm);
  transition:top .17s;
}
.skip-link:focus {
  top: 7px;
}
