:root {
  --sl-bg: #222222;
  --sl-box: #1a1a1a;
  --sl-red: #df0517;
  --sl-border: #2a2a2a;
  --sl-ease: cubic-bezier(.77, 0, .18, 1);
  --sl-max: 1280px;
}

/* ── WRAPPER ── */
.sl-wrap {
  background: var(--sl-bg) !important;
  overflow: hidden !important;
  width: 100% !important;
  border: 1px solid var(--sl-border) !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* ── HERO ── */
.sl-hero {
  position: relative !important;
  height: 500px !important;
  overflow: hidden !important;
  background: var(--sl-bg) !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sl-slide {
  position: absolute !important;
  inset: 0 !important;
  top: 0 !important; right: 0 !important; bottom: 0 !important; left: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sl-slide.sl-active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.sl-bg-img {
  position: absolute !important;
  inset: 0 !important;
  top: 0 !important; right: 0 !important; bottom: 0 !important; left: 0 !important;
}

.sl-bg-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
  filter: brightness(.45) !important;
  transform: scale(1.05) !important;
  transition: transform 9s var(--sl-ease) !important;
  will-change: transform !important;
  backface-visibility: hidden !important;
  border-radius: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  box-shadow: none !important;
}

.sl-slide.sl-active .sl-bg-img img {
  transform: scale(1) !important;
}

.sl-grad {
  position: absolute !important;
  inset: 0 !important;
  top: 0 !important; right: 0 !important; bottom: 0 !important; left: 0 !important;
  background: linear-gradient(90deg, #222 28%, rgba(34,34,34,.78) 50%, rgba(34,34,34,.08) 70%, transparent 100%) !important;
  pointer-events: none !important;
}

.sl-grad2 {
  position: absolute !important;
  inset: 0 !important;
  top: 0 !important; right: 0 !important; bottom: 0 !important; left: 0 !important;
  background: linear-gradient(to top, rgba(34,34,34,.5) 0%, transparent 40%) !important;
  pointer-events: none !important;
}

.sl-curtain {
  position: absolute !important;
  inset: 0 !important;
  top: 0 !important; right: 0 !important; bottom: 0 !important; left: 0 !important;
  z-index: 2 !important;
  background: var(--sl-bg) !important;
  transform-origin: right center !important;
  transform: scaleX(1) !important;
  transition: none !important;
}

.sl-slide.sl-active.sl-ready .sl-curtain {
  transform: scaleX(0) !important;
  transition: transform .72s var(--sl-ease) !important;
}

/* ── CONTENT ── */
.sl-inner {
  position: relative !important;
  z-index: 3 !important;
  max-width: var(--sl-max) !important;
  margin: 0 auto !important;
  padding: 0 52px !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  box-shadow: none !important;
}

.sl-info {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  width: 600px !important;
  max-width: 58% !important;
}

.sl-ttl {
  font-size: 30px !important;
  line-height: 40px !important;
  color: #fff !important;
  margin-bottom: 10px !important;
  margin-top: 0 !important;
  font-weight: 600 !important;
  letter-spacing: -.01em !important;
  opacity: 0 !important;
  transform: translateY(16px) !important;
  transition: none !important;
  font-family: inherit !important;
  background: none !important;
  padding: 0 !important;
}

.sl-slide.sl-active.sl-ready .sl-ttl {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity .55s .22s var(--sl-ease), transform .55s .22s var(--sl-ease) !important;
}

.sl-ttl strong { font-weight: 700 !important; color: #fff !important; }

.sl-ttl em {
  color: var(--sl-red) !important;
  font-style: normal !important;
  font-weight: 800 !important;
}

.sl-sub {
  font-size: 16px !important;
  line-height: 30px !important;
  color: #fff !important;
  margin-bottom: 15px !important;
  margin-top: 0 !important;
  font-weight: 400 !important;
  opacity: 0 !important;
  transform: translateY(12px) !important;
  transition: none !important;
  font-family: inherit !important;
  background: none !important;
  padding: 0 !important;
}

.sl-slide.sl-active.sl-ready .sl-sub {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity .5s .36s var(--sl-ease), transform .5s .36s var(--sl-ease) !important;
}

.sl-cta-wrap {
  opacity: 0 !important;
  transform: translateY(10px) !important;
  transition: none !important;
}

.sl-slide.sl-active.sl-ready .sl-cta-wrap {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity .4s .5s var(--sl-ease), transform .4s .5s var(--sl-ease) !important;
}

/* ── CTA BUTTON ── */
.sl-wrap .sl-cta-btn,
.sl-wrap a.sl-cta-btn,
.sl-wrap .sl-cta-btn:link,
.sl-wrap .sl-cta-btn:visited {
  padding: 10px 20px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border-radius: 3px !important;
  text-decoration: none !important;
  display: inline-block !important;
  min-width: 180px !important;
  text-align: center !important;
  cursor: pointer !important;
  border: 2px solid var(--sl-red) !important;
  background: var(--sl-red) !important;
  background-color: var(--sl-red) !important;
  color: #ffffff !important;
  letter-spacing: .02em !important;
  transition: background .2s, color .2s, border-color .2s !important;
  font-family: inherit !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  line-height: normal !important;
  height: auto !important;
  margin: 0 !important;
}

.sl-wrap .sl-cta-btn:hover,
.sl-wrap a.sl-cta-btn:hover {
  background: transparent !important;
  background-color: transparent !important;
  color: #fff !important;
  border-color: #fff !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  transform: none !important;
}

/* ── NAV BUTTONS ── */
.sl-wrap .sl-nb,
.sl-wrap button.sl-nb {
  width: 30px !important;
  height: 28px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  background: rgba(26,26,26,.9) !important;
  background-color: rgba(26,26,26,.9) !important;
  border: 1px solid var(--sl-border) !important;
  color: rgba(255,255,255,.5) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  font-size: 10px !important;
  transition: background .18s, color .18s, border-color .18s !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  line-height: 1 !important;
}

.sl-wrap .sl-nb:hover,
.sl-wrap button.sl-nb:hover {
  background: var(--sl-red) !important;
  background-color: var(--sl-red) !important;
  border-color: var(--sl-red) !important;
  color: #fff !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

.sl-navbtns {
  position: absolute !important;
  right: 24px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 5 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.sl-cnt {
  position: absolute !important;
  bottom: 18px !important;
  right: 24px !important;
  z-index: 4 !important;
  font-size: 12px !important;
  color: rgba(255,255,255,.28) !important;
  letter-spacing: .05em !important;
}

.sl-cnt b {
  color: rgba(255,255,255,.72) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  margin-right: 1px !important;
}

.sl-prog {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  height: 2px !important;
  background: var(--sl-red) !important;
  width: 0% !important;
  z-index: 6 !important;
}

/* ── STRIP — desktop: 4-col grid ── */
.sl-strip {
  width: 100% !important;
  background: var(--sl-box) !important;
  border-top: 1px solid var(--sl-border) !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sl-strip-inner {
  max-width: var(--sl-max) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  height: 80px !important;
  padding: 0 !important;
}

.sl-th {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 0 18px !important;
  cursor: pointer !important;
  border-bottom: 2px solid transparent !important;
  border-right: 1px solid var(--sl-border) !important;
  transition: background .18s, border-color .18s !important;
  overflow: hidden !important;
  min-width: 0 !important;
  position: relative !important;
  height: 100% !important;
  background: none !important;
  text-decoration: none !important;
}

.sl-th:last-child { border-right: none !important; }

.sl-th.sl-on {
  border-bottom-color: var(--sl-red) !important;
  background: rgba(223,5,23,.06) !important;
}

.sl-th.sl-on::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important; top: 0 !important; bottom: 0 !important;
  width: 2px !important;
  background: #df0517 !important;
  z-index: 2 !important;
}

.sl-th.sl-on::after {
  content: '' !important;
  position: absolute !important;
  right: 0 !important; top: 0 !important; bottom: 0 !important;
  width: 2px !important;
  background: #df0517 !important;
  z-index: 2 !important;
}

.sl-th:hover:not(.sl-on) { background: rgba(255,255,255,.03) !important; }

.sl-tframe {
  width: 100px !important;
  height: 60px !important;
  border-radius: 3px !important;
  flex-shrink: 0 !important;
  overflow: hidden !important;
  background: #111 !important;
  border: 1px solid var(--sl-border) !important;
}

.sl-tframe img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
  border-radius: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  box-shadow: none !important;
  filter: none !important;
}

.sl-tx {
  min-width: 0 !important;
  flex: 1 !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
}

.sl-tsub {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .07em !important;
  text-transform: uppercase !important;
  color: var(--sl-red) !important;
  opacity: .7 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  line-height: normal !important;
}



.sl-th.sl-on .sl-tsub { opacity: 1 !important; }

.sl-tl {
  font-size: 12px !important;
  color: rgba(255,255,255,.45) !important;
  font-weight: 600 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  line-height: 1.4 !important;
  word-break: break-word !important;
}

.sl-th.sl-on .sl-tl { color: rgba(255,255,255,.92) !important; }

/* ── TABLET ≤ 900px ── */
@media (max-width: 900px) {
  .sl-hero { height: 460px !important; }
  .sl-inner { padding: 0 32px !important; }
  .sl-info { width: 100% !important; max-width: 70% !important; }
  .sl-ttl { font-size: 30px !important; line-height: 38px !important; }
  .sl-sub { font-size: 15px !important; line-height: 24px !important; }
  .sl-wrap .sl-cta-btn,
  .sl-wrap a.sl-cta-btn { min-width: 180px !important; font-size: 14px !important; padding: 12px 22px !important; }
  .sl-tframe { width: 72px !important; height: 46px !important; }
  .sl-th { gap: 10px !important; padding: 0 12px !important; }
  .sl-tl { font-size: 11px !important; }
  .sl-tsub { font-size: 9px !important; }
  .sl-navbtns { right: 12px !important; }
  .sl-cnt { right: 12px !important; }
}

/* ── MOBILE ≤ 600px — thumbnail strip becomes 2×2 grid ── */
@media (max-width: 600px) {
  .sl-hero { height: 360px !important; }
  .sl-inner { padding: 0 20px !important; align-items: flex-end !important; padding-bottom: 28px !important; }
  .sl-info { width: 100% !important; max-width: 100% !important; }
  .sl-grad { background: linear-gradient(180deg, rgba(34,34,34,.1) 0%, rgba(34,34,34,.88) 50%, #222 100%) !important; }
  .sl-ttl { font-size: 22px !important; line-height: 30px !important; margin-bottom: 10px !important; }
  .sl-sub { font-size: 13px !important; line-height: 20px !important; margin-bottom: 14px !important; }
  .sl-wrap .sl-cta-btn,
  .sl-wrap a.sl-cta-btn { min-width: 0 !important; width: 100% !important; font-size: 13px !important; padding: 11px 16px !important; }
  .sl-navbtns { display: none !important; }
  .sl-cnt { bottom: 10px !important; right: 12px !important; font-size: 11px !important; }

  /* ── thumbnail strip: 2 columns, auto height ── */
  .sl-strip-inner {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    height: auto !important;
  }
 .sl-wrap .sl-cta-btn,
  .sl-wrap a.sl-cta-btn,
  .sl-wrap .sl-cta-btn:link,
  .sl-wrap .sl-cta-btn:visited {
    display: inline-block !important;  /* not full-width — auto size */
    width: auto !important;
    min-width: 0 !important;
    padding: 8px 20px !important;      /* smaller padding */
    font-size: 12px !important;        /* smaller text */
    font-weight: 600 !important;
    letter-spacing: .04em !important;
    border-radius: 3px !important;
    line-height: 1.4 !important;
  }
  .sl-th {
    padding: 10px 12px !important;
    height: auto !important;
    min-height: 64px !important;
    border-bottom: 1px solid var(--sl-border) !important;
    border-right: 1px solid var(--sl-border) !important;
    gap: 10px !important;
  }

  /* remove right border on every 2nd column */
  .sl-th:nth-child(2n) { border-right: none !important; }

  /* remove bottom border on last row (items 3 & 4) */
  .sl-th:nth-last-child(-n+2) { border-bottom: none !important; }

  /* active state: left accent only (no right — replaced by grid gap) */
  .sl-th.sl-on::before {
    top: 0 !important;
    bottom: 0 !important;
    width: 2px !important;
  }
  .sl-th.sl-on::after { display: none !important; }

  .sl-tframe { width: 56px !important; height: 36px !important; }
  .sl-tl { font-size: 11px !important; }
}
/* Push body down by bar height so content isn't hidden */
body {
    padding-top: 0 !important;
}
.navbar-fixed-top{
    padding-top: 0px;
}

/* Sticky Header */
.navbar.navbar-default.navbar-fixed-top {
    position: fixed !important;
    top: 0px !important;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background-color: transparent !important;
    box-shadow: none !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.navbar.navbar-not-transparent.navbar-fixed-top {
    background-color: transparent !important;
    box-shadow: none !important;
}
.navbar.navbar-default.navbar-fixed-top.scrolled {
    background-color: 
#1a1a1a !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}
.navbar .title-logo-wrapper .navbar-brand {
    width: 200px !important;
}

/* Hero Section Responsive Styles */
.hero {
    position: relative !important;
    background-color: #0a0a0a !important;
}

/* Background image optimization */
.hero-bg {
    will-change: opacity;
}

/* Preload background image */
.hero::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    background-image: url('https://mirror.antmedia.io/wp-content/uploads/2026/02/hero-bg.png');
    background-size: 0;
}

/* Canvas pointer events fix */
#particleCanvas {
    pointer-events: none !important;
}

/* Ensure buttons are clickable */
.hero-content {
    position: relative;
    z-index: 10 !important;
}

.hero-buttons {
    position: relative;
    z-index: 10 !important;
}

.hero-buttons a {
    position: relative;
    z-index: 10 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    transition: all 0.3s ease;
}

.hero-buttons a:hover {
    background: rgba(223, 5, 23, 0.1);
    border-color: #df0517;
    transform: translateY(-2px);
}

.hero-buttons a:active {
    transform: translateY(0);
}

/* Image animations */
.hero-image img {
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero {
        min-height: 600px !important;
    }
    
    .hero-wrapper {
        padding: 2.5rem 2rem 1.5rem !important;
    }
    
    .hero-columns {
        gap: 2rem !important;
    }
    
    .hero-content {
        max-width: 50% !important;
    }
    
    .hero-image {
        max-width: 50% !important;
    }
    
    .hero-content h1 {
        font-size: 2.8rem !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto !important;
    }
    
    .hero-wrapper {
        padding: 2rem 1.5rem 1.25rem !important;
    }
    
    .hero-columns {
        flex-direction: column !important;
        gap: 2.5rem !important;
    }
    
    .hero-content {
        max-width: 100% !important;
    }
    
    .hero-image {
        max-width: 100% !important;
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 30px !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-content p {
        font-size: 14px !important;
        margin-bottom: 2rem !important;
    }
    
    .hero-buttons {
        margin-bottom: 1.25rem !important;
    }
    
    /* Adjust background image on mobile */
    .hero-bg {
        opacity: 0.3 !important;
        background-position: center center !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2.5rem 0 !important;
    }
    
    .hero-wrapper {
        padding: 1.5rem 1rem 1rem !important;
    }
    
    .hero-columns {
        gap: 2rem !important;
    }
    
    .hero-content h1 {
        font-size: 30px !important;
    }
    
    .hero-content p {
        font-size: 14px !important;
        margin-bottom: 1.75rem !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    .hero-buttons a {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem !important;
    }
    
    /* Further reduce background image opacity on small screens */
    .hero-bg {
        opacity: 0.25 !important;
    }
}

/* Performance optimization for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .hero-image img,
    .hero-buttons a {
        transition: none !important;
    }
    
    .hero-image:hover img,
    .hero-buttons a:hover {
        transform: none !important;
    }
}

/* Sections */
.ant-section {
  padding: 0 40px 120px 40px;
  text-align: center !important;
}

.ant-section-title {
  margin-bottom: 10px !important;
  font-size: 30px !important;
  font-weight: 600 !important;
  letter-spacing: -0.5px !important;
}

.ant-section-description {
  font-size: 20px !important;
  line-height: 1.6 !important;
  max-width: 1000px !important;
  margin: 0 auto 40px !important;
}

/* Logo Slider */
@keyframes antSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ant-logo-slider {
  overflow: hidden !important;
  position: relative !important;
  width: 100% !important;
  margin: 40px auto 0 !important;
  cursor: grab !important;
  user-select: none !important;
}
.ant-logo-slider.dragging {
  cursor: grabbing !important;
}
.ant-logo-track {
  display: flex !important;
  width: fit-content !important;
  will-change: transform !important;
}
.ant-logo-track.animated {
  animation: antSlide 30s linear infinite !important;
}
.ant-logo-item {
  flex-shrink: 0 !important;
  padding: 0 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.ant-logo-item img {
  height: 50px !important;
  width: auto !important;
  opacity: 0.8 !important;
  transition: opacity 0.3s ease !important;
  pointer-events: none !important;
}
.ant-logo-item:hover img {
  opacity: 1 !important;
}
/* Stats */
.ant-stats-container {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 30px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.ant-stat-box {
  background-color: #1a1a1a !important;
border: 1px solid #2a2a2a;
  padding: 30px !important;
  border-radius: 16px !important;
   box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
  min-width: 200px !important;
  flex: 1 !important;
  max-width: 220px !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.ant-stat-box:hover{
    transform: translateY(-5px) !important;
    background: #1a1a1a !important;
    box-shadow: 0 10px 30px rgba(223, 5, 23, 0.2) !important;
}

.ant-stat-number {
  font-size: 36px !important;
  font-weight: 600 !important;
  color: #fff !important;
  margin-bottom: 5px !important;
}

.ant-stat-label {
  font-size: 16px !important;
  color: #fff !important;
  font-weight: 400 !important;
}

/* AM Features Section */
.am-features {
  padding: 0px 0;
  background: #222;
}
.am-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1400px;
}
.am-features-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.am-features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(223, 5, 23, 0.2);
}

/* Force SVGs inside cards to never exceed icon container */
.am-features-card svg {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  display: block;
}

.am-features .feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 14px 0;
  line-height: 1.3;
  text-align: center;
}
.am-features .feature-description {
  font-size: 14px;
  line-height: 1.65;
  color: #c0c0c0;
  margin: 0;
  text-align: center;
}
.am-features .feature-description strong {
  color: #ffffff;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1200px) {
  .am-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .am-features {
    padding: 40px 0;
  }
  .am-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .am-features-card {
    padding: 24px 20px;
  }
  .am-features .feature-title {
    font-size: 18px;
  }
  .am-features .feature-description {
    font-size: 14px;
  }
}

/* Pricing Tables */
.table-section-p {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px !important;
  padding: 30px 20px;
  background-color: #222222 !important;
  flex-wrap: wrap;
}

.table-card-p {
  background: #1a1a1a !important;
  border: 1px solid #2a2a2a !important;
  border-radius: 16px !important;
  padding: 30px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  border: 0px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.table-card-p:hover {
    transform: translateY(-5px) !important;
    background: #1a1a1a !important;
    box-shadow: 0 10px 30px rgba(223, 5, 23, 0.2) !important;
}

.table-header-p {
  background:  #1a1a1a !important;
  color: #fff !important;
  padding: 15px;
  margin: -30px -25px 25px -25px;
  border-radius: 10px 10px 0 0;
  font-size: 22px;
  font-weight: 500;
  border-bottom: 2px solid #eee;
}

.table-cta-button-p,
.table-cta-awsbutton-p {
  background: #fff !important;
  color: #dc3545 !important ;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin: 20px 0 10px 0;
  transition: background-color 0.3s ease;
}

.table-cta-button-p:hover,
.table-cta-awsbutton-p:hover {
  background: #df0517;
color: #fff !important ;
}

.pricing-card-wrapper {
  position: relative;
  width: 300px;
 
}

/* Solutions Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 30px;
  animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.solution-card {
background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.solution-card:hover {
    transform: translateY(-5px);
    background: #1a1a1a;
    box-shadow: 0 10px 30px rgba(223, 5, 23, 0.2);
}

.image-box {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.solution-card:hover img {
  transform: scale(1.05);
}

/* ── Partners── */
.partners-section {
  background: #222222;
  padding: 30px;
  border-radius: 16px;
  max-width: 1400px;
  margin: 0 auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24px;
  row-gap: 24px;
  animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Card ── */
.partner-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  height: 100%;
}

.partner-card:hover {
  transform: translateY(-5px);
  background: #1a1a1a;
  box-shadow: 0 10px 30px rgba(223, 5, 23, 0.2);
}

/* ── Logo Box ── */
.image-box-partner {
  width: 100%;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-card:hover .image-box-partner {
  transform: scale(1.03);
}

/* ── Text ── */
.card-title-partner {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.card-desc-partner {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}

/* ── Filter Bar ── */
.partners-filter {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 5px !important;
  margin-bottom: 20px !important;
}

.partners-filter .pf-btn {
  font-size: 11px !important;
  padding: 2px 8px !important;
  border-radius: 4px !important;
  background: rgba(255, 255, 255, .04) !important;
  color: #555 !important;
  border: 1px solid #2a2a2a !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  line-height: 1.6 !important;
  min-width: unset !important;
  width: auto !important;
  height: auto !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  box-shadow: none !important;
}

.partners-filter .pf-btn:hover {
  border-color: #2a2a2a !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, .08) !important;
}

.partners-filter .pf-btn.active {
  background: #1a1a1a !important;
  border-color: #2a2a2a !important;
  color: #ffffff !important;
}

/* Testimonials */
.testimonials-section {
  background: #222222;
  padding: 0 20px 20px;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-logos-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-bottom: 30px;
  padding: 20px;
  flex-wrap: wrap;
}

.testimonials-logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.testimonials-logo-link:hover {
  opacity: 1;
  transform: translateY(-5px);
}

.testimonials-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.testimonials-review-count {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: color 0.3s ease;
  text-decoration: underline;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonials-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonials-card:hover {
    transform: translateY(-5px);
    background: #1a1a1a;
    box-shadow: 0 10px 30px rgba(223, 5, 23, 0.2);  
}

.testimonials-platform-logo {
  width: auto;
  height: 24px;
  margin-bottom: 16px;
  object-fit: contain;
}

.testimonials-quote {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 400;
}
.testimonials-author-role, .testimonials-author-company, .testimonials-date {
  color: #fff !important;
}
.testimonials-author h4 {
  font-size: 12px;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 2px;
}

.testimonials-rating {
  display: flex;
  gap: 3px;
}

.testimonials-star {
  color: #fbbf24;
  font-size: 2rem;
}



/* Two Column Section */
.two-column-section {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  padding: 5rem 0;
  width: 100%;
}

.bs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
}

.column-left h2 {
  color: white;
  font-size: 30px;
  font-weight: 600;
  margin: 0;
  padding: 0;
  line-height: 1;
  display: inline-block;
}

.column-right {
  flex-shrink: 0;
}

/* Blog Section */
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail, .tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail, .tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail {
    background: #1a1a1a;
    padding: 15px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    height: 250px;
    
}

.rt-img-holder img.rt-img-responsive, #rt-tpg-container-3527476212 .rt-img-holder, #rt-tpg-container-3527476212 .rt-post-overlay .post-img, #rt-tpg-container-3527476212 .post-sm .post-img, #rt-tpg-container-3527476212 .rt-post-grid .post-img, #rt-tpg-container-3527476212 .post-img img {
    border-top-left-radius: 16px !important;
    border-top-right-radius: 16px !important;
}


/* Footer */
.footer hr {
  border-color: #222 !important;
}

.copyright {
  color: #fff !important;
}

footer.footer.footer-black a {
  opacity: 0.86;
  color: #fff !important;
}

.footer {
  background: #1a1a1a !important;
}

.footer .widget h5 {
 color: #fff !important;
}
.footer-big p {
  color: #fff !important;
}


.footer-big {
    padding: 50px 0 18px;
}






/* Broadcast Section */
.am-broadcast-section {
  padding: 4rem 0;
  background-color: #1a1a1a;
}

.am-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}


.am-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
max-width:1200px;
}

.am-text-content h2 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

.am-text-content p {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  margin: 0 0 2rem;
}

.am-discover-btn {
  background-color: #df0517;
  color: #fff;
  border: 1px solid #df0517;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.am-discover-btn:hover {
  background-color: #c00414;
  color: white;
}

.am-device-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.am-tablet-mockup {
  width: 600px;
  height: 450px;
  border-radius: 25px;
  padding: 15px;
  position: relative;
}

.am-screen {
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.am-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Section */
.contact-section {
  background-color: #222;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 80px 20px;
  position: relative;
}
/* Email Links - Red Color */
.contact-info-section a:hover {
  color: #df0517 !important;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  gap: 60px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.contact-info {
  flex: 1;
  min-width: 300px;
  color: white !important;
}
.contact-info h2 {
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 40px 0;
  color: white !important;
}
.contact-form-wrapper {
  flex: 1;
  min-width: 400px;
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.contact-form-wrapper .wpforms-field-label {
  color: white !important;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
  font-size: 14px !important;
}
.contact-form-wrapper .wpforms-field-label-inline {
  color: white !important;
}
.contact-form-wrapper .wpforms-required-label {
  color: #e63946 !important;
}
.contact-form-wrapper .wpforms-field input[type="text"],
.contact-form-wrapper .wpforms-field input[type="email"],
.contact-form-wrapper .wpforms-field input[type="tel"],
.contact-form-wrapper .wpforms-field input[type="url"],
.contact-form-wrapper .wpforms-field input[type="number"],
.contact-form-wrapper .wpforms-field select,
.contact-form-wrapper .wpforms-field textarea {
  background: #222 !important;
  border: 1px solid #2a2a2a !important;
  border-radius: 16px !important;
  padding: 24px !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
  color: white !important;
  width: 100%;
  font-size: 14px;
}
.contact-form-wrapper .wpforms-field textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form-wrapper .wpforms-field input::placeholder,
.contact-form-wrapper .wpforms-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}
.contact-form-wrapper .wpforms-field input:focus,
.contact-form-wrapper .wpforms-field select:focus,
.contact-form-wrapper .wpforms-field textarea:focus {
  background: #242424 !important;
  border-color: #3a3a3a !important;
  outline: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
}
.contact-form-wrapper .wpforms-field input:hover,
.contact-form-wrapper .wpforms-field select:hover,
.contact-form-wrapper .wpforms-field textarea:hover {
  border-color: #3a3a3a !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
}
/* Sublabels (First/Last, etc.) - Override WPForms defaults */
div.wpforms-container-full .wpforms-field-sublabel,
.wp-core-ui div.wpforms-container-full .wpforms-field-sublabel,
.contact-form-wrapper .wpforms-field-sublabel {
  font-size: 12px !important;
  color: #fff !important;
}
/* Field Descriptions and Limit Text - Override WPForms defaults */
div.wpforms-container-full .wpforms-field-description,
div.wpforms-container-full .wpforms-field-limit-text,
.wp-core-ui div.wpforms-container-full .wpforms-field-description,
.wp-core-ui div.wpforms-container-full .wpforms-field-limit-text,
.contact-form-wrapper .wpforms-field-description,
.contact-form-wrapper .wpforms-field-description-after,
.contact-form-wrapper .wpforms-field-limit-text {
  font-size: 12px !important;
  line-height: 1.5 !important;
  color: #fff !important;
}
/* Responsive Styles */
@media (max-width: 1250px) {
  .pricing-card-wrapper {
    width: calc(50% - 10px) !important;
    max-width: 400px !important;
  }
}


/* CTA Footer Section */
.cta-section {
  background: #1a1a1a;
  padding: 60px 20px;
  text-align: center;
border: 1px solid #2a2a2a;
}

.cta-container {
  max-width: 1000px;
  margin: 0 auto;
}

.cta-title {
  font-size: 30px !important;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  line-height: 40px;
}

.cta-subtitle {
  font-size: 20px;
line-height: 30px;
  color: #fff;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.cta-btn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  min-width: 240px;
  text-align: center;
}

.cta-btn-primary {
  background: #df0517;
  color: #ffffff !important;
  border: 2px solid #df0517;
}

.cta-btn-primary:hover {
  background: #df0517;
  border-color: #df0517;
color: #ffffff !important;
}

.cta-btn-secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color:#ffffff !important;
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
color: #ffffff !important;
}

.cta-note {
  font-size: 14px;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-title {
    font-size: 32px;
  }

  .cta-subtitle {
    font-size: 18px;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }
}




@media (max-width: 1024px) {
  .am-hero-title {
    font-size: 3rem;
  }
  
  .solutions-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 968px) {
  .am-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .am-text-content h2 {
    font-size: 22px;
  }
  
  .am-tablet-mockup {
    width: 350px;
    height: 245px;
  }
}

@media (max-width: 768px) {
  .am-hero-banner {
    min-height: 60vh;
  }
  
  .am-container {
    padding: 0 1rem;
  }
  
  .am-hero-title {
    font-size: 2.5rem;
  }
  
  .am-hero-description {
    font-size: 16px;
    margin-bottom: 2rem;
  }
  
  .am-cta-buttons {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }
  
  .am-btn {
    width: 100%;
    max-width: 250px;
  }
  
  
  .ant-stat-box,
  .pricing-card-wrapper {
    max-width: 100% !important;
  }
  
  .bs-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 2rem;
    padding: 0 1.5rem;
  }
  
  .column-left h2 {
    font-size: 28px;
    line-height: 1.2;
  }
  
  .solutions-grid,
  .testimonials-grid {
    grid-template-columns: 1fr !important;
    row-gap: 40px;
  }
  
  .contact-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .contact-form-wrapper {
    min-width: auto;
  }
}

@media (max-width: 767px) {
  .pricing-card-wrapper {
    width: 100% !important;
    max-width: 400px !important;
  }
}

@media (max-width: 480px) {
  .am-hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .am-hero-description {
    font-size: 16px;
  }
  
  .am-btn {
    padding: 0.875rem 1.5rem;
    font-size: 16px !important;
  }
  
  .column-left h2 {
    font-size: 26px;
  }
  
  .am-text-content h2 {
    font-size: 20px;
    line-height: 30px;
  }
  
  .am-tablet-mockup {
    width: 350px;
    height: 250px;
  }
}

/* Menu */
.navbar .navbar-nav li .dropdown-menu  {
    background-color: #1a1a1a !important;
    border-radius: 16px !important;
}

.license-notice {
  color: #df0517 !important;
  animation: blink-smooth 1.5s ease-in-out infinite;
	font-size:14px !important;
}

@keyframes blink-smooth {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.ac-hidden {
  display: none;
}






body .iti__selected-country, div.wpforms-container .wpforms-form .iti__selected-country, div.wpforms-container-full .wpforms-form .iti__selected-country, #wpforms-conversational-form-page .iti__selected-country {
  background: none !important;
padding-left: 10px !important;
}


.wpforms-container-full, .scaling-stream .wrap {
  box-shadow: 0 16px 50px -12px rgba(0, 0, 0, 0) !important;
}


#tpbr_calltoaction {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    background-color: #df0517 !important;
}



.single-post .col-md-10.col-md-offset-1 {
    margin: 0px;
    width: 100%;
}

.footer h5 {
	padding-left:0px;
	padding-right:0px;
}
.footer-big ul li a {
	text-transform:none;
}
.footer .widget a {
	font-size:15px;
}

.button-headerft {
	background-color: #DF0517;
  border-radius: 5px;
  color: white;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  border-color: #DF0517;
}

.button-headerft:hover {
	background-color: #fff;
  border-radius: 5px;
  color: white !important;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  border-color: #DF0517;
}




.figcaption {
    font-size: 16px;
    color: #000;
}

.wp-block-list {
    font-size: 16px !important;
    color: #000;
}

.single-post-wrap ul li {
padding-bottom: 15px !important;
}


figure {
  margin: 15px 0px 15px 0px !important;
}


h2 {
  font-family: inherit !important;
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  color: #000;
  margin-top: 36px !important;
  margin-bottom: 16px !important;
}


h3 {
  font-family: 'Poppins', sans-serif !important;
  font-size: 20px;
  font-weight: 400;
  color: #000;
}

body {
    overflow-x: hidden !important;
}


.so-widget-sow-accordion-default-495bf83586e8 .sow-accordion .sow-accordion-panel .sow-accordion-panel-content .sow-accordion-panel-border {
    font-size: 15px !important;
}

.sow-accordion-panel-header {
    padding: 10px 30px 10px 30px !important;
}

.sow-accordion-title {
    font-size: 16px;
}

.so-widget-sow-accordion-default-3c6bf033d939 .sow-accordion .sow-accordion-panel .sow-accordion-panel-header{
  border-radius: 3px !important;
}

.sow-icon-ionicons[data-sow-icon]::before {
  display: none;
}
/* Specific fix for your layout */
.rt-img-holder {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.rt-img-holder a {
  display: block;
  width: 100%;
  height: 100%;
}

.rt-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* Shows top portion for collage images */
}

/* For cards with collage images, show more */
.rt-grid-item:first-child .rt-img-holder {
  height: 320px; /* Taller for first card if it's always a collage */
}

/* Maintain consistency across all cards */
.rt-grid-item {
  margin-bottom: 30px;
}

/* Large screens */
@media (min-width: 1200px) {
  .rt-img-holder {
    height: 260px;
  }
  
  .rt-grid-item:first-child .rt-img-holder {
    height: 300px;
  }
}

/* Extra large screens */
@media (min-width: 1600px) {
  .rt-img-holder {
    height: 300px;
  }
  
  .rt-grid-item:first-child .rt-img-holder {
    height: 350px;
  }
}

/* ── SUPPORT TABLE ── */
.support-section {
  max-width: 1100px;
  margin: 0 auto;
}

.support-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.support-table thead tr th {
  padding: 22px 24px;
  background: #141414;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  border-bottom: 1px solid #2a2a2a;
  letter-spacing: 0.3px;
text-transform:uppercase;
}

.support-table thead tr th:first-child {
  text-align: left;
  color: #555;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.support-table tbody tr {
  transition: background 0.2s;
}

.support-table tbody tr:hover {
  background: #202020;
}

.support-table tbody tr:nth-child(even) {
  background: #181818;
}

.support-table tbody tr:nth-child(even):hover {
  background: #202020;
}

.support-table td {
  padding: 18px 24px;
  text-align: center;
  font-size: 14px;
  color: #bbb;
  border-bottom: 1px solid #222;
  font-weight: 300;
}

.support-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: #ddd;
  font-size: 14px;
}

.support-table tbody tr:last-child td {
  border-bottom: none;
}

.support-table-sub {
  display: block;
  font-size: 11px;
  color: #555;
  font-weight: 300;
  margin-top: 2px;
}

.support-table-col-enhanced { background: transparent; }
.support-table-col-premium   { background: transparent; }

.support-table-check { color: #22c55e; font-size: 20px; }
.support-table-cross { color: #df0517; font-size: 20px; }

/* ── SUPPORT PRICE ── */
.support-price-cell { vertical-align: middle; }

.support-price-free {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.support-price-main {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  display: block;
}

.support-price-annual {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-top: 10px;
}

.support-price-period {
  font-size: 11px;
  color: #fff;
  display: block;
  margin-top: 2px;
  font-weight: 300;
}

/* ── SUPPORT CTA ── */
.support-cta-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.support-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: #df0517;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.support-cta-btn:hover {
  background: #b91c2c;
  transform: scale(1.03);
}

/* ── DISCLAIMER ── */
.support-disclaimer {
  max-width: 1100px;
  margin: 50px auto 0;
  font-size: 12px;
  font-style: italic;
  color: #fff;
  line-height: 1.7;
  font-weight: 300;
}

.support-disclaimer strong {
  font-style: normal;
  color: #fff;
  font-weight: 500;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .support-table { font-size: 12px; }
  .support-table td, .support-table th { padding: 12px 10px; }
  .support-price-main { font-size: 20px; }
}

/* Pricing Support Grid */
.pricingsupportbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 30px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.pricingsupportbox-card,
.pricingsupportbox-box {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Decorative background wave/blob */
.pricingsupportbox-card::before,
.pricingsupportbox-box::before {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(ellipse at center, rgba(223,5,23,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 0.5s;
  opacity: 0;
}

/* Subtle wavy line decoration */
.pricingsupportbox-card::after,
.pricingsupportbox-box::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  height: 60%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' fill='none'%3E%3Cpath d='M10 160 Q60 120 110 140 Q160 160 200 120' stroke='%23ffffff08' stroke-width='1.5' fill='none'/%3E%3Cpath d='M10 180 Q60 140 110 160 Q160 180 200 140' stroke='%23ffffff06' stroke-width='1.5' fill='none'/%3E%3Cpath d='M10 140 Q60 100 110 120 Q160 140 200 100' stroke='%23ffffff05' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: bottom right;
  background-repeat: no-repeat;
  pointer-events: none;
}

.pricingsupportbox-card:hover,
.pricingsupportbox-box:hover {
  transform: translateY(-5px);
  background: #1a1a1a;
  box-shadow: 0 10px 30px rgba(223, 5, 23, 0.2);
  border-color: rgba(223, 5, 23, 0.2);
}

.pricingsupportbox-card:hover::before,
.pricingsupportbox-box:hover::before {
  opacity: 1;
}

.pricingsupportbox-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}


.pricingsupportbox-content p {
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  margin-bottom: 28px;
  max-width: 320px;
  flex: 1;
font-weight: 300;
}

.pricingsupportbox-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0px 0px;
  border: 0px solid #ffffff;
  border-radius: 3px;
  background: transparent;
  color: #fff !important;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.01em;
  align-self: flex-start;
  margin-top: auto;
}

.pricingsupportbox-btn:hover {
  border-color: rgba(223, 5, 23, 0.6);
  color: #fff;
  background: rgba(223, 5, 23, 0.08);
  box-shadow: 0 0 16px rgba(223, 5, 23, 0.15);
}

.pricingsupportbox-btn svg {
  transition: transform 0.3s ease;
}

.pricingsupportbox-btn:hover svg {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .pricingsupportbox-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .pricingsupportbox-grid { grid-template-columns: 1fr; }
}


@media (max-width: 768px) {
    #mobile-bottom-info {
        display: none !important;
    }
}
/* Sticky Mobile Footer Bar — paste in WPCode as CSS snippet */
.am-sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  background: #1a1a1a;
  border-top: 1px solid rgba(197, 4, 20, 0.12);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: amSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

@keyframes amSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Shimmer top border */
.am-sticky-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #c50414 30%, rgba(255,255,255,0.4) 50%, #c50414 70%, transparent 100%);
  background-size: 200% 100%;
  animation: amShimmer 3s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes amShimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* CTA Button */
.am-sticky-footer .am-ctam {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #df0517 !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  padding: 14px 20px !important;
  border-radius: 3px !important;
  border: none !important;
  min-height: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: none !important;
  line-height: 1.2 !important;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.15s ease;
}

.am-sticky-footer .am-ctam:hover,
.am-sticky-footer .am-ctam:focus {
  background: #df0517 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.am-sticky-footer .am-ctam:active {
  transform: scale(0.97);
}

/* Subtle gloss */
.am-sticky-footer .am-ctam::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%);
  pointer-events: none;
}

/* Hide on desktop */
@media (min-width: 769px) {
  .am-sticky-footer {
    display: none !important;
  }
}




/* ─── HERO ─── */
.sol-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 10rem 0 4rem;
}

/* Hero background image (was background: url() in CSS) */
.sol-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.sol-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(34,34,34,0.92) 0%, rgba(34,34,34,0.85) 50%, #222222 100%),
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(223, 5, 23, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.sol-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.sol-hero-content {
  max-width: 560px;
}

.sol-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(223, 5, 23, 0.1);
  border: 1px solid rgba(223, 5, 23, 0.25);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #df0517;
  margin-bottom: 1.75rem;
  font-family: 'Syne', sans-serif;
}

.sol-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.sol-hero h1 .sol-accent {
  color: #df0517;
}

.sol-hero-desc {
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.sol-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.sol-hero-buttons .sol-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-decoration: none;
}

.sol-hero-buttons .sol-btn-primary {
  background: #df0517;
  color: #ffffff;
  border-color: #df0517;
}

.sol-hero-buttons .sol-btn-primary:hover {
  background: #c00414;
  border-color: #c00414;
  box-shadow: 0 8px 32px rgba(223, 5, 23, 0.35);
  transform: translateY(-2px);
}

.sol-hero-buttons .sol-btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: #444444;
}

.sol-hero-buttons .sol-btn-outline:hover {
  border-color: #df0517;
  background: rgba(223, 5, 23, 0.06);
  transform: translateY(-2px);
}

.sol-hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #2a2a2a;
}

.sol-hero-stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.sol-hero-stat-label {
  font-size: 0.8rem;
  color: #888888;
  margin-top: 0.25rem;
}

/* ─── VISUAL CARD ─── */
.sol-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sol-hero-visual-card {
  position: relative;
  width: 90%;
  aspect-ratio: 4/3;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.sol-hero-visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(223, 5, 23, 0.1) 0%, transparent 40%);
  z-index: 1;
}

.sol-hero-visual-inner {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  padding: 1px;
}

/* Grid cells — no background-image, images are in HTML now */
.sol-hero-visual-inner div {
  background: #222222;
  position: relative;
  overflow: hidden;
}

.sol-hero-visual-inner div::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6));
  z-index: 1;
}

/* Border-radius per cell */
.sol-hero-visual-inner div:nth-child(1) { border-radius: 20px 0 0 0; }
.sol-hero-visual-inner div:nth-child(2) { border-radius: 0 20px 0 0; }
.sol-hero-visual-inner div:nth-child(3) { border-radius: 0 0 0 20px; }
.sol-hero-visual-inner div:nth-child(4) { border-radius: 0 0 20px 0; }

/* <img> tags fill each grid cell */
.sol-hero-visual-inner div img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sol-hero-visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8));
  border-radius: 20px;
}

.sol-hero-visual-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #df0517;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.sol-hero-visual-live::before {
  content: '';
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: sol-pulse-dot 1.5s infinite;
}

@keyframes sol-pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.sol-hero-visual-text {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.sol-hero-visual-meta {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}

/* ─── FLOAT CARDS ─── */
.sol-float-card {
  position: absolute;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 0.85rem 2rem;
  z-index: 10;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  animation: sol-float-gentle 4s ease-in-out infinite;
}

.sol-float-card-1 {
  top: -10px;
  right: -20px;
  animation-delay: 0s;
}

.sol-float-card-2 {
  bottom: 40px;
  left: -30px;
  animation-delay: 2s;
}

@keyframes sol-float-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.sol-float-card-label {
  font-size: 8px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.sol-float-card-value {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

.sol-float-card-value.sol-green {
  color: #22c55e;
}

/* ─── CONTAINER ─── */
.sol-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .sol-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sol-hero {
    min-height: auto;
    padding: 5rem 0 3rem;
  }

  .sol-hero-visual {
    max-width: 500px;
  }
}

@media (max-width: 640px) {
  .sol-hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .sol-hero-buttons {
    flex-direction: column;
  }

  .sol-hero-buttons .sol-btn {
    width: 100%;
    justify-content: center;
  }

  .sol-float-card {
    display: none;
  }
}

/* ─── USE CASES ─── */
.sol-use-cases {
  padding: 7rem 0;
  background: 
#222222;
}
.sol-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0rem;
}
.sol-section-label {
  font-family: inherit !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: 
#df0517;
  margin-bottom: 0rem;
  display: block;
}
.sol-section-title {
  font-family: inherit !important;
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
  margin-top: 10px !important;
  color: 
#ffffff;
}
.sol-section-desc {
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  max-width: 800px;
}
.sol-use-cases-header {
  text-align: center;
  margin-bottom: 4rem;
}
.sol-use-cases-header .sol-section-desc {
  margin: 0 auto;
}
.sol-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.sol-use-case-card {
  background: 
#1a1a1a;
  border: 1px solid 
#2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}
.sol-use-case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(223, 5, 23, 0.12);
  border-color: rgba(223, 5, 23, 0.2);
}
.sol-use-case-img {
  width: 100%;
  height: 200px;
  background: 
#222222;
  position: relative;
  overflow: hidden;
}
.sol-use-case-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, 
#1a1a1a);
  z-index: 1;
  pointer-events: none;
}
.sol-use-case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.sol-use-case-card:hover .sol-use-case-img img {
  opacity: 0.85;
}
.sol-use-case-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(223, 5, 23, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
  font-size: 1.5rem;
  line-height: 1;
}
.sol-use-case-content {
  padding: 1.5rem;
}
.sol-use-case-content h3 {
  font-size: 18px !important;
  font-weight: 600 !important;
  margin-bottom: 0.75rem;
  color: 
#ffffff;
}
.sol-use-case-content p {
  font-size: 14px;
  color: #fff;
  line-height: 24px;
}
/* ─── USE CASES RESPONSIVE ─── */
@media (max-width: 1024px) {
  .sol-use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .sol-use-cases-grid {
    grid-template-columns: 1fr;
  }
  .sol-container {
    padding: 0 1.25rem;
  }
}

/* ─── CTA STRIP─── */
.sol-cta-strip {
  background: #1a1a1a;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  padding: 48px 40px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}
.sol-cta-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #df0517, transparent);
}
.sol-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.sol-cta-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  min-width: 0;
}
.sol-cta-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(223, 5, 23, 0.08);
  border: 1px solid rgba(223, 5, 23, 0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.sol-cta-pulse {
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(223, 5, 23, 0.12);
  animation: solCtaPulse 2.5s ease-in-out infinite;
}
@keyframes solCtaPulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50% { transform: scale(1.1); opacity: .2; }
}
.sol-cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sol-cta-eyebrow {
  font-size: 10px; color: #df0517;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 6px;
}
.sol-cta-dot {
  width: 4px; height: 4px;
  border-radius: 50%; background: #df0517;
  display: inline-block; flex-shrink: 0;
  animation: solCtaDot 2s infinite;
}
@keyframes solCtaDot { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
.sol-cta-headline {
  font-size: 22px; font-weight: 700; color: #fff;
  line-height: 1.3; margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;
  text-align: left;
}
.sol-cta-headline span { color: #df0517; }
.sol-cta-sub {
  font-size: 14px; color: #888;
  font-weight: 300; line-height: 1.5;
  text-align: left;
}
.sol-cta-right {
  display: flex; align-items: center; gap: 24px; flex-shrink: 0;
}
.sol-cta-stats {
  display: flex; gap: 24px;
  padding-right: 24px;
  border-right: 1px solid #2a2a2a;
}
.sol-cta-stat { text-align: center; }
.sol-cta-stat-val {
  font-size: 20px; font-weight: 700; color: #fff;
  display: block; line-height: 1;
}
.sol-cta-stat-val em { color: #df0517; font-style: normal; }
.sol-cta-stat-label {
  font-size: 10px; color: #555;
  letter-spacing: .08em; margin-top: 4px; display: block;
}
.sol-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: #df0517; border: none; border-radius: 3px;
  font-size: 14px; font-weight: 700; color: #fff !important;
  text-decoration: none !important; white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  transition: background .2s, transform .2s;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(223, 5, 23, 0.3);
}
.sol-cta-btn:hover {
  background: #f01e30 !important;
  transform: translateY(-2px);
  color: #fff !important;
}
@media (max-width: 900px) {
  .sol-cta-strip { padding: 40px 20px; }
  .sol-cta-inner { flex-direction: column; text-align: center; }
  .sol-cta-left { flex-direction: column; align-items: center; }
  .sol-cta-text { align-items: center; }
  .sol-cta-headline { text-align: center; }
  .sol-cta-sub { text-align: center; }
  .sol-cta-right { flex-direction: column; align-items: center; }
  .sol-cta-stats {
    border-right: none; padding-right: 0;
    border-bottom: 1px solid #2a2a2a; padding-bottom: 16px;
  }
}


/* ─── FEATURES SECTION ─── */
.sol-features {
  padding: 5rem 0;
  background: #222222;
}

.sol-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 11rem;
}

.sol-feature-row:last-child {
  margin-bottom: 0;
}

.sol-feature-row.sol-reversed .sol-feature-text {
  order: 2;
}

.sol-feature-row.sol-reversed .sol-feature-media {
  order: 1;
}

.sol-feature-text .sol-section-label {
  font-family: inherit !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #df0517;
  margin-bottom: 0;
  display: block;
}

.sol-feature-text h2 {
  font-family: inherit !important;
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
  margin-top: 10px !important;
  color: #ffffff;
}

.sol-feature-text p {
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  max-width: 640px;
}

.sol-feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sol-feature-bullets li {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
}

/* ─── FEATURE MEDIA CARD ─── */
.sol-feature-media-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 2rem;
  overflow: hidden;
  position: relative;
}

.sol-feature-media-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(223, 5, 23, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.sol-feature-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
}

/* ─── FEATURES RESPONSIVE ─── */
@media (max-width: 1024px) {
  .sol-feature-row {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
  }

  .sol-feature-row.sol-reversed .sol-feature-text {
    order: 1;
  }

  .sol-feature-row.sol-reversed .sol-feature-media {
    order: 2;
  }
}

@media (max-width: 640px) {
  .sol-feature-row {
    margin-bottom: 4rem;
  }
}

/* ─── CAPABILITIES SECTION ─── */
.sol-capabilities {
  padding: 5rem 0;
  background: #222222;
  border-top: 0px solid #2a2a2a;
}

.sol-capabilities-header {
  text-align: center;
  margin-bottom: 4rem;
}

.sol-capabilities-header .sol-section-label {
  font-family: inherit !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #df0517;
  margin-bottom: 0rem;
  display: block;
}

.sol-capabilities-header .sol-section-title {
  font-family: inherit !important;
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
  margin-top: 10px !important;
  color: #ffffff;
}

.sol-capabilities-header .sol-section-desc {
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.sol-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ─── CAPABILITY CARD ─── */
.sol-cap-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.sol-cap-card::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(223, 5, 23, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}

.sol-cap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(223, 5, 23, 0.12);
  border-color: rgba(223, 5, 23, 0.2);
}

.sol-cap-card:hover::before {
  opacity: 1;
}

/* ─── CARD IMAGE ─── */
.sol-cap-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.sol-cap-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, #1a1a1a 100%);
  pointer-events: none;
}

.sol-cap-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.sol-cap-card:hover .sol-cap-img img {
  transform: scale(1.05);
}

/* ─── CARD CONTENT ─── */
.sol-cap-card h3 {
  font-size: 18px !important;
  font-weight: 600 !important;
  margin-bottom: 0.75rem;
  color: #ffffff;
  padding: 1.25rem 1.5rem 0;
}

.sol-cap-list {
  list-style: none;
  padding: 0 1.5rem 1.5rem;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.sol-cap-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}

.sol-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(223, 5, 23, 0.15);
  color: #df0517;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

/* ─── CAPABILITIES RESPONSIVE ─── */
@media (max-width: 1024px) {
  .sol-capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .sol-capabilities-grid {
    grid-template-columns: 1fr;
  }
  .sol-capabilities {
    padding: 4rem 0;
  }
}
.solpricingsupportbox-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  max-width:1200px;
  margin:0 auto;
}

/* Tablet */
@media (max-width:1024px){
  .solpricingsupportbox-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* ─── SOLUTION RESOURCES GRID ─── */
.solpricingsupportbox-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  column-gap: 30px !important;
  row-gap: 30px !important;
  max-width: 1400px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  animation: solFadeIn 1s ease-out 0.3s both;
}

@keyframes solFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ─── CARD BOX ─── */
.solpricingsupportbox-grid .solpricingsupportbox-box {
  background: #1a1a1a !important;
  border: 1px solid #2a2a2a !important;
  border-radius: 16px !important;
  padding: 36px 32px !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex !important;
  flex-direction: column !important;
}

/* ─── BACKGROUND EFFECT ─── */
.solpricingsupportbox-grid .solpricingsupportbox-box::before {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(ellipse at center, rgba(223,5,23,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 0.5s;
  opacity: 0;
}

.solpricingsupportbox-grid .solpricingsupportbox-box::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  height: 60%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' fill='none'%3E%3Cpath d='M10 160 Q60 120 110 140 Q160 160 200 120' stroke='%23ffffff08' stroke-width='1.5' fill='none'/%3E%3Cpath d='M10 180 Q60 140 110 160 Q160 180 200 140' stroke='%23ffffff06' stroke-width='1.5' fill='none'/%3E%3Cpath d='M10 140 Q60 100 110 120 Q160 140 200 100' stroke='%23ffffff05' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: bottom right;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* ─── HOVER ─── */
.solpricingsupportbox-grid .solpricingsupportbox-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(223,5,23,0.2);
  border-color: rgba(223,5,23,0.2) !important;
}

.solpricingsupportbox-grid .solpricingsupportbox-box:hover::before {
  opacity: 1;
}

/* ─── CONTENT ─── */
.solpricingsupportbox-grid .solpricingsupportbox-content {
  position: relative;
  z-index: 1;
  display: flex !important;
  flex-direction: column !important;
  flex: 1;
}

.solpricingsupportbox-grid .solpricingsupportbox-content h3 {
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #fff !important;
  margin-bottom: 10px !important;
  letter-spacing: -0.02em;
}

.solpricingsupportbox-grid .solpricingsupportbox-content p {
  font-size: 16px !important;
  color: #fff !important;
  line-height: 24px !important;
  margin-bottom: 28px !important;
  flex: 1;
  font-weight: 300;
}

/* ─── BUTTON ─── */
.solpricingsupportbox-grid .solpricingsupportbox-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: transparent !important;
  color: #fff !important;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  letter-spacing: 0.01em;
  align-self: flex-start;
  margin-top: auto;
}

.solpricingsupportbox-grid .solpricingsupportbox-btn:hover {
  color: #fff !important;
  background: rgba(223,5,23,0.08) !important;
  box-shadow: 0 0 16px rgba(223,5,23,0.15);
}

.solpricingsupportbox-grid .solpricingsupportbox-btn span {
  transition: transform 0.3s ease;
  display: inline-block;
}

.solpricingsupportbox-grid .solpricingsupportbox-btn:hover span {
  transform: translateX(3px);
}

/* ─── RESPONSIVE ─── */

/* Tablet */
@media (max-width: 1024px) {
  .solpricingsupportbox-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile */
@media (max-width: 580px) {
  .solpricingsupportbox-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Mobile */
@media (max-width:640px){
  .solpricingsupportbox-grid{
    grid-template-columns:1fr;
  }
}
/* ─── TESTIMONIAL SECTION ─── */
.sol-testimonial {
  padding: 4rem 0;
  background: #222222;
}

/* ─── STATIC CARD BOX ─── */
.sol-testimonial-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 6rem 4rem 0rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.sol-testimonial-card:hover {
  box-shadow: 0 20px 50px rgba(223, 5, 23, 0.12);
  border-color: rgba(223, 5, 23, 0.2);
}

/* ─── SLIDE TRACK ─── */
.sol-testimonial-track {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

/* ─── SLIDE ITEMS ─── */
.sol-tslide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.sol-tslide.sol-tslide-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

.sol-tslide.sol-tslide-enter-right {
  opacity: 0;
  transform: translateX(60px);
  transition: none;
}

.sol-tslide.sol-tslide-enter-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: none;
}

.sol-tslide.sol-tslide-exit-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: absolute;
}

.sol-tslide.sol-tslide-exit-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: absolute;
}

/* ─── QUOTE TEXT ─── */
.sol-tslide .sol-quote-text {
  font-size: 18px;
  font-style: italic;
  color: #fff;
  line-height: 1.8;
  font-weight: 400;
  margin: 0 0 2rem 0;
  padding: 0;
  border: none;
}

/* ─── AUTHOR ─── */
.sol-testimonial-author {
  display: flex;
  gap: 0.85rem;
}

.sol-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.sol-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sol-author-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 2px;
}

.sol-author-name {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.sol-author-role {
  font-size: 14px;
  color: #fff;
}

/* ─── DOT NAV (INSIDE BOX) ─── */
.sol-testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
  position: relative;
  z-index: 3;
}

.sol-tdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sol-tdot.sol-tdot-active {
  background: #df0517;
  transform: scale(1.25);
}

.sol-tdot:hover {
  background: #555;
}

/* ─── TESTIMONIAL RESPONSIVE ─── */
@media (max-width: 768px) {
  .sol-testimonial-card {
    padding: 2.5rem 2rem 1.5rem;
  }

  .sol-tslide .sol-quote-text {
    font-size: 16px;
  }

  .sol-testimonial-track {
    min-height: 260px;
  }
}

@media (max-width: 480px) {
  .sol-testimonial {
    padding: 3rem 0;
  }

  .sol-testimonial-card {
    padding: 2rem 1.5rem 1.25rem;
  }

  .sol-tslide .sol-quote-text {
    font-size: 15px;
  }

  .sol-testimonial-track {
    min-height: 340px;
  }
}
.sol-feature-bullets li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: rgba(223, 5, 23, 0.15);
  color: #df0517;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  margin-right: 0.65rem;
}



.rt-pagination .pagination-list > .active > a, .rt-pagination .pagination-list > .active > a:focus, .rt-pagination .pagination-list > .active > a:hover, .rt-pagination .pagination-list > .active > span, .rt-pagination .pagination-list > .active > span:focus, .rt-pagination .pagination-list > .active > span:hover {
  background-color: #df0517 !important;
  border-color: #df0517 !important;
  color: #fff;
  cursor: default;
  z-index: 3;
}

.rt-pagination .pagination-list > .active > a, .rt-pagination .pagination-list > .active > a:focus, .rt-pagination .pagination-list > .active > a:hover, .rt-pagination .pagination-list > .active > span, .rt-pagination .pagination-list > .active > span:focus, .rt-pagination .pagination-list > .active > span:hover {
  background-color: #df0517 !important;
  border-color: #df0517 !important;
}
.rt-pagination .pagination-list > li > a:focus, .rt-pagination .pagination-list > li > a:hover, .rt-pagination .pagination-list > li > span:focus, .rt-pagination .pagination-list > li > span:hover {
  border-color: #df0517 !important;
}
.blogfeatured-section {
  padding: 40px var(--pad) 48px;
  max-width: 1400px;
}

.blogfeatured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  cursor: pointer;
}

.blogfc-image {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.bfc-body {}

.bfc-category {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #df0517;
  margin-bottom: 14px;
}

.bfc-title {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 40px;
  color: #fff;
  margin-bottom: 18px;
  text-decoration: none;
  display: block;
}

.bfc-title:hover {
  text-decoration: underline;
}

.bfc-excerpt {
  font-size: 18px;
  color: #fff;
  line-height: 30px;
  margin-bottom: 28px;
  max-width: 600px;
  font-weight: 300;
}

.bfc-divider {
  width: 100%;
  height: 1px;
  background: #2a2a2a;
  margin-bottom: 20px;
}

/* Tablet — 1024px and below */
@media (max-width: 1024px) {
  .blogfeatured-card {
    gap: 28px;
  }

  .bfc-title {
    font-size: 26px;
    line-height: 36px;
  }

  .bfc-excerpt {
    font-size: 16px;
    line-height: 26px;
  }
}

/* Small tablet — 768px and below: stack layout */
@media (max-width: 768px) {
  .blogfeatured-section {
    padding: 28px var(--pad) 36px;
  }

  .blogfeatured-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blogfc-image {
    border-radius: 12px;
    aspect-ratio: 16 / 9;
  }

  .blogfc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .bfc-title {
    font-size: 24px;
    line-height: 34px;
    letter-spacing: -0.5px;
  }

  .bfc-excerpt {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
    max-width: 100%;
  }
}

/* Mobile — 480px and below */
@media (max-width: 480px) {
  .blogfeatured-section {
    padding: 20px var(--pad) 28px;
  }

  .blogfeatured-card {
    gap: 18px;
  }

  .bfc-title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 12px;
  }

  .bfc-excerpt {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 16px;
  }

  .bfc-category {
    font-size: 11px;
    margin-bottom: 10px;
  }
}

.ams-wrap{max-width:1400px;margin:0 auto;padding:0rem 1.5rem}
.ams-sect{margin-top:2.5rem}
.ams-sect-head{display:flex;align-items:baseline;justify-content:space-between;margin-bottom:1rem;padding-bottom:.75rem}
.ams-sect-head h2{font-size:30px; line-height:40px; font-weight:600;color:#fff}
.ams-sect-head span{font-size:12px;color:#555}
.ams-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px}
.ams-card{background:#1a1a1a;border:1px solid #2a2a2a;border-radius:16px;padding:18px 16px;display:flex;flex-direction:column;gap:8px;text-decoration:none;color:#fff;transition:transform .3s,box-shadow .3s,border-color .3s}
.ams-card:hover{transform:translateY(-4px);box-shadow:0 10px 30px rgba(223,5,23,.18);border-color:rgba(223,5,23,.3)}
.ams-card-title{font-size:16px;font-weight:600;line-height:1.35;color:#fff}
.ams-card-desc{font-size:14px;color:#fff;line-height:1.55;flex:1}
.ams-tags{display:flex;gap:6px;flex-wrap:wrap;margin-top:4px}
.ams-tag{font-size:11px;padding:2px 8px;border-radius:4px;background:rgba(255,255,255,.04);color:#555;border:1px solid #2a2a2a}
@media(max-width:700px){.ams-grid{grid-template-columns:1fr 1fr}}
@media(max-width:460px){.ams-grid{grid-template-columns:1fr}}

.dk-page h2 {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-size: 24px ;
  margin-bottom: 16px ;
  line-height: 30px ;
  font-weight: 500 ;
}

.dk-page p {
  font-family: inherit ;
  color: #fff ;
  font-size: 16px;
  font-weight: 400 ;
  line-height: 1.7;
}

.dk-page a {
    color: #df0517;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-family: 'Poppins', sans-serif !important;
}

/*ABOUT US */

.abt-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ── Full-bleed background image ── */
.abt-hero-bg {
  position: relative;
  width: 100%; aspect-ratio: 21/9;
  overflow: hidden;
height:500px;
}

.abt-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: brightness(0.38);
}

.abt-hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(34,34,34,0.5) 60%,
    #222222 100%
  );
}

/* ── Centered text overlay ── */
.abt-hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 40px;
}

.abt-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: #fff; margin-bottom: 0px;
  background: rgba(223,5,23,0.1);
  border: 1px solid rgba(223,5,23,0.25);
  padding: 6px 16px; border-radius: 3px;
}

.abt-hero-title {
  font-size: 40px;
  font-weight: 800; line-height: 54px;
  color: #fff; margin-bottom: 20px;
  letter-spacing: -1px;
}
.abt-hero-title span { color: #df0517; }

.abt-hero-desc {
  font-size:18px; font-weight: 400;
  color: #fff; line-height: 1.85;
  max-width: 800px; margin-bottom: 36px;
}

.abt-hero-actions {
  display: flex; gap: 12px; align-items: center;
}

.abt-hero-btn-primary {
  background: var(--theme); color: #fff;
  padding: 12px 28px; border-radius: 8px;
  font-size: 0.85rem; font-weight: 600;
  text-decoration: none; transition: opacity 0.2s;
  font-family: 'Poppins', sans-serif;
}
.abt-hero-btn-primary:hover { opacity: 0.88; }

.abt-hero-btn-ghost {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff; padding: 12px 28px; border-radius: 8px;
  font-size: 0.85rem; font-weight: 400;
  text-decoration: none; transition: background 0.2s;
  font-family: 'Poppins', sans-serif;
}
.abt-hero-btn-ghost:hover { background: rgba(255,255,255,0.14); }

/* ── Floating stat pills ── */
.abt-hero-stat-tl {
  position: absolute; top: 28px; left: 40px;
  background: rgba(26,26,26,0.82);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  padding: 12px 18px; border-radius: 10px;
  display: flex; align-items: center; gap: 12px;
}

.abt-hero-stat-tr {
  position: absolute; top: 28px; right: 40px;
  background: rgba(26,26,26,0.82);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  padding: 12px 18px; border-radius: 10px;
  display: flex; align-items: center; gap: 12px;
}

.abt-hstat-icon { font-size: 1.2rem; }
.abt-hstat-val  { font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1; }
.abt-hstat-lbl  { font-size: 0.68rem; color: var(--muted); margin-top: 2px; }

/* ── 3-image mosaic strip ── */
.abt-hero-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3px;
  margin-top: 3px;
}

.abt-hero-mosaic-cell {
  position: relative; overflow: hidden;
}

.abt-hero-mosaic-cell img {
  width: 100%; display: block;
  aspect-ratio: 16/9; object-fit: cover;
  filter: brightness(0.7);
  transition: filter 0.3s, transform 0.4s;
}
.abt-hero-mosaic-cell:first-child img { aspect-ratio: 16/8; }
.abt-hero-mosaic-cell:hover img {
  filter: brightness(0.9);
  transform: scale(1.03);
}

/* ── Stat bar ── */
.abt-hero-stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--box);
}

.abt-hsr-cell {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  display: flex; align-items: center; gap: 16px;
}
.abt-hsr-cell:last-child { border-right: none; }

.abt-hsr-ico { font-size: 1.6rem; flex-shrink: 0; }
.abt-hsr-val { font-size: 1.6rem; font-weight: 700; color: var(--white); line-height: 1; }
.abt-hsr-lbl { font-size: 0.72rem; color: var(--muted); margin-top: 3px; font-weight: 300; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .abt-hero-bg              { aspect-ratio: 4/3; }
  .abt-hero-stat-tl,
  .abt-hero-stat-tr         { display: none; }
  .abt-hero-title           { font-size: 2rem; letter-spacing: -0.5px; }
  .abt-hero-desc            { font-size: 0.85rem; }
  .abt-hero-actions         { flex-direction: column; gap: 10px; }
  .abt-hero-mosaic          { grid-template-columns: 1fr 1fr; }
  .abt-hero-mosaic-cell:first-child { grid-column: span 2; }
  .abt-hero-stats-row       { grid-template-columns: repeat(2,1fr); }
  .abt-hsr-cell:nth-child(2)        { border-right: none; }
  .abt-hsr-cell                     { border-bottom: 1px solid var(--border); padding: 22px 20px; }
  .abt-hsr-cell:nth-child(3),
  .abt-hsr-cell:nth-child(4)        { border-bottom: none; }
}


/* ════════════════════════════════════════
   OUR VALUES — Ant Media About Us
   3-column card grid with image headers
   ════════════════════════════════════════ */

.our-values {
  background: #222;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0px 60px;
max-width: 1400px;
  margin: 0 auto;
}

.values-inner { max-width: 1200px; margin: 0 auto; }

.values-header {
  text-align: center;
  margin-bottom: 52px;
}
.values-header .section-sub { margin: 0 auto; }

/* ── Grid ── */
.values-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
}

.val-card {
  background: var(--box);
  padding: 36px 30px;
  transition: background 0.25s;
}
.val-card:hover { background: #1e1e1e; }

/* card image */
.val-img {
  width: 100%; aspect-ratio: 16/7; object-fit: cover;
  display: block; border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  transition: opacity 0.25s;
}
.val-card:hover .val-img { opacity: 0.9; }

.val-name {
  font-size: 0.95rem; font-weight: 600;
  color: var(--white); margin-bottom: 10px;
}
.val-desc {
  font-size: 0.83rem; color: var(--muted);
  line-height: 1.8; font-weight: 300;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .our-values        { padding: 52px 20px; }
  .values-grid       { grid-template-columns: 1fr; }
}

.manifesto {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 0px;
}

.manifesto-img-banner {
  width: 100%;
  aspect-ratio: 21/6;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  border: 1px solid #2a2a2a;
  margin-bottom: 52px;
}

.mf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  overflow: hidden;
}

.mf-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 26px;
  border-bottom: 1px solid #2a2a2a;
  border-right: 1px solid #2a2a2a;
  transition: background 0.2s;
}

.mf-item:hover {
  background: #1a1a1a;
}

.mf-item:nth-child(even) {
  border-right: none;
}

.mf-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.mf-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.mf-t {
  font-size: 14px;
  color: #fff;
  line-height: 1.7;
  font-weight: 300;
}

@media (max-width: 960px) {
  .manifesto {
    padding: 52px 20px;
  }

  .mf-grid {
    grid-template-columns: 1fr;
  }

  .mf-item {
    border-right: none;
  }

  .mf-item:nth-last-child(-n+2) {
    border-bottom: 1px solid #2a2a2a;
  }

  .mf-item:last-child {
    border-bottom: none;
  }
}

/* ── NEWS RELEASES ── */
.am-news-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0px;
}
.am-news-releases {
  padding: 0px 0;
  border-bottom: 1px solid var(--am-border);
}
 
.am-release-list {
  display: flex;
  flex-direction: column;
}
 
.am-release-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid var(--am-border);
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.am-release-item:first-child {
  border-top: 1px solid var(--am-border);
}
.am-release-item:hover {
  background: var(--am-surface);
}
 
.am-release-thumb {
  padding: 20px 20px 20px 0;
  display: flex;
  align-items: center;
}
.am-release-thumb img {
  width: 160px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  flex-shrink: 0;
}
 
.am-release-body {
  padding: 0px 0 0px 0px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
 
.am-release-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
 
.am-source-badge {
  font-family: 'Poppins', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--am-text-muted);
  border: 1px solid var(--am-border);
  padding: 3px 9px;
  border-radius: 4px;
  white-space: nowrap;
}
 
.am-release-meta {
  font-size: 11.5px;
  color: var(--am-text-muted);
  font-weight: 400;
}
 
.am-release-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  color:#fff;
}
.am-release-item:hover .am-release-title {
  color: #fff;
}
 
.am-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.2s;
  font-family: 'Poppins', sans-serif;
}
.am-read-more:hover {
  gap: 9px;
}
.am-read-more svg {
  flex-shrink: 0;
}


/* ── COVERAGE SECTION ── */
.am-coverage {
  padding: 0px 0;
  background: var(--am-bg);
}
 
/* ── COVERAGE GRID ── */
.am-coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
 
/* ── COVERAGE CARD ── */
.am-coverage-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.22s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
padding: 10px;
}
.am-coverage-card:hover {
  border-color: #3a3a3a;
  transform: translateY(-4px);
}
 
/* ── BANNER (image area) ── */
.am-cov-banner {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px;
  gap: 10px;
  border-radius: 10px;
  margin: 8px 8px 0 8px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
 
/* Full-cover image inside banner */
.am-cov-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  object-position: center;
  border-radius: 10px;
  display: block;
}
 
/* Keep icon & name above image */
.am-cov-banner-icon,
.am-cov-banner-name {
  position: relative;
  z-index: 1;
}
 
.am-cov-banner-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.am-cov-banner-icon svg {
  display: block;
}
 
.am-cov-banner-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
}
 
/* ── CARD BODY ── */
.am-cov-body {
  padding: 16px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
 
.am-cov-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
}
 
/* Description hidden */
.am-cov-desc {
  display: none;
}
 
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .am-container,
  .am-news-container  { padding: 0 20px; }
  .am-coverage-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .am-coverage-grid   { grid-template-columns: 1fr 1fr; }
}

/* ── Marketplace ── */
.marketplace-section {
  background: #222222;
  border-radius: 16px;
  max-width: 1400px;
  margin: 0 auto;
}
 
.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 30px;
  row-gap: 30px;
  animation: fadeIn 1s ease-out 0.3s both;
}
 
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
/* ── card── */
.marketplace-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.marketplace-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(223, 5, 23, 0.2);
}
 
/* ── Thumbnail ── */
.image-box-marketplace {
  width: 100%;
  height: 140px;
  overflow: hidden;
  position: relative;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.marketplace-card:hover .image-box-marketplace {
  transform: scale(1.03);
}
.image-box-marketplace img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-box-marketplace .badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.badge.free {
  background: rgba(0, 200, 120, 0.8);
  color: #fff;
  border: 1px solid rgba(0, 200, 120, 0.3);
}
.badge.paid {
  background: rgba(223, 5, 23, 0.8);
  color: #fff;
  border: 1px solid rgba(223, 5, 23, 0.3);
}
 
/* ── Card Body ── */
.card-body-marketplace {
  padding: 16px 18px 18px;
}
.card-title-marketplace {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.6;
}
.card-desc-marketplace {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}
 
 
/* ── Responsive ── */
@media (max-width: 1100px) {
  .marketplace-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 780px) {
  .marketplace-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .marketplace-grid { grid-template-columns: 1fr; }
  .marketplace-section { padding: 20px 16px; }
}
.mp-features{padding:0;background:#222;}
.mp-features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;margin:0 auto;max-width:1400px;}
.mp-features-card{background:#1a1a1a;border:1px solid #2a2a2a;border-radius:16px;padding:32px 24px;transition:all 0.5s cubic-bezier(0.4,0,0.2,1);box-shadow:0 2px 12px rgba(0,0,0,0.08);display:flex;flex-direction:column;align-items:center;}
.mp-features-card:hover{transform:translateY(-5px);box-shadow:0 10px 30px rgba(223,5,23,0.2);}
.mp-features-card svg{width:32px!important;height:32px!important;max-width:32px!important;max-height:32px!important;display:block;}
.mp-features .feature-title{font-size:18px;font-weight:600;color:#fff;margin:0 0 14px 0;line-height:1.3;text-align:center;}
.mp-features .feature-description{font-size:14px;line-height:1.65;color:#c0c0c0;margin:0;text-align:center;}
.mp-features .feature-description strong{color:#fff;font-weight:600;}
@media(max-width:900px){.mp-features-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:640px){.mp-features{padding:40px 0;}.mp-features-grid{grid-template-columns:1fr;gap:20px;}.mp-features-card{padding:24px 20px;}}

 
/* ─── Hero ──────────────────────────────────── */
.mp-hero { min-height: calc(80vh - 62px); display: flex; align-items: center; padding: 64px 52px; }
.mp-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; max-width: 1220px; margin: 0 auto; width: 100%; }
 
.mp-hero-title { font-size: 40px; font-weight: 700; line-height: 50px; letter-spacing: -2px; margin-bottom: 8px; color: #ffffff; }
.mp-red { color: #df0517; }
.mp-hero-sub {font-size: clamp(14px, 1.5vw, 18px); font-weight: 400; color: #fff; letter-spacing: -0.3px; margin-bottom: 24px; line-height: 1.35; }
.mp-hero-desc { font-size: 15px; color: #fff; max-width: 460px; line-height: 1.85; margin-bottom: 36px; font-weight: 300; }
 
/* ─── CTA Buttons ────────────────────────────────── */
.mp-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.mp-btn-primary { background: #df0517; color: #ffffff; border: none; padding: 13px 26px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; border-radius: 0; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; transition: background 0.2s; }
.mp-btn-primary:hover { background: #b90413; }
.mp-btn-ghost { color: #ffffff; border: 1px solid #2a2a2a; padding: 12px 24px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 400; border-radius: 0; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; background: transparent; transition: border-color 0.2s, color 0.2s; }
.mp-btn-ghost:hover { border-color: #df0517; color: #df0517; }
 
/* ─── Image Column ───────────────────────────────── */
.mp-img-col { display: flex; flex-direction: column; }
.mp-img-frame { background: #1a1a1a; border: 1px solid #2a2a2a; position: relative; overflow: hidden;  border-radius: 8px;}
.mp-img-frame img { width: 100%; display: block; opacity: 0.9; }
 
/* ─── Live Badge Overlay ─────────────────────────── */
.mp-live-badge { position: absolute; top: 14px; left: 14px; background: #1a1a1a; border: 1px solid #2a2a2a; padding: 8px 13px; display: flex; align-items: center; gap: 8px; }
.mp-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #df0517; flex-shrink: 0; animation: mp-pulse 2s ease-in-out infinite; }
@keyframes mp-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(223, 5, 23, 0.55); } 50% { box-shadow: 0 0 0 6px rgba(223, 5, 23, 0); } }
.mp-live-txt { font-size: 12px; font-weight: 500; color: #ffffff; }
.mp-live-sub { font-size: 10px; color: #555555; }
 
/* ─── Subtitle Pill Overlay ──────────────────────── */
.mp-sub-pill { position: absolute; bottom: 14px; right: 14px; background: #1a1a1a; border: 1px solid #2a2a2a; padding: 9px 14px; display: flex; align-items: center; gap: 8px; }
.mp-sub-pill i { font-size: 14px; color: #df0517; }
.mp-sub-pill-txt { font-size: 11px; color: #888888; line-height: 1.4; }
.mp-sub-pill-txt strong { color: #ffffff; display: block; font-size: 12px; margin-bottom: 1px; }
 
/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .mp-nav { padding: 0 24px; }
  .mp-nav-links { display: none; }
  .mp-hero { padding: 48px 24px; }
  .mp-inner { grid-template-columns: 1fr; gap: 48px; }
  .mp-hero-title { font-size: clamp(32px, 8vw, 52px); }
}
 
/* ── Case Study Post ── */
.cs-grid{display:flex;gap:16px; margin-bottom: 30px;}
.cs-box{flex:1;border:1px solid #f9f9f9;border-radius:4px;overflow:hidden; background:#f9f9f9;}
.cs-head{background:#df0517;padding:12px 16px;}
.cs-head span {color:#fff;font-size:16px;letter-spacing:0.05em;text-transform:uppercase;font-weight: 600;}
.cs-list{margin:0;padding:16px 16px 16px 12px;list-style:none;}
.cs-list li{display:flex;align-items:flex-start;gap:10px;padding:8px 0;border-bottom:1px solid #f0f0f0;font-size:14px;line-height:1.5;color:#000;}
.cs-list li:last-child{border-bottom:none;}
.cs-dot{width:8px;height:8px;min-width:8px;border-radius:50%;background:#df0517;margin-top:5px;}
.cs-results{margin:0;padding:12px;list-style:none;}
.cs-results li{display:flex;align-items:center;gap:12px;padding:10px 4px;border-bottom:1px solid #f0f0f0;}
.cs-results li:last-child{border-bottom:none;}
.cs-icon{width:36px;height:36px;min-width:36px;border-radius:8px;background:#fdecea;display:flex;align-items:center;justify-content:center;}
.cs-stat{font-size:17px;font-weight:700;color:#df0517;line-height:1.2;}
.cs-label{font-size:12px;color:#666;margin-top:2px;}
@media(max-width:640px){
  .cs-grid{flex-direction:column;}
}

/* ===========================================
   Case Study Section
   =========================================== */
.casestudy-section {
  background-color: #222;
  min-height: 600px;
  padding: 80px 20px;
  position: relative;
}

.casestudy-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* ===========================================
   Left Column - 40%
   =========================================== */
.casestudy-info {
  flex: 0 0 calc(40% - 20px);
  color: #fff;
}

.casestudy-info h1 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 1.5rem 0;
  color: #fff;
}

.casestudy-info p {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.casestudy-info p.lead {
  font-size: 18px;
  margin-bottom: 2rem;
}

/* ===========================================
   Right Column - 60% (white card)
   =========================================== */
.casestudy-form-wrapper {
  flex: 0 0 calc(60% - 20px);
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

/* ===========================================
   Form Labels - dark text
   =========================================== */
.casestudy-form-wrapper .wpforms-field-label {
  color: #111 !important;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
  font-size: 14px !important;
}

.casestudy-form-wrapper .wpforms-field-label-inline {
  color: #111 !important;
}

.casestudy-form-wrapper .wpforms-required-label {
  color: #e63946 !important;
}

/* ===========================================
   Text Inputs
   =========================================== */
.casestudy-form-wrapper .wpforms-field input[type="text"],
.casestudy-form-wrapper .wpforms-field input[type="email"],
.casestudy-form-wrapper .wpforms-field input[type="tel"],
.casestudy-form-wrapper .wpforms-field input[type="url"],
.casestudy-form-wrapper .wpforms-field input[type="number"] {
  background: #fff !important;
  border: 1px solid #d9d9d9 !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  color: #111 !important;
  width: 100%;
  font-size: 14px;
  box-sizing: border-box;
}

.casestudy-form-wrapper .wpforms-field input::placeholder {
  color: #9a9a9a !important;
}

.casestudy-form-wrapper .wpforms-field input:hover {
  border-color: #b0b0b0 !important;
}

.casestudy-form-wrapper .wpforms-field input:focus {
  background: #fff !important;
  border-color: #111 !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05) !important;
}

/* ===========================================
   Textareas - beats WPForms' inline border:none
   =========================================== */
.casestudy-form-wrapper div.wpforms-container-full .wpforms-form textarea,
.casestudy-form-wrapper div.wpforms-container-full .wpforms-form .wpforms-field textarea,
.casestudy-form-wrapper div.wpforms-container-full .wpforms-form textarea.wpforms-field-small,
.casestudy-form-wrapper div.wpforms-container-full .wpforms-form textarea.wpforms-field-medium,
.casestudy-form-wrapper div.wpforms-container-full .wpforms-form textarea.wpforms-field-large {
  background: #fff !important;
  border: 1px solid #d9d9d9 !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  color: #111 !important;
  width: 100% !important;
  font-size: 14px !important;
  min-height: 100px !important;
  resize: vertical !important;
  box-sizing: border-box !important;
  display: block !important;
}

.casestudy-form-wrapper div.wpforms-container-full .wpforms-form textarea::placeholder {
  color: #9a9a9a !important;
}

.casestudy-form-wrapper div.wpforms-container-full .wpforms-form textarea:hover {
  border-color: #b0b0b0 !important;
}

.casestudy-form-wrapper div.wpforms-container-full .wpforms-form textarea:focus {
  border-color: #111 !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05) !important;
}

/* ===========================================
   Select Dropdowns
   =========================================== */
.casestudy-form-wrapper .wpforms-field select {
  background: #fff !important;
  border: 1px solid #d9d9d9 !important;
  border-radius: 8px !important;
  padding: 12px 40px 12px 16px !important;
  color: #111 !important;
  width: 100%;
  font-size: 14px;
  box-sizing: border-box;

  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;

  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3e%3cpath d='M1 1L6 6L11 1' stroke='%23111111' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 12px 8px !important;

  cursor: pointer;
}

.casestudy-form-wrapper .wpforms-field select:has(option.placeholder:checked),
.casestudy-form-wrapper .wpforms-field select:has(option[disabled]:checked) {
  color: #9a9a9a !important;
}

.casestudy-form-wrapper .wpforms-field select option {
  background: #fff;
  color: #111;
}

.casestudy-form-wrapper .wpforms-field select option.placeholder,
.casestudy-form-wrapper .wpforms-field select option[disabled] {
  color: #9a9a9a;
}

.casestudy-form-wrapper .wpforms-field select:hover {
  border-color: #b0b0b0 !important;
}

.casestudy-form-wrapper .wpforms-field select:focus {
  background-color: #fff !important;
  border-color: #111 !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05) !important;
}

/* ===========================================
   Sublabels
   =========================================== */
div.wpforms-container-full .wpforms-field-sublabel,
.wp-core-ui div.wpforms-container-full .wpforms-field-sublabel,
.casestudy-form-wrapper .wpforms-field-sublabel {
  font-size: 12px !important;
  color: #555 !important;
}

/* ===========================================
   Field Descriptions & Limit Text
   =========================================== */
div.wpforms-container-full .wpforms-field-description,
div.wpforms-container-full .wpforms-field-limit-text,
.wp-core-ui div.wpforms-container-full .wpforms-field-description,
.wp-core-ui div.wpforms-container-full .wpforms-field-limit-text,
.casestudy-form-wrapper .wpforms-field-description,
.casestudy-form-wrapper .wpforms-field-description-after,
.casestudy-form-wrapper .wpforms-field-limit-text {
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: #555 !important;
  margin-top: 6px !important;
}

/* ===========================================
   Submit Button
   =========================================== */
.casestudy-form-wrapper .wpforms-submit {
  background-color: #df0517 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 3px !important;
  padding: 14px 28px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.casestudy-form-wrapper .wpforms-submit:hover {
  background-color: #c92d3a !important;
}

/* ===========================================
   Responsive
   =========================================== */
@media (max-width: 991px) {
  .casestudy-info,
  .casestudy-form-wrapper {
    flex: 0 0 100%;
  }

  .casestudy-info h1 {
    font-size: 28px;
  }

  .casestudy-form-wrapper {
    padding: 24px;
  }
}