:root {
  --primary-blue: #0b3c75;
  --dark-navy: #04172f;
  --accent-blue: #1a73e8;
  --sky-blue: #5ba2f4;
  --ice-blue: #edf4fc;
  --pure-white: #ffffff;
  --text-dark: #12243d;
  --text-muted: #4e637f;
  --border-light: #d6e4f5;
}

/* Strict Times New Roman Typography */
.prod-hero-section,
.prod-hero-section * {
  font-family: "Times New Roman", Times, serif !important;
  box-sizing: border-box;
}

/* --- Section Container --- */
.prod-hero-section {
  position: relative;
  background-color: #f4f8fc;
  padding: 110px 0 85px;
  padding-top: 8rem;
  overflow: hidden;
}

.prod-hero-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.prod-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bg-gradient-glow {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 115, 232, 0.12), transparent 70%);
}

/* --- Top Tagline --- */
.prod-tagline-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(11, 60, 117, 0.04);
}

.pulse-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00c853;
  box-shadow: 0 0 0 2px rgba(0, 200, 83, 0.2);
}

.prod-tagline {
  font-size: 0.82rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--primary-blue);
  font-weight: bold;
}

/* --- Kinetic Editorial Headline --- */
.prod-hero-heading {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: bold;
  color: var(--dark-navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.heading-line {
  display: block;
  overflow: hidden;
}

.heading-word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: headingSlideUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay);
}

.text-blue {
  color: var(--accent-blue);
}

@keyframes headingSlideUp {
  0% { transform: translateY(110%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.prod-hero-subtext {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 40px;
}

/* --- Interactive Product Display Frame --- */
.prod-screen-frame {
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(11, 60, 117, 0.08);
  margin-bottom: 45px;
  text-align: left;
}

/* Left: Image Box */
.screen-visual-col {
  position: relative;
  height: 380px;
  background-color: var(--dark-navy);
}

.screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.prod-screen-frame:hover .screen-img {
  transform: scale(1.03);
}

.screen-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 60%, rgba(4, 23, 47, 0.5) 100%);
}

.screen-seal-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--dark-navy);
  color: var(--pure-white);
  border: 1px solid var(--sky-blue);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* Right: Data Column */
.screen-data-col {
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Selector Tabs */
.selector-pills-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 14px;
}

.selector-pill {
  background: var(--ice-blue);
  border: 1px solid var(--border-light);
  color: var(--primary-blue);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  transition: all 0.25s ease;
}

.selector-pill:hover,
.selector-pill.active {
  background: var(--primary-blue);
  color: var(--pure-white);
  border-color: var(--primary-blue);
}

.detail-kicker {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 4px;
}

.detail-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--dark-navy);
  margin-bottom: 8px;
}

.detail-desc {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Spec Matrix */
.spec-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: var(--ice-blue);
  border: 1px solid var(--border-light);
  padding: 12px 14px;
  border-radius: 6px;
  margin-bottom: 24px;
}

.spec-cell {
  display: flex;
  flex-direction: column;
}

.spec-lbl {
  font-size: 0.74rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.spec-val {
  font-size: 0.92rem;
  color: var(--dark-navy);
  font-weight: bold;
}

/* Action Buttons */
.screen-action-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-prod-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-blue);
  color: var(--pure-white);
  padding: 12px 22px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-prod-primary:hover {
  background: var(--accent-blue);
  transform: translateY(-2px);
}

.btn-prod-primary .btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn-prod-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-prod-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pure-white);
  color: var(--primary-blue);
  border: 1.5px solid var(--border-light);
  padding: 11px 18px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-prod-call svg {
  width: 16px;
  height: 16px;
}

.btn-prod-call:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  transform: translateY(-2px);
}

/* --- Bottom Stat Bar --- */
.prod-stats-strip {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
  color: var(--pure-white);
  border-radius: 8px;
  padding: 22px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-box {
  text-align: center;
  position: relative;
}

.stat-box:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.stat-box strong {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--pure-white);
  line-height: 1.1;
  margin-bottom: 2px;
}

.stat-box span {
  font-size: 0.92rem;
  color: #cce1fa;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .prod-screen-frame {
    grid-template-columns: 1fr;
  }
  .screen-visual-col {
    min-height: 260px;
  }
  .prod-stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-box:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .prod-hero-section {
    padding: 85px 0 50px;
  }
  .spec-matrix-grid {
    grid-template-columns: 1fr;
  }
  .screen-action-row {
    flex-direction: column;
  }
  .btn-prod-primary,
  .btn-prod-call {
    width: 100%;
    justify-content: center;
  }
  .prod-stats-strip {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .stat-box::after {
    display: none !important;
  }
}


/* Section 1 Starts */

:root {
  --primary-blue: #0b3c75;
  --dark-navy: #04172f;
  --accent-blue: #1a73e8;
  --sky-blue: #5ba2f4;
  --ice-blue: #edf4fc;
  --pure-white: #ffffff;
  --text-dark: #12243d;
  --text-muted: #4e637f;
  --border-light: #d6e4f5;
}

/* Strict Times New Roman Typography */
.tmt-product-section,
.tmt-product-section * {
  font-family: "Times New Roman", Times, serif !important;
  box-sizing: border-box;
}

/* --- Section Container --- */
.tmt-product-section {
  position: relative;
  background-color: var(--pure-white);
  padding: 105px 0 115px;
  overflow: hidden;
}

.tmt-product-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Header --- */
.tmt-product-section .section-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 55px;
}

.tmt-product-section .section-tag {
  display: inline-block;
  font-size: 0.92rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: var(--ice-blue);
  padding: 6px 20px;
  border: 1px solid #cfe0f5;
  border-radius: 4px;
  margin-bottom: 14px;
  font-weight: bold;
}

.tmt-product-section .section-title {
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  font-weight: bold;
  color: var(--dark-navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

.tmt-product-section .section-title span {
  color: var(--accent-blue);
}

.tmt-product-section .section-desc {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* --- 2-Column Main Grid --- */
.tmt-main-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: stretch;
  margin-bottom: 50px;
}

/* --- Left Column: Spec Block Cards --- */
.tmt-spec-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.spec-block-card {
  background: var(--ice-blue);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 28px 26px;
  box-shadow: 0 6px 20px rgba(11, 60, 117, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.spec-block-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-blue);
  box-shadow: 0 12px 30px rgba(11, 60, 117, 0.08);
}

.block-header {
  margin-bottom: 18px;
}

.block-kicker {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-blue);
  font-weight: bold;
  margin-bottom: 2px;
}

.block-title {
  font-size: 1.45rem;
  font-weight: bold;
  color: var(--dark-navy);
}

/* Size Pills Row */
.size-pills-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.size-pill {
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 14px 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(11, 60, 117, 0.04);
  transition: all 0.3s ease;
}

.size-pill:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  transform: translateY(-3px);
}

.size-num {
  font-size: 1rem;
  font-weight: bold;
  color: var(--primary-blue);
  line-height: 1;
}

.size-unit {
  font-size: .8rem;
  font-weight: bold;
  color: var(--accent-blue);
  margin-left: 2px;
}

.size-tag {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.size-pill:hover .size-num,
.size-pill:hover .size-unit,
.size-pill:hover .size-tag {
  color: var(--pure-white);
}

/* Applications Grid */
.applications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
}

.app-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  padding: 10px 14px;
  border-radius: 6px;
}

.app-item.span-two {
  grid-column: span 2;
}

.app-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--accent-blue);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

.app-label {
  font-size: 0.98rem;
  font-weight: bold;
  color: var(--text-dark);
}

/* --- Right Column: Showcase Card --- */
.tmt-showcase-col {
  display: flex;
}

.tmt-visual-card {
  background: linear-gradient(145deg, #092a54 0%, var(--dark-navy) 100%);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(4, 23, 47, 0.2);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.card-media-wrap {
  position: relative;
  width: 100%;
  height: 200px;
}

.tmt-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(4, 23, 47, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--sky-blue);
  color: var(--pure-white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: bold;
}

.card-detail-pane {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.brands-kicker {
  font-size: 0.76rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sky-blue);
  font-weight: bold;
  margin-bottom: 4px;
}

.brands-heading {
  font-size: 1.45rem;
  font-weight: bold;
  color: var(--pure-white);
  margin-bottom: 8px;
}

.brands-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #cfe2f8;
  margin-bottom: 18px;
}

/* Brand Tokens Cloud */
.brand-tokens-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.brand-token {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #e5f0fc;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.brand-token.highlight {
  background: rgba(26, 115, 232, 0.25);
  border-color: var(--sky-blue);
  color: var(--pure-white);
}

.brand-token:hover {
  background: var(--accent-blue);
  border-color: var(--sky-blue);
  color: var(--pure-white);
  transform: translateY(-2px);
}

/* Action Box */
.card-action-box {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 18px;
}

.btn-tmt-quote {
  width: 100%;
  background: var(--accent-blue);
  color: var(--pure-white);
  padding: 13px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(26, 115, 232, 0.35);
  transition: all 0.3s ease;
}

.btn-tmt-quote:hover {
  background: #1459b3;
  transform: translateY(-2px);
}

.btn-arrow {
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.btn-tmt-quote:hover .btn-arrow {
  transform: translateX(4px);
}

.tmt-trust-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 0.78rem;
  color: #bad3f5;
}

/* --- Bottom Assurance Ribbon --- */
.tmt-bottom-strip {
  background: var(--ice-blue);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 24px 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.strip-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.strip-icon {
  font-size: 1.6rem;
  color: var(--primary-blue);
  line-height: 1;
}

.strip-item strong {
  display: block;
  font-size: 1.02rem;
  color: var(--dark-navy);
  margin-bottom: 2px;
}

.strip-item span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* =========================================================
   SCROLL REVEAL UTILITY CLASSES (Included for full standalone usage)
   ========================================================= */
.reveal-on-scroll {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.85s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-up {
  transform: translateY(35px);
}

.reveal-left {
  transform: translateX(-35px);
}

.reveal-right {
  transform: translateX(35px);
}

.reveal-scale {
  transform: scale(0.94);
}

.reveal-on-scroll.revealed.reveal-up,
.reveal-on-scroll.revealed.reveal-left,
.reveal-on-scroll.revealed.reveal-right {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-on-scroll.revealed.reveal-scale {
  opacity: 1;
  transform: scale(1);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .tmt-main-grid {
    grid-template-columns: 1fr;
  }
  .tmt-bottom-strip {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .tmt-product-section {
    padding: 85px 0 60px;
  }
  .size-pills-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .applications-grid {
    grid-template-columns: 1fr;
  }
  .app-item.span-two {
    grid-column: span 1;
  }
  .tmt-bottom-strip {
    padding: 20px 18px;
  }
}

/* Section 1 Ends  */








