/* ===== 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #f8fbfd;
  font-family: 'Roboto', Arial, sans-serif;
  color: #194968;
  min-height: 100%;
  line-height: 1.7;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #194968;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* ===== VARIABLE FALLBACKS ===== */
:root {
  --color-primary: #194968;
  --color-secondary: #C7EEF6;
  --color-accent: #F7C873;
  --color-bg-light: #f8fbfd;
  --color-bg-gradient: linear-gradient(120deg, #C7EEF6 0%, #f8fbfd 100%);
  --color-bg-section: #ffffff;
  --color-shadow: rgba(25, 73, 104, 0.08);
  --font-display: 'Montserrat', 'Arial', sans-serif;
  --font-body: 'Roboto', 'Arial', sans-serif;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #194968;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; font-weight: 700; line-height: 1.2; }
h2 { font-size: 2rem; font-weight: 600; line-height: 1.25; }
h3 { font-size: 1.3rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.1rem; font-weight: 500; }
h5, h6 { font-size: 1rem; font-weight: 500; }
p, li, span, td, th {
  font-size: 1rem;
  color: #223049;
  letter-spacing: 0.01em;
}
strong { font-weight: 700; }

/* ====== GENERAL LAYOUT ====== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  background: var(--color-bg-section);
  border-radius: 18px;
  box-shadow: 0 4px 24px var(--color-shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: #fff;
  box-shadow: 0 4px 20px rgba(25, 73, 104, 0.04);
  position: relative;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 32px;
}
.main-nav > a img {
  height: 36px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav ul li {
  margin: 0 2px;
}
.main-nav ul li a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #194968;
  font-weight: 500;
  padding: 8px 6px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  color: #fff;
  background: var(--color-primary);
}
.cta-button {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #194968;
  background: linear-gradient(90deg, #F7C873 0%, #C7EEF6 100%);
  border-radius: 24px;
  padding: 12px 32px;
  box-shadow: 0 2px 12px rgba(199, 238, 246, 0.10);
  transition: background 0.25s, color 0.18s, box-shadow 0.18s;
  margin-left: 20px;
  border: none;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #C7EEF6 0%, #F7C873 100%);
  color: #194968;
  box-shadow: 0 4px 24px rgba(25, 73, 104, 0.08);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: relative;
  font-size: 2rem;
  color: #194968;
  background: #fff;
  border: none;
  z-index: 110;
  margin-left: auto;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.2s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:hover { background: #f5faff; }
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(130deg, #C7EEF6 70%, #F7C873 100%);
  box-shadow: 0 6px 32px rgba(25,73,104, 0.10);
  z-index: 200;
  transform: translateX(-105vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 22px 22px 22px;
  transition: transform 0.36s cubic-bezier(0.7,0.1,0.4,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  color: #194968;
  border: none;
  align-self: flex-end;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 5px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #e9f8fc;
  color: #000;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  margin-top: 14px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #194968;
  background: rgba(255,255,255,0.90);
  padding: 12px 18px;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 2px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #194968;
  color: #fff;
}

/* Hide desktop nav/show mobile nav on small screens */
@media (max-width: 980px) {
  .main-nav ul,
  .main-nav .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ===== HERO ===== */
.hero {
  background: var(--color-bg-gradient);
  border-radius: 0 0 28px 28px;
  margin-bottom: 60px;
  padding: 64px 0 40px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  font-size: 2.8rem;
  background: linear-gradient(90deg, #194968 19%, #F7C873 120%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.15rem;
  color: #223049;
  margin-bottom: 14px;
}
.hero .cta-button {
  margin-left: 0;
}

/* ===== CARDS, FEATURES, GRIDS ===== */
.features {
  margin-bottom: 48px;
}
.feature-grid, .solution-carousel, .service-cards, .blog-grid, .case-study-preview-grid, .team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-card, .solution-card, .service-card, .blog-card, .case-card, .team-member {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px var(--color-shadow);
  padding: 28px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 230px;
  flex: 1 1 280px;
  position: relative;
  gap: 14px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.feature-card:hover, .solution-card:hover, .service-card:hover, .blog-card:hover, .case-card:hover, .team-member:hover {
  box-shadow: 0 8px 32px rgba(25,73,104,0.12);
  transform: translateY(-4px) scale(1.025);
}
.feature-card img, .solution-card img, .service-card img, .team-member img {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}
.feature-card h3, .solution-card h3, .service-card h2, .team-member h3 {
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.feature-card p, .solution-card p, .service-card p, .team-member p {
  color: #223049;
  margin-bottom: 0; 
}
.service-price {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #194968;
  background: #C7EEF6;
  border-radius: 16px;
  padding: 6px 18px;
  margin-top: 8px;
}

/* Case study/category/benefit/badge highlights */
.case-category, .blog-category, .service-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}
.case-category { color: #fff; background: #194968; border-radius: 10px; padding: 5px 13px; margin-top: 10px; }
.blog-category { color: #194968; background: #F7C873; border-radius: 10px; padding: 5px 13px; margin-top: 10px; }
.benefit-highlights ul, .case-study-categories, .blog-categories, .expertise-highlights, .certification-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
}
.benefit-highlights ul li, .expertise-highlights span, .case-study-categories span, .blog-categories span {
  background: #e4f5fb;
  color: #194968;
  font-family: var(--font-body);
  border-radius: 10px;
  padding: 5px 13px;
  margin-bottom: 1px;
}
.certification-badges img {
  height: 34px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--color-secondary);
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.testimonials h2 {
  text-align: left;
  color: #194968;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 10px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 22px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(25,73,104, 0.08);
  color: #223049;
  min-width: 260px;
  max-width: 370px;
  flex: 1 1 300px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.testimonial-card p {
  color: #223049;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 12px;
}
.testimonial-card h4 {
  color: #194968;
  font-size: 1rem;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: unset;
  }
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.client-logos img {
  width: 38px;
  height: 38px;
  opacity: 0.86;
}

/* ===== CTA SECTIONS ===== */
.cta {
  background: linear-gradient(132deg, #C7EEF6 65%, #F7C873 100%);
  border-radius: 26px;
  margin-bottom: 60px;
  padding: 40px 0;
  box-shadow: 0 4px 32px rgba(25,73,104, 0.05);
}
.cta .content-wrapper {
  align-items: flex-start;
}
.cta h2 {
  background: linear-gradient(90deg, #194968 10%, #F7C873 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta p {
  color: #223049;
  font-size: 1.17rem;
  margin-bottom: 16px;
}
.cta .cta-button {
  margin-left: 0;
}

/* ===== PROCESS SECTION ===== */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin-top: 20px;
}
.process-steps ol {
  flex: 2 1 290px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 25px;
  color: #223049;
  font-size: 1.07rem;
  list-style: decimal inside;
}
.process-diagram {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}
.process-diagram img {
  width: 100%;
  max-width: 230px;
}
@media (max-width: 900px) {
  .process-steps {
    flex-direction: column;
    gap: 20px;
  }
}

/* ===== TABLES ===== */
.services-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0 12px 0;
  font-size: 1rem;
}
.services-table th, .services-table td {
  padding: 12px 16px;
  border: 1px solid #C7EEF6;
  text-align: left;
  font-size: 1rem;
}
.services-table thead th {
  background: #C7EEF6;
  color: #194968;
  font-weight: 700;
}
.services-table tbody tr:nth-child(even) {
  background: #f3fafc;
}
.services-table tbody td {
  color: #223049;
}

/* ===== FAQ LISTS ===== */
.faq {
  margin-bottom: 60px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.faq-list li {
  background: #e7f5fb;
  padding: 18px 20px 12px 20px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(25, 73, 104, 0.06);
  font-size: 1rem;
  color: #223049;
  margin-bottom: 0;
  width: 100%;
  transition: box-shadow 0.16s, background 0.16s;
}
.faq-list li strong {
  font-size: 1.07rem;
  color: #194968;
  font-family: var(--font-display);
}
.faq-list li:hover {
  background: #C7EEF6;
  box-shadow: 0 4px 16px rgba(25,73,104,0.12);
}
.faq-list p {
  margin: 10px 0 0 0;
}

/* ===== TEXT LISTS & IMAGE SECTIONS ===== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section ul, .text-section ol {
  padding-left: 20px;
}
.text-section li {
  margin-bottom: 8px;
  list-style-type: disc;
  color: #223049;
}
.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: 18px;
  }
}

/* ====== CONTACT PAGE ====== */
.contact-details {
  background: #e7f5fb;
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 12px;
  width: 100%;
}
.contact-details h2 { font-size: 1.15rem; margin-bottom: 10px; color: #194968; }
.contact-details ul { padding-left: 12px; }
.contact-details li { list-style-type: disc; margin-bottom: 6px; }
.location-map {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.location-map img {
  width: 40px;
  height: 40px;
}
.location-map p {
  color: #223049;
  margin-bottom: 0;
}

/* ===== BLOG ===== */
.blog-list {
  margin-bottom: 60px;
}
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}

/* ===== CASE STUDIES ===== */
.case-studies {
  margin-bottom: 64px;
}
.case-study-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.case-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px var(--color-shadow);
  padding: 28px 22px 22px 22px;
  margin-bottom: 20px;
  flex: 1 1 300px;
  min-width: 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.case-card:hover {
  box-shadow: 0 8px 24px rgba(25,73,104,0.14);
  transform: translateY(-4px) scale(1.025);
}
.case-card h3 {
  font-size: 1.12rem;
}
.case-card p {
  color: #223049;
  font-size: 1rem;
}
.case-card .case-category {
  margin-top: 12px;
}

/* ===== TEAM PROFILES ===== */
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-member {
  min-width: 210px;
  flex: 1 1 230px;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

/* ===== THANK YOU PAGE ===== */
.thank-you .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.thank-you .cta-button {
  margin-top: 18px;
}

/* ===== FOOTER ===== */
footer {
  background: #1e3851;
  color: #fff;
  padding: 30px 0;
  position: relative;
  z-index: 5;
  box-shadow: 0 0 32px rgba(25, 73, 104, 0.10);
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #C7EEF6;
  color: #194968;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-top: 5px;
}
.footer-brand img {
  height: 24px;
}
.footer-brand span {
  color: #e4f5fb;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  background: linear-gradient(90deg, #C7EEF6 80%, #F7C873 140%);
  box-shadow: 0 -8px 32px rgba(25,73,104, 0.20);
  padding: 28px 20px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(.7,.1,.4,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner-text {
  color: #194968;
  font-size: 1.02rem;
  text-align: center;
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #194968;
  background: #fff;
  border-radius: 16px;
  padding: 8px 20px;
  border: none;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(25,73,104,0.07);
  transition: background 0.15s, color 0.15s, box-shadow 0.14s;
}
.cookie-btn.accept {
  background: #F7C873;
  color: #194968;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #ffe5ae;
  color: #223049;
}
.cookie-btn.reject {
  background: #e7f7fb;
  color: #194968;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #fff;
}
.cookie-btn.settings {
  background: #C7EEF6;
  color: #194968;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #194968;
  color: #fff;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100vh;
  width: 100vw;
  background: rgba(25,73,104, 0.20);
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(.6,.08,.4,1);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(25,73,104,0.32);
  padding: 36px 26px;
  min-width: 300px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: #C7EEF6;
  color: #194968;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  border: none;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F7C873;
  color: #194968;
}
.cookie-modal h3, .cookie-modal h2 {
  color: #194968;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 600;
  color: #194968;
}
.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  background: #e7f7fb;
  border-radius: 12px;
  transition: background 0.2s;
  margin-left: 12px;
}
.cookie-toggle input[type=checkbox] {
  opacity: 0;
  width: 44px;
  height: 24px;
  position: absolute;
  top: 0; left: 0;
  cursor: pointer;
}
.cookie-toggle .toggle-slider {
  display: block;
  position: absolute;
  top: 2px; left: 2px;
  width: 20px;
  height: 20px;
  background: #F7C873;
  border-radius: 50%;
  transition: left 0.23s cubic-bezier(.7,.08,.4,1);
}
.cookie-toggle input[type=checkbox]:checked + .toggle-slider {
  left: 22px;
  background: #194968;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 18px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .container { max-width: 1000px; }
}
@media (max-width: 980px) {
  .container { max-width: 92vw; }
  .main-nav {
    gap: 20px;
    min-height: 52px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .hero, .cta, .testimonials, .section {
    padding: 28px 0 28px 0;
    border-radius: 12px;
  }
  .feature-grid, .solution-carousel, .service-cards, .blog-grid, .case-study-preview-grid, .team-profiles {
    flex-direction: column;
    gap: 16px;
  }
  .feature-card, .solution-card, .service-card, .blog-card, .case-card, .team-member {
    min-width: unset;
    max-width: 100%;
    padding: 22px 14px 18px 14px;
    gap: 10px;
  }
  .content-wrapper { gap: 18px; }
  .footer-brand span { font-size: 0.93rem; }
}
@media (max-width: 580px) {
  html { font-size: 14px; }
  .container { padding: 0 8px; }
  .main-nav > a img {
    height: 26px;
  }
  .cta, .hero, .section { padding: 18px 0 20px 0; }
  footer { padding: 20px 0; }
}

/* Prevent overlapping and maintain spacing throughout */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; max-width: 100%; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Remove focus outlines for mouse, keep for keyboard */
:focus:not(:focus-visible) { outline: none; }
:focus-visible {
  outline: 2px solid #19496844;
  outline-offset: 2px;
}

/* ===== MICRO-ANIMATIONS & TRANSITIONS ===== */
.cta-button, .feature-card, .service-card, .solution-card, .blog-card, .team-member, .case-card, .testimonial-card, .faq-list li, .footer-nav a, .mobile-nav a, .cookie-btn, .cookie-modal-close {
  transition: box-shadow 0.18s, background 0.17s, color 0.17s, transform 0.16s;
}

/* ===== PRINT (OPTIONAL: CLEAN FOR EXPORTS) ===== */
@media print {
  .main-nav, .footer-nav, .cookie-banner, .mobile-menu, .mobile-menu-toggle { display: none !important; }
  body { background: #fff; }
  .container { max-width: 100%; padding: 0; }
}
