/* ===== HOMEPAGE OVERRIDES ===== */
main.home-main {
  padding: 0;
  min-height: 0;
}

/* ===== SHARED SECTION TOKENS ===== */
.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--bg-light);
}

.section--dark {
  background: var(--bg-dark);
  color: #fff;
}

.eyebrow {
  display: block;
  font-size: 0.6875rem; /* 11px */
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.625rem, 3.5vw, 2.375rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: inherit;
  max-width: none;
}

.section-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 36rem;
  margin-bottom: 2rem;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ===== EXTRA BUTTON VARIANTS ===== */
.btn-lg {
  padding: 0.8125rem 1.875rem;
  font-size: 1rem;
  border-radius: 0.5rem;
}

.btn-ghost-white {
  background: transparent !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: #fff !important;
}

.btn-outline-primary {
  background: transparent !important;
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn-outline-primary:hover {
  background: var(--primary) !important;
  color: #fff !important;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 37.5rem; /* 600px */
  max-height: calc(100svh - 4.25rem);
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

@media (min-width: 48em) {
  .hero-video {
    display: block;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(33, 33, 33, 0.7) 0%,
    rgba(33, 33, 33, 0.9) 50%,
    rgba(33, 33, 33, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: 4.25rem; /* account for sticky nav */
}

.hero-text {
  max-width: 42rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.75);
  background: rgba(246, 153, 50, 0.75);
  border: 1px solid rgba(246, 153, 50, 0.35);
  border-radius: 2rem;
  padding: 0.3125rem 0.875rem;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6.5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  color: #fff;
  max-width: none;
}

.hero-sub {
  font-size: clamp(1rem, 1.75vw, 1.25rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2.25rem;
  max-width: 36rem;
}

.hero-sub em {
  font-style: normal;
  color: var(--primary);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  transition: border-color 0.2s;
  animation: hero-bounce 2.4s ease-in-out infinite;
}

.hero-scroll:hover {
  border-color: #fff;
}

.hero-scroll svg {
  width: 1.125rem;
  height: 1.125rem;
}

@keyframes hero-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(0.4375rem);
  }
}

/* ===== AT A GLANCE ===== */
.glance-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.glance-text .section-desc {
  margin-bottom: 2rem;
}

.glance-text .eyebrow {
  margin-bottom: 0.625rem;
}

.glance-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem 1.375rem 1.5rem;
  text-align: center;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.stat-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  transform: translateY(-0.125rem);
}

.stat-num {
  display: block;
  font-size: 2.625rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ===== AUDIENCE ===== */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.audience-card {
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.audience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.25rem;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.audience-card--alt::before {
  background: linear-gradient(90deg, var(--secondary), #e6522b);
}

.audience-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.audience-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.875rem;
  background: linear-gradient(
    135deg,
    rgba(246, 153, 50, 0.12),
    rgba(246, 97, 50, 0.08)
  );
  color: var(--primary);
  margin-bottom: 1.375rem;
}

.audience-card--alt .audience-icon {
  background: linear-gradient(
    135deg,
    rgba(246, 97, 50, 0.12),
    rgba(230, 82, 43, 0.08)
  );
  color: var(--secondary);
}

.audience-icon svg {
  width: 1.625rem;
  height: 1.625rem;
}

.audience-card h3 {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.audience-card > p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: none;
}

.audience-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.audience-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.5;
}

.audience-benefits li::before {
  content: "";
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center/cover;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center/cover;
}

/* ===== SOLUTIONS ===== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.solution-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.875rem 1.625rem;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition:
    box-shadow 0.2s,
    border-color 0.2s,
    transform 0.2s;
}

.solution-card:hover {
  box-shadow: 0 10px 28px rgba(246, 153, 50, 0.12);
  border-color: rgba(246, 153, 50, 0.35);
  transform: translateY(-0.1875rem);
}

.solution-logo-wrap {
  height: 5rem;
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}

.solution-logo {
  height: 100%;
  width: auto;
  max-width: 10rem;
  object-fit: contain;
  display: block;
}

.solution-name-text {
  font-size: 1.125rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.solution-tag {
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text);
}

.solution-tag span {
  color: var(--primary);
}

.solution-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.solution-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  max-width: none;
  margin: 0;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
  transition: gap 0.15s;
}

.solution-link:hover {
  gap: 0.5rem;
}

.solutions-cta {
  text-align: center;
}

/* ===== CLIENTELE ===== */
.marquee {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  flex: 0 0 auto;
  width: 10rem;
  height: 10rem;
  margin: 0 1rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.2s;
}

.marquee-item:hover {
  border-color: rgba(246, 153, 50, 0.6);
}

.marquee-item img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
}

.marquee-item.empty {
  border-style: dashed;
}

/* ===== TESTIMONIALS CAROUSEL ===== */
.testimonials-carousel {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
}

.testimonials-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 100%;
  background: var(--bg);
  padding: 2.5rem 3rem;
  display: flex;
  gap: 1.5rem;
  box-sizing: border-box;
  align-items: center;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.testimonial-org-logo {
  height: auto;
  width: 20em;
  object-fit: contain;
  display: block;
  cursor: zoom-in;
  transition: opacity 0.15s;
  border-radius: 0.3em;
}

.testimonial-org-logo:hover {
  opacity: 0.85;
}

/* ===== IMAGE MODAL ===== */
.img-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  animation: modal-in 0.2s ease;
}

.img-modal[hidden] {
  display: none;
}

@keyframes modal-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.img-modal-inner {
  position: relative;
  max-width: min(36rem, 90vw);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-modal-inner img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.5);
  display: block;
}

.img-modal-close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.img-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.testimonial-stars {
  display: flex;
  gap: 0.1875rem;
  color: var(--primary);
  flex-shrink: 0;
}

.testimonial-stars svg {
  width: 1.125rem;
  height: 1.125rem;
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text);
  max-width: none;
  margin: 0;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.author-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
}

.author-title {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text);
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
  flex-shrink: 0;
}

.carousel-btn svg {
  width: 1.125rem;
  height: 1.125rem;
}

.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    width 0.2s;
  padding: 0;
}

.carousel-dot.active {
  background: var(--primary);
  width: 1.5rem;
  border-radius: 0.25rem;
}

/* ===== CEO QUOTE ===== */
.ceo-quote {
  background-color: #191615;
  padding-bottom: 0 !important;
}
.ceo-inner {
  display: grid;
  grid-template-columns: 1fr 20rem;
  gap: 5rem;
  align-items: center;
}

.ceo-content {
  padding-bottom: 5rem;
}

.quote-mark {
  display: block;
  font-size: 7rem;
  line-height: 0.6;
  font-weight: 900;
  color: rgba(246, 153, 50, 0.25);
  font-family: Georgia, serif;
  user-select: none;
  margin-bottom: 1.5rem;
}

.quote-text {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.5rem;
  max-width: none;
  font-style: italic;
}

.quote-divider {
  width: 3rem;
  height: 2px;
  background: var(--primary);
  margin-bottom: 1.5rem;
}

.quote-author-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
  max-width: none;
}

.quote-author-title {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: none;
}

.ceo-photo-wrap {
  position: relative;
  align-self: flex-end;
}

.ceo-photo {
  width: 100%;
  display: block;
  border-radius: 1rem;
  object-fit: cover;
  object-position: top center;
  opacity: 0.92;
}

/* ===== DIFFERENTIATING FACTORS ===== */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.diff-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem 1.375rem;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.diff-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  transform: translateY(-0.125rem);
}

.diff-number {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--border);
  margin-bottom: 1rem;
}

.diff-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: linear-gradient(
    135deg,
    rgba(246, 153, 50, 0.12),
    rgba(246, 97, 50, 0.07)
  );
  color: var(--primary);
  margin-bottom: 1rem;
}

.diff-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.diff-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.diff-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: none;
  margin: 0;
}

/* ===== LATEST NEWS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.news-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.news-card:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
  transform: translateY(-0.1875rem);
}

.news-thumb {
  height: 11.25rem;
  background: linear-gradient(135deg, var(--bg-light), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.8125rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.news-thumb--placeholder svg {
  width: 80%;
  height: 60%;
}
.news-thumb img {
  transition: transform 0.4s ease;
}
.news-card:hover .news-thumb img {
  transform: scale(1.04);
}

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

.news-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.news-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(246, 153, 50, 0.1);
  border-radius: 2rem;
  padding: 0.1875rem 0.625rem;
}

.news-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.news-card h3 a {
  color: inherit;
  transition: color 0.15s;
}

.news-card h3 a:hover {
  color: var(--primary);
}

.news-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  max-width: none;
  margin: 0;
}

.news-date {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: auto;
  padding-top: 0.875rem;
  border-top: 1px solid var(--border);
  max-width: none;
  margin-bottom: 0;
}

.news-cta {
  text-align: center;
}

/* ===== FINAL CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b3a 50%, #1a0f20 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(
    circle,
    rgba(246, 153, 50, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(
    circle,
    rgba(246, 97, 50, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 46rem;
  margin: 0 auto;
}

.cta-banner-inner .eyebrow {
  color: var(--primary);
}

.cta-banner-inner .section-title {
  color: #fff;
}

.cta-banner-inner .section-desc {
  color: rgba(255, 255, 255, 0.65);
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FADE-UP ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) {
  transition-delay: 0.1s;
}
.fade-up:nth-child(3) {
  transition-delay: 0.2s;
}
.fade-up:nth-child(4) {
  transition-delay: 0.3s;
}
.fade-up:nth-child(5) {
  transition-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 64em) {
  .glance-inner {
    gap: 3rem;
  }

  .ceo-inner {
    grid-template-columns: 1fr 16rem;
    gap: 3.5rem;
  }

  .testimonial-org-logo {
    width: 14em;
  }
}

@media (max-width: 48em) {
  .section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .glance-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

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

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

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    max-width: 18rem;
  }

  .ceo-inner {
    grid-template-columns: 1fr;
    gap: 0rem;
  }

  .ceo-content {
    padding-bottom: 0;
  }

  .ceo-photo-wrap {
    max-width: 18rem;
    margin: 0 auto;
  }

  .testimonial-card {
    padding: 2rem 1.75rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 30em) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }

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

  .glance-stats {
    grid-template-columns: 1fr;
  }

  .cta-banner-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== HERO WATCH BUTTON ===== */
.hero-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===== VIDEO MODAL ===== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.video-modal[hidden] {
  display: none;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 30, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.video-modal-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 56rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  animation: modal-in 0.25s ease;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.video-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.video-modal-close:hover {
  background: rgba(0, 0, 0, 0.75);
}
.video-modal-close svg {
  width: 1rem;
  height: 1rem;
}

.video-modal-player {
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-modal-player video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
