/* ============================================
   DEON DIGITAL — Landing Page Stylesheet
   Pure CSS, no JavaScript dependencies
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --brand-strongest: #07492e;
  --brand-strong: #0c6b43;
  --brand-accent: #14ac6d;
  --brand-secondary-light: #d3ebd9;
  --brand-secondary-border: #c0d9c7;
  --brand-muted: #7c9883;

  /* Neutral Colors */
  --bg-page: #f3f5f7;
  --bg-card: #e9ecee;
  --bg-white: #ffffff;
  --border-subtle: #dbe1e5;
  --text-dark: #1c242a;
  --text-body: #435360;
  --text-white: #ffffff;

  /* Accent Colors */
  --cta-yellow: #f8d138;
  --cta-yellow-hover: #e6c02e;
  --red-accent: #ef3434;

  /* Typography */
  --font-family: "Roboto", sans-serif;

  /* Spacing */
  --section-gap: 140px;
  --section-gap-md: 96px;
  --section-gap-sm: 56px;
  --container-max: 1216px;
  --container-padding: 24px;

  /* Radii */
  --radius-card: 20px;
  --radius-btn: 30px;
  --radius-sm: 8px;
  --radius-md: 10px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: var(--brand-strong);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--brand-accent);
}

ul {
  list-style: none;
}

strong {
  font-weight: 700;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ---------- Typography ---------- */
.section-overline {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-strong);
  margin-bottom: 8px;
}

.section-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--brand-strongest);
  text-align: center;
  margin-bottom: 24px;
}

.section-title--left {
  text-align: left;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-body);
  text-align: center;
  margin-bottom: 40px;
}

.text-accent {
  color: var(--brand-accent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--brand-strong);
  color: var(--text-white);
  border-color: var(--brand-strong);
}

.btn--primary:hover {
  background: var(--brand-strongest);
  border-color: var(--brand-strongest);
  color: var(--text-white);
}

.btn--outline {
  background: transparent;
  color: var(--brand-strong);
  border-color: var(--brand-strong);
}

.btn--outline:hover {
  background: var(--brand-strong);
  color: var(--text-white);
}

.btn--yellow {
  background: var(--cta-yellow);
  color: var(--text-dark);
  border-color: var(--cta-yellow);
}

.btn--yellow:hover {
  background: var(--cta-yellow-hover);
  border-color: var(--cta-yellow-hover);
}

.btn--sm {
  font-size: 16px;
  padding: 10px 24px;
}

.btn--lg {
  font-size: 18px;
  padding: 16px 48px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px var(--container-padding);
}

.navbar__logo img {
  height: 40px;
  width: auto;
}

.navbar__toggle-input {
  display: none;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links {
  display: flex;
  gap: 28px;
}

.navbar__links a {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  padding: 8px 0;
  position: relative;
}

.navbar__links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-strong);
  transition: width 0.2s ease;
}

.navbar__links a:hover {
  color: var(--brand-strong);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__cta {
  font-size: 16px;
  padding: 10px 24px;
}

/* Dropdown */
.navbar__dropdown {
  position: relative;
}

.navbar__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--bg-white);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  z-index: 100;
  list-style: none;
}

.navbar__dropdown:hover .navbar__dropdown-menu {
  display: block;
}

.navbar__dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  color: var(--text-dark);
  white-space: nowrap;
}

.navbar__dropdown-menu li a:hover {
  background: var(--bg-light, #f5f5f5);
  color: var(--brand-strong);
}

.navbar__dropdown-menu li a::after {
  display: none;
}

/* ============================================
   HERO
   ============================================ */
.hero-new {
  background: radial-gradient(
    ellipse 130% 90% at 20% 40%,
    #0a3d28 0%,
    #07331f 40%,
    #052417 70%,
    #031a10 100%
  );
  padding: 0;
  overflow: hidden;
}

.hero-new .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 560px;
  padding-top: 72px;
  padding-bottom: 72px;
}

/* --- Left column: text --- */
.hero-new__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-new__title {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--text-white);
}

.hero-new__subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

/* --- Audience rotation --- */
.hero-new__audience {
  font-size: 15px;
  font-weight: 500;
  color: var(--brand-accent);
  height: 22px;
  overflow: hidden;
  position: relative;
}

.hero-new__audience-track {
  display: flex;
  flex-direction: column;
  animation: audience-rotate 12s ease-in-out infinite;
}

.hero-new__audience-item {
  height: 22px;
  line-height: 22px;
  white-space: nowrap;
}

@keyframes audience-rotate {
  0%,
  18% {
    transform: translateY(0);
  }
  25%,
  43% {
    transform: translateY(-22px);
  }
  50%,
  68% {
    transform: translateY(-44px);
  }
  75%,
  93% {
    transform: translateY(-66px);
  }
  100% {
    transform: translateY(-88px);
  }
}

/* --- CTAs --- */
.hero-new__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Light outline button for dark background */
.btn--outline-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.6);
}

/* --- Right column: animation container --- */
.hero-new__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.hero-new__visual canvas,
.hero-new__visual video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
}

/* =============================================
       PROOF BAR — stats strip below hero
       ============================================= */
.proof-bar {
  background: var(--brand-strongest);
  padding: 28px 0;
}

.proof-bar__grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.proof-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.proof-bar__item strong {
  color: var(--text-white);
  font-weight: 500;
}

.proof-bar__sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 18px;
  user-select: none;
}

/* =============================================
       STARTUP LINE — right below proof bar
       ============================================= */
.startup-line {
  text-align: center;
  padding: 40px 0 48px;
}

.startup-line__text {
  font-size: 19px;
  font-weight: 400;
  color: var(--text-body);
  font-style: italic;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.startup-line__text strong {
  color: var(--brand-strongest);
  font-style: normal;
}

/* =============================================
       RESPONSIVE
       ============================================= */
@media (max-width: 1024px) {
  .hero-new__title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .hero-new .container {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .hero-new__title {
    font-size: 34px;
  }
  .hero-new__subtitle {
    font-size: 16px;
  }
  .hero-new__visual {
    aspect-ratio: 16 / 10;
  }
  .proof-bar__grid {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .proof-bar__sep {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-new__title {
    font-size: 28px;
  }
  .hero-new__ctas {
    flex-direction: column;
  }
  .hero-new__ctas .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ============================================
   STATS
   ============================================ */
.stats {
  padding: 64px 0;
}

/* ============================================
   SOLUTIONS
   ============================================ */
.solutions {
  padding: var(--section-gap-md) 0 var(--section-gap);
}

.solutions .section-overline,
.solutions .section-title {
  text-align: center;
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.solutions__card {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solutions__card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-strongest);
}

.solutions__card-text {
  font-size: 16px;
  color: var(--text-body);
  flex: 1;
}

.solutions__card--cta {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
}

.solutions__card--cta .solutions__card-title,
.solutions__card--cta .solutions__card-text {
  color: var(--text-white);
}

/* ============================================
   TESTIMONIAL CAROUSEL
   ============================================ */
.testimonial {
  padding: 0 0 var(--section-gap-sm);
}

.testimonial__carousel {
  display: grid;
}

.testimonial__slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
  pointer-events: none;
  height: 100%;
}

.testimonial__slide--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.testimonial__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--brand-secondary-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 100%;
}

.testimonial__quote {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.testimonial__quote blockquote {
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.testimonial__quote blockquote p {
  font-size: 28px;
  line-height: 1.55;
  color: var(--brand-strongest);
  font-weight: 400;
}

.testimonial__footer {
  display: flex;
  align-items: center;
  gap: 24px;
}

.testimonial__arrows {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.testimonial__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--brand-strong);
  background: transparent;
  color: var(--brand-strong);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.testimonial__arrow:hover {
  background: var(--brand-strong);
  color: var(--text-white);
}

.testimonial__author {
  display: flex;
  flex-direction: column;
}

.testimonial__author strong {
  display: block;
  font-size: 18px;
  color: var(--brand-strongest);
}

.testimonial__author span {
  font-size: 16px;
  color: var(--text-body);
}

.testimonial__image {
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   PARTNERS
   ============================================ */
.partners {
  padding: 32px 0 var(--section-gap-md);
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  overflow: hidden;
}

.partners__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: scroll-partners 30s linear infinite;
}

.partners__logo {
  flex-shrink: 0;
  height: 48px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners__logo span {
  font-size: 20px;
  font-weight: 500;
  color: var(--brand-muted);
  white-space: nowrap;
  opacity: 0.7;
}

.partners__logo img {
  height: 48px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.partners__logo:hover img {
  opacity: 1;
}

@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partners__cta {
  text-align: center;
  margin-top: 32px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: var(--section-gap-md) 0 var(--section-gap);
  background: var(--bg-white);
}

.how-it-works__intro {
  font-size: 20px;
  color: var(--text-body);
  margin-bottom: 24px;
}

.how-it-works__body {
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ============================================
   VIDEO SERIES
   ============================================ */
/* Video series carousel elements (used inside .how-it-works) */

.video-series__actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* --- Carousel wrapper --- */
.video-series__carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.video-series__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0;
}

.video-series__track::-webkit-scrollbar {
  display: none;
}

.video-series__item {
  flex: 0 0 calc(50% - 12px);
  min-width: calc(50% - 12px);
  scroll-snap-align: start;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #000;
}

.video-series__item iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}

.video-series__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-white);
  padding: 12px 16px;
  background: var(--brand-strongest);
}

/* --- Arrow buttons --- */
.video-series__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-subtle);
  background: var(--bg-white);
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
}

.video-series__arrow:hover {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
  color: var(--text-white);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--section-gap-md) 0 var(--section-gap);
}

.faq__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.faq__header {
  position: sticky;
  top: 100px;
}

.faq__header .section-title {
  margin-bottom: 32px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item {
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: background 0.2s ease;
}

.faq__item[open] {
  background: var(--brand-secondary-light);
  border-color: var(--brand-secondary-border);
}

.faq__item summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 56px;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::marker {
  display: none;
  content: "";
}

.faq__category {
  font-size: 12px;
  font-weight: 500;
  color: var(--brand-strong);
  display: block;
  width: 100%;
  margin-bottom: -4px;
}

.faq__question {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
}

.faq__icon {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--text-body);
  border-radius: 1px;
  top: 50%;
  left: 50%;
}

.faq__icon::before {
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 2px;
  height: 16px;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq__item[open] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq__answer {
  padding: 0 24px 20px;
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.65;
}

.faq__more {
  align-self: center;
  margin-top: 16px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 0 0 var(--section-gap);
}

.contact__inner {
  background: var(--brand-strongest);
  border-radius: var(--radius-card);
  padding: 80px;
  text-align: center;
}

.contact__title {
  font-size: 48px;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 16px;
}

.contact__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
}

.contact__subtitle strong {
  color: var(--text-white);
}

.contact__form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact__field input,
.contact__field textarea {
  width: 100%;
  padding: 14px 20px;
  font-family: var(--font-family);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s ease;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: var(--brand-muted);
}

.contact__field input:focus,
.contact__field textarea:focus {
  border-color: var(--brand-accent);
}

.contact__field textarea {
  resize: vertical;
  min-height: 100px;
}

.contact__field--full {
  width: 100%;
}

.contact__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 8px;
}

.contact__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.contact__consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--brand-accent);
}

.contact__consent a {
  color: var(--cta-yellow);
  text-decoration: underline;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.ct-page {
  padding: 40px 0 var(--section-gap);
}

.ct-page__layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 8px;
}

.ct-page__title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--brand-strongest);
  margin-bottom: 16px;
}

.ct-page__subtitle {
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 48px;
}

.ct-page__details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ct-page__detail-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-strong);
  margin-bottom: 8px;
}

.ct-page__detail p {
  font-size: 16px;
  color: var(--text-body);
}

.ct-page__social {
  display: flex;
  gap: 12px;
}

.ct-page__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-strongest);
  color: var(--text-white);
  transition: background 0.2s ease;
}

.ct-page__social-link:hover {
  background: var(--brand-strong);
  color: var(--text-white);
}

/* Form card */
.ct-page__form-card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  padding: 48px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.ct-page__form-card .contact__form {
  max-width: none;
}

.ct-page__form-card .contact__field input,
.ct-page__form-card .contact__field textarea {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  color: var(--text-dark);
}

.ct-page__form-card .contact__field input::placeholder,
.ct-page__form-card .contact__field textarea::placeholder {
  color: #999;
}

.ct-page__form-title {
  font-size: 32px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.ct-page__form-subtitle {
  font-size: 16px;
  color: var(--text-body);
  margin-bottom: 32px;
  text-align: center;
}

.ct-page__form-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.ct-page__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  cursor: pointer;
}

.ct-page__consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--brand-accent);
}

.ct-page__consent a {
  color: var(--brand-strong);
  text-decoration: underline;
}

.ct-page__submit {
  width: 100%;
}

@media (max-width: 900px) {
  .ct-page__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ct-page__title {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .ct-page__form-card {
    padding: 28px 20px;
  }

  .ct-page__form-title {
    font-size: 24px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 40px;
}

.footer__tagline {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 64px;
}

.footer__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 24px;
}

.footer__links {
  display: flex;
  gap: 32px;
}

.footer__links a {
  font-size: 18px;
  color: var(--text-body);
}

.footer__links a:hover {
  color: var(--brand-strong);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 16px;
  color: var(--text-body);
}

.footer__social {
  display: flex;
  gap: 24px;
}

.footer__social a {
  font-size: 16px;
  color: var(--brand-strong);
  font-weight: 500;
}

/* ============================================
   RESPONSIVE — Tablet (<=1024px)
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-gap: 80px;
  }

  .section-title {
    font-size: 36px;
  }

  .testimonial__inner {
    grid-template-columns: 1fr;
  }

  .testimonial__image {
    min-height: 280px;
  }

  .testimonial__quote blockquote p {
    font-size: 22px;
  }

  .faq__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq__header {
    position: static;
  }

  .faq__header .section-title {
    text-align: left;
  }

  .contact__inner {
    padding: 56px 40px;
  }

  .footer__tagline {
    font-size: 36px;
  }

  .footer__nav {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .footer__links {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
}

/* ============================================
   RESPONSIVE — Mobile (<=768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-gap: 64px;
    --section-gap-md: 48px;
    --section-gap-sm: 32px;
  }

  body {
    font-size: 16px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  /* --- Mobile Nav --- */
  .navbar__toggle {
    display: flex;
  }

  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 24px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }

  .navbar__toggle-input:checked ~ .navbar__menu {
    right: 0;
  }

  .navbar__toggle-input:checked ~ .navbar__toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .navbar__toggle-input:checked ~ .navbar__toggle span:nth-child(2) {
    opacity: 0;
  }

  .navbar__toggle-input:checked ~ .navbar__toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .navbar__links {
    flex-direction: column;
    gap: 20px;
  }

  .navbar__links a {
    font-size: 18px;
  }

  .navbar__dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding: 4px 0 4px 16px;
    min-width: 0;
  }

  .navbar__dropdown .navbar__dropdown-menu {
    display: block;
  }

  /* --- Hero --- */
  .hero {
    padding: 32px 0 0;
  }

  /* --- Stats --- */
  .stats {
    padding: 48px 0;
  }

  /* --- Solutions --- */
  .solutions__grid {
    grid-template-columns: 1fr;
  }

  .solutions__card {
    padding: 28px;
  }

  /* --- Partners banner: faster scroll on mobile --- */
  .partners__track {
    gap: 24px;
    animation-duration: 15s;
  }

  .partners__logo {
    padding: 0 8px;
  }

  .partners__logo img {
    height: 32px;
  }

  /* --- Video Series --- */
  .video-series__item {
    flex: 0 0 85%;
    min-width: 85%;
  }

  .video-series__arrow {
    display: none;
  }

  /* --- Testimonial --- */
  .testimonial__quote {
    padding: 32px;
  }

  .testimonial__quote blockquote p {
    font-size: 20px;
  }

  .testimonial__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* --- Contact --- */
  .contact__inner {
    padding: 40px 24px;
  }

  .contact__title {
    font-size: 30px;
  }

  .contact__row {
    grid-template-columns: 1fr;
  }

  .contact__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .contact__footer .btn {
    width: 100%;
  }

  /* --- Footer --- */
  .footer__tagline {
    font-size: 26px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .footer__legal,
  .footer__social {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* ============================================
   RESPONSIVE — Small Mobile (<=480px)
   ============================================ */
@media (max-width: 480px) {
  .section-title {
    font-size: 26px;
  }

  .footer__tagline {
    font-size: 22px;
  }
}

/* ============================================
   SOLUTIONS PAGE
   ============================================ */

/* --- Breadcrumb --- */

/* --- Page Header --- */
.sol-header {
  padding: 40px 0 32px;
}

.sol-header__title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--brand-strongest);
  margin-bottom: 16px;
}

.sol-header__subtitle {
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 720px;
}

/* --- Solution Card List --- */
.sol-list {
  padding: 0 0 40px;
}

.sol-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-top: 1px solid var(--border-subtle);
}

.sol-card:last-of-type {
  border-bottom: 1px solid var(--border-subtle);
}

/* Alternate layout: image on right */
.sol-card--reverse {
  direction: rtl;
}

.sol-card--reverse > * {
  direction: ltr;
}

/* --- Card Image / Placeholder --- */
.sol-card__image {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

/* --- Card Content --- */
.sol-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sol-card__title {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--brand-strongest);
}

.sol-card__desc {
  font-size: 16px;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.65;
}

/* --- Metadata List --- */
.sol-card__meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.sol-card__meta li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.5;
}

.sol-card__meta li strong {
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Meta icons */
.sol-card__meta-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sol-card__meta-icon--asset {
  background: var(--brand-secondary-light);
  border: 2px solid var(--brand-strong);
}

.sol-card__meta-icon--modules {
  background: var(--brand-secondary-light);
  border: 2px solid var(--brand-strong);
}

.sol-card__meta-icon--features {
  background: var(--brand-secondary-light);
  border: 2px solid var(--brand-strong);
}

.sol-card__meta-icon--compat {
  background: var(--brand-secondary-light);
  border: 2px solid var(--brand-strong);
}

.sol-card__meta-icon--timeline {
  background: var(--brand-secondary-light);
  border: 2px solid var(--brand-strong);
}

/* --- External Link Button --- */
.sol-card__link {
  align-self: flex-start;
  margin-top: 8px;
}

/* --- CTA Banner --- */
.sol-cta {
  padding: var(--section-gap-sm) 0 var(--section-gap);
}

.sol-cta__inner {
  background: var(--brand-strongest);
  border-radius: var(--radius-card);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.sol-cta__inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 500px;
  height: 100%;
  background: url("../assets/backgroundCTA.jpg") center center / contain no-repeat;
  mix-blend-mode: screen;
  opacity: 0.4;
  pointer-events: none;
}

/* Yellow accent stripe */
.sol-cta__inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--cta-yellow);
}

.sol-cta__title {
  font-size: 36px;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 8px;
}

.sol-cta__title .text-accent {
  color: var(--brand-accent);
}

.sol-cta__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.sol-cta__btn {
  background: transparent;
  color: var(--cta-yellow);
  border-color: var(--cta-yellow);
}

.sol-cta__btn:hover {
  background: var(--cta-yellow);
  color: var(--text-dark);
}

/* ============================================
   SOLUTIONS PAGE — Responsive (Tablet)
   ============================================ */
@media (max-width: 1024px) {
  .sol-header__title {
    font-size: 36px;
  }

  .sol-card {
    gap: 32px;
  }

  .sol-card__title {
    font-size: 24px;
  }

  .sol-cta__inner {
    padding: 40px 48px;
  }

  .sol-cta__title {
    font-size: 28px;
  }
}

/* ============================================
   SOLUTIONS PAGE — Responsive (Mobile)
   ============================================ */
@media (max-width: 768px) {
  .sol-header {
    padding: 24px 0 24px;
  }

  .sol-header__title {
    font-size: 30px;
  }

  .sol-header__subtitle {
    font-size: 16px;
  }

  .sol-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }

  /* Undo RTL trick on mobile — always image first */
  .sol-card--reverse {
    direction: ltr;
  }

  .sol-card__image {
    position: static;
  }

  .sol-card__title {
    font-size: 22px;
  }

  .sol-cta__inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }

  .sol-cta__inner::after {
    display: none;
  }

  .sol-cta__title {
    font-size: 24px;
  }

  .sol-cta__btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .sol-header__title {
    font-size: 26px;
  }
}

/* ============================================
   WHO WE SERVE PAGE
   ============================================ */

/* --- Industries Section --- */
.wws-industries {
  padding: 0 0 var(--section-gap-md);
}

.wws-industries__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

/* --- Industry Card --- */
.wws-card {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 0;
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 160px;
  align-items: stretch;
}

.wws-card__body {
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.wws-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wws-card__icon--white {
  background: rgba(255, 255, 255, 0.15);
}

.wws-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-strongest);
  line-height: 1.3;
}

.wws-card__desc {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.6;
}

/* Green-tinted placeholder image areas */
.wws-card__image {
  overflow: hidden;
}

.wws-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wws-solutions-link__image {
  width: 100%;
  height: 100%;
}

.wws-solutions-link__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CTA Card variant */
.wws-card--cta {
  grid-template-columns: 1fr;
  background: var(--brand-strongest);
  border-color: var(--brand-strongest);
  min-height: auto;
  position: relative;
  overflow: hidden;
}

.wws-card--cta::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 180px;
  transform: translateY(-50%);
  width: 400px;
  height: 100%;
  background: url("../assets/backgroundCTA.jpg") center center / contain no-repeat;
  mix-blend-mode: screen;
  opacity: 0.4;
  pointer-events: none;
}

.wws-card--cta::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--cta-yellow);
}

.wws-card--cta .wws-card__body {
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 24px 40px;
}

.wws-card--cta .wws-card__title {
  color: var(--text-white);
  flex: 1;
}

/* --- Check Our Solutions Link --- */
.wws-solutions-link {
  padding: 0 0 var(--section-gap-md);
}

.wws-solutions-link__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  background: var(--brand-secondary-light);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.wws-solutions-link__card {
  position: relative;
  display: block;
  min-height: 280px;
  background: linear-gradient(
    145deg,
    rgba(12, 107, 67, 0.4) 0%,
    rgba(7, 73, 46, 0.6) 100%
  );
  overflow: hidden;
  text-decoration: none;
}

.wws-solutions-link__card:hover {
  color: var(--text-white);
}

.wws-solutions-link__text {
  padding: 48px;
}

.wws-solutions-link__text p {
  font-size: 20px;
  color: var(--text-body);
  line-height: 1.6;
}

.wws-solutions-link__text strong {
  color: var(--brand-accent);
}

/* --- Clients / Partners Grid --- */
.wws-clients {
  padding: var(--section-gap-md) 0;
  background: var(--brand-secondary-light);
}

.wws-clients__subtitle {
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 40px;
}

.wws-clients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wws-clients__card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  padding: 32px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wws-clients__card img {
  max-height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* ============================================
   WHO WE SERVE — Responsive (Tablet <=1024px)
   ============================================ */
@media (max-width: 1024px) {
  .wws-card__body {
    padding: 24px 32px;
  }

  .wws-card__title {
    font-size: 20px;
  }

  .wws-solutions-link__inner {
    grid-template-columns: 1fr;
  }

  .wws-solutions-link__card {
    min-height: 220px;
  }

  .wws-solutions-link__text {
    padding: 32px;
  }

  .wws-clients__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   WHO WE SERVE — Responsive (Mobile <=768px)
   ============================================ */
@media (max-width: 768px) {
  .wws-card {
    grid-template-columns: 1fr;
  }

  .wws-card__body {
    padding: 24px;
  }

  .wws-card__title {
    font-size: 18px;
  }

  .wws-card--cta .wws-card__body {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .wws-card--cta::after {
    display: none;
  }

  .wws-card--cta .btn {
    width: 100%;
    justify-content: center;
  }

  .wws-solutions-link__text {
    padding: 24px;
  }

  .wws-solutions-link__text p {
    font-size: 18px;
  }

  .wws-clients__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .wws-clients__card {
    padding: 24px 16px;
  }
}

/* ============================================
   WHO WE SERVE — Responsive (Small Mobile <=480px)
   ============================================ */
@media (max-width: 480px) {
  .wws-clients__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   COMPANY PAGE
   ============================================ */

/* --- About (We Are / Mission) --- */
.co-about {
  padding: 0 0 var(--section-gap-md);
}

.co-about__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.co-about__block:last-child {
  margin-bottom: 0;
}

.co-about__heading {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--brand-strongest);
  margin-bottom: 16px;
}

.co-about__text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
}

.co-about__image {
  border-radius: var(--radius-card);
  overflow: hidden;
}

.co-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Our Values --- */
.co-values {
  padding: 0 0 var(--section-gap-md);
}

.co-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.co-values__card {
  background: var(--brand-secondary-light);
  border: 1px solid var(--brand-secondary-border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
}

.co-values__icon {
  width: 40px;
  height: 40px;
  background: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.co-values__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-strongest);
  margin-bottom: 6px;
}

.co-values__desc {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.55;
}

/* --- History Timeline --- */
.co-history {
  padding: 0 0 var(--section-gap-md);
}

.co-history__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 2px solid var(--border-subtle);
  margin-bottom: 32px;
}

.co-history__tab {
  background: none;
  border: none;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-body);
  padding: 12px 24px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}

.co-history__tab::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.2s ease;
}

.co-history__tab:hover {
  color: var(--brand-strong);
}

.co-history__tab--active {
  color: var(--brand-strongest);
  font-weight: 500;
}

.co-history__tab--active::after {
  background: var(--brand-accent);
}

.co-history__panel {
  display: none;
}

.co-history__panel--active {
  display: block;
}

.co-history__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.co-history__card {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 28px 24px;
}

.co-history__card h4 {
  font-size: 18px;
  font-weight: 500;
  color: var(--brand-strongest);
  margin-bottom: 10px;
}

.co-history__card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}

/* --- Team Section --- */
.co-team {
  background: linear-gradient(
    180deg,
    var(--brand-secondary-light) 0%,
    #eaf4ec 100%
  );
  padding: var(--section-gap-md) 0;
}

/* Three-row horizontal cycling grid */
.co-team__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  position: relative;
  padding-top: 12px;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
}

.co-team__row {
  position: relative;
  height: 280px;
}

.co-team__person {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 230px;
  will-change: transform;
}

.co-team__person--mgmt {
}

.co-team__photo {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
  background: var(--bg-card);
}

.co-team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.co-team__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-strongest);
  line-height: 1.3;
  margin-bottom: 2px;
}

.co-team__role {
  font-size: 12px;
  color: var(--text-body);
  line-height: 1.4;
}

/* Bio overlay — injected into .co-team__person by JS */
.co-team__bio-overlay {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(7, 73, 46, 0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.co-team__person:hover .co-team__bio-overlay {
  opacity: 1;
}

/* Mobile bio modal — hidden on desktop, active <=768px */
.co-team__modal {
  display: none;
}

.co-team__modal:not([hidden]) {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.co-team__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.co-team__modal-content {
  position: relative;
  background: var(--bg-white);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  max-width: 320px;
  width: 90%;
  text-align: center;
  z-index: 1;
  animation: teamModalIn 0.2s ease;
}

@keyframes teamModalIn {
  from { opacity: 0; transform: scale(0.95) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.co-team__modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-body);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

.co-team__modal-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  background: transparent;
}

.co-team__modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.co-team__modal-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-strongest);
  margin-bottom: 4px;
}

.co-team__modal-role {
  display: block;
  font-size: 13px;
  color: var(--text-body);
  margin-bottom: 16px;
}

.co-team__modal-bio {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-body);
  margin: 0;
}

/* --- Join Our Team --- */
.co-join {
  padding: var(--section-gap-sm) 0;
}

.co-join__inner {
  background: var(--brand-strongest);
  border-radius: var(--radius-card);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.co-join__inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 500px;
  height: 100%;
  background: url("../assets/backgroundCTA.jpg") center center / contain no-repeat;
  mix-blend-mode: screen;
  opacity: 0.4;
  pointer-events: none;
}

.co-join__title {
  font-size: 36px;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 8px;
}

.co-join__inner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* --- Advisory Board --- */
.co-advisory__marquee {
  overflow: hidden;
  width: 100%;
  padding: 8px 0 24px;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
}

.co-advisory__marquee-track {
  display: flex;
  gap: 48px;
  animation: advisory-scroll 25s linear infinite;
  width: max-content;
}

.co-advisory__marquee-track.is-paused {
  animation-play-state: paused;
}

.co-advisory__marquee-track .co-advisory__person {
  flex-shrink: 0;
}

@keyframes advisory-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.co-advisory {
  padding: var(--section-gap-sm) 0 var(--section-gap-md);
}

.co-advisory__person {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 180px;
}

.co-advisory__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
  background: var(--bg-card);
}

.co-advisory__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.co-advisory__name {
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-strongest);
  line-height: 1.3;
}

/* --- Employee Quotes --- */
.co-quotes {
  background: linear-gradient(
    180deg,
    #eaf4ec 0%,
    var(--brand-secondary-light) 100%
  );
  padding: var(--section-gap-md) 0;
}

.co-quotes__carousel {
  position: relative;
}

.co-quotes__slide {
  display: none;
}

.co-quotes__slide--active {
  display: block;
}

.co-quotes__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.co-quotes__text blockquote p {
  font-size: 20px;
  font-style: italic;
  line-height: 1.7;
  color: var(--brand-strongest);
  margin-bottom: 32px;
}

.co-quotes__footer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.co-quotes__arrows {
  display: flex;
  gap: 8px;
}

.co-quotes__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--brand-strong);
  background: transparent;
  color: var(--brand-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.co-quotes__arrow:hover {
  background: var(--brand-strong);
  color: var(--text-white);
}

.co-quotes__author strong {
  display: block;
  font-size: 15px;
  color: var(--brand-strongest);
}

.co-quotes__author span {
  font-size: 13px;
  color: var(--text-body);
}

.co-quotes__image {
  display: flex;
  justify-content: center;
}

.co-quotes__image img {
  width: 320px;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-card);
  filter: grayscale(30%);
}

/* --- European Footprint --- */
.co-footprint {
  padding: var(--section-gap-md) 0 0;
}

.co-footprint__inner {
  background: var(--brand-strongest);
  border-radius: var(--radius-card);
  padding: 56px 0 0 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}

.co-footprint__content {
  padding-bottom: 56px;
}

.co-footprint__title {
  font-size: 32px;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 16px;
}

.co-footprint__intro {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 32px;
}

.co-footprint__offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.co-footprint__office h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-accent);
  margin-bottom: 8px;
}

.co-footprint__office p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  white-space: nowrap;
}

.co-footprint__map {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: hidden;
}

.co-footprint__map-img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  border-radius: 0;
}

/* ============================================
   COMPANY PAGE — Responsive (Tablet <=1024px)
   ============================================ */
@media (max-width: 1024px) {
  .co-about__block {
    gap: 32px;
  }

  .co-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .co-history__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .co-team__row {
    height: 180px;
  }

  .co-team__photo {
    width: 120px;
    height: 120px;
  }

  .co-team__bio-overlay {
    width: 140px;
    height: 140px;
    font-size: 9px;
    padding: 18px;
    line-height: 1.35;
  }

  .co-advisory__photo {
    width: 120px;
    height: 120px;
  }

  .co-join__inner {
    padding: 40px;
    flex-direction: column;
    text-align: center;
  }

  .co-join__inner::after {
    display: none;
  }

  .co-quotes__inner {
    gap: 40px;
  }

  .co-footprint__inner {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .co-footprint__offices {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   COMPANY PAGE — Responsive (Mobile <=768px)
   ============================================ */
@media (max-width: 768px) {
  .co-about__block {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .co-about__heading {
    font-size: 28px;
  }

  .co-values__grid {
    grid-template-columns: 1fr;
  }

  .co-history__tabs {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .co-history__tab {
    padding: 10px 16px;
    font-size: 14px;
  }

  .co-history__cards {
    grid-template-columns: 1fr;
  }

  .co-team__row {
    height: 160px;
  }

  .co-team__person {
    width: 130px;
  }

  .co-team__photo {
    width: 100px;
    height: 100px;
  }

  .co-team__bio-overlay {
    display: none;
  }

  .co-advisory__marquee-track {
    gap: 32px;
    animation-duration: 10s;
  }

  .co-quotes__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .co-quotes__image {
    order: -1;
  }

  .co-quotes__image img {
    width: 200px;
    height: 240px;
  }

  .co-quotes__text blockquote p {
    font-size: 17px;
  }

  .co-footprint__offices {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .co-advisory__photo {
    width: 100px;
    height: 100px;
  }
}

/* ============================================
   TECHNOLOGY PAGE
   ============================================ */

/* --- Core Technology Video Section --- */
.tech-core {
  padding: var(--section-gap-md) 0 var(--section-gap-md);
  background: var(--bg-white);
}

.tech-core__video {
  position: relative;
  width: 100%;
  padding-top: 56.15%;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #0a1a0f;
}

.tech-core__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Service Cards --- */
.tech-services {
  padding: var(--section-gap-md) 0;
}

.tech-services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.tech-services__card {
  background-color: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.tech-services__card--green {
  background-color: #d3ebd9;
  border: 1px solid var(--brand-secondary-border);
}

.tech-services__header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tech-services__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.tech-services__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-body);
  letter-spacing: 0.5px;
}

.tech-services__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.tech-services__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.4;
  letter-spacing: 0.5px;
}

.tech-services__list li::before {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg width='19' height='19' viewBox='0 0 19 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5307 9.5L7.45575 12.575L8.5 13.6443L12.6443 9.5L8.5 5.35575L7.45575 6.425L10.5307 9.5ZM9.50175 19C8.18775 19 6.95267 18.7507 5.7965 18.252C4.64033 17.7533 3.63467 17.0766 2.7795 16.2218C1.92433 15.3669 1.24725 14.3617 0.74825 13.206C0.249417 12.0503 0 10.8156 0 9.50175C0 8.18775 0.249333 6.95267 0.748 5.7965C1.24667 4.64033 1.92342 3.63467 2.77825 2.7795C3.63308 1.92433 4.63833 1.24725 5.794 0.74825C6.94967 0.249417 8.18442 0 9.49825 0C10.8123 0 12.0473 0.249333 13.2035 0.748C14.3597 1.24667 15.3653 1.92342 16.2205 2.77825C17.0757 3.63308 17.7528 4.63833 18.2518 5.794C18.7506 6.94967 19 8.18442 19 9.49825C19 10.8123 18.7507 12.0473 18.252 13.2035C17.7533 14.3597 17.0766 15.3653 16.2218 16.2205C15.3669 17.0757 14.3617 17.7528 13.206 18.2518C12.0503 18.7506 10.8156 19 9.50175 19ZM9.5 17.5C11.7333 17.5 13.625 16.725 15.175 15.175C16.725 13.625 17.5 11.7333 17.5 9.5C17.5 7.26667 16.725 5.375 15.175 3.825C13.625 2.275 11.7333 1.5 9.5 1.5C7.26667 1.5 5.375 2.275 3.825 3.825C2.275 5.375 1.5 7.26667 1.5 9.5C1.5 11.7333 2.275 13.625 3.825 15.175C5.375 16.725 7.26667 17.5 9.5 17.5Z' fill='%2370869B'/%3E%3C/svg%3E")
    no-repeat center / contain;
}

/* --- CTA Bar --- */
.tech-cta {
  padding: 0 0 var(--section-gap-md);
}

.tech-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--brand-secondary-light);
  border-radius: var(--radius-card);
  padding: 32px 40px;
  gap: 24px;
}

.tech-cta__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tech-cta__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.tech-cta__title {
  font-size: 28px;
  font-weight: 400;
  color: var(--brand-strongest);
}

/* --- Feature Highlights --- */
.tech-features {
  padding: var(--section-gap-md) 0;
  background: var(--bg-white);
}

.tech-features__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 136px;
  align-items: center;
  margin-bottom: 80px;
}

.tech-features__row:last-child {
  margin-bottom: 0;
}

.tech-features__media {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.tech-features__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10, 61, 40, 0.3);
  mix-blend-mode: screen;
  pointer-events: none;
  border-radius: var(--radius-card);
}

.tech-features__media video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-card);
  will-change: transform;
  transform: translateZ(0);
}

.tech-features__row--reverse .tech-features__media video {
  filter: brightness(1.4) sepia(1) hue-rotate(70deg) saturate(1.5);
}

.tech-features__text p {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.18px;
  color: var(--text-body);
}

/* --- SFI Video Series --- */
.tech-videos {
  padding: var(--section-gap-md) 0;
}

.tech-videos__intro {
  font-size: 20px;
  color: var(--text-body);
  line-height: 1.4;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}

.tech-videos__search-input {
  border: none;
  outline: none;
  font-family: var(--font-family);
  font-size: 16px;
  color: var(--text-body);
  background: transparent;
  width: 100%;
}

.tech-videos__search-input::placeholder {
  color: #a4b4c2;
}

.tech-videos__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tech-videos__item {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.tech-videos__item:hover {
  color: inherit;
  opacity: 0.85;
}

.tech-videos__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #0a2e1a 0%,
    #0d3d20 30%,
    #072815 70%,
    #0a1a0f 100%
  );
}

.tech-videos__thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.05) 40%,
    rgba(0, 0, 0, 0.05) 60%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.tech-videos__thumb-title {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  line-height: 1.3;
}

.tech-videos__thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
}

.tech-videos__thumb-duration {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: right;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.tech-videos__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #0a1a0f;
}

.tech-videos__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.tech-videos__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

.tech-videos__category {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-strong);
}

.tech-videos__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.tech-videos__desc {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.5;
  letter-spacing: 0.5px;
}

/* --- Technology Page Responsive --- */
@media (max-width: 1024px) {
  .tech-features__row {
    gap: 64px;
  }

  .tech-features__text p {
    font-size: 26px;
  }

  .tech-cta__title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .tech-services__grid {
    grid-template-columns: 1fr;
  }

  .tech-features__row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tech-features__row--reverse {
    direction: rtl;
  }

  .tech-features__row--reverse > * {
    direction: ltr;
  }

  .tech-features__text p {
    font-size: 22px;
  }

  .tech-cta__inner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .tech-cta__left {
    flex-direction: column;
  }

  .tech-cta__title {
    font-size: 22px;
  }

  .tech-videos__item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tech-videos__thumb {
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .tech-features__text p {
    font-size: 20px;
  }

  .tech-cta__title {
    font-size: 20px;
  }

  .tech-videos__title {
    font-size: 17px;
  }
}

/* ============================================
   LEGAL PAGES (Privacy, Cookie, Terms)
   ============================================ */

.legal {
  padding: var(--section-gap-sm) 0 var(--section-gap) 0;
}

.legal__container {
  max-width: 820px;
}

.legal__intro {
  margin-bottom: 48px;
}

.legal__intro p {
  margin-bottom: 16px;
}

.legal__section {
  margin-bottom: 40px;
}

.legal__section h2 {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.legal__section h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal__section p {
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal__section ul {
  margin: 12px 0 16px 24px;
  list-style: disc;
}

.legal__section ul li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal__section a {
  color: var(--brand-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal__section a:hover {
  color: var(--brand-accent);
}

.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 20px;
  font-size: 16px;
}

.legal__table th,
.legal__table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.legal__table th {
  font-weight: 500;
  color: var(--text-dark);
  background-color: var(--bg-card);
}

.legal__table td {
  color: var(--text-body);
}

.legal__updated {
  margin-top: 48px;
  font-size: 14px;
  color: var(--brand-muted);
  font-style: italic;
}

@media (max-width: 768px) {
  .legal {
    padding: 32px 0 var(--section-gap-sm) 0;
  }

  .legal__section h2 {
    font-size: 20px;
  }

  .legal__section h3 {
    font-size: 18px;
  }

  .legal__table {
    font-size: 14px;
  }

  .legal__table th,
  .legal__table td {
    padding: 8px 12px;
  }
}

/* ============================================
   INSIGHTS — Research & Updates Page
   ============================================ */

/* ---------- Insights Header ---------- */

/* ---------- Filter Tabs ---------- */
.insights-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.insights-tabs__btn {
  padding: 10px 24px;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--border-subtle);
  background: var(--bg-white);
  color: var(--text-body);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.insights-tabs__btn:hover {
  border-color: var(--brand-accent);
  color: var(--brand-strong);
}

.insights-tabs__btn--active {
  background: var(--brand-strong);
  color: var(--text-white);
  border-color: var(--brand-strong);
}

.insights-tabs__btn--active:hover {
  background: var(--brand-strongest);
  border-color: var(--brand-strongest);
  color: var(--text-white);
}

/* ---------- Insights List ---------- */
.insights-list {
  padding: 0 0 var(--section-gap) 0;
  background: var(--bg-page);
}

.insights-item {
  padding: 32px 0;
  border-top: 1px solid var(--border-subtle);
}

.insights-item:last-of-type {
  border-bottom: 1px solid var(--border-subtle);
}

.insights-item__category {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-accent);
  margin-bottom: 8px;
}

.insights-item__category--press {
  color: var(--cta-yellow-hover);
}

.insights-item__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

.insights-item__title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.insights-item__title a:hover {
  color: var(--brand-strong);
}

.insights-item__desc {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 8px;
}

.insights-item__authors {
  font-size: 14px;
  color: var(--brand-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.insights-item__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--brand-muted);
}

.insights-item__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-muted);
}

.insights-item__date svg {
  flex-shrink: 0;
}

.insights-item__tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
  background: var(--brand-secondary-light);
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 500;
}

.insights-item__award {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cta-yellow-hover);
  font-weight: 500;
  font-size: 13px;
}

.insights-item__award svg {
  flex-shrink: 0;
}

.insights-item__source {
  color: var(--brand-accent);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.insights-item__source:hover {
  color: var(--brand-strong);
  text-decoration: underline;
}

/* ---------- Empty State ---------- */
.insights-empty {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  text-align: center;
}

/* ---------- Insights Responsive ---------- */
@media (max-width: 768px) {
  .insights-tabs {
    gap: 6px;
  }

  .insights-tabs__btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .insights-item__title {
    font-size: 18px;
  }

  .insights-item__meta {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .insights-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .insights-tabs__btn {
    text-align: center;
  }
}

/* ============================================
   FAQ PAGE — Dedicated FAQ Page
   ============================================ */

.faq-page__header {
  padding: 120px 0 0 0;
  background: var(--bg-page);
  text-align: center;
}

.faq-page__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.faq-page {
  padding: 48px 0 var(--section-gap) 0;
  background: var(--bg-page);
}

.faq-page .container {
  max-width: 860px;
}

.faq-page__section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin: 56px 0 24px 0;
}

.faq-page__section-title:first-child {
  margin-top: 0;
}

.faq-page .faq__list {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faq-page__header {
    padding: 100px 0 0 0;
  }

  .faq-page__title {
    font-size: 32px;
  }

  .faq-page__section-title {
    font-size: 22px;
    margin: 40px 0 16px 0;
  }
}
