@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&display=swap");
/* ================================
   TEMPLATE-2 HEADER (Logo Left)
   Matches your final HTML
================================ */
.t2-header {
  position: relative;
  z-index: 1050;
}

/* Top info bar */
.t2-top {
  background: linear-gradient(to bottom right, #059669, #0d9488, #0e7490);
}

.t2-top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 5px 0;
}

.t2-top-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.t2-top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  text-decoration: none;
}
.t2-top-link i {
  color: #FFC905;
}
.t2-top-link:hover {
  color: #FFC905;
}

.t2-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.22);
  visibility: hidden;
}

.t2-top-right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.t2-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(2, 6, 23, 0.02);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease;
}
.t2-top-btn:hover {
  transform: translateY(-1px);
  background: rgba(11, 59, 122, 0.08);
}

.t2-top-btn--accent {
  background: #ffc905;
  border-color: rgba(255, 201, 5, 0.65);
  color: #0b1220;
}
.t2-top-btn--accent:hover {
  background: #ffc905;
}

.t2-main {
  position: sticky;
  top: 0;
  background: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(2, 6, 23, 0.08);
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.06);
  z-index: 1060;
}

.t2-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

.t2-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.t2-logo {
  border-radius: 14px;
  -o-object-fit: contain;
     object-fit: contain;
}

.t2-brand-name {
  font-weight: 950;
  color: #000000;
  line-height: 1.1;
}

.t2-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 18px;
}

.t2-link {
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
  text-decoration: none;
  padding: 8px 4px;
  position: relative;
}
.t2-link:hover {
  color: #0d9486;
}
.t2-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s ease;
}
.t2-link:hover::after {
  background: #0d9486;
}

.t2-dd-btn {
  border: 0;
  background: transparent;
}

.t2-drop {
  background: #1F2937;
  border-radius: 18px;
  padding: 10px;
  border: 1px solid rgba(2, 6, 23, 0.1);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.15);
  width: 340px;
  margin-top: 10px;
}

.t2-drop-link {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 500;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
}
.t2-drop-link:hover {
  background: #0d9486;
  color: #fff;
}

.t2-drop-sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 8px 4px;
}

.t2-actions {
  justify-self: end;
  display: flex;
  align-items: center;
}

.t2-iconbtn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  background: transparent;
  text-decoration: none;
  transition: transform 0.18s ease;
}
.t2-iconbtn:hover {
  background: #0d9486;
  color: #fff;
}

.t2-cta {
  background: #FFC905;
  /* Industrial Yellow */
  color: #0B1220;
  border: none;
  border-radius: 999px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
}

.t2-burger {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(2, 6, 23, 0.12);
  background: #fff;
  display: grid;
  place-content: center;
  gap: 4px;
  padding: 0;
}

.t2-burger span {
  width: 18px;
  height: 2px;
  background: rgba(2, 6, 23, 0.7);
  border-radius: 999px;
}

.t2-off-links {
  display: grid;
  gap: 8px;
}

.t2-off-link {
  display: block;
  padding: 10px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.85);
}
.t2-off-link:hover {
  background: rgba(11, 59, 122, 0.08);
}

@media (max-width: 575.98px) {
  .t2-brand-text {
    display: none;
  }
}
/* Offcanvas wrapper */
.t2-off {
  width: 320px;
}

/* Mobile links */
.t2-off-link {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  margin: 4px 0;
  background: rgba(0, 0, 0, 0.03);
}

.t2-off-link:hover {
  background: rgba(13, 110, 253, 0.12);
  color: #0d6efd;
}

/* separator inside dropdown list */
.t2-off-sep {
  height: 1px;
  margin: 8px 10px;
  background: rgba(0, 0, 0, 0.12);
}

/* Accordion look */
.t2-off-acc {
  border: 0;
  background: transparent;
}

.t2-off-accbtn {
  border-radius: 12px !important;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.03) !important;
  font-weight: 700;
}

.t2-off-accbtn:focus {
  box-shadow: none !important;
}

.accordion-button::after {
  transform: scale(0.9);
}

.t2-footer2 {
  background: linear-gradient(to bottom right, #059669, #0d9488, #0e7490);
  color: rgba(255, 255, 255, 0.86);
  padding: 58px 0 24px;
  position: relative;
  z-index: 1;
}
.t2-footer2::before {
  content: "";
  position: absolute;
  height: 80px;
  width: 100%;
  bottom: 0;
  background-color: #000;
  opacity: 0.6;
  z-index: -1;
}
.t2-footer2::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  background-color: #000;
  opacity: 0.6;
  z-index: -1;
}

.t2f2-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
  padding-bottom: 22px;
}

.t2f2-logo {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.t2f2-logo img {
  width: 74px;
  height: 74px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1px;
}

.t2f2-name {
  font-weight: 1000;
  letter-spacing: -0.2px;
  font-size: 1.1rem;
}

.t2f2-tag {
  margin-top: 2px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.t2f2-text {
  margin-top: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
}

.t2f2-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.t2f2-socialBtn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.18s ease, background 0.18s ease;
}

.t2f2-socialBtn:hover {
  transform: translateY(-1px);
  background: rgba(255, 201, 5, 0.16);
}

.t2f2-title {
  font-weight: 1000;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.t2f2-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.t2f2-list a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 750;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.18s ease, transform 0.18s ease;
}

.t2f2-list a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 201, 5, 0.9);
  box-shadow: 0 0 0 4px rgba(255, 201, 5, 0.12);
}

.t2f2-list a:hover {
  color: #fff;
  transform: translateX(2px);
}

.t2f2-contact {
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
}

.t2f2-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: start;
}

.t2f2-ic {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffc905;
}

.t2f2-contact a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.t2f2-contact a:hover {
  color: #fff;
}

.t2f2-cta {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.t2f2-ctaBtn {
  text-decoration: none;
  background: #ffc905;
  color: #071a33;
  font-weight: 1000;
  padding: 12px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.18s ease;
}

.t2f2-ctaBtn:hover {
  transform: translateY(-1px);
}

.t2f2-ctaBtn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.t2f2-bottom {
  margin-top: 18px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgb(255, 255, 255);
  font-weight: 500;
}

.t2f2-bottomLinks a,
.t2f2-credit a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-weight: 500;
}

.t2f2-bottomLinks a:hover,
.t2f2-credit a:hover {
  color: #fff;
}

.t2f2-sep {
  opacity: 0.45;
  padding: 0 8px;
}

.t2f2-credit {
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .t2f2-top {
    grid-template-columns: 1fr;
  }
}
.inner-page-hero {
  padding: 50px 0;
  background: linear-gradient(to bottom right, #059669, #0d9488, #0e7490);
  color: #ffffff;
}

.crematorium-manufatures-step {
  border: unset !important;
  box-shadow: unset !important;
}
.crematorium-manufatures-step .t2-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}
.crematorium-manufatures-step .t2-stepCard {
  border-radius: 15px;
}

/* Projects Page */
/* ================================
   PROJECTS PAGE — COLORFUL VERSION
   (NO HTML changes)
==================================*/
/* Page wrap background (adds color depth) */
.t2p-wrap {
  background: radial-gradient(1200px 420px at 12% 5%, rgba(247, 201, 72, 0.18), transparent 55%), radial-gradient(900px 360px at 88% 12%, rgba(46, 134, 222, 0.14), transparent 52%), radial-gradient(800px 380px at 50% 95%, rgba(20, 184, 166, 0.12), transparent 55%), linear-gradient(180deg, #f5f8ff 0%, #f7fbff 45%, #f6f8fb 100%);
}

/* HERO already colorful, keep but slightly stronger */
.t2p-hero {
  padding: 66px 0 50px;
  background: linear-gradient(to bottom right, #059669, #0d9488, #0e7490);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.t2p-heroInner {
  position: relative;
}

.t2p-heroTag {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.t2p-title {
  margin: 14px 0 6px;
  font-weight: 950;
  letter-spacing: -0.6px;
  line-height: 1.05;
  font-size: clamp(2.1rem, 3.2vw, 3.2rem);
}

.t2p-lead {
  opacity: 0.92;
  max-width: 980px;
  margin: 0;
}

/* Intro card — add colored top bar and subtle tint */
.t2p-introCard {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.96) 100%);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.1);
  border: 1px solid rgba(16, 24, 40, 0.08);
  position: relative;
  overflow: hidden;
}

.t2p-introCard::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #f7c948 0%, #2e86de 50%, #14b8a6 100%);
}

.t2p-introCard::after {
  content: "";
  position: absolute;
  inset: -60px;
  background: radial-gradient(520px 240px at 10% 10%, rgba(46, 134, 222, 0.1), transparent 60%), radial-gradient(520px 240px at 90% 30%, rgba(247, 201, 72, 0.12), transparent 62%);
  pointer-events: none;
}

.t2p-introCard > * {
  position: relative;
}

@media (min-width: 992px) {
  .t2p-introCard {
    padding: 28px;
  }
}
/* Section container — colorful border + header accent */
.t2p-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 252, 255, 0.96) 100%);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.08);
  border: 1px solid rgba(46, 134, 222, 0.16);
  position: relative;
  overflow: hidden;
}

.t2p-section::before {
  content: "";
  position: absolute;
  inset: -80px;
  background: radial-gradient(700px 280px at 20% 0%, rgba(20, 184, 166, 0.1), transparent 60%), radial-gradient(700px 280px at 90% 40%, rgba(46, 134, 222, 0.1), transparent 60%), radial-gradient(520px 220px at 10% 90%, rgba(247, 201, 72, 0.1), transparent 60%);
  pointer-events: none;
}

.t2p-section > * {
  position: relative;
}

@media (min-width: 992px) {
  .t2p-section {
    padding: 26px;
  }
}
.t2p-secHead h2 {
  font-weight: 950;
  letter-spacing: -0.35px;
  margin: 0 0 8px;
  color: #071a2f;
}

.t2p-secSub {
  color: #334155;
  margin: 0;
  line-height: 1.85;
}

/* Subheads */
.t2p-subHead {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  color: #0b2a4a;
}

.t2p-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f7c948;
  box-shadow: 0 0 0 4px rgba(247, 201, 72, 0.28);
}

.t2p-paragraph {
  margin-top: 12px;
  color: #1f2937;
  line-height: 1.9;
}

/* Grids */
.t2p-grid {
  margin-top: 14px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 991px) {
  .t2p-grid {
    grid-template-columns: 1fr;
  }
}
.t2p-grid--tight {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1200px) {
  .t2p-grid--tight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .t2p-grid--tight {
    grid-template-columns: 1fr;
  }
}
/* =========================
   Project Cards — COLORFUL
========================= */
.t2p-card {
  border-radius: 18px;
  padding: 16px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.96) 100%);
  border: 1px solid rgba(16, 24, 40, 0.1);
  box-shadow: 0 16px 30px rgba(16, 24, 40, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.t2p-card::before {
  content: "";
  position: absolute;
  left: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 201, 72, 0.35), transparent 60%);
  filter: blur(2px);
}

.t2p-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 134, 222, 0.22), transparent 60%);
  filter: blur(2px);
}

.t2p-card > * {
  position: relative;
}

.t2p-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(16, 24, 40, 0.12);
}

.t2p-cardTitle {
  font-weight: 950;
  color: #071a2f;
  letter-spacing: -0.2px;
  line-height: 1.25;
  font-size: 16px;
}

.t2p-cardPlace {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #334155;
  font-weight: 900;
}

.t2p-cardPlace i {
  color: #2e86de;
}

/* Variant tints (multi relevant colors) */
.t2p-card--electric {
  border-color: rgba(46, 134, 222, 0.22);
  background: linear-gradient(180deg, rgba(240, 248, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.t2p-card--electric .t2p-cardPlace i {
  color: #2e86de;
}

.t2p-card--electric::before {
  background: radial-gradient(circle, rgba(46, 134, 222, 0.3), transparent 60%);
}

.t2p-card--gasifier {
  border-color: rgba(20, 184, 166, 0.26);
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.92) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.t2p-card--gasifier .t2p-cardPlace i {
  color: #14b8a6;
}

.t2p-card--gasifier::before {
  background: radial-gradient(circle, rgba(20, 184, 166, 0.3), transparent 60%);
}

.t2p-card--maint {
  border-color: rgba(247, 201, 72, 0.3);
  background: linear-gradient(180deg, rgba(255, 251, 235, 0.92) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.t2p-card--maint .t2p-cardPlace i {
  color: #f59e0b;
}

.t2p-card--maint::before {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.28), transparent 60%);
}

/* TN mini pills — more colorful */
.t2p-mini {
  border-radius: 999px;
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 250, 255, 0.96) 100%);
  border: 1px solid rgba(46, 134, 222, 0.18);
  font-weight: 900;
  color: #0b2a4a;
  box-shadow: 0 12px 22px rgba(16, 24, 40, 0.06);
  position: relative;
  overflow: hidden;
}

.t2p-mini::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(220px 120px at 15% 30%, rgba(247, 201, 72, 0.18), transparent 60%), radial-gradient(220px 120px at 90% 10%, rgba(46, 134, 222, 0.12), transparent 62%);
  pointer-events: none;
}

.t2p-mini:hover {
  border-color: rgba(20, 184, 166, 0.28);
}

/* Ending block — subtle color panel */
.t2p-ending {
  margin-top: 10px;
  background: radial-gradient(640px 240px at 10% 10%, rgba(247, 201, 72, 0.16), transparent 60%), radial-gradient(640px 240px at 90% 20%, rgba(20, 184, 166, 0.12), transparent 62%), linear-gradient(180deg, #f8fbff 0%, #f3f7ff 100%);
  border: 1px solid rgba(16, 24, 40, 0.1);
  border-radius: 18px;
  padding: 16px 16px;
  color: #1f2937;
  line-height: 1.9;
}

/* Bottom CTA — more punch, still light */
.t2p-bottomCta {
  border-radius: 22px;
  padding: 18px;
  background: radial-gradient(520px 200px at 12% 20%, rgba(247, 201, 72, 0.22), transparent 62%), radial-gradient(520px 200px at 88% 20%, rgba(46, 134, 222, 0.18), transparent 62%), linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.92));
  border: 1px solid rgba(16, 24, 40, 0.12);
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.t2p-bottomText {
  font-weight: 950;
  color: #071a2f;
  max-width: 820px;
}

.t2p-bottomBtns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.t2p-btnSolid, .t2p-btnOutline {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 950;
  text-decoration: none;
  transition: transform 0.16s ease, filter 0.16s ease, background 0.16s ease;
}

.t2p-btnSolid {
  background: linear-gradient(90deg, #f7c948 0%, #f59e0b 100%);
  color: #121212;
  border: 0;
}

.t2p-btnSolid:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

.t2p-btnOutline {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 250, 255, 0.96) 100%);
  color: #0b2a4a;
  border: 1px solid rgba(46, 134, 222, 0.28);
}

.t2p-btnOutline:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
}

/* Optional: headings spacing polish */
.t2p-secHead {
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(46, 134, 222, 0.22);
  margin-bottom: 8px;
}

/* =====================================
   COLOR ONLY ON PROJECT CARDS
===================================== */
/* Base card */
.t2p-card {
  border-radius: 18px;
  padding: 18px 18px;
  background: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}

/* Colored left accent */
.t2p-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: #0077cc;
}

/* subtle background tint */
.t2p-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 119, 204, 0.06), transparent 60%);
  pointer-events: none;
}

.t2p-card > * {
  position: relative;
}

/* hover */
.t2p-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* title */
.t2p-cardTitle {
  font-weight: 900;
  font-size: 16px;
  color: #0b2a4a;
  line-height: 1.3;
}

/* place */
.t2p-cardPlace {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 800;
  color: #475569;
}

.t2p-cardPlace i {
  color: #0077cc;
}

/* =====================================
   ELECTRIC CREMATORIUM (BLUE)
===================================== */
.t2p-card--electric::before {
  background: #0077ff;
}

.t2p-card--electric {
  border-color: rgba(0, 119, 255, 0.25);
  background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);
}

.t2p-card--electric .t2p-cardPlace i {
  color: #0077ff;
}

/* =====================================
   GASIFIER CREMATORIUM (GREEN)
===================================== */
.t2p-card--gasifier::before {
  background: #16a34a;
}

.t2p-card--gasifier {
  border-color: rgba(22, 163, 74, 0.25);
  background: linear-gradient(180deg, #f3fff7 0%, #ffffff 100%);
}

.t2p-card--gasifier .t2p-cardPlace i {
  color: #16a34a;
}

/* =====================================
   MAINTENANCE (ORANGE)
===================================== */
.t2p-card--maint::before {
  background: #f59e0b;
}

.t2p-card--maint {
  border-color: rgba(245, 158, 11, 0.3);
  background: linear-gradient(180deg, #fff7e8 0%, #ffffff 100%);
}

.t2p-card--maint .t2p-cardPlace i {
  color: #f59e0b;
}

/* =====================================
   TN MINI PROJECT ITEMS
===================================== */
.t2p-mini {
  border-radius: 999px;
  padding: 10px 14px;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  font-weight: 800;
  color: #0b2a4a;
  transition: all 0.2s ease;
}

.t2p-mini:hover {
  border-color: #0077cc;
  background: #f4f9ff;
}

/* =====================================
Enquiry page
===================================== */
.enquiry-pg .t2-contactNeo {
  min-height: 100vh;
}

/* =========================
   Contact Page
========================= */
/* ================================
   CONTACT PAGE (NO FORM) — C3
================================ */
.c3-contactPage {
  background: #f7f8fb;
}

.c3-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.c3-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #0b2a4a;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.c3-title {
  margin-top: 14px;
  font-weight: 900;
  color: #0b2a4a;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

.c3-sub {
  margin-top: 10px;
  color: #55657a;
  font-weight: 600;
}

/* Map card */
.c3-mapCard {
  background: #fff;
  border-radius: 18px;
  border: 2px solid #e7edf6;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}

.c3-mapTop {
  padding: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(to bottom right, #059669, #0d9488, #0e7490);
  color: #fff;
}

.c3-mapTitle {
  font-weight: 900;
}

.c3-dirBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffb703;
  color: #0b2a4a;
  font-weight: 900;
  text-decoration: none;
}

.c3-dirBtn:hover {
  filter: brightness(0.95);
}

.c3-mapFrame {
  height: 100%;
}

.c3-mapFrame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.c3-mapNote {
  padding: 14px 16px;
  background: #f3f8ff;
  color: #22425f;
  font-weight: 700;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  position: absolute;
  bottom: 20px;
}

/* Right stack */
.c3-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.c3-card {
  background: #fff;
  border-radius: 18px;
  border: 2px solid #e7edf6;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.c3-card > * {
  position: relative;
}

.c3-cardHead {
  display: flex;
  gap: 12px;
  align-items: center;
}

.c3-cardIcon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(to bottom right, #059669, #0d9488, #0e7490);
  color: #fff;
  font-size: 18px;
}

.c3-cardTitle {
  font-weight: 900;
  color: #0b2a4a;
}

.c3-cardSub {
  color: #64748b;
  font-weight: 700;
  font-size: 13px;
}

.c3-cardBody {
  margin-top: 12px;
  color: #223042;
  font-weight: 700;
  line-height: 1.55;
}

.c3-links a {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f6f7fb;
  color: #0b2a4a;
  text-decoration: none;
  font-weight: 900;
  margin-top: 10px;
}

.c3-links a i {
  color: #0e9189;
}

.c3-links a:hover {
  background: #eef4ff;
}

.c3-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.c3-actionBtn {
  flex: 1;
  min-width: 160px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  border: 2px solid transparent;
}

.c3-actionBtn--call {
  background: #0b2a4a;
  color: #fff;
}

.c3-actionBtn--wa {
  background: #25d366;
  color: #083a1f;
}

.c3-actionBtn:hover {
  filter: brightness(0.97);
}

/* Departments */
.c3-deptHead {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.c3-deptTitle {
  font-weight: 900;
  color: #0b2a4a;
}

.c3-deptSub {
  color: #55657a;
  font-weight: 700;
}

.c3-deptCard {
  border-radius: 18px;
  padding: 18px;
  border: 2px solid transparent;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  background: #fff;
  position: relative;
  overflow: hidden;
  min-height: 210px;
}

.c3-deptCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(0, 0, 0, 0.05), transparent 55%);
  pointer-events: none;
}

.c3-deptCard > * {
  position: relative;
}

.c3-deptIcon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 12px;
}

.c3-deptName {
  font-weight: 900;
  color: #0b2a4a;
  font-size: 16px;
}

.c3-deptText {
  margin-top: 8px;
  color: #4b5d72;
  font-weight: 700;
  line-height: 1.5;
}

.c3-deptLink {
  margin-top: 14px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 900;
  text-decoration: none;
  color: #0b2a4a;
}

.c3-deptLink:hover {
  text-decoration: underline;
}

/* color variants */
.c3-deptCard--blue {
  background: linear-gradient(180deg, #f3f8ff 0%, #ffffff 70%);
  border-color: rgba(0, 119, 204, 0.25);
}

.c3-deptCard--blue .c3-deptIcon {
  background: #0077cc;
}

.c3-deptCard--green {
  background: linear-gradient(180deg, #f2fff7 0%, #ffffff 70%);
  border-color: rgba(22, 163, 74, 0.25);
}

.c3-deptCard--green .c3-deptIcon {
  background: #16a34a;
}

.c3-deptCard--amber {
  background: linear-gradient(180deg, #fff7e8 0%, #ffffff 70%);
  border-color: rgba(245, 158, 11, 0.3);
}

.c3-deptCard--amber .c3-deptIcon {
  background: #f59e0b;
}

.c3-deptCard--purple {
  background: linear-gradient(180deg, #f6f3ff 0%, #ffffff 70%);
  border-color: rgba(139, 92, 246, 0.25);
}

.c3-deptCard--purple .c3-deptIcon {
  background: #8b5cf6;
}

/* Hours */
.c3-hoursCard {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(90deg, #0b2a4a, #123a63);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.c3-hoursLeft {
  display: flex;
  gap: 12px;
  align-items: center;
}

.c3-hoursIcon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #ffb703;
  color: #0b2a4a;
  font-size: 22px;
}

.c3-hoursTitle {
  font-weight: 900;
}

.c3-hoursSub {
  opacity: 0.85;
  font-weight: 700;
  font-size: 13px;
}

.c3-hoursRight {
  display: grid;
  gap: 8px;
  min-width: 280px;
}

.c3-hourRow {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 12px;
  border-radius: 12px;
}

/* FAQ */
.why-gascrematorium-pg {
  position: relative;
  z-index: 1;
}
.why-gascrematorium-pg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/gas-creamatorium/gc-img-5.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  pointer-events: none;
  z-index: -1;
}

.g1-hero {
  background: linear-gradient(120deg, #0b2a4a 0%, #123a63 55%, #0b2a4a 100%);
  color: #fff;
  padding: 56px 0 38px;
  position: relative;
  overflow: hidden;
}

.g1-hero::before {
  content: "";
  position: absolute;
  inset: -60px -60px auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.28), transparent 65%);
  transform: rotate(20deg);
  pointer-events: none;
}

.g1-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
}

.g1-title {
  margin-top: 14px;
  font-weight: 900;
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  letter-spacing: 0.2px;
}

.g1-sub {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  max-width: 900px;
}

.g1-wrap {
  background: #f7f8fb;
  padding: 34px 0 60px;
}

/* filter bar */
.g1-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: -18px;
}

.g1-filter .g1-btn {
  border: 2px solid #e7edf6;
  background: #fff;
  color: #0b2a4a;
  font-weight: 900;
  padding: 10px 14px;
  border-radius: 999px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.g1-filter .g1-btn:hover {
  background: #eef4ff;
}

.g1-filter .g1-btn.is-active {
  background: #ffb703;
  border-color: #ffb703;
  color: #0b2a4a;
}

/* grid */
.g1-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.g1-item {
  grid-column: span 3;
  background: #fff;
  border: 2px solid #e7edf6;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.g1-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 119, 204, 0.35);
}

.g1-thumb {
  aspect-ratio: 4/3;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.g1-item:hover .g1-thumb {
  transform: scale(1.05);
}

/* overlay */
.g1-ov {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 14px 12px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 100%);
  color: #fff;
  transform: translateY(18px);
  opacity: 0;
  transition: all 0.25s ease;
}

.g1-item:hover .g1-ov {
  transform: translateY(0);
  opacity: 1;
}

.g1-ovTitle {
  font-weight: 900;
  font-size: 14px;
  margin: 0;
  letter-spacing: 0.2px;
}

.g1-ovMeta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
  font-weight: 700;
  font-size: 12px;
  opacity: 0.88;
}

.g1-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

/* sizes */
@media (max-width: 1199.98px) {
  .g1-item {
    grid-column: span 4;
  }
}
@media (max-width: 767.98px) {
  .g1-item {
    grid-column: span 6;
  }
  .g1-hero {
    padding: 44px 0 34px;
  }
}
@media (max-width: 575.98px) {
  .g1-item {
    grid-column: span 12;
  }
}
/* load more */
.g1-more {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.g1-more .g1-moreBtn {
  border: 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: #0b2a4a;
  color: #fff;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.g1-more .g1-moreBtn:hover {
  filter: brightness(0.95);
}

/* Modal image */
.g1-modalImg {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 2px solid #e7edf6;
}

.g1-modalMeta {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #0b2a4a;
  font-weight: 900;
}

.g1-modalMeta span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f3f8ff;
  border: 1px solid #e7edf6;
}

body {
  font-family: "Manrope", sans-serif;
}

section {
  padding-top: 3em;
  padding-bottom: 3em;
}

.t2-badge {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-radius: 999px;
  color: #087945;
  font-weight: 800;
}

/* ================================
   TEMPLATE-2 HERO
================================ */
.t2-hero {
  padding: 100px 0;
  background: linear-gradient(to bottom right, #059669, #0d9488, #0e7490);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.t2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 2s linear infinite;
  z-index: -1;
}

@keyframes gridMove {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 50px 50px, 50px 50px;
  }
}
.t2-hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.t2-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.t2-hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.t2-hero-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 500px;
}

.t2-hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.t2-hero-btn {
  background: #FFC905;
  color: #0B1220;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}
.t2-hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 201, 5, 0.4);
}

.t2-hero-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 22px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.t2-hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.t2-hero-stats {
  display: flex;
  gap: 40px;
}

.t2-stat-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
}

.t2-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.t2-hero-image {
  position: relative;
}

.t2-hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.t2-image-overlay-card {
  position: absolute;
  bottom: 30px;
  left: -40px;
  background: #ffffff;
  color: #111827;
  padding: 25px;
  border-radius: 20px;
  width: 260px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.t2-card-title {
  font-weight: 900;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .t2-hero-row {
    grid-template-columns: 1fr;
  }
  .t2-image-overlay-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 20px;
  }
  .t2-hero-title {
    font-size: 2.2rem;
  }
}
/* ================================
   HERO CREATIVE IMAGE BLOCK
================================ */
.t2-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.t2-img-main {
  position: relative;
  z-index: 3;
}

.t2-img-main img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
}

.t2-accent-frame {
  position: absolute;
  width: 85%;
  height: 85%;
  background: linear-gradient(135deg, #FFC905, #ffb800);
  border-radius: 28px;
  z-index: 1;
  top: 40px;
  left: 40px;
  filter: blur(30px);
  opacity: 0.35;
}

.t2-glass-card {
  position: absolute;
  top: -65px;
  right: -45px;
  background: rgba(2, 51, 28, 0.2196078431);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 22px;
  padding: 24px;
  width: 280px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 5;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: topDown 5s ease infinite;
}

@keyframes topDown {
  0% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}
.t2-glass-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #FFC905;
}

.t2-glass-metrics {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.t2-glass-metrics strong {
  font-size: 1.3rem;
  color: #ffffff;
}

.t2-glass-metrics small {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.t2-glass-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFC905;
  color: #0B1220;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s ease;
}
.t2-glass-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 201, 5, 0.4);
}

@media (max-width: 991px) {
  .t2-glass-card {
    right: 0;
    bottom: -100px;
    margin-top: 20px;
  }
  .t2-accent-frame {
    display: none;
  }
}
/* ================================
   TEMPLATE-2 ABOUT / WELCOME
   Dark industrial + angled visual
================================ */
.t2-about {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.t2-about-badge {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-radius: 999px;
  color: #087945;
  font-weight: 800;
}

.t2-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #FFC905;
  box-shadow: 0 0 0 7px rgba(255, 201, 5, 0.18);
}

.h1-title {
  margin-top: 16px;
  font-weight: 950;
  letter-spacing: -0.6px;
  line-height: 1.1;
  font-size: clamp(2.1rem, 2.6vw, 2.9rem);
  color: #000;
}

.sec-title {
  margin-top: 16px;
  font-weight: 950;
  letter-spacing: -0.6px;
  line-height: 1.1;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  color: #000;
}

.sec-para {
  font-size: 1.2rem;
  margin-top: 14px;
  color: rgba(0, 0, 0, 0.74);
  font-weight: 500;
  line-height: 1.6;
}

.sec-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(to bottom right, #059669, #0d9488, #0e7490);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 9px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}
.sec-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 201, 5, 0.4);
}

.t2-about-list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.t2-li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.t2-li-ic {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(11, 59, 122, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFC905;
  font-size: 1.15rem;
}

.t2-li-title {
  font-weight: 900;
  color: #000000;
  line-height: 1.2;
}

.t2-li-sub {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  line-height: 1.6;
  font-size: 0.95rem;
}

.t2-about-strip {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.t2-strip-item {
  min-width: 110px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.t2-strip-num {
  font-weight: 950;
  font-size: 1.25rem;
  color: #FFC905;
  line-height: 1.1;
}

.t2-strip-lbl {
  margin-top: 4px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.72);
  font-size: 0.85rem;
}

.t2-about-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #FFC905;
  color: #0B1220;
  font-weight: 900;
  text-decoration: none;
  transition: 0.25s ease;
}

.t2-about-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 201, 5, 0.35);
}

.t2-about-visual {
  position: relative;
}

.t2-visual-frame {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2705882353);
}

.t2-visual-frame img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  filter: contrast(1.04) saturate(1.02);
}

.t2-visual-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.t2-visual-note {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: min(340px, 92%);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

.t2-visual-note-title {
  font-weight: 950;
  color: #fff;
  letter-spacing: -0.2px;
}

.t2-visual-note-sub {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  line-height: 1.6;
}

.t2-visual-note-btn {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #FFC905;
  color: #000000;
  font-weight: 900;
  text-decoration: none;
  transition: 0.25s ease;
}

.t2-visual-note-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11, 59, 122, 0.45);
}

/* Responsive */
@media (max-width: 991.98px) {
  .t2-about-wrap {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .t2-visual-note {
    position: absolute;
    right: 10px;
    bottom: 10px;
    margin-top: 14px;
    width: 90%;
  }
  .t2-visual-frame {
    transform: none;
  }
  .t2-about-cta {
    margin-left: 0;
  }
}
.t2-about-diff {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 20px;
  background: linear-gradient(to bottom right, #059669, #0d9488, #0e7490);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.t2-diff-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
}

.t2-diff-item i {
  color: #FFC905;
}

.t2-hero-visual {
  position: relative;
}

.t2-heroSwiper-wrap {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 420px;
}

.t2HeroSwiper {
  height: 100%;
  border-radius: 26px;
}

.t2-slideMedia {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 26px;
}

.t2-slideMedia img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.02);
}

.t2-slideMedia::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 18, 32, 0.25) 0%, rgba(11, 18, 32, 0.05) 40%, rgba(11, 18, 32, 0.35) 100%);
}

.t2-heroNav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.t2-heroPrev {
  left: 12px;
}

.t2-heroNext {
  right: 12px;
}

.t2-heroDots {
  position: absolute !important;
  left: 14px !important;
  right: 14px !important;
  bottom: 12px !important;
  display: flex !important;
  justify-content: center;
  gap: 8px;
  z-index: 6;
}

.t2-heroDots .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.45);
}

.t2-heroDots .swiper-pagination-bullet-active {
  background: #ffc905;
}

/* Accent frame behind slider (creative) */
.t2-accent-frame {
  position: absolute;
  inset: 14px 14px auto auto;
  width: 120px;
  height: 120px;
  border-radius: 26px;
  border: 2px solid rgba(255, 201, 5, 0.55);
  z-index: 4;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .t2-slideMedia {
    height: 360px;
  }
  .t2-heroSwiper-wrap {
    min-height: 360px;
  }
  .t2-glass-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 12px;
    display: none;
  }
  .t2-accent-frame {
    display: none;
  }
}
/* ================================
   TEMPLATE-2 MARQUEE CAPABILITIES
   Pure CSS infinite scroll
================================ */
.t2-marquee {
  padding: 16px 0;
  background: #055160;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.t2-marquee-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

/* Track (mask edges) */
.t2-marquee-track {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.t2-marquee-track::before,
.t2-marquee-track::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

/* Moving row */
.t2-marquee-move {
  display: flex;
  gap: 14px;
  width: -moz-max-content;
  width: max-content;
  animation: t2Marq 22s linear infinite;
  will-change: transform;
}

/* Pause on hover */
.t2-marquee-track:hover .t2-marquee-move {
  animation-play-state: paused;
}

/* Item */
.t2-m-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 360px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.t2-m-ic {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #FFC905;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #000000;
  font-size: 1.2rem;
  flex: 0 0 auto;
}

.t2-m-title {
  font-weight: 950;
  color: #fff;
  line-height: 1.2;
}

.t2-m-sub {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.45;
}

@keyframes t2Marq {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Motion reduce */
@media (prefers-reduced-motion: reduce) {
  .t2-marquee-move {
    animation: none;
  }
  .t2-marquee-track {
    overflow-x: auto;
  }
}
/* Mobile tuning */
@media (max-width: 575.98px) {
  .t2-m-item {
    min-width: 300px;
  }
  .t2-marquee-move {
    animation-duration: 26s;
  }
}
/* ================================
   TEMPLATE-2 GAS SECTION (LIGHT)
   Purpose: contrast with dark About
================================ */
.t2-gasLite {
  padding: 78px 0;
  background: #ffffff;
  position: relative;
}

.t2-gasLite::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 18%, rgba(11, 59, 122, 0.08), transparent 55%), radial-gradient(circle at 88% 20%, rgba(255, 201, 5, 0.1), transparent 55%);
  pointer-events: none;
}

.t2-gasLite-head {
  position: relative;
  z-index: 1;
  margin: 0 auto 26px;
  text-align: center;
}

/* RIGHT: Product show (clean + pins) */
.t2-productShow {
  border-radius: 26px;
  padding: 16px;
}
.t2-productShow h3 {
  font-size: 1.9rem;
  font-weight: 900;
  color: #0B1220;
  margin-bottom: 12px;
}
.t2-productShow p {
  font-size: 1.2rem;
  color: #0B1220;
  margin-bottom: 12px;
}

.t2-productImg {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2705882353);
}

.t2-productImg img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Pins */
.t2-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 18, 32, 0.12);
  color: #0B1220;
  font-weight: 900;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
}

.t2-pinDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #FFC905;
  box-shadow: 0 0 0 7px rgba(255, 201, 5, 0.16);
}

.t2-pin--a {
  top: 16px;
  left: 16px;
}

.t2-pin--b {
  top: 78px;
  right: 16px;
}

.t2-pin--c {
  bottom: 16px;
  left: 16px;
}

/* Responsive */
/* ================================
   TEMPLATE-2 REPAIR (NO IMAGE)
   New structure: flow + categories
================================ */
.t2-repair {
  padding: 78px 0;
  background: #F8FAFC;
  position: relative;
}

.t2-repair::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 14% 18%, rgba(11, 59, 122, 0.08), transparent 55%), radial-gradient(circle at 88% 24%, rgba(255, 201, 5, 0.1), transparent 55%);
  pointer-events: none;
}

/* Head */
.t2-repair-head {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto 28px;
  text-align: center;
}

.t2-repair-sub {
  margin-top: 12px;
  color: rgba(11, 18, 32, 0.7);
  font-weight: 650;
  line-height: 1.85;
}

/* Layout */
.t2-repair-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  align-items: start;
}

/* LEFT: Flow */
.t2-repair-flow {
  border-radius: 26px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(11, 18, 32, 0.1);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

.t2-flow-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  color: #0B1220;
  margin-bottom: 14px;
}

.t2-flow {
  display: grid;
  gap: 12px;
}

.t2-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 14px;
  border-radius: 18px;
  background: #F8FAFC;
  border: 1px solid rgba(11, 18, 32, 0.08);
  position: relative;
}

/* small “timeline” line */
.t2-step::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 62px;
  bottom: -12px;
  width: 2px;
  background: rgba(11, 59, 122, 0.18);
}

.t2-step:last-child::before {
  display: none;
}

.t2-step-no {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #0B1220;
  color: #FFC905;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.t2-step-title {
  font-weight: 950;
  color: #0B1220;
}

.t2-step-sub {
  margin-top: 4px;
  color: rgba(11, 18, 32, 0.7);
  font-weight: 650;
  line-height: 1.6;
}

/* RIGHT: Categories */
.t2-repair-cats {
  border-radius: 26px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(11, 18, 32, 0.1);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

.t2-cats-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  color: #0B1220;
  margin-bottom: 14px;
}

.t2-cats {
  display: grid;
  gap: 12px;
}

.t2-cat {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px dashed rgba(11, 18, 32, 0.18);
  background: #ffffff;
}

.t2-cat-ic {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 201, 5, 0.2);
  color: #0B1220;
  border: 1px solid rgba(255, 201, 5, 0.35);
  font-size: 1.15rem;
}

.t2-cat-title {
  font-weight: 950;
  color: #0B1220;
}

.t2-cat-sub {
  margin-top: 4px;
  color: rgba(11, 18, 32, 0.7);
  font-weight: 650;
  line-height: 1.6;
}

.t2-alert-title {
  font-weight: 950;
  letter-spacing: -0.2px;
}

.t2-alert-sub {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.t2-alert-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 991.98px) {
  .t2-repair-grid {
    grid-template-columns: 1fr;
  }
}
/* ================================
   TEMPLATE-2: 4-IN-ROW GALLERY
================================ */
.t2-rowGallery {
  background: #ffffff;
}

.t2-rowGallery-head {
  max-width: 1340px;
  margin: 0 auto 18px;
  text-align: center;
}

.t2-rowGallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #FFC905;
  box-shadow: 0 0 0 7px rgba(255, 201, 5, 0.15);
}

.t2-rowGallery-sub {
  margin-top: 10px;
  color: rgba(11, 18, 32, 0.7);
  font-weight: 650;
  line-height: 1.85;
}

/* Wrap */
.t2-rowGallery-wrap {
  width: 99%;
  position: relative;
  border-radius: 26px;
  background: #F8FAFC;
  padding: 16px;
  margin: auto;
}

.t2RowSwiper .swiper-slide {
  height: auto;
}

.t2-gItem {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(11, 18, 32, 0.1);
  background: #fff;
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  transition: 0.25s ease;
}

.t2-gItem:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.12);
}

.t2-gItem img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  filter: contrast(1.04) saturate(1.03);
}

/* Caption pill */
.t2-gCap {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 850;
  font-size: 0.88rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Navigation arrows */
.t2-rowNav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(11, 18, 32, 0.12);
  background: #ffffff;
  color: #0B1220;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
  transition: 0.25s ease;
  z-index: 5;
}

.t2-rowNav:hover {
  transform: translateY(-50%) scale(1.05);
  border-color: rgba(11, 59, 122, 0.25);
}

.t2-rowPrev {
  left: -14px;
}

.t2-rowNext {
  right: -14px;
}

/* Responsive image height */
@media (max-width: 575.98px) {
  .t2-gItem img {
    height: 200px;
  }
  .t2-rowPrev {
    left: 8px;
  }
  .t2-rowNext {
    right: 8px;
  }
}
/* =========================
   MONO TONE BREAK (DARK PAUSE)
========================= */
.t2-monoBreak {
  padding: clamp(54px, 6vw, 90px) 0;
  background: linear-gradient(to bottom right, #059669, #0d9488, #0e7490);
  position: relative;
  overflow: hidden;
}

.t2-mb-wrap {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: clamp(20px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

/* small mono kicker */
.t2-mb-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
}

.t2-mb-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.38);
  border-radius: 999px;
}

.t2-mb-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

/* main text */
.t2-mb-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  line-height: 2;
  font-size: 1.03rem;
  max-width: 78ch;
}

/* aside block (not a card, just a mono panel) */
.t2-mb-aside {
  padding: 18px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.t2-mb-line {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: 14px;
}

.t2-mb-asideTitle {
  color: #ffc107;
  font-weight: 900;
  letter-spacing: -0.2px;
  font-size: 1.05rem;
}

.t2-mb-asideSub {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 600;
  line-height: 1.6;
}

/* actions */
.t2-mb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.t2-mb-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  color: #070b12;
  background: #ffffff;
  /* mono solid */
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.t2-mb-btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

/* ghost */
.t2-mb-btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.t2-mb-btn--ghost:hover {
  filter: brightness(1.08);
}

/* watermark */
.t2-mb-water {
  position: absolute;
  right: 16px;
  bottom: -8px;
  font-weight: 950;
  letter-spacing: -0.06em;
  font-size: clamp(48px, 6vw, 96px);
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* responsive */
@media (max-width: 991.98px) {
  .t2-mb-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   T2 PROCESS (Trending timeline rail)
========================================= */
.t2-process {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.03), #fff 60%);
}

.t2-process-head {
  margin: 0 auto 22px;
  text-align: center;
}

.t2-process-title {
  margin-top: 14px;
  font-weight: 950;
  letter-spacing: -0.6px;
  color: #0b1220;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  line-height: 1.12;
}

.t2-process-sub {
  margin-top: 10px;
  color: rgba(11, 18, 32, 0.7);
  font-weight: 650;
  line-height: 1.8;
}

/* shell */
.t2-process-wrap {
  position: relative;
  border-radius: 26px;
  padding: clamp(16px, 2.4vw, 22px);
  background: #ffffff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  box-shadow: 0 22px 70px rgba(11, 18, 32, 0.08);
  overflow: hidden;
}

/* top accent haze */
.t2-process-wrap::before {
  content: "";
  position: absolute;
  inset: -45% -30%;
  pointer-events: none;
}

/* timeline rail behind cards */
.t2-rail {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 28px;
  height: 2px;
  background: rgba(11, 18, 32, 0.1);
  z-index: 0;
  border-radius: 999px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}

.t2-rail-dot {
  width: 12px;
  height: 12px;
  margin-top: -5px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid rgba(11, 59, 122, 0.55);
  justify-self: center;
  box-shadow: 0 8px 18px rgba(11, 18, 32, 0.12);
}

/* steps layout */
.t2-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 36px;
}

/* each step */
.t2-stepCard {
  border-radius: 0px;
  padding: 16px 14px;
  background: linear-gradient(to bottom right, #059669, #0d9488, #0e7490);
  box-shadow: 0 14px 40px rgba(11, 18, 32, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  height: 100%;
  position: relative;
}

.t2-stepCard:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 22px 60px rgba(11, 18, 32, 0.1);
}

.t2-stepTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.t2-stepNo {
  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.9rem;
}

.t2-stepIcon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #ffb800;
  border: 1px solid rgba(11, 59, 122, 0.16);
}

.t2-stepTitle {
  margin: 0;
  font-weight: 950;
  color: #ffb800;
  letter-spacing: -0.3px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t2-stepText {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 650;
  line-height: 1.65;
  font-size: 0.95rem;
}

/* foot CTA */
.t2-process-foot {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  padding: 14px 14px;
  border-radius: 20px;
  border: 1px solid rgba(11, 18, 32, 0.08);
  background: linear-gradient(90deg, rgba(11, 59, 122, 0.08), rgba(255, 201, 5, 0.1));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.t2-footText {
  display: grid;
  gap: 2px;
  color: rgba(11, 18, 32, 0.8);
  font-weight: 650;
}
.t2-footText strong {
  color: #0b1220;
  font-weight: 950;
}

.t2-footBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  color: #0b1220;
  background: #ffc905;
  border: 1px solid rgba(11, 18, 32, 0.1);
  transition: transform 0.18s ease, filter 0.18s ease;
}
.t2-footBtn:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

/* responsive */
@media (max-width: 1199.98px) {
  .t2-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .t2-rail {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767.98px) {
  .t2-steps {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }
  .t2-rail {
    display: none;
  }
  .t2-process-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* =========================================
   T2 Strength (creative stats panel)
========================================= */
.t2-strength-sub {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(11, 18, 32, 0.7);
  font-weight: 650;
  line-height: 1.75;
}

/* main panel */
.t2-strength-panel {
  position: relative;
  border-radius: 28px;
  padding: clamp(14px, 2.3vw, 22px);
  background: #fff;
  overflow: hidden;
}

/* soft glow bg */
/* subtle shine line */
.t2-strength-panel::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -30%;
  width: 70%;
  height: 200%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  opacity: 0.35;
  animation: t2shine 6.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes t2shine {
  0% {
    transform: translateX(-20%) rotate(18deg);
    opacity: 0.15;
  }
  40% {
    opacity: 0.45;
  }
  100% {
    transform: translateX(140%) rotate(18deg);
    opacity: 0.15;
  }
}
/* left big tile */
.t2-strength-hero {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  padding: 18px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 18, 32, 0.1);
  box-shadow: 0 18px 55px rgba(11, 18, 32, 0.08);
}

.t2-heroTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.t2-heroChip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.05);
  border: 1px solid rgba(11, 18, 32, 0.08);
  color: rgba(11, 18, 32, 0.78);
  font-weight: 850;
  font-size: 0.9rem;
}

.t2-chipDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffc905;
  box-shadow: 0 10px 25px rgba(255, 201, 5, 0.35);
}

.t2-heroIcon {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e6f1ed;
  border: 1px solid #0d9486;
  color: #0d9486;
}

.t2-heroNum {
  margin-top: 18px;
  font-weight: 1000;
  letter-spacing: -1.2px;
  color: #0b1220;
  font-size: clamp(2.6rem, 4.2vw, 3.4rem);
  line-height: 1;
}

.t2-heroLabel {
  margin-top: 6px;
  font-weight: 900;
  color: rgba(11, 18, 32, 0.85);
}

.t2-heroNote {
  margin-top: 10px;
  color: rgba(11, 18, 32, 0.68);
  font-weight: 650;
  line-height: 1.7;
}

.t2-heroCtas {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.t2-heroBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  color: #0b1220;
  background: #ffc905;
  border: 1px solid rgba(11, 18, 32, 0.1);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.t2-heroBtn:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

.t2-heroBtnOutline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  color: #0b1220;
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.16);
  transition: transform 0.18s ease, background 0.18s ease;
}

.t2-heroBtnOutline:hover {
  transform: translateY(-1px);
  background: rgba(11, 18, 32, 0.03);
}

/* right grid */
.t2-strength-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.t2-strength-tile {
  border-radius: 22px;
  padding: 16px 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 18, 32, 0.1);
  box-shadow: 0 16px 45px rgba(11, 18, 32, 0.06);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.t2-tileIc {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 122, 79, 0.1019607843);
  border: 1px solid #0d9486;
  color: #0d9486;
  flex: 0 0 auto;
}

.t2-tileNum {
  font-weight: 1000;
  color: #0b1220;
  letter-spacing: -0.7px;
  font-size: 1.55rem;
  line-height: 1.1;
}

.t2-tileLbl {
  margin-top: 4px;
  font-weight: 950;
  color: rgba(11, 18, 32, 0.85);
}

.t2-tileSub {
  margin-top: 6px;
  color: rgba(11, 18, 32, 0.66);
  font-weight: 650;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* wide tile */
.t2-strength-tile--wide {
  grid-column: 1/-1;
  align-items: center;
  justify-content: space-between;
}

.t2-miniContact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  color: #0b1220;
  background: rgba(11, 18, 32, 0.04);
  border: 1px solid rgba(11, 18, 32, 0.12);
  white-space: nowrap;
  transition: transform 0.18s ease, background 0.18s ease;
}

.t2-miniContact:hover {
  transform: translateY(-1px);
  background: rgba(11, 18, 32, 0.06);
}

/* responsive */
@media (max-width: 991.98px) {
  .t2-strength-grid {
    grid-template-columns: 1fr;
  }
  .t2-strength-tile--wide {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* =========================================
   T2 Contact Neo (unique, not boxy)
========================================= */
.t2-contactNeo {
  position: relative;
  background: linear-gradient(to bottom right, #059669, #0d9488, #0e7490);
  overflow: hidden;
}

/* diagonal cut + glow blobs */
.t2-contactNeo::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 20% 30%, rgba(0, 86, 214, 0.2509803922), transparent 55%), radial-gradient(circle at 85% 25%, rgba(11, 59, 122, 0.25), transparent 60%);
  pointer-events: none;
}

.t2-neoHead {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 22px;
}

.t2-neoTag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 950;
}

.t2-neoSub {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
  max-width: 820px;
  margin: 8px auto 0;
  line-height: 1.75;
}

.t2-neoStage {
  position: relative;
  z-index: 1;
}

.t2-neoDeck {
  position: relative;
  border-radius: 26px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.t2-neoDeck::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 20% 10%, rgba(255, 201, 5, 0.12), transparent 55%);
  pointer-events: none;
}

.t2-neoDeckTop {
  position: relative;
  margin-bottom: 14px;
}

.t2-neoDeckKicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 900;
}

.t2-neoPulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffc905;
  box-shadow: 0 0 0 0 rgba(255, 201, 5, 0.5);
  animation: t2Pulse 1.7s infinite;
}

@keyframes t2Pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 201, 5, 0.45);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(255, 201, 5, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 201, 5, 0);
  }
}
.t2-neoDeckHint {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 650;
}

.t2-neoCards {
  display: grid;
  gap: 12px;
}

.t2-neoCard {
  text-decoration: none;
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.t2-neoCard:hover {
  transform: translateY(-3px) rotate(-0.15deg);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.22);
}

.t2-neoCard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(255, 201, 5, 0.22), rgba(255, 201, 5, 0) 45%);
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.t2-neoCard:hover::before {
  opacity: 0.9;
}

.t2-neoCardIc {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #0b1220;
  background: #ffc905;
}

.t2-neoCard--mail .t2-neoCardIc {
  background: #e9eefb;
  color: #0b1220;
}

.t2-neoCard--wa .t2-neoCardIc {
  background: #18c37e;
  color: #05120d;
}

.t2-neoCardTitle {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
  font-size: 0.95rem;
}

.t2-neoCardValue {
  margin-top: 2px;
  color: #fff;
  font-weight: 1000;
  letter-spacing: -0.2px;
}

.t2-neoCardMeta {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 650;
  line-height: 1.5;
}

.t2-neoCardArrow {
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.t2-neoPromise {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.t2-neoPromiseItem {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.t2-neoPromiseItem i {
  color: #ffc905;
}

.t2-neoFormWrap {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: stretch;
}

.t2-neoRail {
  width: 200px;
  border-radius: 26px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.t2-neoRail::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 20% 10%, rgba(39, 98, 190, 0.24), transparent 55%);
  pointer-events: none;
}

.t2-neoRailBadge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
}

.t2-neoRailTitle {
  margin-top: 10px;
  color: #fff;
  font-weight: 1000;
  letter-spacing: -0.2px;
}

.t2-neoRailList {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.t2-neoRailItem {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  gap: 10px;
}

.t2-neoRailDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffc905;
  margin-top: 6px;
  flex: 0 0 auto;
}

.t2-neoRailFoot {
  margin-top: auto;
  padding-top: 14px;
}

.t2-neoRailFootLine {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.t2-neoRailFootTxt {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.t2-neoRailFootTxt a {
  color: #ffc905;
  font-weight: 900;
  text-decoration: none;
}

.t2-neoForm {
  flex: 1 1 auto;
  border-radius: 28px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.t2-neoForm::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 201, 5, 0.22), transparent 60%);
  transform: rotate(25deg);
  pointer-events: none;
}

.t2-neoFormHead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.t2-neoFormKicker {
  color: #fff;
  font-weight: 1000;
  letter-spacing: -0.3px;
  font-size: 1.15rem;
}

.t2-neoFormSub {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
}

.t2-neoFormChip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 201, 5, 0.12);
  border: 1px solid rgba(255, 201, 5, 0.22);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 950;
}

.t2-neoLabel {
  color: rgb(255, 255, 255);
  font-weight: 700;
}

.t2-neoInput {
  background: rgba(255, 255, 255, 0.1607843137) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 5px 14px !important;
  box-shadow: none !important;
}
.t2-neoInput::-moz-placeholder {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55) !important;
}
.t2-neoInput::placeholder {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55) !important;
}

.t2-neoInput::-moz-placeholder {
  color: rgba(255, 255, 255, 0.55) !important;
}

.t2-neoInput::placeholder {
  color: rgba(255, 255, 255, 0.55) !important;
}

.t2-neoInput:focus {
  border-color: rgba(255, 201, 5, 0.45) !important;
  box-shadow: 0 0 0 0.22rem rgba(255, 201, 5, 0.14) !important;
}

.t2-neoCaptcha {
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.16);
}

.t2-neoPrivacy {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.t2-neoBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 0;
  font-weight: 1000;
  color: #0b1220;
  background: #ffc905;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.t2-neoBtn:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

@media (max-width: 991.98px) {
  .t2-contactNeo::after {
    display: none;
  }
  .t2-neoFormWrap {
    display: block;
  }
  .t2-neoRail {
    display: none !important;
  }
}
/* =========================
   Proof Split (new style)
========================= */
.t2-proofSplit {
  background: #f6f8fc;
  position: relative;
  overflow: hidden;
}

.t2-proofSplit::after {
  content: "";
  position: absolute;
  inset: auto auto -140px -140px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(11, 36, 71, 0.1), rgba(11, 36, 71, 0) 60%);
  pointer-events: none;
}

.t2ps-head {
  max-width: 880px;
  margin: 0 auto 26px;
  text-align: center;
}

.t2ps-badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  font-weight: 900;
  color: #0b2447;
}

.t2ps-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.t2ps-left {
  position: relative;
  border-radius: 26px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.06);
}

.t2ps-stack {
  position: absolute;
  inset: 14px 14px auto auto;
  width: 64px;
  height: 64px;
  opacity: 0.6;
}

.t2ps-stack span {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
}

.t2ps-stack span:nth-child(1) {
  transform: rotate(8deg) translate(8px, -4px);
}

.t2ps-stack span:nth-child(2) {
  transform: rotate(-6deg) translate(0, 6px);
  opacity: 0.85;
}

.t2ps-stack span:nth-child(3) {
  transform: rotate(2deg);
  opacity: 0.7;
}

.t2ps-carousel {
  border-radius: 22px;
  overflow: hidden;
}

.t2ps-quoteCard {
  border-radius: 22px;
  padding: 22px 22px 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.t2ps-quoteTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.t2ps-qIcon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 201, 5, 0.18);
  color: #0b2447;
  font-size: 1.1rem;
}

.t2ps-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.t2ps-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: rgba(15, 23, 42, 0.78);
  font-weight: 800;
  font-size: 0.9rem;
}

.t2ps-text {
  margin: 0 0 14px;
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 750;
  color: rgba(15, 23, 42, 0.84);
}

.t2ps-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(15, 23, 42, 0.18);
}

.t2ps-meta img {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.t2ps-name {
  font-weight: 1000;
  color: #0b2447;
  letter-spacing: 0.2px;
}

.t2ps-role {
  color: rgba(15, 23, 42, 0.6);
  font-weight: 750;
  font-size: 0.92rem;
}

.t2ps-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 6px 0;
}

.t2ps-nav {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b2447;
  transition: transform 0.18s ease;
}

.t2ps-nav:hover {
  transform: translateY(-1px);
}

.t2ps-dots {
  position: static;
  margin: 0;
  display: flex;
  gap: 8px;
}

.t2ps-dots [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  border: 0;
  background: rgba(15, 23, 42, 0.22);
  opacity: 1;
}

.t2ps-dots .active {
  background: #ffc905;
}

.t2ps-right {
  border-radius: 26px;
  background: linear-gradient(to bottom right, #059669, #0d9488, #0e7490);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px;
  color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.08);
  position: relative;
  overflow: hidden;
}
.t2ps-right .t2ps-rightTitle {
  margin: 12px 0 6px;
  font-weight: 1000;
  letter-spacing: -0.3px;
  color: #fff;
}
.t2ps-right .t2ps-rightSub {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
  line-height: 1.7;
}

.t2ps-steps {
  display: grid;
  gap: 10px;
  margin: 12px 0 16px;
}

.t2ps-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.t2ps-step span {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 201, 5, 0.2);
  color: #ffc905;
  font-weight: 1000;
}

.t2ps-actions {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.t2ps-btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 1000;
}

.t2ps-btn--solid {
  background: #ffc905;
  color: #071a33;
}

.t2ps-btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.t2ps-mini {
  display: flex;
  justify-content: space-evenly;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.t2ps-miniItem {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
  font-size: 14px;
}

.t2ps-miniItem i {
  color: #ffc905;
}

@media (max-width: 991.98px) {
  .t2ps-grid {
    grid-template-columns: 1fr;
  }
  .t2ps-left {
    order: 2;
  }
  .t2ps-right {
    order: 1;
  }
}
.subcontracting-sec {
  padding: 3em 1em;
}

/* faq section */
.t2-faq {
  background: #f7f9fc;
}

.t2-faq-acc .accordion-item {
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.06);
}

.t2-faq-acc .accordion-button {
  font-weight: 700;
  padding: 18px 18px;
  background: #fff;
}

.t2-faq-acc .accordion-button:not(.collapsed) {
  color: #0b2a4a;
  box-shadow: none;
}

.t2-faq-acc .accordion-body {
  color: #445;
  line-height: 1.65;
  padding: 0 18px 18px;
}

.t2-faq-card-top {
  display: flex;
  gap: 12px;
  align-items: center;
}

.t2-faq-card-ic {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.t2-faq-card-title {
  font-weight: 800;
  font-size: 18px;
}

.t2-faq-card-sub {
  opacity: 0.9;
  font-size: 14px;
  margin-top: 2px;
}

.t2-faq-card-actions {
  display: grid;
  gap: 10px;
}

.t2-faq-btn,
.t2-faq-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.t2-faq-btn {
  background: #f7c948;
  color: #121212;
}

.t2-faq-btn:hover {
  filter: brightness(0.95);
}

.t2-faq-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.t2-faq-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.t2-faq-mini {
  display: grid;
  gap: 8px;
  font-size: 14px;
  opacity: 0.95;
}

.t2-faq-mini i {
  margin-right: 8px;
}

@media (max-width: 450px) {
  .t2-neoDeck {
    padding: 0px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0);
  }
  .offcanvas-body {
    margin-top: 20px;
  }
}/*# sourceMappingURL=style.css.map */