/* ==========================
   CSS RESET & BASE SETTINGS
   ========================== */
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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.45;
  background: #fff;
  color: #232323;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,ol {
  margin-left: 1.2em;
  margin-bottom: 1em;
}
a {
  color: #232323;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #306589;
  outline-offset: 2px;
}

/* ==========================
   COLORS & TYPOGRAPHY VARIABLES
   ========================== */
:root {
  --color-bg: #fff;
  --color-fg: #232323;
  --color-grey-light: #f2f2f2;
  --color-grey-mid: #8c8c8c;
  --color-grey-dark: #232323;
  --color-primary: #232323; /* Deep monochrome base */
  --color-secondary: #e6e6e6;
  --color-accent: #f6f6f6;
  --color-brand-blue: #306589; /* For subtle accents, never as main bg */
  --color-shadow: rgba(30,30,30,0.08);
  --b-radius: 12px;
  --b-radius-xs: 4px;
  --shadow-subtle: 0 2px 8px rgba(40,40,40,0.10);
  --shadow-card: 0 5px 24px rgba(40,40,40,0.13);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Lato', Arial, Helvetica, sans-serif;
}

/* ==========================
   UTILITIES
   ========================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
/* Section & spacing pattern */
.section,
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
}

/* ==========================
   TYPOGRAPHY
   ========================== */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.75rem;
  color: #111;
  letter-spacing: -1px;
  margin-bottom: 32px;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 24px;
  color: #222;
  line-height: 1.18;
  letter-spacing: -0.5px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.275rem;
  margin-bottom: 12px;
  color: #232323;
  letter-spacing: -0.2px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.055rem;
  margin-bottom: 8px;
  color: #232323;
}
p, ul, ol, li, address {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #232323;
  line-height: 1.6;
}
p:not(:last-child) {
  margin-bottom: 18px;
}
strong {
  font-weight: 700;
  color: #111;
}
blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.5;
  color: #232323;
  border-left: 4px solid #232323;
  padding-left: 16px;
  margin: 0 0 14px 0;
  background: #f8f8f8;
}

/* ==========================
   HEADER & NAVIGATION
   ========================== */
header {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 60;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 28px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 12px;
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: #222;
  letter-spacing: 0.15px;
  position: relative;
  transition: color 0.23s;
  padding: 4px 4px 4px 4px;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #111;
  text-decoration: underline;
}
.cta-btn {
  background: #232323;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 11px 30px;
  border: none;
  border-radius: var(--b-radius);
  cursor: pointer;
  margin-left: 30px;
  transition: background 0.18s, color 0.18s, box-shadow 0.23s;
  box-shadow: 0 2px 12px rgba(35,35,35,0.08);
  display: inline-block;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #fff;
  color: #222;
  border: 1.5px solid #232323;
  box-shadow: 0 8px 22px rgba(40,40,40,0.14);
  text-decoration: none;
}

/* MOBILE HEADER NAV */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #232323;
  margin-left: 24px;
  cursor: pointer;
  transition: color 0.17s;
  z-index: 120;
}
.mobile-menu-toggle:focus {
  color: #306589;
  outline: 2px dashed #232323;
}

/* ==========================
   MOBILE MENU OVERLAY
   ========================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(245,245,245,0.96);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 30px;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #232323;
  cursor: pointer;
  z-index: 1201;
  transition: color 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #306589;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 70px;
  gap: 20px;
  align-items: flex-start;
  padding: 0 36px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.35rem;
  padding: 12px 0;
  color: #181818;
  width: 100%;
  font-weight: 700;
  border-bottom: 1px solid #ececec;
  transition: background 0.16s, color 0.19s;
  border-radius: 0;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #232323;
  color: #fff;
}

/* HIDE DESKTOP NAV ON MOBILE, SHOW BURGER BUTTON */
@media (max-width: 1020px) {
  .main-nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
a.cta-btn {
  display: inline-block;
}

/* ===========================
   FLEXBOX LAYOUT COMPONENTS
   =========================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: var(--shadow-card);
  border-radius: var(--b-radius);
  margin-bottom: 20px;
  padding: 24px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.24s, transform 0.16s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transform: translateY(-4px) scale(1.01);
}
.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 {
  background: #fff;
  border-radius: var(--b-radius);
  box-shadow: 0 2px 14px rgba(30,30,30,0.09);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  max-width: 650px;
  border-left: 5px solid #232323;
  position: relative;
  transition: box-shadow 0.23s, transform 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(25,25,25,0.14);
  transform: translateY(-2px) scale(1.015);
}
.testimonial-info {
  margin-left: 18px;
  font-family: var(--font-display);
  color: #8d8d8d;
  font-size: 0.99rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* generate proper spacing for all sections */
section + section {
  margin-top: 42px;
}

/* ================
   HOMEPAGE GRIDS
   ================ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 20px;
}
.feature-grid li {
  background: #fcfcfc;
  box-shadow: 0 1px 11px rgba(48,48,48,0.08);
  border-radius: var(--b-radius);
  padding: 24px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 250px;
  min-width: 240px;
  transition: box-shadow 0.21s, transform 0.14s;
}
.feature-grid li:hover {
  box-shadow: 0 6px 24px rgba(48,48,48,0.12);
  transform: translateY(-2px) scale(1.018);
}
.feature-grid img {
  width: 40px;
  margin-bottom: 16px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
  margin-top: 23px;
}
.service-card {
  flex: 1 1 280px;
  background: #fcfcfc;
  border-radius: var(--b-radius);
  box-shadow: var(--shadow-card);
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.13s;
  margin-bottom: 20px;
}
.service-card img {
  width: 40px;
  margin-bottom: 19px;
}
.service-card:hover {
  box-shadow: 0 9px 28px rgba(46,46,46,0.12);
  transform: translateY(-2px) scale(1.017);
}
.section-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.07rem;
  color: #232323;
  text-decoration: underline;
  margin-top: 16px;
  display: inline-block;
  transition: color 0.19s;
}
.section-link:hover {
  color: #306589;
  text-decoration: none;
}

/* =============
  BLOG COMPONENTS
 ============= */
.blog-post-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.blog-post-card {
  background: #fff;
  border-radius: var(--b-radius);
  box-shadow: 0 2px 12px rgba(40,40,40,0.09);
  padding: 28px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 280px;
  min-width: 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.14s;
}
.blog-post-card h3 {
  font-size: 1.22rem;
  margin-bottom: 12px;
}
.blog-post-card p {
  margin-bottom: 13px;
  color: #232323;
}
.blog-post-card a {
  margin-top: auto;
  font-family: var(--font-body);
  font-weight: 700;
  color: #232323;
  text-decoration: underline;
  transition: color 0.18s;
}
.blog-post-card a:hover {
  color: #306589;
}
.blog-post-card:hover {
  box-shadow: 0 8px 30px rgba(30,30,30,0.14);
  transform: translateY(-2px) scale(1.018);
}

/* =============
  FOOTER
 ============= */
footer {
  background: #101010;
  color: #e8e8e8;
  padding: 44px 0 24px 0;
  border-top: 1px solid #232323;
  font-size: 0.98rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand img {
  max-width: 54px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 13px;
}
.footer-nav a {
  color: #e3e3e3;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.0rem;
  transition: color 0.15s;
  text-decoration: none;
}
.footer-nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #a2a2a2;
}
.footer-info a {
  color: #c1c1c1;
  text-decoration: underline;
}
footer address {
  font-style: normal;
  color: #ababab;
  margin-bottom: 5px;
}

/* =============
  ABOUT/TEAM SECTION
 ============= */
.team-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.team-list li {
  font-size: 1.1rem;
}

/* =============
  SERVICES PAGE
 ============= */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.services-list li {
  flex: 1 1 240px;
  min-width: 220px;
  background: #fcfcfc;
  border-radius: var(--b-radius);
  box-shadow: 0 1px 10px rgba(48,48,48,0.09);
  padding: 22px 18px 16px 20px;
  margin-bottom: 20px;
}
.process-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  list-style: none;
  padding-left: 0;
}
.process-flow li {
  flex: 1 1 200px;
  min-width: 170px;
  background: #f9f9f9;
  border-radius: var(--b-radius-xs);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 15px;
  box-shadow: 0 1px 7px rgba(38,38,38,0.09);
}
.process-flow img {
  width: 28px;
  height: 28px;
}
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.benefits-list li {
  padding-left: 9px;
  font-size: 1.05rem;
}

/* =============
  PORTFOLIO / CASES
 ============= */
.case-study-block {
  background: #fcfcfc;
  border-radius: var(--b-radius);
  box-shadow: var(--shadow-card);
  padding: 28px 24px 22px;
  margin-bottom: 28px;
}
.case-study-block h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

/* =============
  TABLE & FAQ
 ============= */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fafafa;
  border-radius: var(--b-radius);
  box-shadow: 0 1px 10px rgba(48,48,48,0.07);
  margin-bottom: 28px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 18px 18px;
  border-bottom: 1px solid #ececec;
  font-size: 1rem;
}
.pricing-table th {
  font-family: var(--font-display);
  font-weight: 700;
  background: #ececec;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.comparison-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.faq-accordion li {
  background: #fcfcfc;
  border-radius: var(--b-radius-xs);
  box-shadow: 0 1px 7px rgba(32,32,32,0.07);
  padding: 18px 19px;
}
.faq-accordion h3 {
  font-size: 1.08rem;
  margin-bottom: 7px;
}

/* =============
  CONTACT PAGE
 ============= */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 14px;
}
.contact-details li {
  flex: 1 1 210px;
  min-width: 170px;
  background: #f6f6f6;
  border-radius: var(--b-radius-xs);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  padding: 12px 14px;
  box-shadow: 0 1px 6px rgba(32,32,32,0.07);
}
.contact-details a {
  color: #232323;
  text-decoration: underline;
  font-weight: 700;
}
.contact-details img {
  width: 22px;
  height: 22px;
}

/* =============
  SUBSCRIBE/NEWSLETTER
 ============= */
.subscribe-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  background: #f8f8f8;
  border-radius: var(--b-radius-xs);
  box-shadow: 0 1px 10px rgba(32,32,32,0.06);
  padding: 24px 22px;
  justify-content: space-between;
}

/* =============
  TEXT BLOCKS
 ============= */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 8px;
}

/* =============
  POLICY/TEXT PAGES
 ============= */
.text-section ul {
  list-style: disc inside;
  margin-left: 10px;
  margin-bottom: 12px;
}
.terms-list {
  list-style: disc inside;
  padding-left: 16px;
}

/* =============
  GENERAL BUTTON STYLES
 ============= */
button,
.btn {
  appearance: none;
  font-family: var(--font-display);
  border-radius: var(--b-radius-xs);
  padding: 10px 32px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  background: #232323;
  color: #fff;
  box-shadow: 0 2px 8px rgba(37,37,37,0.07);
  cursor: pointer;
  transition: background 0.15s, color 0.13s, box-shadow 0.21s;
}
button:hover, .btn:hover, button:focus {
  background: #fff;
  color: #232323;
  border: 1.5px solid #232323;
  box-shadow: 0 6px 18px rgba(40,40,40,0.12);
}

/* ===================
  COOKIE CONSENT BANNER
 =================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #232323f9;
  color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  padding: 24px 20px 20px 20px;
  box-shadow: 0 -3px 24px rgba(0,0,0,0.20);
  transition: transform 0.34s cubic-bezier(.71,0,.29,1), opacity 0.34s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-banner-text {
  max-width: 420px;
  line-height: 1.55;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 14px;
  margin-left: 20px;
}
.cookie-banner button {
  padding: 10px 23px;
  font-size: 1.01rem;
  font-family: var(--font-display);
  border-radius: var(--b-radius-xs);
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: #fff;
  color: #232323;
  transition: background 0.14s, color 0.11s;
}
.cookie-banner button.primary {
  background: #232323;
  color: #fff;
}
.cookie-banner button.primary:hover,
.cookie-banner button.primary:focus {
  background: #fff;
  color: #232323;
  border: 1.5px solid #232323;
}
.cookie-banner button.secondary {
  background: #e6e6e6;
  color: #232323;
}
.cookie-banner button.secondary:hover {
  background: #fff;
  color: #232323;
  border: 1.5px solid #232323;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,32,32,0.60);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.15s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  color: #232323;
  border-radius: var(--b-radius);
  box-shadow: 0 10px 36px rgba(0,0,0,0.22);
  width: 94vw;
  max-width: 420px;
  padding: 33px 28px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 22px;
  background: none;
  color: #232323;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}
.cookie-modal h2 {
  font-size: 1.12rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 7px;
  color: #111;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0 2px 0;
}
.cookie-category-label {
  font-size: 1.01rem;
  font-family: var(--font-body);
  color: #232323;
}
.cookie-category-toggle {
  min-width: 46px;
  min-height: 28px;
  background: #ececec;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  border: 1px solid #ddd;
  display: inline-block;
}
.cookie-category-toggle input[type="checkbox"] {
  display: none;
}
.cookie-category-toggle span {
  position: absolute;
  top: 2px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #232323;
  border-radius: 50%;
  transition: left 0.16s;
}
.cookie-category-toggle input[type="checkbox"]:checked + span {
  left: 22px;
  background: #306589;
}
.cookie-category-label.essential {
  font-weight: 600;
  color: #111;
}
.cookie-category-toggle.disabled{
  opacity: 0.66;
  pointer-events: none;
}
.cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal button {
  font-size: 1.01rem;
  padding: 10px 22px;
  border-radius: var(--b-radius-xs);
  font-family: var(--font-display);
  font-weight: 700;
}

/* =============
  ANIMATION CLASSES
 ============= */
@media (prefers-reduced-motion: no-preference) {
  .mobile-menu,
  .mobile-menu.open {
    will-change: transform;
  }
  .mobile-menu {
    transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  }
}

/* =============
  RESPONSIVE DESIGN
 ============= */
@media (max-width: 1140px) {
  .container { max-width: 980px; }
}
@media (max-width: 900px) {
  .container { max-width: 740px; }
  .feature-grid,
  .service-cards,
  .blog-post-cards {
    gap: 16px;
  }
  .card-container {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.4rem; }
  .content-wrapper { padding-left: 0; padding-right: 0; }
  
  .section, main > section {
    padding: 28px 10px;
    margin-bottom: 36px;
  }
  .footer-nav,
  .footer-info, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .feature-grid, .service-cards, .blog-post-cards, .card-container, .services-list,
  .case-study-blocks, .content-grid, .contact-details, .subscribe-section {
    flex-direction: column;
    gap: 18px;
  }
  .process-flow {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    gap: 8px;
  }
  .testimonial-info { margin-left: 0; }
  .blog-post-card, .service-card, .feature-grid li {
    min-width: unset;
    width: 100%;
  }
  .main-nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: 10px;
  }
  .container {
    padding-left: 13px;
    padding-right: 13px;
  }
}
@media (max-width: 520px) {
  .section, main > section {
    padding: 13px 2px;
    margin-bottom: 24px;
  }
  .mobile-nav {
    padding: 0 9px;
  }
  .cookie-banner,.cookie-banner .cookie-btn-group {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .cookie-banner {
    padding: 16px 7px 10px 7px;
  }
  .cookie-banner .cookie-banner-text {
    max-width: 94vw;
  }
}

/* =============================
   MICRO INTERACTIONS
   ============================= */
::selection {
  background: #232323;
  color: #fff;
}
input,textarea,select {
  font-family: var(--font-body);
  border-radius: var(--b-radius-xs);
  border: 1px solid #e1e1e1;
  padding: 11px 12px;
  margin-bottom: 16px;
  font-size: 1rem;
  outline: none;
  transition: border 0.13s;
  background: #f7f7f7;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #232323;
}

/* LISTS inside text blocks */
.text-section ul, .terms-list {
  margin: 0 0 14px 23px;
  padding: 0;
  list-style: disc;
  font-size: 1rem;
}
.text-section ul li, .terms-list li {
  margin-bottom: 7px;
}
