/* =========================
   1. 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,
main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  min-height: 100%;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #F2F2F2;
  color: #232442;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
}
*, *::before, *::after { box-sizing: inherit; }
a { color: inherit; text-decoration: none; transition: color .2s; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; height: auto; }
:focus { outline: 2px solid #A6ED3B; outline-offset: 3px; }

/* ================================
   2. BRAND COLOR & TYPE VARIABLES
   ================================ */
:root {
  --color-primary: #274472;
  --color-secondary: #41729F;
  --color-accent: #F2F2F2;
  --color-vibrant1: #FF3366;
  --color-vibrant2: #FFC107;
  --color-vibrant3: #00E5A0;
  --color-bg: #F2F2F2;
  --color-card: #fff;
  --color-text: #232442;
  --color-link: #FF3366;
  --color-shadow: rgba(39,68,114,0.08);
  --brand-font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --brand-font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ============================================
   3. LAYOUT CONTAINERS & SECTION SPACING
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  width: 100%;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .section { padding: 28px 8px; margin-bottom: 42px; }
  .container { padding: 0 10px; }
}

/* =====================
   4. TYPOGRAPHY
   ===================== */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-primary);
  font-family: var(--brand-font-display);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
h1 { font-size: 2.75rem; line-height: 1.15; }
h2 { font-size: 2rem; line-height: 1.2; }
h3 { font-size: 1.3rem; line-height: 1.3; }
h4 { font-size: 1.1rem; line-height: 1.35; font-weight: 700; }
p, li, ul, ol, span, .text-section {
  color: var(--color-text);
  font-family: var(--brand-font-body);
  font-size: 1rem;
  font-weight: 400;
}
.text-section {
  margin-bottom: 24px;
}
strong, b {
  font-weight: 600;
  color: var(--color-secondary);
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }
}

/* ================================
   5. HEADER, NAV, BURGER MENU
   ================================ */
header {
  background: var(--color-primary);
  color: #fff;
  width: 100%;
  position: relative;
  box-shadow: 0 2px 12px rgba(39,68,114,0.12);
  z-index: 60;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
header a img { height: 40px; width: auto; }

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-left: 32px;
}
.main-nav a {
  color: #fff;
  font-family: var(--brand-font-display);
  font-weight: 700;
  letter-spacing: .01em;
  position: relative;
  padding: 8px 0;
  font-size: 1rem;
  transition: color .2s;
}
.main-nav a:not(.cta-primary):hover {
  color: var(--color-vibrant2);
}

.cta-primary {
  background: var(--color-vibrant1);
  color: #fff;
  border: none;
  font-family: var(--brand-font-display);
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 32px;
  box-shadow: 0 3px 16px rgba(255,51,102,0.1);
  font-size: 1rem;
  margin-left: 8px;
  transition: background .2s, box-shadow .2s, transform .16s;
  cursor: pointer;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-vibrant2);
  color: var(--color-primary);
  box-shadow: 0 8px 32px -4px rgba(255,193,7,.15);
  transform: translateY(-2px) scale(1.05);
}
.cta-link {
  color: var(--color-vibrant1);
  font-family: var(--brand-font-display);
  font-weight: 700;
  border-bottom: 2px solid var(--color-vibrant1);
  padding: 3px 0;
  font-size: 1rem;
  margin-top: 12px;
  transition: color .18s, border-color .18s;
}
.cta-link:hover, .cta-link:focus {
  color: var(--color-vibrant2);
  border-color: var(--color-vibrant2);
}

.mobile-menu-toggle {
  background: var(--color-vibrant1);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 1.6rem;
  display: none;
  margin-left: 18px;
  transition: background .22s;
  cursor: pointer;
  z-index: 200;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-secondary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-primary);
  color: #fff;
  z-index: 999;
  transform: translateX(-105vw);
  transition: transform .32s cubic-bezier(.85,.01,0,1.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 28px 8px 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  cursor: pointer;
  transition: color .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-vibrant2);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  padding: 18px 38px;
}
.mobile-nav a {
  color: #fff;
  padding: 18px 0;
  font-family: var(--brand-font-display);
  font-weight: 700;
  font-size: 1.18rem;
  border-bottom: 1px solid rgba(255,255,255,0.13);
  transition: color .18s, background .16s;
  border-radius: 4px;
  margin-bottom: 6px;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-vibrant1);
  color: #fff;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 16px;
    margin-left: 0;
  }
}
@media (max-width: 960px) {
  .main-nav {
    gap: 7px;
  }
}
@media (max-width: 900px) {
  .main-nav a { font-size: .97rem; }
  header .container { flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==================================
   6. HERO/BANNER (with vibrancy!)
   ================================== */
.hero {
  background: linear-gradient(90deg,#FF3366 0%, #FFC107 100%);
  color: #fff;
  padding: 68px 0 58px 0;
  box-shadow: 0 5px 24px 0 rgba(39,68,114,0.1);
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  margin-bottom: 0;
}
.hero h1 {
  color: #fff;
  font-size: 2.6rem;
  max-width: 600px;
  line-height: 1.13;
  letter-spacing: -1.1px;
  margin-bottom: 10px;
  text-shadow: 0 4px 12px rgba(39,68,114,.18);
}
.hero p {
  font-size: 1.18rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0;
  max-width: 540px;
}
.hero .cta-primary {
  margin-top: 14px;
  font-size: 1.06rem;
  box-shadow: 0 6px 36px -2px rgba(255,51,102, .2);
}
@media (max-width: 768px) {
  .hero {
    padding: 36px 0 18px 0;
  }
  .hero h1 { font-size: 1.45rem; }
  .hero p { font-size: .99rem; }
}

/* =========================================
   7. FLEXBOX GRIDS & KEY LAYOUT CONTAINERS
   ========================================= */
.feature-grid, .service-highlights, .service-list, .industry-list, .client-logo-grid, .case-study-snippets, .insights, .news-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.feature-item, .service-item, .industry-item, .testimonial-card, .case-study-snippets > div, .insights > div {
  background: var(--color-card);
  border-radius: 20px;
  box-shadow: 0 4px 24px var(--color-shadow);
  padding: 32px 28px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow .2s, transform .17s;
  min-width: 220px;
  flex: 1 1 255px;
}
.feature-item img, .service-item img, .industry-item img {
  height: 48px;
  width: 48px;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 8px rgba(255,51,102,.09));
}
.feature-item h3, .service-item h3, .industry-item h3 {
  color: var(--color-vibrant1);
}
.feature-item:hover, .service-item:hover, .industry-item:hover {
  box-shadow: 0 10px 36px -8px var(--color-vibrant1),0 4px 32px 0 var(--color-shadow);
  transform: translateY(-7px) scale(1.03);
}

.service-highlights > div, .service-list > div, .industry-list > div, .case-study-snippets > div, .insights > div {
  background: var(--color-card);
  border-radius: 18px;
  box-shadow: 0 4px 18px var(--color-shadow);
  padding: 26px 18px;
  flex: 1 1 240px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow .2s, transform .16s;
}

.client-logo-grid, .client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  margin: 18px 0;
}
.client-logo-grid img, .client-logos img {
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  max-height: 46px;
  box-shadow: 0 2px 8px rgba(39,68,114,0.11);
  margin-right: 12px;
}

.news-category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-bottom: 22px;
}
.news-category-filters button {
  background: var(--color-vibrant1);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--brand-font-display);
  font-size: 1rem;
  font-weight: bold;
  padding: 8px 20px;
  cursor: pointer;
  box-shadow: 0 3px 14px rgba(255,51,102,.09);
  transition: background .19s, transform .13s;
}
.news-category-filters button:hover, .news-category-filters button:focus {
  background: var(--color-vibrant2);
  color: var(--color-primary);
  transform: scale(1.06);
}

.news-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.news-listing article {
  background: var(--color-card);
  border-radius: 14px;
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 22px 18px 16px 18px;
  min-width: 210px;
  flex: 1 1 255px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .14s;
}
.news-listing article h3 {
  color: var(--color-vibrant3);
  font-family: var(--brand-font-display);
  margin-bottom: 8px;
}
.news-listing article:hover {
  box-shadow: 0 6px 24px -6px var(--color-vibrant3);
  transform: scale(1.025);
}

/* Responsive flex container and grid layouts */
@media (max-width: 1024px) {
  .feature-grid,.service-list,.industry-list,.client-logo-grid, .service-highlights {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .industry-list, .service-highlights {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 700px) {
  .client-logo-grid, .client-logos { flex-direction: column; gap: 14px; }
}

/* =====================================
   8. TESTIMONIAL & CARD COMPONENTS
   ===================================== */
.testimonials {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(39,68,114,0.10);
  border-radius: 18px;
  padding: 20px 28px 18px 28px;
  margin-bottom: 20px;
  min-width: 225px;
  max-width: 420px;
  flex: 1 1 320px;
  transition: box-shadow .2s, transform .17s;
  color: #1A1F32;
  font-family: var(--brand-font-body);
  position: relative;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #1A1F32;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--color-secondary);
  font-weight: 600;
  font-family: var(--brand-font-display);
}
.testimonial-card:before {
  content: '\201C';
  font-size: 3.2rem;
  color: var(--color-vibrant1);
  position: absolute;
  left: 16px;
  top: 7px;
  opacity: .10;
  pointer-events: none;
}
.testimonial-card:hover {
  box-shadow: 0 10px 38px -6px var(--color-vibrant1);
  transform: translateY(-2px) scale(1.012);
}

@media (max-width: 900px) {
  .testimonials { flex-direction: column; gap: 18px; }
  .testimonial-card { flex: 1 1 95%; }
}

/* ====================================
   9. BUTTONS, LINKS & MICRO-ACTIONS
   ==================================== */
button, .cta-primary, .cta-link {
  cursor: pointer;
  transition: background .19s, color .17s, transform .16s;
}
button:active, .cta-primary:active { transform: scale(.98); }
a { transition: color .17s, border-color .18s; }

/* =========================================
   10. CTA & INFO SECTIONS
   ========================================= */
.cta-section {
  background: var(--color-vibrant3);
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 28px 0 rgba(0,229,160,.08);
  text-align: center;
  margin-bottom: 60px;
}
.cta-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta-section .content-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 0;
}
.cta-section h2, .cta-section p {
  color: #fff;
}
@media (max-width: 768px) {
  .cta-section { margin-bottom: 36px; border-radius: 12px; }
  .cta-section .content-wrapper {
    gap: 12px;
  }
}

/* =============================
   11. SPECIAL COMPONENT LAYOUTS
   ============================= */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 22px; align-items: flex-start; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px #27447222;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .18s, transform .13s;
}
.card:hover { box-shadow: 0 12px 44px #FF336622, 0 2px 4px #27447211; transform: translateY(-2px); }

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/********** Other key/unique structural classes *********/
.process-steps {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 28px;
}
.process-steps li {
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 2px 12px #27447210;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--brand-font-display);
  padding: 12px 24px 12px 12px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
}
.process-steps img { height: 24px; margin-right: 5px; }

.usp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.usp-grid li {
  background: #E3EDFB;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-primary);
  font-family: var(--brand-font-display);
}

/****** About and company-info *****/
.company-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
  margin-bottom: 14px;
}
.company-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 2px 12px #41729F16;
  padding: 10px 14px;
}
.company-info img { height: 22px; margin-right: 2px; }

/********* Table lists for policies *******/
.text-section ul, .text-section ol {
  margin-left: 18px;
  margin-bottom: 16px;
}
.text-section ul li::before {
  content: '• ';
  color: var(--color-vibrant1);
  margin-right: 4px;
  font-weight: 800;
}

/****** Brand colored bullets for trust factors, industry-benefits, etc******/
.trust-factors-list, .industry-benefits {
  margin-left: 0;
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
}
.trust-factors-list li, .industry-benefits li {
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 10px;
  padding: 11px 20px;
  font-family: var(--brand-font-display);
  font-weight: 600;
  margin-bottom: 12px;
}

/************
  12. FOOTER
************/
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 0 0 42px 0;
  font-size: 1rem;
}
footer .container {
  padding: 44px 20px 0 20px;
}
footer section {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
footer .content-wrapper {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
  gap: 7px;
}
.footer-links, .footer-shortcuts {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a, .footer-shortcuts a {
  color: #fff;
  font-family: var(--brand-font-body);
  font-size: .97rem;
  transition: color .18s, text-decoration .18s;
  padding: 4px 0;
}
.footer-links a:hover, .footer-shortcuts a:hover {
  text-decoration: underline;
  color: var(--color-vibrant2);
}
footer img[alt*="logo"],footer img[alt*="Logo"],footer img[alt*="Incubaccon"] {
  height: 32px;
}
footer span {
  font-size: .96rem;
  color: #E3EDFB;
}
footer .content-wrapper:last-child span:first-child {
  margin-bottom: 4px;
  color: #fff;
}
@media (max-width: 1000px) {
  footer section { flex-direction: column; gap: 12px; }
  .footer-links, .footer-shortcuts { flex-direction: row; gap: 14px; }
}
@media (max-width: 700px) {
  footer .container { padding: 22px 7px 0 7px; }
  footer span, footer a { font-size: .92rem; }
}

/* ===============================
   13. COOKIE CONSENT BANNER
   =============================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fff;
  border-top: 6px solid var(--color-vibrant1);
  box-shadow: 0 -2px 18px #27447219;
  z-index: 1200;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  padding: 20px 40px;
  font-size: 1rem;
  font-family: var(--brand-font-body);
  color: var(--color-text);
  animation: slideUpCookie .6s cubic-bezier(.7,.04,.41,1.25);
}
@keyframes slideUpCookie {
  0% { transform: translateY(110%); opacity: 0; }
  80% { transform: translateY(-12px); }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btn {
  background: var(--color-vibrant1);
  color: #fff;
  border: none;
  border-radius: 22px;
  font-family: var(--brand-font-display);
  font-weight: 700;
  padding: 10px 24px;
  margin-left: 14px;
  font-size: 1rem;
  transition: background .16s, color .14s, box-shadow .18s;
  box-shadow: 0 2px 12px #FF336640;
}
.cookie-banner .cookie-btn.settings {
  background: var(--color-secondary);
  color: #fff;
  margin-left: 0;
}
.cookie-banner .cookie-btn.reject {
  background: var(--color-vibrant2);
  color: var(--color-primary);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--color-vibrant2);
  color: var(--color-primary);
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: var(--color-vibrant1);
  color: #fff;
}

@media (max-width: 700px) {
.cookie-banner {
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 10px;
  font-size: .93rem;
}
.cookie-banner .cookie-btn { width: 100%; margin-left: 0; } 
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1300;
  animation: fadeInCookieModal .34s;
}
@keyframes fadeInCookieModal { 0%{opacity:0;} 100%{opacity:1;} }
.cookie-modal-inner {
  background: #fff;
  border-radius: 26px;
  max-width: 410px;
  width: 96%;
  padding: 36px 32px;
  box-shadow: 0 16px 70px 0 #41729FC0, 0 2px 8px #FF336613;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: popInCookieModal .36s cubic-bezier(.67,1.74,.4,1.23);
}
@keyframes popInCookieModal { 0%{transform:scale(.8);opacity:0;}100%{transform:scale(1);opacity:1;} }
.cookie-modal-inner strong { color: var(--color-vibrant1); font-size:1.11rem; }
.cookie-modal-inner label {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 13px 0;
  font-family: var(--brand-font-display);
  font-size: 1rem;
  color: var(--color-primary);
}
.cookie-modal-inner input[type="checkbox"] {
  accent-color: var(--color-vibrant1);
  width: 18px; height: 18px;
}
.cookie-modal-inner .modal-close-btn {
  align-self: flex-end;
  margin-bottom: -14px;
  margin-top: -17px;
  background: none;
  border: none;
  color: var(--color-vibrant1);
  font-size: 2rem;
  cursor: pointer;
  transition: color .16s;
}
.cookie-modal-inner .modal-close-btn:hover,
.cookie-modal-inner .modal-close-btn:focus { color: var(--color-vibrant2); }
.cookie-modal-inner .cookie-btn {
  margin-top: 10px;
  width: 100%;
  padding: 11px 0;
}

@media (max-width: 500px) {
.cookie-modal-inner { padding: 18px 9px; border-radius: 12px; max-width: 98vw; font-size: .96rem; }
}

/*******************
  14. THANK YOU PAGE
*******************/
.thankyou {
  background: linear-gradient(90deg,var(--color-vibrant2) 0%, var(--color-vibrant3) 100%);
  color: var(--color-primary);
  border-radius: 24px;
  box-shadow: 0 4px 38px #27447211;
  margin: 44px 0;
}
.thankyou .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.thankyou .content-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.thankyou h1 { color: var(--color-vibrant1); }
.thankyou p, .thankyou ul { color: var(--color-primary); }
.thankyou .cta-primary {
  margin-top: 12px;
  color: #fff;
  background: var(--color-vibrant1);
  box-shadow: 0 5px 28px #FF336633;
}
@media (max-width: 700px) {
  .thankyou { margin:18px 0 12px 0; border-radius: 10px; }
}

/* =============================
   15. ACCESSIBILITY
   ============================= */
a:focus, button:focus, .cta-primary:focus, .cookie-btn:focus {
  outline: 2px solid #A6ED3B;
  outline-offset: 3px;
}

/* Slight highlight for interactive card hover/focus */
.card:focus-within, .feature-item:focus-within, .testimonial-card:focus-within {
  box-shadow: 0 0 0 3px #A6ED3B44;
}

/******************************
   16. GENERAL RESPONSIVENESS
******************************/
@media (max-width: 1100px) {
  .content-wrapper { margin-bottom: 24px; }
  .card, .feature-item, .service-item, .industry-item {
    min-width: 180px;
    padding: 18px 10px 14px 10px;
  }
  .testimonial-card, .case-study-snippets > div { padding: 13px 10px 10px 13px; }
}
@media (max-width: 600px) {
  h1, .hero h1 { font-size: 1.2rem; }
  h2 { font-size: 1rem; }
  .feature-item, .service-item, .industry-item { min-width: 100px; font-size: .94rem; }
  .testimonial-card { padding: 10px 5px; font-size: .93rem; }
}

/* ========== END ========== */