/* 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-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #113153;
  background: #fff;
  min-height: 100vh;
  line-height: 1.6;
}

*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

/*----- BRAND VARIABLES: fallback for no CSS vars support -----*/
:root {
  --color-primary: #113153;
  --color-secondary: #F2B134;
  --color-accent: #E5EEF4;
  --color-light: #fff;
  --color-dark: #113153;
  --color-grey: #e9ecef;
  --color-muted: #677792;
  --color-valid: #49be7e;
  --color-error: #e74c3c;
  --shadow-main: 0 4px 24px rgb(17 49 83 / 8%);
  --border-radius: 16px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/*-----------------------------------*/
/* TYPOGRAPHY & HEADINGS             */
/*-----------------------------------*/
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.75rem;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-primary);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-primary);
  margin-bottom: 10px;
  letter-spacing: -0.25px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

p, li, span, a, .text-section {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark);
  max-width: 100%;
}
strong { font-weight: 700; }
em, i { font-style: italic; }

.text-section {
  max-width: 680px;
}

/*------------------------------*/
/* GLOBAL LAYOUT CONTAINERS     */
/*------------------------------*/
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  align-items: flex-start;
}

/* Section pattern */
section,
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: var(--border-radius);
}
@media (max-width: 768px) {
  section, .section {
    margin-bottom: 40px;
    padding: 28px 8px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/*----------------------------------*/
/* HEADER, NAVIGATION, CTA BUTTONS  */
/*----------------------------------*/
header {
  width: 100%;
  background: #fff;
  padding: 0 24px;
  min-height: 72px;
  box-shadow: 0 2px 16px rgba(17,49,83,0.06);
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
header > a > img {
  height: 40px;
  transition: transform 0.15s;
}
header > a:hover > img { transform: scale(1.05); }

header nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  position: relative;
  padding: 8px 0;
  transition: color 0.15s;
}
header nav a:hover,
header nav a:focus {
  color: var(--color-secondary);
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  padding: 12px 40px;
  margin-left: 20px;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 16px 2px #f2b13433;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 18px 0px #11315344;
}
button:active {
  filter: brightness(0.97);
}

@media (max-width: 900px) {
  header nav {
    gap: 18px;
  }
  .cta-button {
    padding: 10px 24px;
    font-size: 0.99rem;
    margin-left: 10px;
  }
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 98;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 50%;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px #F2B13433;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: #fff;
}

@media (max-width: 1050px) {
  header nav { display: none; }
  .cta-button { display: none; }
  .mobile-menu-toggle { display: flex; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(17,49,83,0.96);
  z-index: 999;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.77,.2,.14,.96);
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: flex-start;
  padding-top: 36px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  position: absolute;
  top: 18px; right: 26px;
  font-size: 2.2rem;
  color: var(--color-secondary);
  background: none;
  border: none;
  z-index: 1002;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #fff; }
.mobile-nav {
  display: flex; flex-direction: column; gap: 30px;
  margin-top: 70px; margin-left: 10vw;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 6px 0;
  transition: color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus { color: var(--color-secondary); }
@media (max-width: 500px) {
  .mobile-nav { margin-left: 24px; }
  .mobile-nav a { font-size: 1.25rem; }
}

/*----------------------------------*/
/* HERO SECTIONS                    */
/*----------------------------------*/
.hero {
  background: var(--color-accent);
  border-radius: var(--border-radius);
  min-height: 280px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-main);
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  min-height: 220px;
  gap: 16px;
}
.hero h1, .hero p { color: var(--color-primary); }
@media (max-width: 900px) {
  .hero { min-height: 200px; }
  .hero h1 { font-size: 2.1rem; }
}

/*----------------------------------*/
/* FLEXBOX CARD & FEATURE LAYOUTS   */
/*----------------------------------*/
.features {
  background: #fff;
  box-shadow: var(--shadow-main);
}
.feature-grid, .news-list, .company-list, .trend-summary-grid, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
}
.feature-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 15px;
  background: var(--color-accent);
  border-radius: var(--border-radius);
  padding: 28px 22px 18px 22px;
  box-shadow: 0 2px 8px #E5EEF480;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 345px;
  margin-bottom: 20px;
  transition: transform 0.17s, box-shadow 0.18s;
  border: 2px solid transparent;
}
.feature-item:hover {
  transform: translateY(-6px) scale(1.035);
  box-shadow: 0 10px 24px #11315320;
  border-color: var(--color-secondary);
}
.feature-item img {
  width: 48px; height: 48px; margin-bottom: 12px;
}
.feature-item h3 {
  margin-bottom: 6px; color: var(--color-primary);
}

.news-list article {
  flex: 1 1 260px;
  background: var(--color-accent);
  padding: 24px 20px 14px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-main);
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.15s;
  display: flex; flex-direction: column; gap: 8px;
  border-left: 6px solid var(--color-secondary);
}
.news-list article h3 { font-size: 1.33rem; line-height: 1.17; }
.news-list article .category {
  display: inline-block;
  font-size: 0.89rem;
  font-family: var(--font-display);
  color: #fff;
  background: var(--color-secondary);
  padding: 3px 14px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-top: 10px;
}
.news-list article a { color: var(--color-primary); text-decoration: underline; font-weight: 600; }
.news-list article a:hover { color: var(--color-secondary); text-decoration: none; }

.company-profile {
  background: var(--color-accent);
  border-radius: var(--border-radius);
  padding: 24px 18px 18px 18px;
  min-width: 210px;
  max-width: 360px;
  flex: 1 1 240px;
  box-shadow: 0 2px 8px #e5eef444;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  border-left: 6px solid var(--color-secondary);
  transition: box-shadow 0.18s;
}
.company-profile:hover { box-shadow: 0 6px 18px #11315322; }
.company-profile h3 { margin-bottom: 4px; }
.company-profile ul {
  margin: 6px 0 2px 0; padding-left: 14px;
}
.success-story {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-body);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 0.98rem;
  font-weight: 700;
  margin-top: 10px;
  display: inline-block;
}

.trend-summary-grid {
  gap: 28px;
}
.trend-card {
  background: var(--color-accent);
  border-radius: var(--border-radius);
  padding: 26px 20px 16px 20px;
  box-shadow: 0 2px 8px #E5EEF480;
  min-width: 210px;
  max-width: 310px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.trend-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 22px #11315318;
}

.sector-snapshots, .regional-analyses, .news-categories {
  margin-top: 26px;
  background: var(--color-grey);
  border-radius: var(--border-radius);
  padding: 20px 18px;
  font-size: 1rem;
}
.sector-snapshots ul, .regional-analyses ul, .news-categories ul {
  margin-top: 8px;
  padding-left: 19px;
}

.news-categories ul li, .sector-snapshots ul li, .regional-analyses ul li { margin-bottom: 6px; }
.news-categories ul li a { color: var(--color-primary); font-weight: 700; font-family: var(--font-display); }
.news-categories ul li a:hover { color: var(--color-secondary); text-decoration: underline; }

/* Testimonials */
.testimonial-grid {
  display: flex; flex-wrap: wrap; gap: 24px; width: 100%;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 28px 24px 20px 24px;
  background: #fff;
  color: var(--color-primary);
  font-family: var(--font-body);
  border-radius: var(--border-radius);
  box-shadow: 0 6px 32px #11315314;
  max-width: 390px;
  margin-bottom: 20px;
  border-top: 6px solid var(--color-secondary);
  font-size: 1.07rem;
  transition: box-shadow 0.18s, transform 0.16s;
}
.testimonial-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 40px #11315322;
}
.testimonial-card p {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.13rem;
  font-weight: 700;
  text-align: center;
}
.testimonial-card span {
  font-family: var(--font-body);
  color: var(--color-muted);
  font-size: 0.98rem;
  font-weight: 500;
  text-align: center;
}


/* Service list (analytics page) */
.service-list {
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between;
}
.service-list li {
  background: var(--color-accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-main);
  padding: 22px 18px 14px 18px;
  margin-bottom: 20px;
  min-width: 210px; flex: 1 1 220px;
  display: flex; flex-direction: column; gap: 8px;
  border-left: 6px solid var(--color-secondary);
  font-size: 1.01rem;
}
.service-list li h3 { font-size: 1.15rem; }


/* Timeline/History (about) */
.history-timeline {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px;
}

/* Team overview (about) */
.team-overview {
  background: var(--color-accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-main);
  padding: 22px 18px 18px 18px;
  margin-top: 12px;
}

/* Contact Section */
.contact-details {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 10px;
}
.contact-details img { width: 20px; height: 20px; margin-right: 7px; vertical-align: middle; }

/* Legal page sections */
.legal {
  background: var(--color-accent);
  box-shadow: var(--shadow-main);
  border-radius: var(--border-radius);
}


/*--------------------*/
/* CTA SECTIONS       */
/*--------------------*/
.cta {
  background: var(--color-primary);
  box-shadow: 0 4px 24px #11315318;
  border-radius: var(--border-radius);
  display: flex; align-items: center; justify-content: center;
}
.cta .content-wrapper { align-items: center; }
.cta h2 {
  color: var(--color-secondary);
  text-shadow: 0 4px 20px #11315311;
  margin-bottom: 16px;
}
.cta .cta-button {
  margin-left: 0;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 900;
}
.cta .cta-button:hover {
  background: #fff;
  color: var(--color-primary);
}

/*------------------------*/
/* FOOTER                 */
/*------------------------*/
footer {
  background: var(--color-accent);
  border-top: 4px solid var(--color-primary);
  margin-top: 40px;
  padding: 36px 0 0 0;
  width: 100%;
}
footer .container {
  display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between;
  gap: 32px;
  padding-bottom: 24px;
}
footer nav {
  display: flex; flex-direction: column; gap: 10px;
}
footer nav a {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1rem;
  letter-spacing: 0.025em;
  transition: color 0.13s;
}
footer nav a:hover { color: var(--color-secondary); }
.footer-contact {
  display: flex; align-items: flex-start; gap: 20px;
}
.footer-contact img {
  width: 48px;
  height: 48px;
}
.footer-contact .text-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--color-primary);
  font-size: 1rem;
}
.footer-contact .text-section img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 5px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .footer-contact { flex-direction: column; align-items: flex-start; }
}

/*---------------------------*/
/* RESPONSIVE FLEX CHANGES   */
/*---------------------------*/
@media (max-width: 900px) {
  .feature-grid, .company-list, .trend-summary-grid, .testimonial-grid, .service-list, .news-list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .company-list, .trend-summary-grid, .testimonial-grid, .service-list, .news-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .content-wrapper { gap: 20px; }
  .testimonial-card, .feature-item, .company-profile, .trend-card, .service-list li, .news-list article {
    max-width: 100%; min-width: 0;
  }
}

/* Text-image and section pattern */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* Content grid utility */
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.card-content { display: flex; flex-direction: column; justify-content: center; gap: 10px; }

/*--------------------*/
/* GENERAL BUTTONS    */
/*--------------------*/
button, .btn {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 26px;
  border-radius: 999px;
  border: none;
  transition: background .15s, color .15s, box-shadow .16s;
  cursor: pointer;
}
button:hover, .btn:hover, button:focus, .btn:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* Lists */
ul, ol { padding-left: 18px; margin-bottom: 16px; }
ul li, ol li { margin-bottom: 4px; }

/* Tables (if any) */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 16px 0;
}
td, th {
  padding: 12px 10px;
  border: 1px solid #dbe5ef;
}

/*------------------------------*/
/* FORM ELEMENTS (for contact)  */
/*------------------------------*/
input[type="text"], input[type="email"], textarea {
  border: 2px solid var(--color-accent);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
  color: var(--color-primary);
  font-size: 1rem;
  transition: border 0.13s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--color-secondary);
  background: #f9f6e7;
}

/*-------------- MODAL STYLE --------------*/
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(17,49,83,0.82);
  z-index: 2002;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active { display: flex; }
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 55px #11315344;
  padding: 36px 24px 28px 24px;
  min-width: 300px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  animation: fade-in 0.22s ease-in;
}
@keyframes fade-in {
  0% { opacity: 0; transform: scale(0.97); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal h3 {
  margin-bottom: 6px;
  font-size: 1.32rem;
  color: var(--color-primary);
}
.cookie-modal .cookie-category {
  display: flex; align-items: center; gap: 16px; margin-bottom: 12px;
}
.cookie-modal label {
  font-size: 1.07rem;
  color: var(--color-primary);
  font-weight: 600;
  display: flex; align-items: center;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-secondary);
  width: 22px;
  height: 22px;
  margin-right: 10px;
}
.cookie-modal-actions {
  display: flex; gap: 16px;
}

/*------------------------------*/
/* COOKIE CONSENT BANNER        */
/*------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -6px 24px #11315330;
  padding: 28px 18px 18px 18px;
  z-index: 2000;
  display: flex; flex-direction: column; align-items: center;
  gap: 18px;
  width: 100%;
  animation: slideUp 0.38s cubic-bezier(.47,1.47,.56,1.11);
}
@keyframes slideUp {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1rem;
}
.cookie-banner-actions {
  display: flex; gap: 18px; margin-top: 8px;
}
.cookie-banner button, .cookie-banner .btn, .cookie-banner .cookie-settings-btn {
  padding: 12px 27px;
  font-weight: 800;
  border-radius: 999px;
  font-family: var(--font-display);
  border: none;
  transition: background 0.13s, color 0.13s, box-shadow .15s;
}
.cookie-banner .accept-btn {
  background: var(--color-secondary); color: var(--color-primary);
}
.cookie-banner .accept-btn:hover {
  background: var(--color-primary); color: #fff;
}
.cookie-banner .reject-btn {
  background: #e7eff3; color: var(--color-primary);
}
.cookie-banner .cookie-settings-btn {
  background: var(--color-primary); color: #fff;
}
.cookie-banner .reject-btn:hover, .cookie-banner .cookie-settings-btn:hover {
  background: var(--color-secondary); color: var(--color-primary);
}

@media (max-width: 520px) {
  .cookie-banner {
    padding-left: 8px; padding-right: 8px;
    font-size: 0.9rem;
  }
  .cookie-banner-actions { flex-direction: column; gap: 9px; }
}

/*-------------------------------*/
/* INTERACTIVE HOVER EFFECTS     */
/*-------------------------------*/
a:not(.cta-button):not(.btn):hover, a:not(.cta-button):not(.btn):focus {
  color: var(--color-secondary);
  text-decoration: underline;
}

/*--------------------------------*/
/* SCROLLBAR (optional modern)    */
/*--------------------------------*/
::-webkit-scrollbar-track { background: var(--color-accent); }
::-webkit-scrollbar-thumb { background: var(--color-secondary); border-radius: 8px; }
::-webkit-scrollbar { width: 7px; background: var(--color-accent); }

/*-----------------------------------*/
/* Z-INDEX SAFEGUARDING FOR OVERLAYS */
/*-----------------------------------*/
.mobile-menu,
.cookie-modal-overlay,
.cookie-banner { z-index: 2000; }

/*-----------------------------------*/
/* SPACING OVERRIDES & CONSISTENCY   */
/*-----------------------------------*/
section, .section,
.features, .profile-highlights, .trend-insights, .story,
.legal, .contact-info {
  margin-bottom: 60px; padding: 40px 20px;
}
@media (max-width: 768px) {
  section, .section, .features, .profile-highlights, .trend-insights, .story, .legal, .contact-info {
    margin-bottom: 36px; padding: 26px 8px;
  }
}
.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; }
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 16px; }
}
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/*-----------------------------------------*/
/* UTILITY CLASSES FOR SPACE/STYLES        */
/*-----------------------------------------*/
.mt-2 { margin-top: 8px !important; }
.mt-4 { margin-top: 16px !important; }
.mt-6 { margin-top: 24px !important; }
.mb-2 { margin-bottom: 8px !important; }
.mb-4 { margin-bottom: 16px !important; }
.mb-6 { margin-bottom: 24px !important; }
.text-center { text-align: center !important; }
.fw-bold { font-weight: 700 !important; }
.fw-extra { font-weight: 800 !important; }

/*-----------------------------------------*/
/* ANIMATION UTILITIES                     */
/*-----------------------------------------*/
@keyframes pop-in {
  0% { transform: scale(0.97); opacity: 0.6; }
  50% { transform: scale(1.025); }
  100% { transform: scale(1); opacity: 1; }
}
.pop-in {
  animation: pop-in 0.32s cubic-bezier(.42,1.2,.77,1.07);
}

/*-----------------------------------------*/
/* GENERAL RESPONSIVE ADAPTION             */
/*-----------------------------------------*/
@media (max-width: 500px) {
  html { font-size: 15px; }
  h1, .h1 { font-size: 1.55rem; }
  h2, .h2 { font-size: 1.18rem; }
}
