/* ==== 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.5;
  background: #F8F9FC;
  color: #223133;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  color: #24547A;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.5,0,.5,1);
}
a:hover, a:focus {
  color: #55B794;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
}
:focus {
  outline: 2px solid #55B794;
  outline-offset: 2px;
}

/* ==== VARIABLES & FOUNDATIONS ==== */
:root {
  --primary: #24547A;
  --primary-light: #4480B5;
  --secondary: #55B794;
  --secondary-light: #A9E1C8;
  --accent: #F3FAFE;
  --muted: #E5EAF2;
  --warning: #FFE4AE;
  --error: #FDB7B7;
  --white: #fff;
  --black: #223133;
  --shadow-card: 0 4px 24px 0 rgba(36,84,122,0.09);
  --radius: 18px;
  --gap-section: 60px;
  --gap-container: 32px;
  --gap-card: 20px;
  --easing: cubic-bezier(.5,0,.5,1);
  font-family: 'Open Sans', Arial, sans-serif;
}

@media (max-width: 768px) {
  :root {
    --gap-section: 36px;
    --gap-container: 16px;
    --radius: 14px;
  }
}

/* ==== LAYOUT & CONTAINERS ==== */
.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  max-width: 1180px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 20px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius);
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 24px 10px;
  }
}

.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.25s var(--easing), transform 0.18s var(--easing);
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(36,84,122,0.14);
  transform: translateY(-5px) scale(1.01);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== HEADER & NAV ==== */
header {
  background: linear-gradient(90deg, #F3FAFE 60%, #A9E1C8 100%);
  box-shadow: 0 2px 10px 0 rgba(36,84,122,0.06);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo img {
  height: 48px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 17px;
  letter-spacing: 0.015em;
  color: var(--primary);
  transition: background 0.15s var(--easing), color 0.18s var(--easing);
}
.main-nav a.cta-primary {
  background: var(--secondary);
  color: var(--white);
  font-weight: bold;
  margin-left: 10px;
  box-shadow: 0 2px 8px 0 rgba(85,183,148,0.10);
  border-radius: 32px;
  padding: 11px 22px;
  transition: background 0.18s var(--easing), transform 0.18s;
}
.main-nav a.cta-primary:hover, .main-nav a.cta-primary:focus {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px) scale(1.03);
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary-light);
  color: var(--primary);
}
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: var(--white);
  font-size: 2rem;
  border-radius: 10px;
  padding: 7px 14px;
  cursor: pointer;
  transition: background 0.16s;
  margin-left: 18px;
  z-index: 1001;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--secondary);
  color: var(--white);
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100%;
  width: 100vw;
  max-width: 100vw;
  background: linear-gradient(90deg, #F3FAFE, #A9E1C8 65%);
  box-shadow: 0 8px 36px 0 rgba(36,84,122,0.09);
  z-index: 1700;
  transform: translateX(-100%);
  transition: transform 0.33s var(--easing);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 22px 22px 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin-top: 22px;
  margin-bottom: 30px;
  background: var(--secondary);
  color: var(--white);
  font-size: 1.8rem;
  border-radius: 8px;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.16s;
  z-index: 1702;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 10px;
  width: 100%;
}
.mobile-nav a {
  color: var(--primary);
  background: var(--accent);
  border-radius: 10px;
  padding: 14px 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  letter-spacing: 0.01em;
  font-weight: 500;
  transition: background 0.17s, color 0.17s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--white);
}
@media (min-width: 981px) {
  .mobile-menu, .mobile-menu.open {
    display: none;
  }
}

/* ==== HERO ==== */
.hero {
  background: linear-gradient( 128deg, #F3FAFE 68%, #A9E1C8 100% );
  padding: 54px 0 48px 0;
  margin-bottom: 42px;
  border-radius: 0 0 52px 52px;
  box-shadow: 0 10px 32px 0 rgba(85,183,148,0.06);
  display: flex;
  align-items: stretch;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  gap: 24px;
  align-items: flex-start;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1.16;
}
.hero p {
  font-size: 1.3rem;
  color: #2C4760;
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .hero {
    padding: 32px 0 18px 0;
    border-radius: 0 0 34px 34px;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
  .hero p {
    font-size: 1.01rem;
  }
}

/* ==== BUTTONS ==== */
.cta-primary, .button, button {
  background: var(--secondary);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  padding: 13px 35px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(85,183,148,0.08);
  transition: background 0.18s var(--easing), color 0.16s, transform 0.19s var(--easing), box-shadow 0.19s;
  border: none;
  margin-top: 8px;
}
.cta-primary:hover, .cta-primary:focus, .button:hover, button:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 16px 0 rgba(36,84,122,0.14);
}

/* ==== FEATURES, SERVICES, VALUES ==== */
.features ul, .services-overview ul, .values ul, .about ul, .contact-form-details ul, .info ul, .cases ul, .faq ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 12px;
}
.features ul li, .services-overview ul li, .values ul li, .about ul li, .contact-form-details ul li, .info ul li, .cases ul li, .faq ul li {
  background: var(--white);
  border-radius: 14px;
  padding: 20px 18px 20px 68px;
  min-width: 250px;
  position: relative;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  box-shadow: var(--shadow-card);
  line-height: 1.7;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  transition: box-shadow .17s;
}
.features ul li:hover, .values ul li:hover {
  box-shadow: 0 6px 22px 0 rgba(85,183,148,0.10);
}
.features ul li img, .values ul li img, .services-overview ul li img, .about ul li img, .contact-form-details ul li img, .info ul li img {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 38px;
  height: 38px;
  transform: translateY(-50%);
  filter: drop-shadow(0 2px 8px #A9E1C8);
}
@media (max-width: 600px) {
  .features ul, .services-overview ul, .values ul, .about ul, .contact-form-details ul, .info ul, .cases ul, .faq ul {
    gap: 14px;
  }
  .features ul li, .values ul li {
    min-width: 160px;
    font-size: 0.98rem;
    padding-left: 58px;
    padding-top: 17px;
    padding-bottom: 17px;
  }
  .features ul li img, .values ul li img {
    width: 29px;
    height: 29px;
    left: 13px;
  }
}

/* ==== SERVICE CARDS ==== */
.services .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
}
.service-card {
  flex: 1 1 260px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 20px;
  margin-bottom: 20px;
  gap: 18px;
  transition: box-shadow 0.23s var(--easing), transform 0.15s;
  min-width: 220px;
  max-width: 360px;
}
.service-card img {
  width: 48px;
  margin-bottom: 3px;
}
.service-card:hover {
  box-shadow: 0 8px 30px 0 rgba(85,183,148,0.11);
  transform: translateY(-5px) scale(1.02);
}
@media (max-width: 900px) {
  .services .content-wrapper {
    flex-direction: column;
  }
  .service-card {
    max-width: 100%;
    width: 100%;
    min-width: 0;
  }
}


/* ==== PRICING TABLE ==== */
.pricing table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
}
.pricing thead tr {
  background: var(--secondary-light);
}
.pricing th, .pricing td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid #E5EAF2;
  min-width: 120px;
}
.pricing tbody tr:last-child td {
  border-bottom: none;
}
.pricing th {
  font-weight: bold;
  color: var(--primary);
}
.pricing td {
  color: #2C4760;
}
@media (max-width: 700px) {
  .pricing table, .pricing thead, .pricing tbody, .pricing tr, .pricing td, .pricing th {
    display: block !important;
    width: 100% !important;
  }
  .pricing tr { margin-bottom: 15px; }
}


/* ==== TESTIMONIALS ==== */
.testimonials .content-wrapper {
  gap: 20px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 20px 30px;
  margin-bottom: 20px;
  min-width: 0;
  max-width: 680px;
  font-size: 1.09rem;
  color: #183042;
  position: relative;
  flex: 1 1 350px;
  transition: box-shadow 0.15s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px 0 rgba(85,183,148,0.14);
  transform: scale(1.017);
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.57;
}
.testimonial-card cite {
  font-style: normal;
  color: var(--secondary);
  font-weight: 600;
  font-size: 1rem;
  margin-left: 18px;
}
.stars {
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--secondary);
  margin-top: 3px;
  margin-bottom: 3px;
}
@media (max-width: 900px) {
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
    padding: 16px 10px;
  }
  .testimonial-card cite {
    margin-left: 0;
    font-size: .99rem;
  }
}

.company-logos {
  margin-top: 18px;
  width: 120px;
  opacity: 0.7;
}

/* ==== CTA FINAL + OTHER CTA ===== */
.cta-final, .cta, .thankyou {
  background: linear-gradient(90deg, #A9E1C8 0%, #F3FAFE 90%);
  border-radius: var(--radius);
  margin-bottom: var(--gap-section);
  padding: 42px 20px 34px 20px;
  text-align: center;
  box-shadow: 0 2px 16px 0 rgba(36,84,122,0.042);
}
.cta-final h2, .cta h2, .thankyou h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: bold;
}
.cta-final p, .cta p {
  color: #15304A;
  margin-bottom: 16px;
}


/* ==== LEGAL TEXT ==== */
.legal {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 34px 24px;
  font-size: 1.09rem;
}
.legal h1 {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.1rem;
  margin-bottom: 20px;
}
.legal p, .legal ul, .legal ol {
  color: #35576B;
  margin-bottom: 16px;
}
.legal ul, .legal ol {
  margin-left: 22px;
  margin-bottom: 18px;
  list-style: disc outside;
}
.legal li {
  margin-bottom: 7px;
}

/* ==== FOOTER ==== */
footer {
  background: linear-gradient(90deg, #A9E1C8 0%, #F3FAFE 100%);
  padding: 34px 0 10px 0;
  border-radius: 42px 42px 0 0;
  box-shadow: 0 -6px 32px 0 rgba(85,183,148,0.06);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-logo img {
  height: 46px;
  margin-bottom: 10px;
  filter: drop-shadow(0 1px 2px #A9E1C8);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  color: var(--primary);
  font-size: 1.01rem;
  border-radius: 8px;
  padding: 7px 11px;
  transition: background .13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--secondary-light);
  color: var(--primary);
}
.company-info {
  font-size: 0.99rem;
  color: #35576B;
  font-family: 'Open Sans', Arial, sans-serif;
}
.company-info a {
  color: var(--secondary);
}
.social-links {
  display: flex;
  gap: 13px;
  margin-top: 6px;
}
.social-links img {
  width: 27px; height: 27px;
  opacity: 0.86;
  transition: opacity 0.15s, filter 0.18s;
  filter: drop-shadow(0 2px 4px #A9E1C8);
}
.social-links a:hover img, .social-links a:focus img {
  opacity: 1;
  filter: brightness(1.15) drop-shadow(0 0 5px #55B794);
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  footer {
    padding-bottom: 13px;
  }
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: bold;
  letter-spacing: -1px;
}
h1 {font-size: 2.3rem; margin-bottom: 12px;}
h2 {font-size: 1.58rem; margin-bottom: 10px;}
h3 {font-size: 1.3rem; margin-bottom: 8px;}
h4 {font-size: 1.05rem; margin-bottom: 7px;}
p, ul, ol, li, td, th {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #2C4760;
  letter-spacing: 0.07px;
}
@media (min-width: 1500px) {
  h1 { font-size: 2.9rem; }
  h2 { font-size: 1.9rem; }
  h3 { font-size: 1.21rem; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.09rem; }
  h3 { font-size: 1.05rem; }
}
strong, b {
  font-weight: bold;
  color: var(--primary);
}
blockquote {
  font-style: italic;
  background: var(--accent);
  border-left: 4px solid var(--secondary);
  padding: 16px 16px 16px 32px;
  margin: 14px 0;
  color: var(--primary);
  border-radius: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 2px 6px 0 rgba(36,84,122,0.04);
}
blockquote span {
  display: block;
  margin-top: 8px;
  color: var(--secondary);
}

/* ==== FAQ TOPICS NAV ==== */
.faq-topics {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.faq-topics a {
  background: var(--secondary-light);
  border-radius: 7px;
  padding: 7px 11px;
  color: var(--primary);
  font-weight: 500;
  transition: background 0.13s, color 0.13s;
}
.faq-topics a:hover, .faq-topics a:focus {
  background: var(--secondary);
  color: var(--white);
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #F3FAFE 80%, #A9E1C8 100%);
  color: var(--primary);
  z-index: 2000;
  box-shadow: 0 -6px 30px 0 rgba(85,183,148,.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 16px 18px 16px;
  gap: 16px;
  font-size: 1.03rem;
  border-radius: 22px 22px 0 0;
  animation: banner-slide-up 0.6s var(--easing);
}
@keyframes banner-slide-up {
  from { transform: translateY(100%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 15px;
  margin-top: 11px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--secondary);
  color: var(--white);
  border-radius: 26px;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 25px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(85,183,148,0.10);
  transition: background 0.14s, color 0.14s, transform 0.17s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.04);
}
.cookie-settings-btn {
  background: var(--primary-light);
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--secondary);
}
.reject-btn {
  background: var(--warning);
  color: var(--primary);
}
.reject-btn:hover, .reject-btn:focus {
  background: var(--error);
  color: var(--white);
}

/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 3000;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(51,75,110,0.15);
  animation: fade-in 0.34s var(--easing);
}
@keyframes fade-in {
  from { opacity:0.1; } to { opacity:1; }
}
.cookie-modal {
  position: fixed;
  z-index: 4000;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 8px 48px 0 rgba(36,84,122,0.14);
  width: 420px;
  max-width: 98vw;
  padding: 35px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 1.09rem;
  animation: scaleUp 0.21s var(--easing);
}
@keyframes scaleUp {
  from { transform: translate(-50%,-60%) scale(.97); opacity:0; } to { transform: translate(-50%,-50%) scale(1); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.28rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 11px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--accent);
  border-radius: 11px;
  padding: 12px 18px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 500;
  color: var(--primary);
}
.cookie-category input[type="checkbox"] {
  width: 21px;
  height: 21px;
  margin-left: 8px;
  accent-color: var(--secondary);
}
.cookie-category input[type="checkbox"][disabled] {
  opacity: 0.66;
}
.cookie-modal .close-modal {
  align-self: flex-end;
  background: var(--secondary);
  color: var(--white);
  border-radius: 8px;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 1.3rem;
  cursor: pointer;
  margin-top: -28px;
  margin-bottom: 7px;
  margin-right: -16px;
  transition: background .13s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: var(--primary);
}

@media (max-width: 450px) {
  .cookie-modal {
    width: 98vw;
    padding: 15px 6vw;
    font-size: 0.97rem;
  }
}

/* ==== RESPONSIVE ============= */
@media (max-width: 768px) {
  .section { margin-bottom: 36px; padding: 24px 7px; }
  .features ul, .values ul { flex-direction: column; gap: 14px; }
  .footer-nav { flex-direction: row; gap: 10px; flex-wrap: wrap; }
  .testimonials .content-wrapper { gap: 11px; }
}
@media (max-width: 500px) {
  .footer-logo img { height: 34px; }
  .company-info { font-size: .90rem; }
  .social-links img { width: 20px; height: 20px; }
}

/* ==== ANIMATIONS & MICRO-INTERACTIONS ==== */
.button, .cta-primary, button, .main-nav a, .testimonial-card, .card, .service-card, .mobile-menu-toggle, .mobile-nav a { transition: all 0.16s var(--easing); }
.card, .testimonial-card, .service-card { transition-property: box-shadow, transform; }

/* ==== MISC LAYOUTS ==== */
.card-content { display: flex; flex-direction: column; justify-content: center; gap: 10px; }

/***** TABLES default *****/
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 10px 8px;
  text-align: left;
  border-bottom: 1px solid #E5EAF2;
}
th {
  background: #E5EAF2;
  color: var(--primary);
}

/***** UTILITIES *****/
.mt-2 { margin-top: 12px; }
.mt-3 { margin-top: 18px; }
.mb-2 { margin-bottom: 12px; }
.mb-3 { margin-bottom: 18px; }
.gap-1  { gap: 8px; } .gap-2 { gap: 20px; } .gap-3 { gap: 32px; }
.hidden { display: none!important; }

/***** PRINTABLE OVERRIDES *****/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal, .cookie-modal-backdrop { display: none!important; }
  body, main { background: #fff!important; color: #223133; }
}

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