/* ==========================================================
   CSS RESET & BASELINE (Normalize with custom tweaks)
   ========================================================== */
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, menu, ol, ul, li, fieldset, form, label, legend, 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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #242532;
  background: #F6F9FC;
  min-height: 100vh;
  line-height: 1.6;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #18B6F6;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #229ee8;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
  padding-left: 0;
}
ul:last-child, ol:last-child {
  margin-bottom: 0;
}
strong, b {
  font-weight: 700;
}
button, input[type="button"], input[type="submit"] {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}
:focus {
  outline: 2px solid #18B6F6;
  outline-offset: 2px;
}


/* ==========================================================
   BRAND & ARTISTIC TYPOGRAPHY
   ========================================================== */
h1, .display, .hero h1 {
  font-family: 'Rubik', 'Inter', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.14;
  color: #1E293B;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}
@media (min-width: 600px) {
  h1, .display, .hero h1 {
    font-size: 2.7rem;
  }
}

h2 {
  font-family: 'Rubik', 'Inter', Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #156AA4;
  letter-spacing: -0.2px;
  margin-bottom: 14px;
}
h3 {
  font-family: 'Rubik', 'Inter', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: 'Rubik', 'Inter', Arial, sans-serif;
  font-weight: 600;
}
.tagline {
  font-family: 'Rubik', 'Inter', Arial, sans-serif;
  color: #18B6F6;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
p {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
}


/* ==========================================================
   LAYOUT CONTAINERS, FLEX & SPACING SYSTEM
   ========================================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 32px 10px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 2px rgba(44,140,183,0.09);
  padding: 26px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
  min-width: 260px;
  flex: 1 0 260px;
}
.card:hover {
  box-shadow: 0 4px 32px 6px rgba(30,41,59,0.16);
  transform: translateY(-4px) scale(1.025) rotate(-1deg);
  z-index: 1;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F9FBFF;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(30,41,59,.06);
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
}
.testimonial-card .testimonial-text {
  color: #242532;
  font-size: 1.08rem;
  flex: 1 1 200px;
}
.testimonial-card .testimonial-author {
  font-family: 'Rubik', 'Inter', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: #156AA4;
  margin-left: 6px;
  white-space: nowrap;
}
.testimonial-card img {
  width: 22px;
  height: 22px;
}

@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
}

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

/* ----------------------------------------------------------
   HERO SECTION
   ---------------------------------------------------------- */
.hero {
  background: linear-gradient(124deg, #E5E7EB 85%, #18B6F6 100%);
  padding: 60px 0 54px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  width: 100%;
  max-width: 700px;
  gap: 22px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #156AA4;
  letter-spacing: -2.2px;
  text-shadow: 0 2px 18px rgba(24,182,246,0.06);
}
.hero .tagline {
  color: #1E293B;
  font-size: 1.08rem;
  margin-bottom: 18px;
}
@media (max-width: 600px) {
  .hero {
    padding: 36px 0 28px 0;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
}

/* ----------------------------------------------------------
   FEATURES SECTION
   ---------------------------------------------------------- */
.features {
  background: #F6F9FC;
  padding: 54px 0;
}
.features .feature-grid,
.features .trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(24,182,246,0.06);
  padding: 20px 20px 18px 20px;
  min-width: 210px;
  max-width: 240px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.2s, transform 0.16s;
  margin-bottom: 20px;
}
.feature:hover {
  box-shadow: 0 6px 24px 0 rgba(24,182,246,0.13);
  transform: translateY(-4px) scale(1.035);
  z-index: 2;
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
}
.feature h3 {
  font-size: 1.07rem;
  color: #18B6F6;
  font-family: 'Rubik', 'Inter', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
}
.feature p {
  font-size: 1rem;
  color: #242532;
}
.features .trust-signals {
  gap: 26px;
  margin-top: 20px;
}
.trust-signals span {
  display: flex;
  align-items: center;
  font-size: 1.01rem;
  font-family: 'Inter', Arial, sans-serif;
  gap: 8px;
  color: #1E293B;
}
.trust-signals img {
  width: 22px;
  height: 22px;
}

/* ----------------------------------------------------------
   CTA SECTION
   ---------------------------------------------------------- */
.cta {
  margin-bottom: 60px;
  padding: 40px 24px;
  background: #18B6F6;
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 18px 0 rgba(24,182,246,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.cta .content-wrapper {
  align-items: flex-start;
  gap: 14px;
}
.cta p {
  color: #fff;
  font-size: 1.14rem;
  font-family: 'Rubik', 'Inter', Arial, sans-serif;
  font-weight: 600;
}

/* ----------------------------------------------------------
   BUTTONS & INTERACTIONS
   ---------------------------------------------------------- */
.cta.primary,
.button, button, input[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 999px;
  background: #1E293B;
  color: #fff;
  font-family: 'Rubik', 'Inter', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  box-shadow: 0 2px 12px 0 rgba(24,182,246,0.09);
  border: none;
  gap: 8px;
  transition: background 0.18s, box-shadow 0.2s, transform 0.15s, color 0.13s;
  cursor: pointer;
  outline: none;
  margin-top: 6px;
  text-shadow: 0 1px 3px rgba(30,41,59,.07);
}
.cta.primary:hover, .button:hover, button:hover, input[type=submit]:hover {
  background: #18B6F6;
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(24,182,246,0.14);
  transform: scale(1.04) translateY(-2px);
}
.cta.primary:focus, .button:focus, button:focus {
  background: #156AA4;
  color: #fff;
  outline: 2.5px solid #18B6F6;
}

/* ----------------------------------------------------------
   MAIN NAVIGATION - DESKTOP
   ---------------------------------------------------------- */
header {
  padding: 0;
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(24,182,246,0.04);
  position: sticky;
  top: 0;
  z-index: 1030;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}
.logo {
  margin-right: 18px;
  display: flex;
  align-items: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: 'Rubik', 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1E293B;
  border-radius: 8px;
  padding: 7px 14px;
  transition: background 0.18s, color 0.16s;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2.5px;
  width: 0%;
  background: #18B6F6;
  transition: width 0.2s;
  border-radius: 2px;
  margin-top: 2px;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E5E7EB;
  color: #18B6F6;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 80%;
}

.cta.primary {
  margin-left: 18px;
}

/* ----------------------------------------------------------
   MOBILE NAVIGATION
   ---------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #1E293B;
  color: #fff;
  border: none;
  font-size: 2.1rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: background 0.16s;
  position: relative;
  z-index: 1200;
}
.mobile-menu-toggle:hover {
  background: #156AA4;
}
@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,182,246,0.21);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  z-index: 1205;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(.47,1.64,.41,.8);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 34px 34px 0 0;
  font-size: 2.6rem;
  color: #156AA4;
  background: rgba(255,255,255,0.84);
  border-radius: 40px;
  padding: 7px 29px 7px 15px;
  box-shadow: 0 4px 18px 0 rgba(24,182,246,0.10);
  transition: background 0.18s, color 0.16s;
  border: none;
}
.mobile-menu-close:hover {
  background: #18B6F6;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin: 62px 28px 0 38px;
}
.mobile-nav a {
  font-family: 'Rubik', 'Inter', Arial, sans-serif;
  font-size: 1.28rem;
  color: #1E293B;
  background: #E5E7EB;
  border-radius: 8px;
  padding: 12px 23px;
  margin-bottom: 3px;
  transition: background 0.19s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #156AA4;
  color: #fff;
}

@media (max-width: 500px) {
  .mobile-nav {
    margin: 50px 12px 0 14px;
    gap: 14px;
  }
  .mobile-menu-close {
    margin: 22px 12px 0 0;
    font-size: 2.1rem;
    padding: 7px 13px 7px 7px;
  }
}

/* Close menu on wider screens */
@media (min-width: 1000px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */
footer {
  background: #1E293B;
  color: #fff;
  padding: 44px 0 22px 0;
  box-shadow: 0 -1px 16px 0 rgba(24,182,246,0.06);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px 32px;
}
footer .logo img {
  width: 52px;
  height: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #18B6F6;
  font-size: 1rem;
  margin-bottom: 2px;
  transition: color 0.17s, text-decoration 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E5E7EB;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #E5E7EB;
  font-size: 1.04rem;
}
.footer-contact img {
  width: 19px;
  height: 19px;
  margin-right: 6px;
  vertical-align: middle;
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
  }
}

/* ----------------------------------------------------------
   SPECIAL SECTIONS (Contact, Services, About, Thank-you...)
   ---------------------------------------------------------- */
.about, .services, .contact, .gdpr, .privacy-policy, .cookie-policy, .terms, .thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(24,182,246,0.07);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 28px;
}

.service-list, .product-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-left: 0;
}
.service-list li {
  background: #F6F9FC;
  border-radius: 11px;
  box-shadow: 0 1px 8px 0 rgba(24,182,246,0.06);
  padding: 20px 18px;
  margin-bottom: 3px;
}
.service-list li h2 {
  font-size: 1.18rem;
  color: #18B6F6;
  font-weight: 700;
}
.product-highlights li {
  color: #1E293B;
  margin-bottom: 2px;
}

.map-description, .note, .expert-tip {
  background: #E5E7EB;
  color: #1E293B;
  border-radius: 9px;
  padding: 15px 18px;
  margin-bottom: 12px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info img {
  width: 20px;
  height: 20px;
  margin-right: 7px;
  vertical-align: middle;
}

/* ----------------------------------------------------------
   LINKS, TEXT EFFECTS, SELECTION
   ---------------------------------------------------------- */
::selection {
  background: #18B6F6;
  color: #fff;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ----------------------------------------------------------
   RESPONSIVE TYPOGRAPHY & SPACING
   ---------------------------------------------------------- */
@media (max-width: 900px) {
  .container {
    padding: 0 12px;
  }
  .about, .services, .contact, .gdpr, .privacy-policy, .cookie-policy, .terms, .thank-you {
    padding: 26px 7px;
    margin-bottom: 44px;
  }
}
@media (max-width: 570px) {
  h1,.hero h1 { font-size: 1.22rem; }
  h2 { font-size: 1.11rem; }
  .cta.primary, .button, button, input[type=submit] { padding: 10px 16px; font-size: 0.97rem; }
}

/* ==========================================================
   COOKIE CONSENT BANNER & PREFERENCES MODAL
   ========================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #1E293B;
  color: #fff;
  z-index: 1300;
  box-shadow: 0 -4px 24px 0 rgba(24,182,246,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 24px 14px;
  animation: cookie-slide-up 0.67s ease;
}
@keyframes cookie-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  font-size: 1.02rem;
  margin-right: 8px;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner button, .cookie-banner .button {
  padding: 8px 18px;
  font-size: 1rem;
  border-radius: 14px;
  background: #18B6F6;
  color: #fff;
  border: none;
  font-family: 'Rubik', 'Inter', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 1px 8px 0 rgba(24,182,246,0.09);
  margin-right: 2px;
  transition: background 0.13s, color 0.12s, box-shadow 0.15s;
}
.cookie-banner .cookie-actions button:nth-child(2),
.cookie-banner .cookie-actions .button.secondary {
  background: #E5E7EB;
  color: #1E293B;
}
.cookie-banner .cookie-actions button:hover, .cookie-banner .cookie-actions .button:hover {
  background: #156AA4;
  color: #fff;
}

@media (max-width: 720px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    padding: 18px 6px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    gap: 7px;
    justify-content: stretch;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1401;
  top:0; left:0;
  width:100vw; height:100vh;
  background:rgba(30,41,59,0.27);
  display:flex;
  align-items:flex-end;
  justify-content:center;
  pointer-events:none;
  opacity:0;
  transition:opacity 0.25s;
}
.cookie-modal-overlay.open {
  pointer-events:auto;
  opacity:1;
}
.cookie-modal {
  background:#fff;
  color:#1E293B;
  border-radius:20px 20px 0 0;
  box-shadow:0 -3px 30px 0 rgba(24,182,246,0.14);
  max-width:420px;
  width:100vw;
  min-height:290px;
  padding:36px 26px 28px 26px;
  margin-bottom:0;
  display:flex;
  flex-direction:column;
  gap:16px;
  transform:translateY(100%);
  transition:transform 0.32s cubic-bezier(.36,1.02,.45,.80);
}
.cookie-modal-open .cookie-modal {
  transform:translateY(0);
}
.cookie-modal h2 {
  color:#156AA4;
  font-size:1.36rem;
  margin-bottom:6px;
}
.cookie-category {
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:space-between;
  background:#E5E7EB;
  border-radius:14px;
  padding:13px 14px;
  margin-bottom:10px;
}
.cookie-category label {
  font-family:'Rubik', 'Inter', Arial, sans-serif;
  color:#1E293B;
  font-size:1.04rem;
  font-weight:500;
  margin-right: 13px;
}
.cookie-category .cookie-toggle {
  display:inline-block;
  width:44px;
  height:24px;
  background: #ccc;
  border-radius:14px;
  position:relative;
  transition:background 0.18s;
}
.cookie-category .cookie-toggle[aria-checked="true"] {
  background: #18B6F6;
}
.cookie-category .cookie-toggle-thumb {
  position:absolute;
  left:2px; top:2px;
  width:20px; height:20px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 1px 3px 0 rgba(30,41,59,0.12);
  transition: left 0.16s;
}
.cookie-category .cookie-toggle[aria-checked="true"] .cookie-toggle-thumb {
  left:22px;
}
.cookie-category .cookie-always {
  color: #aaa;
  font-size: 0.92rem;
  margin-left: 8px;
}
.cookie-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 8px;
}
.cookie-modal-footer button {
  padding: 8px 16px;
  font-size: 1rem;
  border-radius: 11px;
  background: #1E293B;
  color: #fff;
  border: none;
  font-family: 'Rubik', 'Inter', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.13s, color 0.12s;
}
.cookie-modal-footer button.secondary {
  background: #E5E7EB;
  color: #1E293B;
}
.cookie-modal-footer button:hover {
  background: #18B6F6;
  color: #fff;
}

/* ----------------------------------------------------------
   ARTISTIC & PERSONALITY EFFECTS
   ---------------------------------------------------------- */
/* Shadowed lines, accent borders, playful dots, color pops */
.section, .card, .feature, .testimonial-card, .about, .services, .contact, .gdpr, .privacy-policy, .cookie-policy, .terms, .thank-you, .map-description, .note, .expert-tip {
  box-shadow: 0 2px 15px 0 rgba(24,182,246,0.09);
  border: 1.5px solid #E5E7EB;
}
.card:before, .feature:before {
  content: '';
  position: absolute;
  top: -12px; left: 12px;
  width: 33px;
  height: 7px;
  background: #18B6F6;
  border-radius: 8px;
  opacity: .2;
}
.feature:before {
  left: 24px;
  width: 22px;
}
.feature:nth-child(even):before, .card:nth-child(even):before {
  background: #FBBF24;
}

/* Random dot patterns for visual interest */
.section.artistic {
  position: relative;
  overflow: hidden;
}
.section.artistic:after {
  content: '';
  position: absolute;
  bottom: 15px;
  right: 35px;
  width: 44px;
  height: 15px;
  background: url('data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\' width=\'44\' height=\'15\'><circle cx=\'6\' cy=\'8\' r=\'3\' fill=\'%2318B6F6\'/><circle cx=\'17\' cy=\'9\' r=\'2.1\' fill=\'%23FBBF24\'/><circle cx=\'37\' cy=\'4\' r=\'4\' fill=\'%23156AA4\'/></svg>') no-repeat;
  opacity: 0.19;
  z-index: 0;
}

/* Subtle hover for lists */
li:hover {
  background: rgba(24,182,246,.045);
  border-radius: 3px;
}

/* ==========================================================
   ANIMATIONS & MICRO-INTERACTIONS
   ========================================================== */
.button, .cta.primary, button, .main-nav a, .mobile-nav a, .feature, .card, .testimonial-card, .service-list li, .cookie-banner, .cookie-modal {
  transition:box-shadow 0.22s, color 0.18s, background 0.17s, transform 0.18s;
}
li, .feature, .card, .testimonial-card, .service-list li {
  transition:background 0.17s;
}

/* ==========================================================
   UTILITIES & HELPERS
   ========================================================== */
.hide { display:none !important; }
.muted, .text-muted { color:#94A3B8 !important; }
.visually-hidden {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}


/* ==========================================================
   ENSURE ALL FLEXBOX GAPS, PREVENT OVERLAPPING
   ========================================================== */
.card-container, .content-grid, .feature-grid, .features, .footer-contact, .footer-nav {
  gap: 20px;
}
.card, .testimonial-card, .feature, .section, .about, .services, .contact, .gdpr, .privacy-policy, .cookie-policy, .terms, .thank-you {
  margin-bottom: 20px;
}

/* Prevent accidental overlap of all cards */
.card, .feature, .testimonial-card, .service-list li {
  min-width: 0;
}

/* Keep enough gap between each card and section */
section + section, .section + .section {
  margin-top: 44px;
}

/* END CSS */
