/* ---------- CHECKTHOR SPECIFIC STYLES ---------- */

:root {
  --primary-red: #ff2d24;
  --dark-red: #d61510;
  --bg-black: #000000;
  --glass-stroke: rgba(255, 255, 255, 0.1);
  --text-main: #ffffff;
  --text-muted: #a1a1a8;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Custom Transparent Header */
.header-checkthor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.nav-checkthor {
  display: flex;
  gap: 30px;
}

.nav-checkthor a {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-checkthor a:hover {
  color: #ccc;
}

.nav-checkthor a.active {
  border-bottom: 2px solid var(--primary-red);
}

.btn-outline-red {
  color: #fff;
  border: 1px solid var(--primary-red);
  border-radius: 30px;
  padding: 10px 25px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-red:hover {
  background-color: rgba(255, 45, 36, 0.1);
}

.btn-primary-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-red);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(255, 45, 36, 0.3);
}

.btn-primary-red:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 45, 36, 0.4);
}

/* HERO SECTION */
.hero-checkthor {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 60px;
  display: flex;
  align-items: center;
}

/* Background element */
.hero-bg-checkthor {
  position: absolute;
  top: -120px;
  left: calc(-50vw + 50%);
  width: 100vw;
  max-width: none;
  /* Override global img max-width */
  height: calc(100% + 120px);
  object-fit: cover;
  opacity: 0.85;
  z-index: -1;
  /* Place behind everything including header */
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
}

.hero-content-checkthor {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  width: 100%;
  align-items: center;
}

.glass-box-hero {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  max-width: 600px;
  margin-bottom: 30px;
}

/* Left Column */
.hero-left {
  display: flex;
  flex-direction: column;
}

.hero-kicker-red {
  color: var(--primary-red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin: 0 0 15px;
  letter-spacing: 1px;
}

.hero-title .highlight-red {
  color: var(--primary-red);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 15px;
}

.hero-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Floating features horizontal (left side) */
.hero-features-row {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  width: 80px;
  position: relative;
}

.feat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 10px;
  height: 40px;
  width: 1px;
  background-color: rgba(255, 45, 36, 0.4);
}

.feat-icon {
  width: 40px;
  height: 40px;
  color: var(--primary-red);
}

.feat-icon svg {
  width: 100%;
  height: 100%;
}

.feat-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Center Column (Product) */
.hero-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Huge red ambient glow behind the product */
.hero-center::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 45, 36, 0.3) 0%, rgba(255, 45, 36, 0) 65%);
  z-index: 1;
  pointer-events: none;
}

.product-img-large {
  position: relative;
  z-index: 2;
  height: 65vh;
  min-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
  transform: scale(1.3);
}

.glow-base-checkthor {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 450px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 40px 10px rgba(255, 45, 36, 0.5), inset 0 0 20px rgba(255, 45, 36, 0.5);
  border: 3px solid var(--primary-red);
  background: rgba(255, 45, 36, 0.1);
  z-index: 1;
}

/* Right Column */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  width: 200px;
  justify-self: end;
  margin-right: 80px;
}

.right-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.right-feat-icon {
  width: 45px;
  height: 45px;
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.right-feat-icon svg {
  width: 100%;
  height: 100%;
}

.right-feat-text {
  font-size: 0.85rem;
  color: #fff;
  line-height: 1.4;
  max-width: 150px;
}

/* 3 COLUMN INFO SECTION */
.info-section {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.info-col {
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid var(--glass-stroke);
  border-radius: 20px;
  padding: 40px;
}

.info-title {
  color: var(--primary-red);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.info-col p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Benefits list */
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.check-red {
  color: var(--primary-red);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

/* Applications List */
.app-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.app-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.app-icon {
  width: 45px;
  height: 45px;
  color: var(--primary-red);
}

.app-icon svg {
  width: 100%;
  height: 100%;
}

.app-item span {
  font-size: 1rem;
  color: #fff;
}


/* SPECS & FLOW SECTION */
.specs-flow-section {
  padding: 0 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.specs-box,
.flow-box {
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid var(--glass-stroke);
  border-radius: 20px;
  padding: 40px;
}

.specs-title {
  color: var(--primary-red);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

/* Specs Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 12px 10px;
  font-size: 0.85rem;
  vertical-align: top;
}

.specs-table td:first-child {
  color: #fff;
  font-weight: 600;
  width: 40%;
}

.specs-table td:last-child {
  color: var(--text-muted);
}

/* Flow Diagram */
.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  position: relative;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  flex: 1;
  position: relative;
  z-index: 2;
}

.flow-step img,
.flow-step svg {
  height: 60px;
  color: #fff;
}

.flow-step h4 {
  font-size: 0.85rem;
  margin: 0;
  text-transform: uppercase;
}

.flow-step p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
  max-width: 120px;
}

/* Dashed lines connecting flow steps */
.flow-diagram::after {
  content: "";
  position: absolute;
  top: 30px;
  /* Aligned with centers of icons */
  left: 10%;
  right: 10%;
  height: 0;
  border-top: 2px dashed rgba(255, 255, 255, 0.2);
  z-index: 1;
}

/* Flow Metrics Grid */
.flow-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.metric-val {
  color: var(--primary-red);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}

.metric-val svg {
  height: 30px;
}

.metric-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 5px;
}

.metric-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}


/* BOTTOM CTA */
.cta-banner-ch {
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--glass-stroke);
  border-radius: 20px;
  margin-bottom: 80px;
  overflow: hidden;
}

.cta-banner-img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
}

.cta-banner-text {
  flex: 1;
  padding: 40px;
}

.cta-banner-text h3 {
  font-size: 1.8rem;
  margin: 0 0 10px;
}

.cta-banner-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0;
}

.cta-banner-btn {
  padding: 40px;
}


/* Responsive */
@media (max-width: 1024px) {
  .hero-content-checkthor {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left,
  .hero-right {
    align-items: center;
  }

  .hero-features-row {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .right-feat {
    flex-direction: row;
    text-align: left;
    max-width: 300px;
  }

  .info-section {
    grid-template-columns: 1fr;
  }

  .specs-flow-section {
    grid-template-columns: 1fr;
  }

  .cta-banner-ch {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-img {
    width: 100%;
  }
}