/* --- CSS RESET & NORMALISATION --- */
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.5;
  background: var(--secondary-bg, #F2F7FA);
  color: var(--primary-text, #14426A);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
  letter-spacing: 0.02em;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}

/* --- BRAND & CREATIVE_ARTISTIC VARS --- */
:root {
  --primary: #14426A;
  --primary-light: #1e5c95;
  --secondary: #F2F7FA;
  --secondary-bg: #F2F7FA;
  --accent: #2EA84A;
  --accent-dark: #177A32;
  --creative-1: #DE4E6B;
  --creative-2: #FFB65C;
  --creative-3: #26C6DA;
  --creative-4: #111111;
  --creative-5: #e3e3e3;
  --white: #fff;
  --black: #0C1932;
  --shadow: 0 4px 18px 2px rgba(20,66,106,0.07),0 2px 8px rgba(20,26,34,0.05);
}

/* --------------------
     TYPOGRAPHY
--------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  color: var(--primary, #14426A);
  letter-spacing: -0.01em;
}
h1 { font-size: 2.6rem; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.15; margin-bottom: 16px; }
h3 { font-size: 1.3rem; line-height: 1.2; margin-bottom: 10px; }
h4 { font-size: 1.1rem; }
p, li, .disclaimer { font-size: 1rem; line-height: 1.8; color: var(--creative-4, #222); }
p, ul, ol, dl { margin-bottom: 1em; }
strong { font-weight: bold; color: var(--accent); }
blockquote {
  font-style: italic;
  color: var(--creative-1);
  border-left: 4px solid var(--creative-2);
  padding-left: 17px;
  margin-bottom: 18px;
}
/* Unique artistic headings */
h1, h2 {
  background: linear-gradient(90deg, var(--creative-1), var(--accent), var(--creative-2), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
}
h2:after {
  content: '';
  display: block;
  width: 48px;
  height: 5px;
  border-radius: 3px;
  background: var(--accent);
  margin-top: 13px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  max-width: 950px;
  margin: 0 auto;
}

/* --- NAVIGATION HEADER --- */
header {
  width: 100%;
  background: var(--white);
  border-bottom: 2px solid var(--secondary);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 30px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  padding: 10px 0 10px 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: var(--accent)!important;
  position: relative;
  font-size: 1.01rem;
  transition: color 0.2s;
}
.main-nav a:not(.btn-primary):hover, .main-nav a:focus {
  color: var(--accent);
}
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 30px;
  padding: 12px 30px;
  background: var(--primary);
  color: var(--white);
  border: none;
  box-shadow: var(--shadow);
  transition: background 0.21s, color 0.19s, box-shadow 0.18s, transform 0.17s;
  position: relative;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 6px 25px rgba(46,168,74,0.16);
  text-decoration: none;
}
.btn-secondary {
  background: var(--creative-2);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--primary);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 6px 22px 0 rgba(222,78,107,0.14);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--primary);
  background: var(--secondary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 120;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--creative-1);
  color: var(--white);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--secondary);
  z-index: 1200;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1), opacity 0.3s;
  padding: 40px 24px 32px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--creative-1);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.mobile-nav a {
  padding: 14px 0;
  font-size: 1.17rem;
  color: var(--primary);
  transition: color 0.18s;
  border-bottom: 1px solid var(--creative-5);
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus { color: var(--accent); }

@media (max-width: 1100px) {
  .main-nav {
    gap: 15px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 6px;
  }
  header .container { gap: 10px; }
}
@media (max-width: 780px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ------------------------------
    HERO & CTA SECTIONS
------------------------------- */
.hero, .about-hero, .services-hero, .resources-hero, .contact-hero, .case-studies-hero, .blog-hero, .thank-you {
  background: var(--secondary-bg);
  padding: 70px 0 50px 0;
  
  position: relative;
  z-index: 1;
}
.hero:before, .about-hero:before, .case-studies-hero:before {
  content: '';
  position: absolute;
  top: -70px; left: 0; right: 0; height: 90px;
  background: linear-gradient(90deg, var(--creative-1) 6%, var(--secondary) 100%);
  opacity: 0.12;
  z-index: 0;
}
.hero .container, .about-hero .container, .services-hero .container, .case-studies-hero .container, .resources-hero .container {
  position: relative;
  z-index: 2;
}
.hero h1, .about-hero h1, .services-hero h1, .case-studies-hero h1, .resources-hero h1, .contact-hero h1, .blog-hero h1 {
  font-size: 2.6rem;
}
@media (min-width: 800px) {
  .hero h1, .about-hero h1, .services-hero h1, .case-studies-hero h1, .resources-hero h1, .contact-hero h1, .blog-hero h1 {
    font-size: 2.9rem;
  }
}
.hero p, .about-hero p, .services-hero p, .case-studies-hero p, .resources-hero p, .blog-hero p, .contact-hero p {
  font-size: 1.25rem;
  color: var(--creative-4);
  margin-bottom: 26px;
}

/* CTA blocks */
.cta {
  background: var(--creative-2);
  border-top-left-radius: 56px;
  border-top-right-radius: 56px;
  padding: 56px 0 56px 0;
  margin-bottom: 0;
  position: relative;
  z-index: 10;
}
.cta h2 {
  color: var(--primary);
  margin-bottom: 13px;
}
.cta p { color: var(--creative-4); }
.cta .btn-primary {
  margin-top: 18px;
  background: var(--primary);
  color: var(--white);
}
.cta .btn-primary:hover {
  background: var(--accent);
}
@media (max-width: 600px) {
  .cta {
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    padding: 32px 0 32px 0;
  }
}

/* ----------------------------------
   CREATIVE FLEX SECTIONS & FEATURES
---------------------------------- */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-top: 30px;
}
.features .feature-grid li {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 32px 24px 26px 24px;
  flex: 1 1 210px;
  min-width: 240px;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  margin-bottom: 20px;
  transition: transform 0.22s, box-shadow 0.2s;
}
.features .feature-grid li:hover, .features .feature-grid li:focus {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 8px 18px 0 rgba(222,78,107,.12), 0 6px 12px rgba(46,168,74,.09);
}
.features .feature-grid img {
  width: 44px;
  height: 44px;
}
.features .feature-grid h3 {
  font-size: 1.19rem;
  color: var(--creative-1);
}
.features .feature-grid p {
  color: var(--primary);
  margin: 0;
}

/* Services Snapshot, Service Highlight */
.services-snapshot .service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 23px;
  margin-bottom: 35px;
}
.services-snapshot .service-highlights li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  color: var(--primary);
  border-radius: 17px;
  box-shadow: 0 2px 8px rgba(20,66,106,0.07);
  font-weight: 600;
  min-width: 200px;
  padding: 19px 18px;
  position: relative;
  font-size: 1.04rem;
  transition: box-shadow 0.18s, background 0.2s;
}
.services-snapshot .service-highlights li:hover {
  background: var(--creative-3);
  color: var(--white);
  box-shadow: 0 8px 24px 0 rgba(38,198,218,.10);
}

/* Case Study Highlights - artistic cards */
.case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}
.case-study-card {
  background: var(--white);
  border-radius: 19px;
  box-shadow: var(--shadow);
  padding: 36px 28px 30px 28px;
  flex: 1 1 320px;
  min-width: 245px;
  max-width: 430px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.case-study-card:hover {
  box-shadow: 0 12px 32px rgba(222,78,107,0.09);
  transform: translateY(-9px) scale(1.025);
}
.case-study-card h3 {
  color: var(--accent-dark);
  font-size: 1.22rem;
}
.case-study-card ul li {
  margin-bottom: 6px;
  color: var(--creative-4);
  font-size: 1.04rem;
}
.key-metrics {
  margin-top: 32px;
}
.key-metrics ul {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: flex-start;
  margin-top: 4px;
}
.key-metrics li {
  background: var(--creative-3);
  color: var(--white);
  font-weight: 600;
  border-radius: 14px;
  padding: 13px 19px;
  min-width: 110px;
}

/* Content grid & text-image sections */
.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;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: 17px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 25px 19px;
  transition: box-shadow 0.14s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 8px 23px 0 rgba(46,168,74,0.08);
  transform: translateY(-7px) scale(1.03);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* Testimonial Slider & Cards */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 22px 0;
  align-items: center;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  background: var(--white);
  color: var(--black);
  border-radius: 19px;
  box-shadow: var(--shadow);
  padding: 20px 36px 20px 27px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 450px;
  transition: box-shadow 0.16s, transform 0.15s;
  margin-bottom: 20px;
  text-align: left;
  position: relative;
}
.testimonial-card p {
  color: var(--creative-4);
  font-size: 1.13rem;
  line-height: 1.7;
  margin: 0;
}
.customer-name {
  color: var(--primary);
  font-weight: bold;
  font-size: .99rem;
}
.testimonial-card:before {
  content: '“';
  color: var(--creative-1);
  font-size: 2.5rem;
  opacity: .25;
  left: 10px;
  top: 8px;
  position: absolute;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card:after {
  content: '';
  position: absolute;
  right: 15px;
  bottom: 13px;
  width: 36px;
  height: 5px;
  background: var(--accent);
  border-radius: 4px;
}
.testimonial-card:hover {
  box-shadow: 0 10px 28px 0 rgba(222,78,107,0.07), 0 6px 14px rgba(20,66,106,0.08);
  transform: translateY(-3px) scale(1.01);
}
.client-logos {
  display: flex;
  gap: 28px;
  margin-top: 25px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.client-logos img {
  height: 36px;
  opacity: 0.85;
  transition: opacity 0.14s, transform 0.14s;
}
.client-logos img:hover {
  opacity: 1;
  transform: scale(1.07);
}

/* -------------
   BLOG LAYOUTS
--------------- */
.blog-post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.blog-post-grid article {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 25px 18px 22px 23px;
  flex: 1 1 260px;
  min-width: 210px;
  max-width: 350px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.17s, transform 0.15s;
}
.blog-post-grid article:hover {
  box-shadow: 0 8px 17px 0 rgba(19,66,106,0.07);
  transform: translateY(-4px) scale(1.025);
}
.blog-post-grid h3 {
  color: var(--accent-dark);
  font-size: 1.11rem;
}
.tags-categories {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.tags-categories span {
  background: var(--creative-3);
  color: var(--white);
  border-radius: 13px;
  padding: 5px 13px;
  font-size: 0.85rem;
  margin-bottom: 4px;
}
.btn-link {
  color: var(--creative-1);
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.17s;
  font-size: 1rem;
  display: inline-block;
  margin-top: 7px;
}
.btn-link:hover, .btn-link:focus {
  color: var(--accent);
}

/* FAQ List */
.faq-list dt {
  font-weight: 700;
  color: var(--creative-1);
  margin-bottom: 4px;
  margin-top: 17px;
  font-size: 1.04rem;
}
.faq-list dd {
  margin-left: 7px;
  margin-bottom: 7px;
  color: var(--primary);
}

/* Footer */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 44px 6% 22px 6%;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 26px;
  align-items: flex-start;
}
.footer-nav nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--white);
  opacity: 0.93;
  font-size: 1rem;
  padding: 2px 0;
  transition: color 0.13s, opacity 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--creative-1);
  opacity: 1;
}
.footer-contact {
  font-size: .95rem;
  color: var(--creative-5);
  margin-bottom: 9px;
  max-width: 320px;
  line-height: 1.65;
}
.footer-contact img {
  height: 16px;
  margin-right: 7px;
  position: relative;
  top: 3px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: .92rem;
  color: var(--creative-2);
  margin-top: 11px;
}
.footer-brand img {
  height: 31px;
}

/* --- Cookie Consent Banner --- */
#cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  z-index: 1600;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 -4px 16px 0 rgba(20,66,106,0.09);
  padding: 18px 20px 22px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: center;
  font-size: 1rem;
  transition: transform .37s cubic-bezier(.86,.01,.34,1), opacity .38s;
  opacity: 1;
  transform: translateY(0);
}
#cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
#cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border-radius: 24px;
  padding: 9px 26px;
  background: var(--white);
  color: var(--primary);
  border: none;
  box-shadow: 0 2px 7px 0 rgba(0,0,0,0.04);
  margin-left: 5px;
  transition: background 0.17s, color 0.17s, box-shadow 0.13s, transform 0.14s;
}
.cookie-btn.accept {
  background: var(--accent);
  color: var(--white);
}
.cookie-btn.accept:hover { background: var(--creative-1); }
.cookie-btn.reject {
  color: var(--primary);
  background: var(--creative-5);
}
.cookie-btn.reject:hover {
  background: var(--creative-2);
  color: var(--primary);
}
.cookie-btn.settings {
  background: var(--creative-2);
  color: var(--primary);
}
.cookie-btn.settings:hover { background: var(--accent); color: var(--white); }

/* Cookie Settings Modal */
#cookie-settings-modal {
  position: fixed;
  z-index: 1900;
  background: rgba(0,0,0,0.32);
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  display: flex;
  pointer-events: none;
  opacity: 0;
  transition: opacity .32s, pointer-events .31s;
}
#cookie-settings-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: var(--white);
  color: var(--primary);
  border-radius: 16px;
  box-shadow: 0 8px 38px rgba(20,66,106,0.16), 0 2px 13px rgba(0,0,0,0.07);
  max-width: 410px;
  width: 98%;
  padding: 38px 31px 26px 33px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal-content h3 {
  font-size: 1.25rem;
}
.cookie-modal-category {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category-title {
  flex: 1 1 auto;
  font-weight: bold;
  color: var(--accent);
}
.cookie-toggle {
  width: 40px; height: 22px;
  border-radius: 20px;
  background: var(--creative-5);
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background .19s;
}
.cookie-toggle.enabled { background: var(--accent); }
.cookie-toggle-inner {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--white);
  position: absolute;
  left: 2px;
  top: 2px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: left .19s;
}
.cookie-toggle.enabled .cookie-toggle-inner { left: 20px; }
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 11px;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  right: 11px;
  top: 12px;
  background: transparent;
  font-size: 1.7rem;
  color: var(--primary);
  cursor: pointer;
}
.cookie-modal-close:hover { color: var(--creative-1); }

/* ------ Responsive & Mobile-First Adjustments ------ */
@media (max-width: 1084px) {
  .features .feature-grid li,
  .case-study-card,
  .blog-post-grid article {
    min-width: 180px;
    max-width: 99vw;
  }
}
@media (max-width: 800px) {
  .features .feature-grid,
  .services-snapshot .service-highlights,
  .card-container,
  .content-grid,
  .case-study-list,
  .benefit-grid,
  .blog-post-grid,
  .faq-list,
  .client-logos {
    flex-direction: column;
    gap: 20px;
    align-items: stretch !important;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .cta {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 30px 0 34px 0;
  }
}
@media (max-width: 700px) {
  .container,
  .content-wrapper {
    max-width: 99vw;
    padding: 0 6px;
  }
  .section {
    padding: 26px 6px;
    margin-bottom: 40px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .hero, .about-hero, .services-hero, .case-studies-hero, .resources-hero, .contact-hero, .blog-hero, .thank-you { padding: 32px 0 20px 0; }
}
@media (max-width: 600px) {
  header .container {
    flex-direction: row;
    height: auto;
    padding: 9px 5px;
  }
  .footer-nav nav {
    flex-direction: column;
    gap: 9px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .testimonial-card, .case-study-card {
    padding: 15px 8px 15px 8px;
    min-width: 0;
  }
}

/* --- Utility --- */
.d-none { display: none !important; }
.mt-2 { margin-top: 18px !important; }
.mt-4 { margin-top: 32px !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }

/* Layout-specific alignment (MANDATORY patterns) */
.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; }

/* --- END --- */
