/* ==== 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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F2F2F2;
  color: #233049;
  min-height: 100vh;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ==== FONT IMPORTS ==== */
@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 {
  --primary: #233049;
  --secondary: #FFFFFF;
  --bg: #F2F2F2;
  --accent: #608D58;
  --accent-dark: #3A692E;
  --creative-blue: #2CB5F6;
  --creative-pink: #F62CB1;
  --shadow: 0 4px 32px 0 rgba(35, 48, 73, 0.10);
  --radius: 20px;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--bg);
  color: var(--primary);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 2.6rem;
  color: var(--accent-dark);
  background: linear-gradient(90deg, var(--creative-blue) 0%, var(--accent-dark) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
h2 {
  font-size: 2rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 24px;
}
h2:after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 7px;
  background: linear-gradient(90deg, var(--creative-pink) 0%, var(--creative-blue) 100%);
  border-radius: 2px;
}
h3 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 900;
}

p, li, span, strong {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: var(--primary);
}
strong {
  font-weight: 700;
}

/* ==== CONTAINER ==== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ==== HEADER ==== */
header {
  background: var(--primary);
  padding: 0;
  position: relative;
  z-index: 30;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 6px 12px rgba(44, 181, 246, 0.07);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  gap: 24px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: var(--secondary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  position: relative;
  transition: color 0.22s;
}
header nav a:hover,
header nav a:focus {
  color: var(--creative-pink);
  text-decoration: underline wavy var(--creative-pink) 2px;
}
.cta-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--secondary);
  background: linear-gradient(90deg, var(--creative-pink) 0%, var(--accent-dark) 100%);
  border: none;
  border-radius: 28px;
  box-shadow: 0 8px 24px 0 rgba(60, 137, 222, 0.12);
  padding: 15px 38px;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.3s, box-shadow 0.2s, transform 0.15s;
  position: relative;
  z-index: 20;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, var(--accent-dark) 0%, var(--creative-blue) 100%);
  box-shadow: 0 2px 24px 3px rgba(99, 33, 72, 0.13);
  transform: translateY(-2px) scale(1.035);
}

/* ==== MOBILE NAV ==== */
.mobile-menu-toggle {
  display: none;
  background: var(--creative-blue);
  color: var(--secondary);
  font-size: 2rem;
  border: none;
  border-radius: 38px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  cursor: pointer;
  box-shadow: 0 2px 9px rgba(44, 181, 246, 0.13);
  z-index: 98;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--creative-pink);
  color: var(--secondary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(127deg, var(--creative-blue) 25%, var(--primary) 100%);
  z-index: 1101;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.74, 0.06, 0.39, 0.93);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2.25rem;
  padding: 24px 20px 4px 0;
  margin: 0;
  cursor: pointer;
  transition: color 0.18s;
  align-self: flex-end;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--creative-pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  margin-right: 32px;
  margin-top: 50px;
}
.mobile-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  text-shadow: 1px 2px 20px rgba(35, 48, 73, 0.1);
  padding: 8px 0;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--creative-pink);
  color: var(--secondary);
  padding-left: 12px;
}

@media (max-width: 1024px) {
  header .container {
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ==== HERO & SECTION LAYOUT ==== */
.hero {
  background: linear-gradient(98deg, var(--creative-blue) 35%, var(--secondary) 100%);
  padding: 0;
  border-radius: 0 0 72px 0;
  box-shadow: 0 24px 48px 0 rgba(44, 181, 246, 0.07);
  position: relative;
  z-index: 1;
  min-height: 360px;
}
.hero .container {
  min-height: 360px;
  align-items: stretch;
  justify-content: flex-end;
  padding-top: 48px;
  padding-bottom: 64px;
}
.hero .content-wrapper {
  gap: 24px;
  max-width: 620px;
  background: rgba(255,255,255,0.93);
  padding: 38px 38px 32px 38px;
  border-radius: 32px 48px 16px 10px;
  box-shadow: var(--shadow);
  border-left: 8px solid var(--creative-pink);
}
@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 28px 0;
    min-height: 180px;
  }
  .hero .container{
    min-height: unset;
    padding-top: 18px;
    padding-bottom: 24px;
  }
  .hero .content-wrapper{
    padding: 18px 12px;
    border-radius: 20px 28px 8px 4px;
    min-width: unset;
    width: 100%;
  }
}

/* ==== FLEX LAYOUTS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 250px;
  flex: 1 1 330px;
  transition: box-shadow 0.22s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(60, 137, 222, 0.21);
  transform: translateY(-3px) scale(1.015);
}
.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;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 4px 18px 0 rgba(60,137,222,0.07);
  margin-bottom: 24px;
  flex-wrap: wrap;
  flex-direction: row;
  border-left: 8px solid var(--creative-blue);
  position: relative;
  transition: box-shadow 0.16s, background 0.12s;
}
.testimonial-card:hover {
  background: #F2F2F2;
  box-shadow: 0 8px 28px 0 rgba(99, 33, 72, 0.09);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== UNIQUE - ARTISTIC / CREATIVE ELEMENTS ==== */
.feature-grid, .process-list, .service-list, .pricing-tables, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 14px;
  justify-content: flex-start;
}
.feature-grid li, .process-list li, .service-list li {
  background: linear-gradient(120deg, #FFF8FA 44%, #F7FDFB 100%);
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(246, 44, 177, 0.09);
  padding: 30px 26px 24px 26px;
  min-width: 220px;
  flex: 1 1 260px;
  transition: transform 0.13s, box-shadow 0.16s;
  border-left: 6px solid var(--creative-pink);
  position: relative;
}
.feature-grid li:hover,
.process-list li:hover,
.service-list li:hover {
  box-shadow: 0 8px 36px 0 rgba(35,48,73, 0.11);
  transform: translateY(-2px) scale(1.01);
  border-left-color: var(--creative-blue);
}
.feature-grid img, .process-list img, .service-list img {
  width: 48px;
  margin-bottom: 18px;
}
@media (max-width: 800px) {
  .feature-grid, .service-list, .pricing-tables, .team-grid, .process-list {
    flex-direction: column;
    gap: 20px;
  }
}

.pricing-tables > div {
  background: #f7fdfb;
  border-radius: 22px 8px 30px 14px;
  box-shadow: 0 0 18px 0 rgba(98,152,96,0.10);
  padding: 32px 28px 38px 28px;
  flex: 1 1 310px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  border-top: 7px solid var(--accent); 
  position: relative;
  transition: box-shadow 0.18s, transform 0.12s;
}
.pricing-tables > div:hover {
  box-shadow: 0 12px 42px 0 rgba(44, 181, 246, 0.19);
  transform: translateY(-3px) scale(1.02);
  border-top-color: var(--creative-blue);
}

.team-grid > div {
  background: linear-gradient(120deg, #f7fdfb 40%, #f0f5ff 100%);
  border-radius: 15px;
  box-shadow: 0 2px 14px 0 rgba(44, 181, 246, 0.08);
  padding: 28px 20px 22px 22px;
  min-width: 180px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  border-left: 5px solid var(--creative-blue);
  transition: border-color 0.18s, box-shadow 0.12s;
}
.team-grid > div:hover {
  border-left: 5px solid var(--creative-pink);
  box-shadow: 0 4px 18px 0 rgba(123, 44, 246, 0.10);
}

.faq-accordion h3 {
  margin-top: 16px;
  color: var(--creative-blue);
  font-size: 1.11rem;
  font-weight: 800;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px 0 2px 0;
  outline: none;
  transition: color 0.13s;
}
.faq-accordion h3:hover {
  color: var(--creative-pink);
  text-decoration: underline wavy var(--creative-pink) 1.5px;
}
.faq-accordion p {
  margin-bottom: 0;
  margin-top: 6px;
  font-style: italic;
  color: var(--primary);
  font-size: 15px;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.trust-logos img {
  max-width: 56px;
  height: auto;
  filter: grayscale(0.15) brightness(0.93) contrast(1.08);
  opacity: 0.9;
  margin-bottom: 0;
}
.trust-logos span {
  color: var(--primary);
  font-size: 15px;
  margin-left: 6px;
}

/* ==== FORMS, INPUTS, BUTTONS ==== */
input[type="search"] {
  background: #ffffff;
  border: 2px solid var(--creative-blue);
  border-radius: 18px;
  padding: 12px 16px;
  font-size: 1.05rem;
  width: 100%;
  max-width: 400px;
  margin-top: 8px;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px 0 rgba(44, 181, 246, 0.08);
  outline: none;
  transition: border-color 0.14s;
}
input[type="search"]:focus {
  border: 2px solid var(--creative-pink);
}
button, .btn, .feature-item button, .service-list button {
  background: var(--creative-blue);
  color: var(--secondary);
  padding: 11px 22px;
  border: none;
  border-radius: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 9px rgba(44, 181, 246, 0.09);
  transition: background 0.19s, transform 0.13s;
  outline: none;
  margin-left: 10px;
}
button:hover, .btn:hover {
  background: var(--creative-pink);
  color: var(--secondary);
  transform: translateY(-2px);
}

/* ==== WHITE BACKGROUND LISTS ==== */
ul, ol {
  margin-left: 24px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
ul li::before {
  content: '\25A0';
  color: var(--creative-pink);
  font-size: 1rem;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
ol li::before {
  content: counter(item) '. ';
  counter-increment: item;
  color: var(--creative-blue);
  font-weight: bold;
  margin-right: 5px;
}
ol {
  counter-reset: item;
}

/* ==== FOOTER ==== */
footer {
  background: var(--primary);
  color: var(--secondary);
  padding: 0 0 18px 0;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -4px 14px rgba(44,181,246,0.10);
}
footer .container {
  padding-top: 56px;
  padding-bottom: 24px;
}
footer .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 42px;
  align-items: flex-start;
  justify-content: flex-start;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  color: var(--secondary);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  transition: color 0.14s;
}
footer nav a:hover {
  color: var(--creative-pink);
  text-decoration: underline;
}
footer p, footer strong, footer span {
  color: var(--secondary);
  font-size: 15px;
}
.social-media-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 8px;
}
.social-media-links a img {
  width: 32px;
  filter: grayscale(0.2) brightness(0.96);
  opacity: 0.86;
  transition: filter 0.13s, opacity 0.14s;
}
.social-media-links a:hover img {
  filter: grayscale(0) brightness(1.2) drop-shadow(0 0 6px var(--creative-blue));
  opacity: 1;
}

@media (max-width: 970px) {
  footer .content-wrapper {
    gap: 19px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==== RESPONSIVE -- MOBILE FIRST ==== */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .section {
    margin-bottom: 32px;
    padding: 20px 8px;
    border-radius: 12px;
  }
  .feature-grid, .process-list, .service-list, .pricing-tables, .team-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid li, .process-list li, .service-list li, .pricing-tables > div, .team-grid > div {
    min-width: unset;
    flex: 1 1 90%;
    padding: 18px 12px 12px 12px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 11px;
    padding: 14px;
    border-radius: 10px;
    font-size: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.1rem;
    padding-bottom: 7px;
    margin-bottom: 11px;
  }
}
@media (max-width: 450px) {
  .hero .content-wrapper, .section, .card {
    padding-left: 8px;
    padding-right: 8px;
  }
  .feature-grid li, .process-list li, .service-list li {
    padding: 11px 8px 8px 8px;
  }
  .pricing-tables > div, .team-grid > div {
    padding: 12px 8px 12px 10px;
  }
  .testimonial-card {
    padding: 8px;
  }
}

/* ==== TESTIMONIALS - HIGH CONTRAST ==== */
.testimonial-card {
  background: #fff;
  color: #233049;
  border-left: 8px solid var(--creative-blue);
  box-shadow: 0 2px 14px rgba(60,137,222,0.10);
}
.testimonial-card strong {
  color: var(--accent-dark);
}
.testimonial-card p {
  color: #233049;
  font-size: 17px;
}
.testimonial-card span {
  color: #f9b313;
  font-size: 1.2rem;
  margin-left: 9px;
  font-family: 'Montserrat', sans-serif;
}

/* ==== ARTISTIC ELEMENTS (DIVIDERS, ACCENTS) ==== */
hr {
  border: none;
  border-top: 3.5px solid var(--creative-pink);
  margin: 28px 0;
  border-radius: 3px;
  width: 56px;
  background: none;
}
.text-section {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 2px 12px 0 rgba(44,181,246,0.08);
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .text-section {
    padding: 9px 6px;
    border-radius: 10px;
    margin-bottom: 11px;
  }
}

/* ==== COOKIES BANNER ==== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(90deg, var(--creative-pink) 20%, var(--creative-blue) 100%);
  color: var(--secondary);
  font-size: 15px;
  z-index: 1400;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px 18px 34px;
  box-shadow: 0 -3px 24px rgba(44, 181, 246, 0.19);
  gap: 24px;
  opacity: 1;
  transition: opacity 0.27s, transform 0.23s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(60px);
  pointer-events: none;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-consent-banner button {
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 13px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 11px 25px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.12s;
  margin-left: 0;
}
.cookie-consent-banner button.accept {
  background: var(--creative-blue);
  color: var(--secondary);
}
.cookie-consent-banner button.reject {
  background: var(--creative-pink);
  color: var(--secondary);
}
.cookie-consent-banner button.settings {
  background: var(--accent-dark);
  color: var(--secondary);
}
.cookie-consent-banner button:hover {
  opacity: 0.95;
  box-shadow: 0 2px 6px rgba(44, 181, 246, 0.19);
}
@media (max-width: 768px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 8px 16px 10px;
    gap: 12px;
    font-size: 14px;
  }
  .cookie-consent-banner .cookie-actions {
    gap: 8px;
  }
}

/* ==== COOKIE SETTINGS MODAL ==== */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(22,28,38,0.48);
  z-index: 1600;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
  animation: fadeInCookieModal 0.18s;
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: 22px;
  max-width: 350px;
  padding: 28px 24px 20px 30px;
  box-shadow: 0 6px 32px rgba(44,181,246,0.16);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.2rem;
  color: var(--creative-blue);
  margin-bottom: 0;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category label {
  font-weight: 600;
  color: var(--accent-dark);
  font-size: 1rem;
  margin-right: 14px;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: var(--creative-pink);
  width: 22px;
  height: 22px;
}
.cookie-modal .cookie-category.essential label {
  opacity: 0.64;
  color: var(--primary);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 10px; right: 13px;
  background: none;
  border: none;
  color: var(--creative-blue);
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
}
.cookie-modal .close-modal:hover {
  color: var(--creative-pink);
}

@media (max-width: 520px) {
  .cookie-modal {
    max-width: 92vw;
    padding: 16px 6px 11px 8px;
    border-radius: 14px;
  }
}

/* ==== MICRO-INTERACTIONS ==== */
.cta-btn, button, .btn {
  transition: background 0.19s, color 0.15s, box-shadow 0.13s, transform 0.11s;
}
li, .card, .testimonial-card, .feature-grid li, .service-list li {
  transition: box-shadow 0.16s, border-color 0.13s, background 0.14s, transform 0.12s;
}

/* ==== VISUAL ENHANCEMENTS ==== */
.card, .feature-grid li, .service-list li, .pricing-tables > div, .team-grid > div, .testimonial-card, .text-section {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--secondary);
}

/* ==== A11Y - FOCUS VISIBLE ==== */
*:focus-visible {
  outline: 3px dashed var(--creative-pink);
  outline-offset: 2px;
}

/* ==== NARROW TABLES & SCROLL ==== */
@media (max-width: 600px) {
  table, .pricing-tables {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow-x: auto;
  }
}

/* ==== PRINT ==== */
@media print {
  header, footer, .cookie-consent-banner, .cookie-modal-overlay, .mobile-menu {
    display: none !important;
  }
  section, main, .hero, .container {
    background: #fff !important;
    color: #000 !important;
  }
  a {
    text-decoration: underline;
    color: #001199 !important;
  }
}

/* ==== END OF CSS ==== */
