/* ====================================================================
  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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #161616;
  scroll-behavior: smooth;
}
body {
  font-size: 16px;
  background: #fafbfc;
  color: #222;
  line-height: 1.6;
  min-height: 100vh;
}
img, picture, video {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  padding-left: 1.1em;
  margin-top: 8px;
  margin-bottom: 8px;
}
a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #595959;
  outline-offset: 2px;
}
button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

/* ========== FONT FAMILIES & GENERAL TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #161616;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.12;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 17px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
p, blockquote, ul, ol, li, .container, .text-section {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #232323;
}
p {
  margin-bottom: 14px;
  font-size: 1.05rem;
}
blockquote {
  border-left: 4px solid #232323;
  padding-left: 16px;
  margin: 8px 0 16px 0;
  font-style: italic;
  color: #232323;
  font-size: 1.07rem;
  line-height: 1.45;
}
strong {
  font-weight: 600;
}


/* ================== COLOR PALETTE =====================
Monochrome sophisticated + brand accents
======================================================= */
:root {
  --col-black: #161616;
  --col-dark: #1E2A38;
  --col-gray-dark: #323940;
  --col-gray: #595959;
  --col-gray-mid: #B8B8B8;
  --col-gray-light: #E4E5E7;
  --col-white: #ffffff;
  --primary: #1E2A38;
  --secondary: #247BA0;
  --accent: #F5A623;
  --shadow1: rgba(30, 42, 56, 0.11);
  --shadow2: rgba(30, 42, 56, 0.03);
}


/* ====================== LAYOUT BASICS ====================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.final-cta {
  margin-bottom: 0;
  background: var(--col-dark);
}
.final-cta .content-wrapper {
  align-items: center;
  text-align: center;
  color: var(--col-white);
}
.final-cta h2 {
  color: var(--col-white);
}

/* ======================= HEADER ======================= */
header {
  background: var(--col-white);
  border-bottom: 1px solid var(--col-gray-light);
  position: sticky;
  top: 0;
  z-index: 105;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 1rem;
  color: var(--col-dark);
  padding: 7px 10px;
  border-radius: 4px;
  transition: color 0.2s, background 0.18s;
}
header nav a:hover, header nav a:focus {
  background: var(--col-gray-light);
  color: var(--secondary);
}
.cta-button {
  background: var(--col-dark);
  color: var(--col-white) !important;
  border: none;
  border-radius: 7px;
  padding: 12px 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 3px 12px var(--shadow2);
  transition: background 0.18s, color 0.2s, transform 0.12s, box-shadow 0.2s;
  margin-left: 14px;
  display: inline-block;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: var(--secondary);
  color: var(--col-white);
  transform: translateY(-1px) scale(1.025);
  box-shadow: 0 8px 16px var(--shadow1);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--secondary);
  background: transparent;
  border-radius: 6px;
  padding: 4px 12px;
  transition: background 0.14s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--col-gray-light);
  color: var(--col-black);
}

/* ====================== MOBILE MENU ======================= */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--col-dark);
  color: var(--col-white);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.4,0.65,0.4,1);
  box-shadow: 2px 0 18px var(--shadow2);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.25rem;
  color: var(--col-white);
  background: transparent;
  border-radius: 6px;
  align-self: flex-end;
  margin: 18px 24px 4px 0;
  cursor: pointer;
  transition: color 0.19s, background 0.13s;
  z-index: 201;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--col-gray);
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
  margin: 24px 0 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  color: var(--col-white);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.14s;
  padding: 8px 0;
  border-radius: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  background: none;
}

@media (max-width: 1050px) {
  header .container {
    flex-wrap: wrap;
    gap: 8px;
  }
  header nav {
    gap: 12px;
  }
}
@media (max-width: 850px) {
  header nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 520px) {
  .mobile-nav {
    margin-left: 12px;
  }
  .mobile-menu-close {
    margin: 18px 8px 2px 0;
  }
}

/* ================== HERO & FLEX LAYOUTS ==================== */
.hero-section {
  padding: 65px 0 55px 0;
  background: var(--col-white);
  border-bottom: 1px solid var(--col-gray-light);
}
.hero-section .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}
.hero-section .content-wrapper {
  max-width: 670px;
  align-items: flex-start;
  text-align: left;
}
.hero-section h1 {
  color: var(--col-black);
  font-size: 2.8rem;
  margin-bottom: 21px;
}
.hero-section p {
  margin-bottom: 23px;
  color: var(--col-gray-dark);
  font-size: 1.18rem;
}
.hero-section .cta-button {
  margin-left: 0;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 36px 0 25px 0;
  }
  .hero-section .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .content-wrapper {
    padding: 0 !important;
  }
}

.content-grid, .feature-grid, .service-cards, .solution-cards, .industry-grid, .testimonial-cards, .pricing-cards, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
  justify-content: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--col-white);
  border-radius: 13px;
  box-shadow: 0 6px 26px var(--shadow2);
  padding: 30px 28px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.16s, transform 0.17s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 22px var(--shadow1);
  transform: translateY(-3px) scale(1.015);
}

.feature-grid > div, .service-cards > div, .solution-cards > div, .industry-grid > div, .pricing-cards > div {
  background: var(--col-white);
  border-radius: 10px;
  box-shadow: 0 2px 10px var(--shadow2);
  padding: 30px 24px 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(25% - 21px);
  min-width: 230px;
  flex: 1 1 260px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.feature-grid > div:hover, .service-cards > div:hover, .solution-cards > div:hover, .industry-grid > div:hover, .pricing-cards > div:hover {
  box-shadow: 0 10px 20px var(--shadow1);
  transform: translateY(-3px) scale(1.018);
}
.feature-grid img, .industry-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 13px;
}
.feature-grid h3, .service-cards h3, .solution-cards h3, .industry-grid h3, .pricing-cards h3 {
  font-size: 1.17rem;
  margin-bottom: 9px;
  color: var(--col-dark);
  font-weight: 700;
}

@media (max-width: 1050px) {
  .feature-grid > div, .service-cards > div, .solution-cards > div, .industry-grid > div, .pricing-cards > div {
    width: calc(50% - 15px);
    min-width: 180px;
  }
}
@media (max-width: 700px) {
  .feature-grid, .service-cards, .solution-cards, .industry-grid, .pricing-cards, .testimonial-cards {
    gap: 16px;
  }
  .feature-grid > div, .service-cards > div, .solution-cards > div, .industry-grid > div, .pricing-cards > div {
    width: 100%;
    min-width: 0;
    padding: 20px 15px;
  }
}

/* ======================== CARDS ============================ */
.card, .testimonial-card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 12px;
}

/* ===================== TESTIMONIALS ====================== */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 6px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--col-white);
  padding: 24px 22px;
  border-radius: 12px;
  min-width: 240px;
  flex: 1 1 260px;
  box-shadow: 0 2px 18px var(--shadow2);
  transition: box-shadow 0.16s, transform 0.17s;
  color: var(--col-black);
  max-width: 480px;
}
.testimonial-card blockquote {
  border: none;
  padding-left: 0;
  font-size: 1.07rem;
  color: var(--col-black);
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: var(--col-gray-mid);
  font-size: 0.99rem;
  margin-left: 12px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 22px var(--shadow1);
  transform: translateY(-2px) scale(1.02);
  background: #f5f7fa;
}

@media (max-width: 900px) {
  .testimonial-cards {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 100%;
    width: 100%;
    padding: 19px 10px;
  }
}

/* ===================== LOGO CAROUSEL, AWARDS ===================== */
.logo-carousel {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 30px 0 2px 0;
}
.logo-carousel img {
  height: 38px;
  filter: grayscale(100%) brightness(0.2) contrast(160%);
  opacity: 0.7;
  margin-right: 7px;
}
.awards {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 30px 0 10px 0;
  color: var(--col-gray);
  font-size: 1.05rem;
}
.awards img {
  height: 34px;
  filter: grayscale(90%);
}

/* ===================== FEATURE LISTS ===================== */
.feature-list,
.benefit-highlights ul,
.usp-list,
.feature-bullets {
  list-style-type: disc;
  color: var(--col-black);
  padding-left: 1.25em;
  margin: 13px 0 18px 0;
  font-size: 1.05rem;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
}
.feature-list img {
  width: 26px;
  height: 26px;
}

.benefit-highlights ul {
  list-style-type: circle;
}

@media (max-width: 800px) {
  .logo-carousel, .awards {
    flex-direction: column;
    gap: 14px;
  }
}

/* ===================== SECTION, TEXT IMAGE ===================== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.text-section {
  max-width: 720px;
  margin-bottom: 14px;
}

/* ===================== PRICING TABLES/CARDS ===================== */
.plan-comparison-table {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--col-white);
  border-radius: 10px;
  box-shadow: 0 2px 12px var(--shadow2);
  padding: 22px 12px;
  margin-bottom: 25px;
  margin-top: 15px;
}
.plan-comparison-table > div {
  flex: 1 1 200px;
  padding: 8px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
.plan-comparison-table strong {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 5px;
  color: var(--col-dark);
}
@media (max-width: 800px) {
  .plan-comparison-table {
    flex-direction: column;
    gap: 8px;
  }
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 15px;
}
.pricing-cards > div {
  background: var(--col-white);
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--shadow1);
  padding: 30px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(33% - 22px);
  min-width: 210px;
  transition: box-shadow 0.18s, transform 0.12s;
  margin-bottom: 10px;
}
.pricing-cards > div:hover {
  box-shadow: 0 8px 22px var(--shadow1);
  transform: translateY(-2px) scale(1.03);
}
.pricing-cards h3 {
  font-size: 1.22rem;
  margin-bottom: 7px;
}
.pricing-cards ul {
  list-style: disc;
  color: var(--col-gray-dark);
  padding-left: 1.1em;
  margin-top: 9px;
  margin-bottom: 12px;
}
.pricing-cards a {
  margin-top: auto;
  color: var(--secondary);
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-bottom: 1px solid var(--secondary);
  padding-bottom: 2px;
  transition: color 0.13s;
}
.pricing-cards a:hover {
  color: var(--accent);
  border-color: var(--accent);
}
@media (max-width: 900px) {
  .pricing-cards > div {
    width: 100%;
    min-width: 0;
    padding: 16px 10px 16px 10px;
  }
  .pricing-cards {
    gap: 14px;
  }
}

/* ===================== FAQ ===================== */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.faq-list > div {
  background: var(--col-white);
  border-radius: 9px;
  box-shadow: 0 2px 10px var(--shadow2);
  padding: 18px 18px 14px 18px;
  flex: 1 1 280px;
  min-width: 180px;
}
.faq-list h3 {
  color: var(--col-dark);
  font-size: 1.08rem;
  margin-bottom: 5px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
@media (max-width: 700px) {
  .faq-list, .faq-list > div {
    flex-direction: column;
    width: 100%;
  }
}

/* ===================== RESOURCE CATEGORIES, SEARCH ===================== */
.resource-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 18px;
}
.resource-categories span {
  background: var(--col-gray-light);
  color: var(--col-black);
  padding: 7px 19px;
  font-size: 1rem;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.resource-search-bar {
  width: 100%;
  margin-bottom: 20px;
  margin-top: 6px;
}
.resource-search-bar input[type="search"] {
  padding: 9px 14px;
  border-radius: 7px;
  border: 1px solid var(--col-gray-light);
  width: 100%;
  font-size: 1.03rem;
  background: var(--col-white);
  box-shadow: 0 1px 4px var(--shadow2);
  transition: box-shadow 0.14s, border-color 0.15s;
}
.resource-search-bar input[type="search"]:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 2px 8px var(--shadow1);
}
.resource-list {
  margin: 8px 0 8px 0;
}
.resource-list li a {
  color: var(--col-dark);
  border-bottom: 1px dotted var(--col-gray);
  transition: color 0.16s;
}
.resource-list li a:hover {
  color: var(--secondary);
}

/* ==================== CONTACT DETAILS LAYOUT ==================== */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-details .text-section {
  min-width: 220px;
  flex: 1 1 260px;
}
@media (max-width: 800px) {
  .contact-details {
    flex-direction: column;
    gap: 18px;
  }
}


/* ========================= FOOTER ========================== */
footer {
  background: var(--col-dark);
  color: var(--col-white);
  font-size: 1rem;
  padding: 42px 0 18px 0;
  width: 100%;
  border-top: 2px solid var(--col-gray-light);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  color: var(--col-white);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-decoration: underline;
  font-size: 1rem;
  transition: color 0.13s;
  opacity: 0.85;
}
.footer-nav a:hover {
  color: var(--accent);
  text-decoration: none;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  align-items: center;
  color: var(--col-gray-light);
  font-size: 0.96rem;
  line-height: 1.35;
}
.footer-contact img {
  height: 15px;
  display: inline;
  filter: grayscale(100%) brightness(2);
  margin-right: 5px;
  opacity: 0.85;
}
.footer-info {
  color: var(--col-gray-mid);
  text-align: center;
  font-size: 0.96rem;
  margin-top: 9px;
}
@media (max-width: 680px) {
  .footer-nav, .footer-contact {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  footer {
    padding: 30px 0 12px 0;
  }
}

/* =================== COOKIE CONSENT BANNER ==================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 9000;
  background: var(--col-white);
  color: var(--col-black);
  box-shadow: 0 -4px 20px var(--shadow2);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  padding: 20px 30px 20px 25px;
  font-size: 1rem;
  transition: transform 0.35s;
}
.cookie-consent-banner.hide {
  transform: translateY(100%);
}
.cookie-consent-banner p {
  margin: 0 18px 0 0;
  color: var(--col-black);
  font-size: 1rem;
}
.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-buttons button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  border-radius: 18px;
  padding: 8px 28px;
  border: none;
  font-size: 1rem;
  transition: background 0.18s, color 0.16s, box-shadow 0.15s;
  margin-right: 6px;
}
.cookie-buttons .accept {
  background: var(--col-dark);
  color: var(--col-white);
}
.cookie-buttons .accept:hover, .cookie-buttons .accept:focus {
  background: var(--secondary);
}
.cookie-buttons .reject {
  background: var(--col-gray-light);
  color: var(--col-black);
  border: 1.5px solid var(--col-gray);
}
.cookie-buttons .reject:hover, .cookie-buttons .reject:focus {
  color: var(--secondary);
  border-color: var(--secondary);
}
.cookie-buttons .settings {
  background: transparent;
  color: var(--col-gray);
  font-weight: 400;
  text-decoration: underline;
  border: none;
}
.cookie-buttons .settings:hover, .cookie-buttons .settings:focus {
  color: var(--accent);
  background: var(--col-gray-light);
}
@media (max-width:600px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 14px;
    padding: 14px 6px;
    font-size: 0.94rem;
  }
  .cookie-buttons {
    gap: 10px;
  }
}

/* ================== COOKIE CONSENT MODAL ====================== */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9991;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 42, 56, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.27s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-content {
  background: var(--col-white);
  color: var(--col-black);
  border-radius: 10px;
  box-shadow: 0 8px 28px var(--shadow1);
  padding: 32px 30px 26px 30px;
  max-width: 370px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookie-modal-in 0.42s cubic-bezier(0.14,0.65,0.41,1) both;
}
@keyframes cookie-modal-in {
  0%   { transform: translateY(60px) scale(0.95); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal-content h2 {
  margin-bottom: 2px;
  font-size: 1.18rem;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cookie-modal-category input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--secondary);
}
.cookie-modal-category label {
  font-size: 1.04rem;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal-actions button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 15px;
  padding: 8px 23px;
  border: none;
  transition: background 0.16s, color 0.15s;
}
.cookie-modal-actions .accept {
  background: var(--col-dark);
  color: var(--col-white);
}
.cookie-modal-actions .accept:hover {
  background: var(--secondary);
}
.cookie-modal-actions .close {
  background: var(--col-gray-light);
  color: var(--col-black);
}
.cookie-modal-actions .close:hover {
  background: var(--col-gray);
  color: var(--col-white);
}

/* ===================== MICRO-INTERACTIONS ===================== */
a, button, .cta-button, .feature-grid > div, .industry-grid > div, .solution-cards > div, .pricing-cards > div, .testimonial-card, .faq-list > div {
  transition: box-shadow 0.16s, background 0.18s, color 0.14s, transform 0.10s;
}

/* ===================== SPACINGS / FLEX GAPS ==================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.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;
}

/* =================== MISC ==================== */
::-webkit-scrollbar {
  width: 8px;
  background: var(--col-gray-light);
}
::-webkit-scrollbar-thumb {
  background: var(--col-gray-mid);
  border-radius: 6px;
}

/* Link focus/hover underline for accessibility */
a:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 1px;
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1150px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.27rem;
  }
  .content-wrapper, .container {
    padding-left: 7px !important;
    padding-right: 7px !important;
  }
  .section {
    padding: 30px 4px;
  }
}

/* =================== FORM AND SELECT ===================== */
input, textarea, select {
  border: 1px solid var(--col-gray-light);
  border-radius: 6px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 2px 7px var(--shadow1);
}

/* =============== ACCESSIBLE HIDE =============== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
