/* RESET AND NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #fff;
  font-family: 'Lato', Arial, sans-serif;
  color: #1e2d3d;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #224059;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F4B942;
  outline: none;
}
ul, ol {
  margin-left: 1.3em;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
:focus {
  outline: 2px solid #F4B942;
}

/* BRAND VARIABLES (with safe fallback) */
:root {
  --color-primary: #224059;
  --color-secondary: #F4B942;
  --color-accent: #F7F7F7;
  --color-dark: #1e2d3d;
  --color-white: #fff;
  --color-light: #f7f7f7;
  --gold: #F4B942;
  --shadow: 0 4px 24px rgba(34,64,89,.08), 0 1.5px 8px rgba(34,64,89,.03);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all .25s cubic-bezier(.5,0,.2,1);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Lato', Arial, sans-serif;
}

/* CONTAINER AND GENERAL LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* HEADER & NAVIGATION */
header {
  background: var(--color-white);
  box-shadow: 0 2px 12px rgba(34,64,89,.02);
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0 0 2px 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-primary);
  opacity: 0.92;
  padding: 8px 7px;
  position: relative;
  transition: color .2s;
}
header nav a:hover, header nav a:focus {
  color: var(--gold);
  opacity: 1;
}
header img {
  height: 44px;
  width: auto;
}
.cta-button {
  background: var(--gold);
  color: var(--color-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 24px;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(244,185,66,.10);
  border: 1.5px solid var(--gold);
  transition: var(--transition);
  margin-left: 14px;
  cursor: pointer;
  text-align: center;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
  box-shadow: 0 0 0 2px var(--gold);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: var(--gold);
  color: var(--color-primary);
  font-size: 2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 18px;
  z-index: 600;
  border: none;
  transition: background .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: var(--gold);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-primary);
  transform: translateX(-100%);
  transition: transform .35s var(--transition);
  z-index: 5000;
  box-shadow: 0 12px 64px rgba(34,64,89,.2);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 24px 0 0;
  font-size: 2.2rem;
  background: transparent;
  color: var(--gold);
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 22px;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  padding: 10px 0;
  font-weight: 500;
  transition: color .2s, background .18s;
  border-radius: 6px;
  display: block;
  width: calc(100% - 8px);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-primary);
  background: var(--gold);
}
@media (max-width: 991px) {
  header .container nav,
  header .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* MAIN SECTIONS & HERO */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--color-light);
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  box-shadow: 0 2px 24px rgba(34,64,89,.04);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero {
  background: var(--color-primary);
  color: var(--color-white);
  padding-top: 56px;
  padding-bottom: 56px;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 4px 24px rgba(34,64,89,.08);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: .01em;
  line-height: 1.14;
  text-shadow: 0 2px 32px rgba(34,64,89,.11);
}
.hero p {
  color: #f8e3ba;
  font-size: 1.18rem;
  max-width: 590px;
  margin: 0 0 28px 0;
}
.hero .cta-button {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--gold);
}
.hero .cta-button:hover, .hero .cta-button:focus {
  background: var(--gold);
  color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-dark);
}

/* HEADINGS & TYPOGRAPHY */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--color-primary);
  margin-bottom: 20px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 14px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.19rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-dark);
}
.blockquote, blockquote {
  font-style: italic;
  color: var(--color-primary);
  font-size: 1.08rem;
  position: relative;
  margin-bottom: 10px;
  padding-left: 26px;
}
blockquote:before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 2.5rem;
  line-height: 1;
  font-family: var(--font-display);
}
cite {
  display: block;
  font-family: var(--font-body);
  color: #6d6d6d;
  font-size: .98rem;
  margin-top: 8px;
  letter-spacing: 0.01em;
}
p {
  margin-bottom: 1.1em;
  color: var(--color-dark);
}
strong, b {
  font-weight: 700;
}
em, i {
  font-style: italic;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section ul, .text-section ol {
  margin: 12px 0 12px 1.5em;
  padding-left: 12px;
  color: var(--color-primary);
  font-size: 1rem;
}

/* FLEX LAYOUTS PER SPEC */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 40px;
}
.card {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 24px;
  position: relative;
  transition: box-shadow .22s;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  border: 1px solid #ececec;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(244,185,66,.11);
  border-color: var(--gold);
}
.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;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-light);
  border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(34,64,89,.04);
  border: 1.5px solid #ececec;
  min-width: 270px;
  max-width: 440px;
  flex: 1 1 270px;
  margin-bottom: 24px;
  transition: box-shadow .2s, border-color .18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-color: var(--gold);
  box-shadow: 0 10px 44px rgba(244,185,66,.14);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

/* FEATURE GRID, INDUSTRY GRID, SLIDERS */
.features, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  justify-content: flex-start;
}
.feature {
  background: var(--color-accent);
  border-radius: var(--radius);
  padding: 32px 18px 22px 18px;
  box-shadow: 0 2px 12px rgba(34,64,89,.04);
  border: 1px solid #eeeeee;
  min-width: 220px;
  flex: 1 1 220px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .22s, border-color .18s;
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}
.feature:hover {
  box-shadow: 0 8px 32px rgba(244,185,66,.07);
  border-color: var(--gold);
}
.service-grid, .technology-grid, .industry-grid, .post-grid, .case-study-summaries {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: stretch;
  justify-content: flex-start;
}
.service, .technology, .industry, .post, .case-study {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: border-color .2s, box-shadow .22s;
  border: 1.2px solid #e8e8e8;
}
.service:hover, .technology:hover, .industry:hover, .post:hover, .case-study:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 28px rgba(244,185,66,.11);
}
.service img, .technology img, .industry img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}
.industry span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.09rem;
  color: var(--color-primary);
}

/* TESTIMONIAL SLIDER */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}

/* BLOG POSTS */
.blog-list .post-grid {
  gap: 24px;
}
.post h3 {
  font-size: 1.19rem;
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-bottom: 8px;
}
.post .category {
  display: inline-block;
  background: var(--gold);
  color: var(--color-primary);
  font-size: 0.95rem;
  border-radius: 8px;
  padding: 2px 10px;
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 0.01em;
}

/* BUTTONS */
button, .btn {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 3px 12px rgba(244,185,66,.07);
}
button:hover, .btn:hover, button:focus, .btn:focus {
  background: var(--color-primary);
  color: var(--color-white);
}

/* CARDS, VALUES, CASE STUDIES */
.value-statements {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: stretch;
}
.value {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(244,185,66,.04);
  border: 1.2px solid #eeeeee;
  padding: 22px;
  min-width: 190px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.value img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
}
.value:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 32px rgba(244,185,66,.11);
}
.case-study-summaries {
  margin-bottom: 18px;
}
.case-study {
  min-width: 195px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  border: 1.2px solid #eeeeee;
  padding: 17px 14px;
  flex: 1 1 210px;
}
.case-study h3 {
  font-size: 1.07rem;
  margin-bottom: 7px;
}

/* BLOG HIGHLIGHTS & SUCCESS */
.blog-highlights ul, .success-highlights ul, .next-steps ul {
  list-style: disc inside;
  margin: 10px 0 14px 0;
  padding-left: 20px;
  font-size: 1rem;
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ADDRESS & FOOTER */
footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 46px 0 22px 0;
  font-size: .98rem;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 -2px 24px rgba(34,64,89,.06);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
footer nav a {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 1.05rem;
  transition: color .2s;
}
footer nav a:hover {
  color: #ffe08e;
}
footer address {
  color: #e6e6e6;
  font-style: normal;
  font-size: .98rem;
  line-height: 1.7;
}
footer img {
  height: 38px;
  margin-bottom: 14px;
  width: auto;
}

/* CTA SECTION */
.cta {
  background: var(--color-accent);
  border-radius: var(--radius);
  text-align: center;
  color: var(--color-primary);
  box-shadow: 0 1px 8px rgba(244,185,66,.08);
  margin-bottom: 60px;
  padding: 40px 18px;
}
.cta h2 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.cta p {
  font-size: 1.15rem;
  color: #3a3a3a;
  margin-bottom: 22px;
}

/* TEAM */
.team-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 22px 0 0 0;
  list-style: none;
  padding: 0;
  font-size: 1.09rem;
}
.team-list span {
  font-weight: 600;
  color: var(--gold);
  font-family: var(--font-display);
  margin-right: 8px;
}

/* CONTACT DETAILS */
.contact-details,
.location {
  display: flex;
  flex-direction: row;
  gap: 34px;
  align-items: flex-start;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: none;
  font-size: 1.05rem;
  margin-top: 16px;
  padding-left: 0;
}
.contact-details li, .contact-details a {
  color: var(--color-primary);
}
.contact-details img {
  width: 22px;
  height: 22px;
  margin-right: 7px;
  vertical-align: middle;
  display: inline-block;
}

/* COOKIE BANNER & POPUP */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe6;
  color: var(--color-dark);
  border-top: 2.5px solid var(--gold);
  box-shadow: 0 -2px 32px rgba(34,64,89,.11);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 18px;
  font-size: 1rem;
  animation: cookie-banner-in .4s cubic-bezier(.71,.01,.37,1.01);
}
@keyframes cookie-banner-in {
  0% { transform: translateY(32px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  align-items: center;
}
.cookie-banner button {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  background: var(--gold);
  color: var(--color-primary);
  margin-left: 2px;
  box-shadow: 0 2px 12px rgba(244,185,66,.05);
  transition: background .18s, color .18s, box-shadow .22s;
  cursor: pointer;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 0 0 2px var(--gold);
}
.cookie-banner .cookie-settings-btn {
  background: transparent;
  color: var(--color-primary);
  border: 1.2px solid var(--gold);
  transition: background .18s, color .18s;
}
.cookie-banner .cookie-settings-btn:hover {
  background: var(--color-accent);
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(34,64,89,.14);
  z-index: 15000;
  animation: fadeIn 0.15s both;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 330px;
  max-width: 96vw;
  width: 410px;
  transform: translate(-50%, -50%) scale(1.03);
  background: #fffbe6;
  color: var(--color-dark);
  border-radius: var(--radius);
  box-shadow: 0 16px 64px rgba(244,185,66,.09), 0 0.5px 12px rgba(34,64,89,.07);
  padding: 44px 32px 34px 32px;
  z-index: 16000;
  opacity: 0;
  pointer-events: none;
  animation: cookie-modal-in .4s .15s cubic-bezier(.57,.19,.18,.98) forwards;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
@keyframes cookie-modal-in {
  0% { transform: translate(-50%, -50%) scale(.94); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.22rem;
  margin-bottom: 13px;
  color: var(--color-primary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 22px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-category label {
  font-size: 1.07rem;
  font-weight: 500;
  color: var(--color-dark);
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--gold);
  cursor: pointer;
}
.cookie-category .always-enabled {
  color: #c09a31;
  font-size: .97em;
  margin-left: 8px;
  font-weight: 600;
}
.cookie-modal .cookie-actions {
  gap: 11px;
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
}
.cookie-modal .btn {
  background: var(--gold);
  color: var(--color-primary);
}
.cookie-modal .btn.cancel {
  background: #fff;
  color: var(--color-primary);
  border: 1.2px solid var(--gold);
}
.cookie-modal .btn.cancel:hover {
  background: var(--color-accent);
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: var(--color-primary);
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* LEGAL PAGES & POLICY SECTIONS */
.legal {
  background: var(--color-light);
  border-radius: var(--radius);
  box-shadow: 0 1.5px 10px rgba(34,64,89,.03);
  color: var(--color-dark);
}
.legal h1, .legal h2, .legal h3 {
  color: var(--color-primary);
}
.legal ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

/* THANK YOU PAGE */
.thank-you {
  background: var(--color-white);
  border-radius: var(--radius);
  color: var(--color-primary);
  text-align: center;
  padding: 56px 22px 66px 22px;
  box-shadow: 0 6px 40px rgba(244,185,66,.07);
  margin-bottom: 70px;
}
.thank-you h1 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 18px;
}
.next-steps {
  margin: 32px auto 24px auto;
  display: flex;
  justify-content: center;
}
.next-steps ul {
  gap: 7px;
  color: var(--color-primary);
  list-style-position: inside;
}

/* UTILITIES & HELPER CLASSES */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 20px !important; }
.mb-2 { margin-bottom: 20px !important; }
.centered { text-align: center !important; }
.gap-8 { gap: 8px !important; }
.gap-24 { gap: 24px !important; }
.shadow { box-shadow: var(--shadow) !important; }

/* FLEX ALIGNMENT HELPERS */
.flex { display: flex; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.flex-center { align-items: center !important; justify-content: center !important; }
.items-center { align-items: center !important; }
.items-start { align-items: flex-start !important; }

/* RESPONSIVE DESIGN */
@media (max-width: 1240px) {
  .container { max-width: 980px; }
}
@media (max-width: 1024px) {
  .container { max-width: 93vw; }
  .feature-grid, .service-grid, .industry-grid, .case-study-summaries {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .feature,
  .service,
  .technology,
  .case-study {
    min-width: 180px;
    padding: 16px;
    max-width: 260px;
  }
}
@media (max-width: 768px) {
  .container,
  .content-wrapper,
  .section, section, main {
    padding-left: 12px;
    padding-right: 12px;
    gap: 17px;
  }
  header .container {
    min-height: 68px;
    gap: 10px;
    padding: 8px 12px;
  }
  .cta, .section, section, .thank-you, .legal {
    padding: 26px 7px;
    border-radius: 11px;
  }
  .hero {
    padding-top: 28px;
    padding-bottom: 36px;
    border-radius: 0 0 13px 13px;
  }
  .features, .feature-grid, .service-grid, .case-study-summaries, .testimonial-slider, .industry-grid, .post-grid, .value-statements {
    flex-direction: column;
    gap: 14px;
  }
  .card, .feature, .service, .technology, .case-study, .industry, .post, .value {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding-bottom: 16px;
  }
  .testimonial-card {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
  .contact-details, .location {
    flex-direction: column;
    gap: 17px;
  }
  .team-list {
    font-size: 1rem;
  }
  .mobile-menu {
    font-size: 1.1rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 540px) {
  h1, .h1 {
    font-size: 1.5rem;
  }
  h2, .h2 {
    font-size: 1.19rem;
  }
  .hero h1 {
    font-size: 1.28rem;
  }
  .footer address {
    font-size: .92rem;
  }
  .cta{
    padding: 19px 4px;
  }
}

/* MICRO-ANIMATIONS & HOVERS */
.card, .feature, .service, .technology, .case-study, .industry, .post, .testimonial-card, .value {
  transition: box-shadow .2s, border-color .17s, transform .15s;
}
.card:hover, .feature:hover, .service:hover, .technology:hover, .case-study:hover, .industry:hover, .post:hover, .testimonial-card:hover, .value:hover {
  transform: translateY(-4px) scale(1.017);
  box-shadow: 0 7px 34px rgba(244,185,66,.12);
}
.cta-button, button, .btn {
  transition: var(--transition), transform .12s;
}
.cta-button:active, button:active, .btn:active {
  transform: scale(0.98);
}

/* BRANDED DETAILS */
.feature, .testimonial-card, .service, .technology, .case-study, .value {
  border-left: 4px solid var(--gold);
}

/* CONTRAST & ACCESSIBILITY (esp. testimonials) */
.testimonials, .testimonial-slider, .testimonial-card {
  background: #fff;
  color: var(--color-dark);
}
.testimonial-card blockquote {
  color: var(--color-dark);
  font-style: italic;
}

/* Hide default scrollbars for custom overlays (mobile menu, cookie modals) */
.mobile-menu, .cookie-modal {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mobile-menu::-webkit-scrollbar,
.cookie-modal::-webkit-scrollbar {
  display: none;
}

/* END OF CSS */
