/* 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%; vertical-align: baseline;
  background: transparent; box-sizing: border-box;
}
body {-webkit-tap-highlight-color:transparent;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section
{display: block;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after, q:before, q:after {
  content: ''; content: none;
}
img {max-width: 100%; height: auto; display: block;}
table {border-collapse: collapse; border-spacing: 0;}
a {text-decoration: none; color: inherit;}
button, input, select, textarea {
  font-family: inherit; font-size: inherit; background: none; border: none; outline: none;
}

/* BRAND ROOTS & SCANDINAVIAN CLEAN COLOR PALETTE */
:root {
  --primary: #212943;
  --secondary: #F6F0EB;
  --accent: #199DB6;
  --scandi-bg: #ffffff;
  --scandi-card:#faf8f5;
  --text-dark: #212943;
  --text-light: #668;
  --border: #E2E5EA;
  --shadow: 0 2px 12px rgba(33,41,67,0.07);
  --radius: 16px;
  --transition-ease: cubic-bezier(.4,0,.2,1);
}

/* BASE TYPOGRAPHY */
html {
  font-size: 16px;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: var(--scandi-bg);
  color: var(--text-dark);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.6;
  min-height: 100vh;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, .main-title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 16px;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
}
.subheadline {
  color: var(--text-light);
  font-size: 1.18rem;
  font-weight: 400;
  margin-bottom: 20px;
}
p {
  margin-bottom: 16px;
}
strong, b {font-weight: 600;}
a.cta-link {
  color: var(--accent);
  font-weight: 600;
  margin-top: 18px;
  display: inline-block;
  transition: color 0.2s var(--transition-ease);
}
a.cta-link:hover,a.cta-link:focus { color: var(--primary); text-decoration: underline;}

/* BUTTONS */
.cta-btn, .cookie-btn, .mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 13px 32px;
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.018em;
  box-shadow: none;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.17s var(--transition-ease), color 0.17s var(--transition-ease), box-shadow 0.17s;
  margin-top: 20px;
}
.cta-btn:hover,.cta-btn:focus {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(25,157,182,.12);
}
.cookie-btn {
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  font-size: 1rem;
  margin: 5px 8px 0 0;
}
.cookie-btn.reject {
  background: #e2e5ea;
  color: var(--primary);
}
.cookie-btn.settings { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.cookie-btn.settings:hover { background: var(--secondary); color: var(--primary); border-color: var(--primary); }
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: transparent;
  color: var(--primary);
  padding: 10px;
  font-size: 2rem;
  border-radius: 40px;
  z-index: 60;
  border: none;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus { background: #e7e8ef; color: var(--accent); }

/* GENERAL LAYOUT & CONTAINER */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  align-items: flex-start;
}

section {  /* MANDATORY SPACING */
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: transparent;
  width: 100%;
  display: flex;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HEADER & NAVIGATION */
header {
  background: var(--scandi-bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(33,41,67,.02);
  width: 100%;
  z-index: 20;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 24px;
}
.logo img {
  height: 45px; width: auto; display: block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 0 6px 3px 6px;
  transition: color 0.14s var(--transition-ease), border 0.14s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  margin-left: 14px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 44px;
  transition: background 0.16s, color 0.16s;
  z-index: 20;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {background: #f0f2f8; color: var(--accent);}
/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(246, 240, 235, 0.97);
  transition: transform 0.35s var(--transition-ease);
  transform: translateX(100%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: 0 2px 32px 0 rgba(33,41,67,0.13);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-nav {
  margin-top: 70px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 0 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: var(--primary);
  padding: 16px 0;
  font-weight: 600;
  border-bottom: 1px solid #ece9e6;
  transition: color 0.16s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a:focus { color: var(--accent); }

/* HERO TYPOGRAPHY */
section:first-of-type {
  margin-bottom: 60px;
  padding-top: 62px;
  background: var(--secondary);
  min-height: 290px;
}

/* FLEX CARDS AND GRIDS */
.features-grid, .services-cards, .card-container, .card-grid, .content-grid  {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features-grid {
  align-items: stretch;
  margin: 36px 0 0 0;
}
.feature {
  background: var(--scandi-card);
  border: 1px solid var(--border);
  color: var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1 1 240px;
  min-width: 220px; max-width: 320px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.23s, border 0.17s, background 0.16s;
}
.feature img {
  width: 40px; height: 40px;
  margin-bottom: 8px;
}
.feature:hover, .feature:focus {
  box-shadow: 0 4px 30px 0 rgba(33,41,67,.12);
  border-color: var(--accent);
  background: #f4fdff;
}
/* About/Values Grid */
.values-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  margin: 24px 0 26px 0;
}
.values-grid > div {
  background: var(--scandi-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 22px 20px;
  flex: 1 1 140px;
  min-width: 140px;
  font-size: 1rem;
  box-shadow: 0 1px 8px rgba(33,41,67,.04);
}

.team-member-profiles {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin: 30px 0 0 0;
  flex-wrap: wrap;
  align-items: stretch;
}
.team-member {
  background: var(--scandi-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 200px; min-width: 200px; max-width: 300px;
  gap: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.team-member img { width: 46px; height: 46px; margin-bottom: 1px; }
.team-member:hover, .team-member:focus {
  box-shadow: 0 8px 30px 0 rgba(33,41,67,.10);
}

/* SERVICE CARDS */
.services-cards {
  gap: 24px;
  flex-wrap: wrap;
}
.service-card {
  background: var(--scandi-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px 20px 22px;
  box-shadow: var(--shadow);
  flex: 1 1 240px; min-width:220px; max-width: 320px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.service-card img { width: 36px; height: 36px; }
.service-card .service-price {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  margin-top: 8px;
  background: var(--secondary);
  padding: 3px 10px;
  border-radius: 8px;
}
.service-card:hover, .service-card:focus {
  box-shadow: 0 4px 32px 0 rgba(33,41,67,.14);
  border-color: var(--accent);
}

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.address-block, .email-block, .hours-block {
  background: var(--scandi-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 18px 20px;
  font-size: 1rem;
  min-width: 160px;
  box-shadow: 0 1px 8px rgba(33,41,67,.04);
}

.info-block ul, .team-values ul, .solution-overview ul, .why-choose-us ul, .next-steps ul, .categories-overview ul {
  margin: 12px 0 0 20px; list-style: disc; color: var(--primary);
  padding-left: 16px;
}
.info-block ul li,
.team-values ul li,
.solution-overview ul li,
.why-choose-us ul li,
.next-steps ul li,
.categories-overview ul li {
  margin-bottom: 11px;
  font-size: 1rem;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

/* BLOG CARDS */
.blog-preview-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.blog-preview {
  background: var(--scandi-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 340px;
  padding: 24px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, border 0.14s;
}
.blog-preview a {
  color: var(--accent);
  font-weight: 600;
  margin-top: 11px;
  transition: color 0.15s var(--transition-ease);
}
.blog-preview a:hover,
.blog-preview a:focus { color: var(--primary); text-decoration: underline; }
.blog-preview:hover, .blog-preview:focus {
  box-shadow: 0 4px 28px 0 rgba(33,41,67,.13);
  border-color: var(--accent);
}

.categories-overview h4 {
  margin-bottom: 7px;
  font-size: 1.12rem;
  color: var(--accent);
  font-weight: 600;
}

/* PROJECTS */
.project-listings {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.project-summary {
  background: var(--scandi-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px 16px 22px;
  min-width: 220px; max-width: 350px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.2s, border 0.14s;
}
.project-summary h3 {
  font-size: 1.16rem; margin-bottom: 5px;
}
.project-summary span {
  color: var(--text-light);
  font-size: .95rem;
}
.project-summary:hover, .project-summary:focus {
  border-color: var(--accent);
  box-shadow: 0 6px 24px 0 rgba(33,41,67,.10);
}

.solution-overview {
  margin: 32px 0 20px 0;
}
.client-feedback-preview {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

/* TESTIMONIAL CARDS - READABILITY CRITICAL */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  color: var(--primary);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px 0 rgba(33,41,67,0.08);
  padding: 20px 24px;
  margin-bottom: 20px;
  font-size: 1.06rem;
  font-style: italic;
  transition: box-shadow 0.2s;
}
.testimonial-card span {
  display: block;
  color: var(--accent);
  font-size: .98rem;
  font-style: normal;
  font-weight: 500;
  margin-top: 3px;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 32px 0 rgba(25,157,182,0.10);
  border-color: var(--accent);
}

/* FOOTER */
footer {
  background: var(--secondary);
  color: var(--primary);
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 34px 0 28px 0;
  font-size: .98rem;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav nav a {
  color: var(--primary);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-nav nav a:hover,
.footer-nav nav a:focus { color: var(--accent);}
.footer-contact {
  display: flex; flex-direction: column; gap: 7px; font-size: .98rem;
}
.footer-contact strong {
  font-size: 1.04rem;
}
.footer-contact a {
  color: var(--accent);
  transition: color 0.14s;
}
.footer-contact a:hover,
.footer-contact a:focus { color: var(--primary); text-decoration: underline;}
.footer-social {
  display: flex;
  align-items: center;
}
.footer-social img { width: 50px; height: auto; }

/* THANK YOU / NEXT STEPS */
.next-steps {
  margin: 32px 0 16px 0;
}
.next-steps h2 {
  font-size: 1.28rem;
}

/* SPACING & FLEXBOX MANDATORY CLASSES */
.section { margin-bottom: 60px; padding: 40px 20px; }  /* REQUIRED */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; border-radius: var(--radius); }
.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; }

/* ANIMATIONS & TRANSITIONS */
.card, .feature, .service-card, .testimonial-card, .blog-preview, .project-summary {
  transition: box-shadow 0.19s var(--transition-ease), border 0.17s var(--transition-ease), background 0.16s;
}
.cta-btn, .cookie-btn {
  transition: background 0.18s var(--transition-ease), color 0.18s var(--transition-ease), box-shadow 0.18s;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--scandi-card);
  color: var(--primary);
  padding: 26px 20px 17px 20px;
  border-top: 1px solid var(--border);
  box-shadow: 0 -2px 24px 0 rgba(33,41,67,.06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 1500;
  animation: cookieBannerIn 0.35s var(--transition-ease);
}
@keyframes cookieBannerIn {
  from {transform: translateY(80px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  flex: 1 1 240px;
  font-size: 1.02rem;
  margin-bottom: 0;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed; left:0;top:0;width:100vw; height:100vh;
  background: rgba(46, 47, 58, 0.22);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinmodal 0.27s ease;
}
@keyframes fadeinmodal {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: var(--scandi-card);
  color: var(--primary);
  border-radius: var(--radius);
  box-shadow: 0 8px 48px 0 rgba(33,41,67,.13);
  min-width: 340px; max-width: 95vw;
  padding: 36px 28px 24px 28px;
  display: flex; flex-direction: column;
  gap: 20px;
  position: relative;
  animation: modalPopIn 0.33s var(--transition-ease);
}
@keyframes modalPopIn {
  from {transform:scale(0.88);opacity:.4;}
  to {transform:scale(1);opacity:1;}
}
.cookie-modal h2 {
  font-size: 1.24rem;
  color: var(--primary);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category strong { font-size: 1.09rem; color: var(--accent); }
.cookie-category-toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
}
/* Simple Toggle Switch */
.toggle-switch {
  width: 40px; height: 22px;
  position: relative;
  border-radius: 22px;
  background: #e7e7e8;
  transition: background 0.17s;
  cursor: pointer;
  margin-left: 7px;
}
.toggle-switch input {
  display:none;
}
.toggle-slider {
  position: absolute;
  left:2px; top:2px;
  width: 18px; height: 18px;
  background: var(--primary);
  border-radius: 50%;
  transition: left 0.17s, background 0.16s;
}
.toggle-switch input:checked + .toggle-slider {
  left: 20px;
  background: var(--accent);
}
.cookie-modal-actions { display: flex; gap: 14px; justify-content: flex-end; }

/* UTILITY CLASSES */
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.gap-20 { gap: 20px; }
.text-center { text-align: center; }
.fullwidth { width: 100%; }

/* RESPONSIVE, MOBILE-FIRST DESIGN */
@media (max-width: 1024px) {
  .container { max-width: 97vw; }
  header .container, .footer .container {
    gap: 10px;
    padding-left: 10px; padding-right: 10px;
  }
}
@media (max-width: 850px) {
  .features-grid, .team-member-profiles, .services-cards, .project-listings, .blog-preview-cards, .client-feedback-preview {
    gap: 18px;
  }
  .features-grid>*, .service-card, .feature, .project-summary, .blog-preview, .team-member {
    min-width: 160px; max-width: 100%;
  }
  .container { max-width: 98vw; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    padding-left: 8px; padding-right: 8px;
  }
  .team-member-profiles, .features-grid, .services-cards, .project-listings,
  .blog-preview-cards, .client-feedback-preview, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonials-cards, .testimonial-card { padding: 18px 10px; }
  .contact-details {
    flex-direction: column;
    gap: 16px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 21px;
  }
  .footer-social { margin-top: 18px; }
  .footer .container {
    flex-direction: column;
    gap: 23px;
    align-items: flex-start;
  }
  .values-grid { flex-direction: column; gap: 12px; }
  .address-block, .email-block, .hours-block { min-width: unset; }
  .project-listings, .blog-preview-cards {flex-direction: column;}
  .solution-overview, .why-choose-us { margin: 18px 0; }
  .next-steps {margin:16px 0;}
}
@media (max-width: 580px) {
  h1, .main-title { font-size: 1.6rem; }
  h2 { font-size: 1.18rem; }
  .feature, .service-card, .project-summary, .blog-preview, .testimonial-card, .team-member {
    padding: 13px 8px 12px 10px;
    border-radius: 10px;
    font-size: .97rem;
  }
  .content-wrapper { gap: 11px; }
  .footer-social img { width: 36px; }
  .mobile-menu .mobile-nav { padding: 0 10px; }
  .cookie-banner {flex-direction: column; align-items: flex-start; gap:7px;}
  .cookie-modal { padding: 22px 6px; min-width: 95vw; }
}

/* FOCUS & ACCESSIBILITY */
a, button, .cta-btn, .cookie-btn, .toggle-switch {
  outline: none;
}
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus, .toggle-switch:focus {
  box-shadow: 0 0 0 3px var(--accent);
  border-radius: 6px;
  outline: none;
}

::-webkit-input-placeholder { color: #b4b5c0; }
::-moz-placeholder { color: #b4b5c0; }
:-ms-input-placeholder { color: #b4b5c0; }
::placeholder { color: #b4b5c0; }

/* Hide scroll for mobile menu overlay */
.mobile-menu.open { overflow-y: auto; }
html.menu-open { overflow: hidden !important; }

/* Scandinavian micro-interaction: subtle pulse for CTA */
.cta-btn:active { animation: ctaPulse 0.2s; }
@keyframes ctaPulse {
  0% {transform:scale(1);}
  50% {transform:scale(1.04);}
  100% {transform:scale(1);}
}

/* End of scandinavian_clean Luno Studio CSS */
