/* CSS RESET & NORMALIZE (mobile-first, wide support) */
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,hr,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;
  vertical-align: baseline;
  font: inherit;
  font-size: 100%;
  color: inherit;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: #F8FBF7;
  color: #233F20;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a { color: #308343; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #F2C12E; text-decoration: underline; }
ul, ol { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
input, button, textarea, select { font: inherit; }
address { font-style: normal; }
:focus { outline: 2px solid #F2C12E; outline-offset: 3px; }


/* BRAND COLORS (Playful & Dynamic accents) */
:root {
  --color-primary: #233F20;
  --color-secondary: #F2C12E;
  --color-accent: #308343;
  --color-bg: #F8FBF7;
  --color-white: #FFFFFF;
  --color-pink: #FF60A4;
  --color-blue: #256CF2;
  --color-orange: #FFAF4C;
  --color-grey: #F5F5F5;
  --color-shadow: rgba(50,72,28,0.05);
}

/* TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #233F20;
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.2rem; margin-bottom: 20px; }
h2 { font-size: 1.6rem; margin-bottom: 18px; }
h3 { font-size: 1.18rem; margin-bottom: 14px; }
h4 { font-size: 1rem; margin-bottom: 8px; font-weight: 700; }
p, li, address { font-size: 1rem; font-family: 'Open Sans', Arial, Helvetica, sans-serif; }
strong { font-weight: 700; }
small { font-size: 0.93em; color: var(--color-accent); font-family: inherit; }


/* FLEX LAYOUTS (NO GRID, COLUMNS, ETC) */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}
.section { margin-bottom: 60px; padding: 40px 20px; background: none; }
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative; /* Only for decorations, not layout */
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  background: var(--color-white);
  box-shadow: 0 6px 30px var(--color-shadow);
  padding: 28px 22px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-5px) scale(1.03) rotate(-2deg);
  box-shadow: 0 10px 36px 0 rgba(50,72,28,0.11), 0 2px 4px 0 rgba(242,193,46,0.08);
}
.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: 20px;
  background: #fffbe6;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(255,192,46,0.14);
  margin-bottom: 20px;
  position: relative;
  color: #233F20;
  font-size: 1.07em;
  transition: box-shadow 0.2s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px rgba(50,72,28,0.17);
  transform: translateY(-2px) scale(1.01) rotate(0.7deg);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}


/* HERO */
.hero {
  background: linear-gradient(90deg, #F2C12E 70%, #FF60A4 100%);
  border-radius: 0 0 42px 42px;
  margin-bottom: 60px;
  padding: 40px 0 70px 0;
  animation: heroBgMove 8s linear infinite alternate;
}
@keyframes heroBgMove {
  0% { background-position: 0 0; }
  100% { background-position: 80% 0; }
}
.hero .container {
  min-height: 320px;
  align-items: flex-start;
  justify-content: center;
}
.hero h1, .hero p {
  color: #233F20;
}
.hero h1 {
  font-size: 2.6rem;
  text-shadow: 1px 2px 0 #FFF6CF;
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 28px;
}

/* BUTTONS & CALL TO ACTION */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 14px 30px;
  font-size: 1.1rem;
  border: none;
  border-radius: 99px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(50,72,28,0.06);
  background: var(--color-secondary);
  color: var(--color-primary);
  transition: background 0.21s, color 0.21s, transform 0.16s;
  text-align: center;
  margin: 12px 0 0 0;
}
.cta.primary {
  background: linear-gradient(90deg, #F2C12E 70%, #FFAF4C 110%);
  color: #233F20;
  border: 3px solid #FFF6CF;
  box-shadow: 0 3px 22px rgba(50,72,28,0.14);
}
.cta.secondary {
  background: #fff;
  color: #233F20;
  border: 2px solid #F2C12E;
  box-shadow: 0 3px 16px rgba(255,96,164,0.13);
}
.cta:hover, .cta:focus {
  background: linear-gradient(90deg, #FFAF4C 60%, #F2C12E 100%);
  color: #256CF2;
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 7px 28px 0 #FFAF4C55;
}

/* MAIN NAV */
header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: #fff;
  box-shadow: 0 6px 18px -10px #233F2020;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 18px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #233F20;
  font-weight: 700;
  font-size: 1.08em;
  padding: 7px 12px;
  border-radius: 7px;
  transition: background 0.21s, color 0.22s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FFAF4C;
  color: #233F20;
}
.mobile-menu-toggle {
  display: flex;
  background: #FF60A4;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  border-radius: 18px;
  padding: 2px 13px 7px 13px;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
  z-index: 3;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F2C12E;
  color: #233F20;
  transform: scale(1.08);
}

/* Hide desktop nav on mobile */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
}
@media (min-width: 993px) {
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #FFAF4C 50%, #F2C12E 100%);
  box-shadow: 0 0 0 100vmax #ff60a400;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 48px 24px 24px 24px;
  transform: translateX(-110vw);
  transition: transform 0.33s cubic-bezier(.8,.34,.37,1.35);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: rgba(255,255,255,0.85);
  color: #233F20;
  border: none;
  border-radius: 28px;
  font-size: 2rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 24px;
  padding: 6px 20px 6px 20px;
  box-shadow: 0 3px 13px #ffc12e99;
  transition: background 0.18s, transform 0.18s;
  z-index: 12;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FF60A4;
  color: #fff;
  transform: scale(1.08);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.mobile-nav a {
  padding: 18px 0;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #233F20;
  font-weight: 700;
  border-radius: 12px;
  transition: background 0.20s, color 0.16s;
  text-align: left;
  background: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fffbe6;
  color: #FF60A4;
}

/* COOKIE CONSENT BANNER + MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -4px 24px #F2C12E44;
  z-index: 4000;
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 1rem;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  animation: slideUp 0.7s cubic-bezier(.8,.2,.25,1.35);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0}
  to { transform: translateY(0); opacity: 1}
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  border-radius: 16px;
  padding: 10px 22px;
  font-size: 1rem;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.19s, color 0.13s, transform 0.18s;
}
.cookie-banner .accept {
  background: #F2C12E;
  color: #233F20;
  border: 2px solid #fffbdb;
}
.cookie-banner .accept:hover { background: #FFAF4C; color: #256CF2; }
.cookie-banner .reject {
  background: #fff;
  color: #233F20;
  border: 2px solid #F2C12E;
}
.cookie-banner .reject:hover { background: #FF60A4; color: #fff; }
.cookie-banner .settings {
  background: #256CF2;
  color: #fff;
  border: 2px solid #fffbe6;
}
.cookie-banner .settings:hover { background: #308343; color: #fff; }

.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(34,63,32,0.78);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.cookie-modal.open { display: flex; }
.cookie-modal-content {
  background: #fffbe6;
  border-radius: 26px;
  padding: 36px 30px 32px 30px;
  box-shadow: 0 8px 46px #F2C12Ecc;
  min-width: 300px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: popInModal 0.28s cubic-bezier(.79,1.4,.41,1.1) both;
}
@keyframes popInModal {
  0% { opacity:0; transform: scale(0.9) rotate(-7deg) }
  100% { opacity:1; transform: scale(1) rotate(0)}
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.cookie-modal-header h2 {
  font-size: 1.5rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal-close {
  font-size: 2.0rem;
  background: #FFAF4C;
  color: #233F20;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  padding: 2px 18px;
  transition: background 0.16s, color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FF60A4; color: #fff;
}
.cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 11px;
  font-size: 1.09rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  gap: 10px;
}
.cookie-category input[type="checkbox"]:not(:disabled) {
  accent-color: #F2C12E;
  width: 22px; height: 22px;
  cursor: pointer;
}
.cookie-category input[type="checkbox"]:disabled {
  accent-color: #bbb;
  opacity: 0.7;
}
.cookie-category label {
  font-weight: 600;
  cursor: pointer;
}
.cookie-description {
  font-size: 0.97rem;
  margin-left: 26px;
  color: #666;
}

/* FOOTER */
footer {
  margin-top: 72px;
  background: #233F20;
  color: #fff;
  border-radius: 32px 32px 0 0;
  padding: 36px 0 0 0;
  font-size: 1.02em;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 30px;
}
.footer-grid > div {
  flex: 1 1 200px;
  min-width: 170px;
  margin-bottom: 22px;
}
.footer-grid h4 {
  color: #F2C12E;
  font-size: 1.07em;
  margin-bottom: 6px;
  font-weight: 700;
}
.footer-grid nav a {
  color: #fffbe6;
  font-size: 1em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  line-height: 1.6;
}
.footer-grid nav a:hover, .footer-grid nav a:focus {
  color: #FF60A4;
  background: none;
}
.footer-grid address, .footer-grid p {
  color: #fffbe6;
  font-style: normal;
  font-size: .98em;
}
.footer-grid img {
  height: 50px;
  margin-bottom: 10px;
}
.footer-bottom {
  width: 100%;
  border-top: 2px solid #fffbe6;
  padding: 10px 0;
  text-align: center;
  color: #fffbe6;
  font-size: .93em;
  background: none;
}

/* SERVICES GRID and FLEX-LISTS */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.services-grid > div, .services-grid > .text-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px #F2C12E44;
  padding: 22px 16px;
  flex: 1 1 240px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.16s;
}
.services-grid > div:hover, .services-grid > .text-section:hover {
  box-shadow: 0 7px 38px #FFAF4C42;
  transform: scale(1.025);
}
.features {
  background: #fffbe6;
  border-radius: 32px;
  padding: 24px 0 8px 0;
  margin-bottom: 60px;
  box-shadow: 0 3px 18px #F2C12E24;
}
.features ul, .features ol {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
  margin-bottom: 0;
}
.features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.06em;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #fff;
  border-radius: 18px;
  padding: 14px 20px 14px 14px;
  min-width: 220px;
  box-shadow: 0 2px 9px #30834309;
  color: #233F20;
}
.features li img {
  width: 33px;
  height: 33px;
}

/* SECTION SPACING AND TEASERS */
.section:not(:first-child), .services-overview, .subsidy-calculation-teaser, .contact-teaser, .cta-banner {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.subsidy-calculation-teaser, .cta-banner {
  background: linear-gradient(93deg, #F2C12E 50%, #FFAF4C 100%);
  border-radius: 24px;
  box-shadow: 0 8px 36px #F2C12E55;
  text-align: center;
  color: #233F20;
}
.cta-banner h2 { color: #233F20; margin-bottom: 14px; }


/* UL/OL With playful icons */
ul, ol {
  margin-bottom: 22px;
}
ul li, ol li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 7px;
}
ul li:before {
  content: '\2600';
  color: #F2C12E;
  font-weight: bold;
  font-size: 1.1em;
  position: absolute;
  left: 2px;
  top: 0px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  opacity: .7;
}
ol li:before {
  content: counters(item, ".") ". ";
  color: #FF60A4;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  position: absolute;
  left: 2px;
  font-size: 1.05em;
  font-weight: 700;
}
ol {
  counter-reset: item;
}
ol li {
  counter-increment: item;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 14px;
}

/* BADGES/ICONS */
.features li img, .services-grid img, .footer-grid img, .testimonial-card img {
  border-radius: 8px;
  background: #fffbdb;
  padding: 2px 3px;
}

/* PLAYFUL MICRO-ANIMATIONS */
.cta, .card, .services-grid > div, .testimonial-card {
  transition: box-shadow 0.27s cubic-bezier(.59,.29,.58,1.32), transform 0.22s;
}
.cta:active, .card:active, .services-grid > div:active {
  transform: scale(0.98) rotate(1.5deg);
}
.features li:hover {
  box-shadow: 0 4px 20px #FFAF4C22;
  background: #fffbe6;
  transform: scale(1.04);
}

/* TABLES */
table {
  width: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px #30834310;
  margin-bottom: 26px;
}
th, td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid #F2C12E44;
}
th { background: #F2C12E; color: #233F20; font-weight: 700; }
tr:last-child td { border-bottom: none; }

/* CONTACT INFO & ADDRESS */
address {
  color: #308343;
  background: #fffbe6;
  border-radius: 14px;
  padding: 13px 17px;
  font-size: 1.03em;
  margin-bottom: 10px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
address strong { color: #233F20; }
address a {
  color: #233F20;
  font-weight: 600;
  text-decoration: underline solid #F2C12E 2px;
  padding-bottom: 2px;
}

/* GENERIC FORM STYLES (if relevant) */
input[type="text"], input[type="email"], textarea {
  background: #fff;
  border: 2px solid #F2C12E;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 1.05em;
  margin-bottom: 16px;
  width: 100%;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #FF60A4;
  background: #fffbe6;
}
label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  display: block;
  margin-bottom: 8px;
}

/* RESPONSIVE BREAKPOINTS - MOBILE FIRST */
@media (min-width: 450px) {
  .hero h1 { font-size: 2.2rem; }
  .container { padding: 0 30px; }
}
@media (min-width: 600px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.25rem; }
  body { font-size: 1.075rem; }
  .section, .services-overview, .subsidy-calculation-teaser, .contact-teaser, .cta-banner { padding: 44px 30px; }
  .footer-grid { gap: 36px; }
}
@media (min-width: 830px) {
  .hero h1 { font-size: 3rem; }
  .footer-grid { gap: 44px; }
  .main-nav {
    gap: 32px;
    font-size: 1.14em;
  }
}
@media (min-width: 993px) {
  .container {
    padding: 0 64px;
  }
  .content-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 46px;
  }
  .services-grid, .features ul, .features ol {
    flex-direction: row;
    align-items: flex-start;
  }
  .card-container, .content-grid {
    flex-direction: row;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: row;
    align-items: center;
    gap: 58px;
  }
  .footer-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 56px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .content-grid, .card-container, .footer-grid, .features ul, .features ol, .services-grid {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .section, .services-overview, .subsidy-calculation-teaser, .contact-teaser, .cta-banner {
    padding: 32px 12px;
    margin-bottom: 40px;
  }
  .card, .services-grid > div, .testimonial-card, .features li {
    min-width: 0 !important;
    width: 100%;
  }
  .footer-grid {
    gap: 20px;
  }
  header .container {
    flex-direction: row;
    padding-right: 7px;
  }
  .main-nav { display: none; }
  .mobile-menu {
    padding: 35px 10px 15px 10px;
  }
}
@media (max-width: 450px) {
  h1 { font-size: 1.45rem; }
  h2, .hero h1 { font-size: 1.13rem; }
  .hero { padding: 22px 0 35px 0; border-radius: 0 0 14px 14px; }
  .footer-grid, .container { padding-left: 2vw; padding-right: 2vw; }
  .section, .services-overview, .subsidy-calculation-teaser, .contact-teaser, .cta-banner {
    padding: 14px 1vw;
  }
  .cookie-modal-content { padding: 18px 6vw; }
}

/* UTILITIES */
.bg-accent { background: var(--color-accent); }
.text-accent { color: var(--color-accent); }
.text-secondary { color: var(--color-secondary); }
.bg-secondary { background: var(--color-secondary); }
.bg-primary { background: var(--color-primary); color: #fff; }
.radius-xl { border-radius: 32px; }
.shadow { box-shadow: 0 3px 14px #F2C12E22; }
.mt-2 { margin-top: 2rem; }

/* AESTHETIC EXTRAS: CONFETTI DECORATIONS */
.section:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
}

/* PRINT STYLES */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  body { background: #fff; color: #000; }
  .container { max-width: none; width: 100%; }
}

/* ENSURE ADEQUATE SPACING EVERYWHERE */
.section, .card-container, .card, .content-grid, .feature-item, .text-image-section, .testimonial-card {
  margin-bottom: 20px;
  gap: 20px;
}
.section:last-child, .card-container:last-child, .card:last-child, .content-grid:last-child  {
  margin-bottom: 0;
}

/* VISUAL HIERARCHY FOR "PLAYFUL_DYNAMIC" */
h1, h2, h3 {
  background: linear-gradient(90deg, #256CF2 30%, #F2C12E 60%, #FF60A4 90%);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
h1 {
  animation: waveTitle 2.9s infinite linear alternate;
}
@keyframes waveTitle {
  0%   { letter-spacing: 0.01em; }
  70%  { letter-spacing: 0.07em; }
  100% { letter-spacing: 0.01em; }
}

/* ANIMATED ICON PULSE in features/testimonials */
.features li img, .testimonial-card img {
  animation: iconPulse 3.4s infinite cubic-bezier(.54,0,.58,1.49);
}
@keyframes iconPulse {
  0%   { transform: scale(1) rotate(0); }
  13%  { transform: scale(1.18) rotate(5deg); }
  34%  { transform: scale(1) rotate(-3deg); }
  70%  { transform: scale(1.12) rotate(4deg); }
  100% { transform: scale(1) rotate(0); }
}

/* FORMS BUTTON FOCUS & ACCESSIBILTY */
button:focus-visible {
  outline: 2.5px solid #256CF2 !important;
  outline-offset: 3px;
}

/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}
