/* Arc Vortex Style CSS: Vibrant & Energetic Theme – Mobile First, Flexbox Only, with Responsive Navigation and Cookie Consent */

/* 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, 
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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  color: #23324A;
  background: #F1EFE7;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #23324A;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
}
button {
  outline: none;
}

/* BRAND COLORS & FONTS --------------------------------------------- */
:root {
  --primary: #23324A;
  --secondary: #92693B;
  --accent: #F1EFE7;
  --electric-blue: #2DF5F0;
  --electric-purple: #A248FA;
  --vivid-orange: #FF5948;
  --white: #fff;
  --black: #232323;
  --shadow-light: 0 8px 24px 0 rgba(24, 63, 119, 0.07), 0 1.5px 2.5px 0 rgba(146, 105, 59, 0.06);
  --shadow-bold: 0 8px 30px -10px rgba(44,199,232,0.09),0 2px 4px rgba(255,89,72,0.08);
  --radius: 16px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
}


/* TYPOGRAPHY ------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.3rem;
  color: var(--electric-blue);
  line-height: 1.15;
  margin-bottom: var(--spacing-md);
}
h2 {
  font-size: 1.65rem;
  color: var(--electric-purple);
  margin-bottom: var(--spacing-sm);
}
h3 {
  font-size: 1.3rem;
  color: var(--vivid-orange);
  margin-bottom: var(--spacing-xs);
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: var(--primary);
}
p, li, span, a, input, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--primary);
}
b {
  font-weight: 700;
}

/* GENERAL LAYOUT & CONTAINER --------------------------------------- */
.container {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-sm);
  padding-right: var(--spacing-sm);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: flex-start;
}
.text-section {
  max-width: 760px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: var(--radius);
  position: relative;
}

/* HERO & CTA ------------------------------------------------------- */
.hero {
  background: var(--primary);
  color: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  margin-bottom: 60px;
  padding: 56px 0 48px 0;
  box-shadow: var(--shadow-bold);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: var(--spacing-md);
}
.hero h1 {
  color: var(--electric-blue);
  text-shadow: 0 2px 14px rgba(45,245,240,0.18);
}
.hero p {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 500;
}
.hero .cta-btn {
  background: var(--vivid-orange);
  color: var(--white);
}
.cta-btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 100px;
  background: var(--electric-blue);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.11rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 14px var(--electric-purple, #A248FA, 0.10);
  border: none;
  cursor: pointer;
  margin-top: var(--spacing-xs);
  transition: background 0.19s, color 0.2s, transform 0.18s, box-shadow 0.22s;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--vivid-orange);
  color: var(--white);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 20px -2px var(--vivid-orange), 0 1.5px 5px var(--electric-blue);
}

/* NAVIGATION ------------------------------------------------------- */
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: var(--spacing-md);
  padding: 20px 0 20px 0;
  background: var(--accent);
  border-radius: 0 0 var(--radius) var(--radius);
  position: relative;
  z-index: 19;
}
.main-nav img {
  height: 44px;
  width: auto;
  margin-right: var(--spacing-sm);
  display: block;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  padding: 10px 0;
  border-radius: 5px;
  position: relative;
  transition: color 0.16s;
}
.main-nav a:not(.cta-btn):hover, .main-nav a:not(.cta-btn):focus {
  color: var(--vivid-orange);
  text-decoration: underline;
}
.main-nav .cta-btn {
  margin-left: var(--spacing-lg);
  padding: 12px 24px;
  background: var(--electric-purple);
  color: var(--white);
  font-size: 1.02rem;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: var(--electric-blue);
  color: var(--primary);
}

/* MOBILE NAVIGATION ------------------------------------------------ */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 24px;
  top: 19px;
  background: var(--electric-purple);
  color: var(--white);
  font-size: 2.3rem;
  border: none;
  border-radius: 40px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  z-index: 50;
  box-shadow: var(--shadow-light);
  transition: background 0.18s, color 0.15s, transform 0.19s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--vivid-orange);
  color: var(--white);
  transform: scale(1.12);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--primary);
  color: var(--white);
  z-index: 80;
  transform: translateX(-100vw);
  transition: transform 0.30s cubic-bezier(0.75,0.1,0.25,1), opacity 0.17s;
  opacity: 0.98;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 48px;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: var(--vivid-orange);
  color: var(--white);
  font-size: 2.2rem;
  border: none;
  border-radius: 40px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  z-index: 90;
  box-shadow: var(--shadow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s, transform 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--electric-blue);
  color: var(--primary);
  transform: scale(1.15);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 0 32px;
  gap: 24px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  padding: 12px 0;
  border-radius: 6px;
  transition: color 0.17s, background 0.15s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--electric-blue);
  color: var(--primary);
}

@media (min-width: 992px) {
  .mobile-menu-toggle, .mobile-menu { display: none !important; }
  .main-nav { display: flex; }
}
@media (max-width: 991px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  .mobile-menu {
    display: flex !important;
  }
}

/* LAYOUTS & FLEX CONTAINERS ---------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  justify-content: flex-start;
}
.card {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  padding: 24px;
  min-width: 240px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.17s, box-shadow 0.21s;
}
.card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-bold);
}
.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;
    gap: 16px;
    align-items: flex-start;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  padding: 24px 20px 20px 20px;
  min-width: 220px;
  flex: 1 1 240px;
  border-left: 5px solid var(--electric-blue);
  transition: box-shadow 0.15s, border-color 0.13s;
}
.feature-grid li:hover {
  box-shadow: var(--shadow-bold);
  border-left: 5px solid var(--vivid-orange);
}
.feature-grid img {
  height: 38px;
  width: auto;
  margin-bottom: 8px;
}

/* BLOG CARDS & CATEGORIES ------------------------------------------ */
.blog-teaser {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  margin-bottom: 24px;
  padding: 28px 22px 24px 22px;
  transition: transform 0.14s, box-shadow 0.19s;
  border-left: 4px solid var(--electric-purple);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-teaser h2 {
  margin-bottom: 8px;
  color: var(--electric-purple);
  font-size: 1.3rem;
}
.blog-teaser a {
  color: var(--vivid-orange);
  font-weight: bold;
  transition: color 0.13s, text-decoration 0.16s;
}
.blog-teaser a:hover, .blog-teaser a:focus {
  color: var(--primary);
  text-decoration: underline;
}
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
.category-tags li {
  background: var(--electric-blue);
  color: var(--primary);
  border-radius: 13px;
  padding: 7px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.97rem;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-light);
  margin-bottom: 8px;
  transition: background 0.15s, color 0.13s;
  cursor: pointer;
}
.category-tags li:hover, .category-tags li:focus {
  background: var(--electric-purple);
  color: var(--white);
}

/* NEWSLETTER ------------------------------------------------------ */
.newsletter-signup form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.newsletter-signup input[type=email] {
  border: 2px solid var(--electric-purple);
  border-radius: 8px;
  padding: 13px 12px;
  font-size: 1.08rem;
  font-family: var(--font-body);
  margin-bottom: 2px;
  outline: none;
  background: var(--white);
  transition: border 0.1s, box-shadow 0.15s;
}
.newsletter-signup input[type=email]:focus {
  border: 2px solid var(--vivid-orange);
  box-shadow: 0 2px 10px rgba(255,89,72,0.13);
}

/* SERVICE CARDS --------------------------------------------------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  padding: 26px 24px 22px 24px;
  margin-bottom: 20px;
  transition: transform 0.19s, box-shadow 0.17s;
  border-left: 5px solid var(--electric-blue);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card h2 {
  font-size: 1.16rem;
  color: var(--electric-blue);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.service-card h2 span {
  color: var(--electric-purple);
  font-size: 1rem;
  font-weight: bold;
  margin-left: 8px;
}
.service-card:hover {
  transform: scale(1.01) translateY(-3px);
  box-shadow: var(--shadow-bold);
  border-left: 5px solid var(--vivid-orange);
}

/* TESTIMONIALS ---------------------------------------------------- */
.testimonials {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  padding: 36px 0 36px 0;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-bold);
  margin-bottom: 20px;
  padding: 20px 28px;
  max-width: 670px;
  width: 100%;
  border-left: 5px solid var(--electric-purple);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.testimonial-card blockquote {
  font-size: 1.12rem;
  color: var(--primary);
  font-style: italic;
  font-family: var(--font-body);
}
.testimonial-card span {
  color: var(--electric-purple);
  font-family: var(--font-display);
  font-size: 1.03rem;
  margin-left: auto;
  font-weight: 700;
}
.testimonial-card:hover {
  border-left: 5px solid var(--vivid-orange);
  box-shadow: 0 8px 30px -10px var(--electric-purple, #A248FA, 0.1),0 2px 4px var(--electric-blue, #2DF5F0, 0.08);
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.client-logos span {
  font-family: var(--font-body);
  background: var(--electric-blue);
  color: var(--primary);
  border-radius: 10px;
  padding: 7px 19px;
  font-weight: 700;
  font-size: 0.97rem;
  margin-bottom: 8px;
}

/* LISTS, OL/UL ----------------------------------------------------- */
ul, ol {
  margin-left: 0;
  padding-left: 0;
}
ul li, ol li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 32px;
  font-size: 1.09rem;
  color: var(--primary);
}
ul li::before {
  content: '\2022';
  color: var(--electric-purple);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
  top: 3px;
  font-weight: bold;
}
ol li {
  counter-increment: listcounter;
}
ol li::before {
  content: counter(listcounter) '.';
  counter-reset: listcounter 0;
  color: var(--vivid-orange);
  position: absolute;
  left: 0;
  font-size: 1.12rem;
  top: 0.5px;
  font-weight: bold;
}

/* FORMS ----------------------------------------------------------- */
input[type="text"],input[type="email"],input[type="tel"],textarea {
  width: 100%;
  background: var(--white);
  border: 2px solid var(--electric-blue);
  border-radius: 7px;
  padding: 14px 12px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border 0.14s, box-shadow 0.11s;
  outline: none;
}
input[type="text"]:focus,input[type="email"]:focus,input[type="tel"]:focus,textarea:focus {
  border: 2px solid var(--vivid-orange);
  box-shadow: 0 2px 10px rgba(255,89,72,0.12);
}
textarea {
  resize: vertical;
  min-height: 90px;
  max-height: 260px;
}
button[type="submit"],.cta-btn {
  margin-top: 0;
}

/* CASE STUDY------------------------------------------------------- */
.case-study {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  margin-bottom: 20px;
  padding: 26px 19px 22px 22px;
  border-left: 4px solid var(--electric-blue);
  transition: box-shadow 0.18s, border-color 0.14s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case-study h2 {
  color: var(--electric-blue);
  font-size: 1.12rem;
  margin-bottom: 7px;
}
.case-study ul li b {
  color: var(--vivid-orange);
}
.case-study:hover {
  border-left: 4px solid var(--vivid-orange);
  box-shadow: var(--shadow-bold);
}

/* FOOTER ---------------------------------------------------------- */
footer {
  background: var(--primary);
  color: var(--accent);
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: var(--shadow-light);
  padding: 32px 0 20px 0;
  margin-top: 56px;
  width: 100%;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: var(--spacing-xs);
}
.footer-nav a {
  color: var(--electric-blue);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 4px 0;
  border-radius: 6px;
  transition: color 0.14s, background 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--vivid-orange);
  background: var(--accent);
}
.company-contact {
  font-size: 0.96rem;
  color: var(--accent);
  background-color: #F1EFE7;
  margin-top: 9px;
  margin-bottom: 0;
}

/* MAP EMBED ------------------------------------------------------- */
.map-embed {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  padding: 22px 18px 14px 18px;
  font-size: 1.08rem;
  margin: 18px 0 9px 0;
}

/* COOKIE CONSENT BANNER ------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--primary);
  color: var(--white);
  padding: 20px 16px;
  box-shadow: 0 -2px 32px rgba(35,50,74,0.11);
  z-index: 140;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  transition: transform 0.29s;
  font-size: 1.05rem;
  border-radius: var(--radius) var(--radius) 0 0;
}
.cookie-banner .cookies-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 3px;
}
.cookie-banner .cookies-btns button {
  padding: 9px 24px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: bold;
  border: none;
  box-shadow: var(--shadow-light);
  margin-bottom: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.15s, transform 0.15s;
}
.cookie-banner .accept {
  background: var(--electric-blue);
  color: var(--primary);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--vivid-orange);
  color: var(--white);
}
.cookie-banner .reject {
  background: var(--vivid-orange);
  color: var(--white);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--electric-purple);
  color: var(--white);
}
.cookie-banner .settings {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--electric-blue);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--electric-blue);
  color: var(--primary);
  border-color: var(--vivid-orange);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 150;
  background: rgba(35,50,74,0.69);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.23s;
}
.cookie-modal .modal-content {
  background: var(--white);
  color: var(--primary);
  border-radius: var(--radius);
  box-shadow: 0 14px 64px rgba(35,50,74,0.13), 0 2px 12px var(--electric-purple, #A248FA, 0.09);
  padding: 36px 26px 26px 26px;
  min-width: 310px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  max-width: 96vw;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px; right: 18px;
  background: var(--electric-blue);
  color: var(--primary);
  border:none;
  border-radius: 40px;
  height: 38px; width:38px;
  text-align: center; font-size: 2rem;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: var(--vivid-orange);
  color: var(--white);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 14px;
}
.cookie-modal .cookie-category label {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--primary);
  font-weight: 600;
}
.cookie-modal .cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
  display: inline-block;
}
.cookie-modal .cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  left: 0; top: 0;
  width: 48px;
  height: 24px;
  background: var(--electric-blue);
  border-radius: 22px;
  transition: background 0.17s;
}
.cookie-modal .cookie-toggle input:checked + .slider {
  background: var(--vivid-orange);
}
.cookie-modal .slider:before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3px;
  background-color: var(--white);
  border-radius: 50%;
  transition: transform 0.14s;
}
.cookie-modal .cookie-toggle input:checked + .slider:before {
  transform: translateX(24px);
}

.cookie-modal .category-desc {
  font-size: 0.97rem;
  color: #666;
  margin-top: 1px;
  margin-bottom: 6px;
}
.cookie-modal .primary-action {
  margin-top: 18px;
  display: flex;
  gap: 16px;
  flex-direction: row;
  justify-content: flex-end;
}
.cookie-modal .primary-action button {
  padding: 11px 30px;
  border-radius: 10px;
  background: var(--electric-blue);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  box-shadow: var(--shadow-light);
  cursor: pointer;
  transition: background 0.16s, color 0.13s;
}
.cookie-modal .primary-action button:hover, .cookie-modal .primary-action button:focus {
  background: var(--vivid-orange);
  color: var(--white);
}

/* RESPONSIVE ------------------------------------------------------ */
@media (max-width: 991px) {
  .container {
    max-width: 98vw;
  }
  .footer-nav {
    gap: 19px;
  }
  .card-container, .feature-grid, .client-logos {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .main-nav, .footer-nav, .card-container, .content-grid, .feature-grid, .client-logos {
    flex-direction: column !important;
    gap: 14px !important;
    align-items: stretch !important;
  }
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.23rem; }
  .section, section {
    padding: 26px 4px;
    margin-bottom: 36px;
  }
  .feature-grid li, .card, .service-card, .testimonial-card, .case-study, .blog-teaser {
    min-width: unset;
    width: 100%;
    padding: 16px 9px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 8px;
  }
}

@media (max-width: 500px) {
  .hero {
    padding: 24px 0 22px 0;
  }
  .cookie-modal .modal-content { padding: 17px 8px 17px 8px; }
}

/* MICRO-INTERACTIONS & TRANSITIONS -------------------------------------------- */
a, .cta-btn, input, button, .feature-grid li, .blog-teaser, .service-card, .case-study, .testimonial-card, .category-tags li {
  transition: all 0.17s cubic-bezier(0.35,0.7,0.3,1);
}

/* HIGH CONTRAST FOR ACCESSIBILITY in TESTIMONIALS ----------------- */
.testimonial-card, .testimonial-card blockquote, .testimonial-card span {
  color: #232323;
  background: #fff;
}

/* ACCESSIBILITY FOCUS OUTLINES ------------------------------------- */
a:focus, button:focus, .cta-btn:focus, input:focus, textarea:focus {
  outline: 2px solid var(--electric-purple);
  outline-offset: 2px;
  background: rgba(162,72,250,0.07);
}

/* END OF CSS */
