/*-----------------------------------------------------*
  CSS RESET & BASE 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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100vh;
  background: #F9F6F0;
  color: #14447A;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s cubic-bezier(.73,.01,.53,1.1);
}
button, input, select, textarea {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 8px 16px;
}
::-webkit-input-placeholder { color: #9DA2B0; }
:-ms-input-placeholder { color: #9DA2B0; }
::placeholder { color: #9DA2B0; }

/*-----------------------------------------------------*
  BRAND FONTS
 *-----------------------------------------------------*/
@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,700&display=swap');

:root {
  --color-primary: #14447A;
  --color-secondary: #F9F6F0;
  --color-accent: #F29E44;
  --color-art1: #3E71A7;
  --color-art2: #ff65b5;
  --color-art3: #00C2BA;
  --color-art4: #FFD444;
  --shadow-strong: 0 8px 32px 0 rgba(20,68,122,0.16);
  --shadow-soft: 0 2px 8px 0 rgba(20,68,122,0.10);
}

/*-----------------------------------------------------*
  TYPOGRAPHY SCALE
 *-----------------------------------------------------*/
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  line-height: 1.13;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  color: var(--color-primary);
  margin-bottom: 15px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
p, ul li, ol li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #28476B;
  margin-bottom: 14px;
}
strong {
  color: var(--color-accent);
  font-weight: 700;
}
.subheadline {
  color: var(--color-art3);
  font-size: 1.15rem;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
}

/* Artistic/creative title shadow and accent */
h1, .h1 {
  text-shadow: 1px 5px 0 var(--color-art2), 2px 17px 24px rgba(242,158,68,0.11);
}
h2, .h2 {
  border-left: 7px solid var(--color-art3);
  padding-left: 15px;
  background: linear-gradient(90deg, var(--color-art2) 0%, transparent 100%);
  border-radius: 0 24px 24px 0;
  box-decoration-break: clone;
  display: inline-block;
}
h3, .h3 {
  border-left: 4px solid var(--color-art1);
  padding-left: 10px;
  background: transparent;
}

/*-----------------------------------------------------*
  LAYOUT CONTAINERS & SECTIONS
 *-----------------------------------------------------*/
section {
  width: 100%;
  background: var(--color-secondary);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(255,255,255,0.97);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 38px 30px;
}

/* Cards & card-grids */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  border-radius: 19px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  min-width: 260px;
  flex: 1 1 220px;
  transition: box-shadow 0.25s cubic-bezier(.8,.01,.2,.99), transform 0.24s cubic-bezier(.71,0,.57,1.94);
  z-index: 1;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(44,65,158,0.17);
  transform: translateY(-4px) scale(1.035);
}

.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;
}
.text-section {
  margin-bottom: 15px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 19px;
  box-shadow: var(--shadow-soft);
  border-left: 7px solid var(--color-art4);
  font-size: 1.08em;
  color: #18374C;
  max-width: 540px;
  transition: box-shadow 0.23s cubic-bezier(.6,.13,.48,1.11), border-left-color 0.22s;
}
.testimonial-card strong {
  display: block;
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  margin-top: 5px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(44,65,158,0.15);
  border-left-color: var(--color-art2);
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}
.star-rating img {
  width: 23px;
  height: 23px;
  filter: drop-shadow(0 1px 2px rgba(244,171,69,0.16));
}
.star-rating span {
  margin-left: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  color: var(--color-primary);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin: 25px 0 12px 0;
}
.feature-grid li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  border-radius: 13px;
  padding: 17px 22px;
  min-width: 250px;
  font-size: 1.01em;
  color: #18374C;
  margin-bottom: 20px;
  border-left: 5px solid var(--color-accent);
  transition: box-shadow 0.2s cubic-bezier(.74,.01,.37,.96), border-left-color 0.23s;
}
.feature-grid li:hover {
  box-shadow: 0 7px 18px 0 rgba(44,65,158,0.06);
  border-left-color: var(--color-art2);
}
.feature-grid img {
  width: 36px;
  height: 36px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.video-reviews-snippet {
  background: var(--color-art1);
  color: #fff;
  border-radius: 13px;
  padding: 15px 20px;
  margin-top: 14px;
  font-style: italic;
  box-shadow: 0 2px 6px 0 rgba(20,68,122,0.12);
}

/* Section spacing between cards/sections globally */
section + section { margin-top: 30px; }
.content-wrapper + .content-wrapper { margin-top: 24px; }

/*-----------------------------------------------------*
  HEADER & NAVIGATION
 *-----------------------------------------------------*/
header {
  width: 100%;
  padding: 0 0 0 0;
  background: #fff;
  position: relative;
  z-index: 101;
  box-shadow: 0 2px 8px 0 rgba(20,68,122,0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.logo {
  display: flex;
  align-items: center;
  padding: 14px 16px;
}
.logo img {
  height: 40px;
  width: auto;
  margin-right: 7px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  margin-left: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02em;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.03em;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.19s, background 0.20s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-art2);
  color: #fff;
}
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: var(--color-accent);
  color: #fff !important;
  border-radius: 22px;
  padding: 12px 32px;
  font-size: 1em;
  margin-left: 19px;
  margin-right: 12px;
  box-shadow: 0 4px 14px 0 rgba(242,158,68,0.18);
  letter-spacing: 0.04em;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.14s, box-shadow 0.23s, transform 0.18s;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-art2);
  color: #fff !important;
  box-shadow: 0 8px 24px 0 rgba(242,158,68,0.29);
  transform: translateY(-3px) scale(1.03);
}

/* Hamburger burger */
.mobile-menu-toggle {
  display: none;
  position: relative;
  font-size: 2.1rem;
  color: var(--color-accent);
  background: none;
  border: none;
  margin-left: auto;
  margin-right: 12px;
  padding: 9px 16px;
  border-radius: 7px;
  cursor: pointer;
  z-index: 1200;
  transition: background 0.14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: rgba(242,158,68,0.09);
}

/* Mobile nav overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,68,122,0.98);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.51,.3,.52,.99);
}
.mobile-menu.open {
  display: block;
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 2rem;
  background: transparent;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 2002;
  padding: 8px 14px;
  border-radius: 9px;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(242,158,68,0.11);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  position: relative;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.38rem;
  font-weight: 700;
  color: #fff;
  padding: 13px 38px;
  border-radius: 18px;
  letter-spacing: 0.04em;
  transition: background 0.17s, color 0.15s;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-art2);
  color: #fff;
}

@media (max-width: 1050px) {
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  .main-nav { gap: 13px; }
}
@media (max-width: 768px) {
  header {
    flex-direction: row;
    align-items: flex-start;
    padding: 0 0 0 0;
    height: 65px;
  }
  .main-nav {
    display: none;
  }
  .cta-button {
    margin-left: auto;
    font-size: 1em;
    padding: 8px 24px;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/*-----------------------------------------------------*
  FOOTER
 *-----------------------------------------------------*/
footer {
  background: var(--color-art1);
  color: #fff;
  margin-top: 38px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 45px 25px 19px 25px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--color-primary);
  border-radius: 0 0 48px 48px;
  box-shadow: 0 -2px 16px 0 rgba(20,68,122,0.18);
}
.footer-main .logo img {
  height: 42px;
}
.footer-main-nav, .footer-legal-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-main-nav a, .footer-legal-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05em;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 5px 4px;
  border-left: 3px solid transparent;
  transition: color 0.17s, border-left-color 0.15s;
}
.footer-main-nav a:hover, .footer-legal-nav a:hover {
  color: var(--color-accent);
  border-left-color: var(--color-accent);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 230px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 0.98em;
  margin: 0 0 1px 0;
}
.footer-contact img {
  width: 21px;
  height: 21px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 14px;
}
.footer-social a {
  display: flex;
  align-items: center;
  border-radius: 50%;
  background: #fff;
  width: 36px; height: 36px;
  justify-content: center;
  box-shadow: 0 2px 10px 0 rgba(242,158,68,0.12);
  transition: background 0.18s, transform 0.19s;
}
.footer-social a:hover {
  background: var(--color-accent);
  transform: scale(1.09) rotate(-3deg);
}
.footer-social img {
  width: 20px; height: 20px;
}
.footer-main .cta-button {
  margin: 16px 0 0 0;
  background: var(--color-art2);
  color: #fff;
  font-weight: 700;
  font-size: 1.07em;
  padding: 12px 32px;
  box-shadow: none;
}
.footer-bottom {
  text-align: center;
  padding: 16px 10px;
  background: var(--color-art1);
  color: #cbe4fa;
  font-size: 0.95em;
}

@media (max-width: 1050px) {
  .footer-main { flex-direction: column; gap: 22px; align-items: flex-start; }
  .footer-main .cta-button { margin-left: 0; }
}
@media (max-width: 600px) {
  .footer-main { padding: 36px 10px 12px 10px; border-radius: 0 0 28px 28px; }
}

/*-----------------------------------------------------*
  TABLES
 *-----------------------------------------------------*/
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  margin: 16px 0 18px 0;
  overflow: hidden;
}
thead tr {
  background: var(--color-art2);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05em;
}
td, th {
  padding: 17px 18px;
}
tr:nth-child(even) {
  background: #F5F2EA;
}
tr:nth-child(odd) {
  background: #fff;
}

/*-----------------------------------------------------*
  COOKIE CONSENT BANNER
 *-----------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2004;
  background: #18374C;
  color: #fff;
  box-shadow: 0 -4px 22px 0 rgba(20,68,122,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  gap: 24px;
  font-size: 1.05em;
  border-radius: 16px 16px 0 0;
  animation: slideUpBanner 0.4s cubic-bezier(.77,.17,.19,.99);
}
@keyframes slideUpBanner {
  from { transform: translateY(130%); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner__buttons {
  display: flex;
  gap: 17px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  border-radius: 16px;
  border: none;
  background: var(--color-accent);
  color: #fff;
  padding: 10px 20px;
  margin-left: 4px;
  cursor: pointer;
  transition: background 0.17s, color 0.11s, box-shadow 0.22s, outline 0.15s;
  outline: none;
  box-shadow: 0 2px 9px 0 rgba(242,158,68,0.14);
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: var(--color-art2);
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(242,158,68,0.21);
}
.cookie-banner .cookie-settings-btn {
  background: var(--color-art2);
  color: #fff;
}
.cookie-banner .cookie-settings-btn:hover { background: var(--color-art3); }

/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(20,68,122,0.67);
  z-index: 2022;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.37s cubic-bezier(.7,.11,.48,1);
}
@keyframes fadeInOverlay { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #fff;
  color: #18374C;
  border-radius: 23px;
  padding: 36px 28px;
  min-width: 320px;
  max-width: 98vw;
  max-height: 94vh;
  box-shadow: 0 8px 48px 0 rgba(20,68,122,0.13);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: popInModal 0.43s cubic-bezier(.7,.11,.48,1.4);
}
@keyframes popInModal { from { transform: scale(0.95) translateY(60px); opacity:0;} to { transform: scale(1) translateY(0); opacity:1; } }
.cookie-modal h2 {
  font-size: 1.17rem;
  color: var(--color-art1);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
}
.cookie-modal__close {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 1.4rem;
  background: transparent;
  color: var(--color-art2);
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 12px;
  transition: background 0.13s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: var(--color-art3);
  color: #fff;
}
.cookie-modal__list {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #F5F2EA;
  border-radius: 9px;
  padding: 13px 17px;
}
.cookie-category-row label {
  font-size: 1em;
  color: #1d314c;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category-row input[type="checkbox"] {
  accent-color: var(--color-art3);
  width: 24px; height: 24px;
}
.cookie-category-row .always-on {
  font-size: 0.95em;
  color: var(--color-art2);
  font-weight: 700;
  margin-left: 9px;
}

.cookie-modal__buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 9px;
}
.cookie-modal__buttons button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  border-radius: 14px;
  border: none;
  background: var(--color-accent);
  color: #fff;
  padding: 10px 18px;
  outline: none;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.19s;
}
.cookie-modal__buttons button:hover { background: var(--color-art2); color: #fff; }

@media (max-width: 500px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
    text-align: left;
    font-size: 0.96em;
    padding: 13px 4px;
  }
  .cookie-modal { padding: 18px 10px; } 
}

/*-----------------------------------------------------*
  RESPONSIVE ADJUSTMENTS (SECTION + FLEXBOX)
 *-----------------------------------------------------*/
@media (max-width: 900px) {
  .content-wrapper { padding: 19px 8px; }
  .container { padding: 0 7px; }
  .card-container, .content-grid, .feature-grid { gap: 14px; }
}

@media (max-width: 768px) {
  h1, .h1 { font-size: 2.1rem; }
  h2, .h2 { font-size: 1.33rem; }
  .content-wrapper { gap: 10px; }
  .section { margin-bottom: 38px; padding: 22px 7px; }
  .content-grid, .card-container, .feature-grid {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .testimonial-card { max-width: 100%; }
}
@media (max-width: 500px) {
  .card, .feature-grid li { min-width: 0; padding: 13px 9px; font-size: 0.96em; }
  .cookie-modal { min-width: 95vw; }
}

/*-----------------------------------------------------*
  OTHER GENERAL STYLES & UTILITIES
 *-----------------------------------------------------*/
section ul, section ol {
  margin-left: 2px;
  margin-bottom: 12px;
}
section ul li, section ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 11px;
  color: #295786;
}
section ul li:before {
  content: '\2022';
  position: absolute;
  left: 7px;
  color: var(--color-art2);
  font-size: 1.15em;
  font-family: 'Montserrat', Arial, sans-serif;
  top: 0;
  line-height: 1.2;
}
section ol li {
  padding-left: 34px;
  counter-increment: stepNum;
}
section ol li:before {
  content: counter(stepNum) '.';
  position: absolute;
  left: 7px;
  color: var(--color-accent);
  font-size: 1.08em;
  font-family: 'Montserrat', Arial, sans-serif;
  top: 0;
  line-height: 1.22;
}
section ol { counter-reset: stepNum; }

.text-section h3 { margin-bottom: 7px; color: var(--color-accent); font-weight: 700; }
.text-section p { margin-bottom: 6px; }

/* Utility: visually hidden (for accessibility) */
.visually-hidden {
  position: absolute;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/*-----------------------------------------------------*
  SPECIAL ARTISTIC ELEMENTS
 *-----------------------------------------------------*/
.card:before, .feature-grid li:before {
  content: '';
  position: absolute;
  top: -13px; left: -13px;
  width: 38px; height: 38px;
  border-radius: 47% 53% 60% 44% / 52% 44% 56% 48%;
  background: var(--color-art2);
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}
.card::after, .feature-grid li::after {
  content: '';
  position: absolute;
  bottom: -15px; right: -15px;
  width: 35px; height: 35px;
  border-radius: 42% 58% 65% 35% / 53% 49% 51% 47%;
  background: var(--color-art3);
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}
.card, .feature-grid li { position: relative; z-index: 1; overflow: visible; }

.testimonial-card:before {
  content: '';
  position: absolute;
  bottom: -19px; left: -16px;
  width: 49px; height: 49px;
  border-radius: 54% 36% 68% 32% / 40% 49% 51% 60%;
  background: var(--color-art4);
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 700px) {
  .card:before, .feature-grid li:before, .card::after, .feature-grid li::after, .testimonial-card::before { display: none; }
}

/*-----------------------------------------------------*
  FORM ELEMENT STYLES (if any forms present)
 *-----------------------------------------------------*/
input[type="text"], input[type="email"], textarea, select {
  border: 1.5px solid var(--color-art3);
  border-radius: 13px;
  padding: 11px 15px;
  font-size: 1.08em;
  margin-bottom: 14px;
  background: #fff;
  transition: border-color 0.16s, box-shadow 0.16s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus, select:focus {
  border-color: var(--color-art2);
  box-shadow: 0 2px 8px 0 rgba(242,158,68,0.11);
}

button[disabled], .cta-button[disabled] {
  opacity: 0.56;
  cursor: not-allowed;
}

/*-----------------------------------------------------*
  ANIMATIONS AND INTERACTIONS
 *-----------------------------------------------------*/
.card, .testimonial-card, .feature-grid li, .cookie-banner, .cta-button {
  transition-property: box-shadow, transform, border, background, color, opacity;
  transition-duration: 0.18s, 0.22s, 0.16s, 0.16s, 0.14s, 0.14s;
  transition-timing-function: cubic-bezier(.64,.16,.59,1.37), cubic-bezier(.77,.17,.19,.99), cubic-bezier(.74,.01,.37,.96);
}

/*-----------------------------------------------------*
  END
 *-----------------------------------------------------*/
