/* ===================================================
   PAGES — extension styles for internal pages
   =================================================== */

/* Page header (smaller hero for internal pages) */
.page-hero {
  position: relative;
  background: #000;
  padding: 90px 0 60px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 75% 0%, rgba(238,43,36,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 40% 50% at 10% 100%, rgba(238,43,36,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(220,228,245,0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(220,228,245,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 0%, transparent 75%);
  pointer-events: none;
}
.page-hero .ctn { position: relative; z-index: 1; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-family: var(--FH);
  font-size: .82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.crumbs a { color: rgba(255,255,255,0.55); transition: color var(--t); }
.crumbs a:hover { color: var(--R); }
.crumbs .sep { color: rgba(255,255,255,0.25); }
.crumbs .cur { color: #fff; }

.page-hero h1 {
  font-family: var(--FH);
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 16px;
  max-width: 880px;
  letter-spacing: -.01em;
}
.page-hero h1 .hl { color: var(--R); }
.page-hero .lead {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 720px;
}
.page-hero-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
}
.page-hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.phm-c {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r12);
  padding: 18px 18px;
}
.phm-l {
  font-family: var(--FH);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.phm-v {
  font-family: var(--FH);
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.phm-v em { color: var(--R); font-style: normal; }
.phm-d {
  font-size: .82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

@media (max-width: 960px) {
  .page-hero-row { grid-template-columns: 1fr; gap: 28px; }
  .page-hero { padding: 70px 0 48px; }
}

/* Pill chip filter row */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.chip {
  font-family: var(--FH);
  font-size: .82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--r99);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.78);
  cursor: pointer;
  transition: all var(--t);
}
.chip:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.chip.on {
  background: var(--R);
  border-color: var(--R);
  color: #fff;
  box-shadow: 0 4px 14px rgba(238,43,36,0.35);
}

/* Spec table */
.spec-tbl {
  width: 100%;
  border-collapse: collapse;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r12);
  overflow: hidden;
  font-family: var(--FB);
}
.spec-tbl th, .spec-tbl td {
  padding: 14px 18px;
  text-align: left;
  font-size: .92rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.spec-tbl th {
  font-family: var(--FH);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.03);
}
.spec-tbl td { color: rgba(255,255,255,0.85); }
.spec-tbl td.lbl { color: rgba(255,255,255,0.55); font-weight: 500; }
.spec-tbl tr:last-child th, .spec-tbl tr:last-child td { border-bottom: none; }
.spec-tbl tr:hover td { background: rgba(255,255,255,0.02); }

/* Big product detail card */
.pdetail {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r24);
  overflow: hidden;
  transition: all var(--t);
}
.pdetail:hover {
  border-color: rgba(238,43,36,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
}
.pdetail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.pdetail-img {
  position: relative;
  min-height: 320px;
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pdetail-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(238,43,36,0.04) 0 2px, transparent 2px 14px);
  pointer-events: none;
}
.pdetail-img-label {
  position: relative;
  z-index: 1;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .82rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}
.pdetail-img-label strong { display: block; color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 6px; font-family: var(--FH); letter-spacing: 0; }

.pdetail-body { padding: 38px 36px; }
.pdetail-tag {
  display: inline-block;
  font-family: var(--FH);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--R);
  background: var(--Rg);
  padding: 4px 11px;
  border-radius: var(--r99);
  margin-bottom: 14px;
}
.pdetail h3 {
  font-family: var(--FH);
  font-weight: 800;
  color: #fff;
  line-height: 1.22;
  margin-bottom: 24px;
}
.pdetail p { line-height: 1.65;
    margin-bottom: 25px; }
.pdetail-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin-bottom: 24px; }
.pdetail-feat {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .88rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.pdetail-feat i { color: var(--R); margin-top: 2px; flex-shrink: 0; }
.pdetail-acts { display: flex; gap: 10px; flex-wrap: wrap; }


.ssub2 {
/*      color: rgba(255, 255, 255, 0.72) !important;*/
    line-height: 1.72;
    max-width:80%;
    margin: 15px auto 0;
}




@media (max-width: 960px) {

.ssub2 {
    max-width:100% !important;
}


  .pdetail-grid { grid-template-columns: 1fr; }
  .pdetail-img { min-height: 220px; }
  .pdetail-body { padding: 28px 24px; }
  .pdetail-feats { grid-template-columns: 1fr; }
}

/* Industry detail card */
.icard {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r16);
  overflow: hidden;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.icard:hover {
  border-color: rgba(238,43,36,0.35);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.5);
}
.icard-img {
  position: relative;
  height: 320px;
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icard-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 14px);
}
.icard-img-mono {
  position: relative;
  z-index: 1;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .72rem;
  letter-spacing: .14em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}
.icard-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  font-family: var(--FH);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--r99);
}
.icard-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.icard h3 { font-family: var(--FH); font-weight: 700; font-size: 1.18rem; color: #fff; margin-bottom: 9px; }
.icard p {  color: rgba(255,255,255,0.62); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.icard-bullets { list-style: none; padding: 0; margin: 0 0 18px; }
.icard-bullets li {  color: rgba(255,255,255,0.7); padding: 4px 0 4px 18px; position: relative; }
.icard-bullets li::before { content: '›'; color: var(--R); position: absolute; left: 0; font-weight: 700; }
.icard-foot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--FH);
  font-weight: 700;

  color: var(--R);
  transition: gap var(--t);
}
.icard:hover .icard-foot { gap: 10px; }

/* Service block (alternating) */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  padding: 28px 0;
}
.svc-block.flip > div:first-child { order: 2; }
.svc-block h3 {
  font-family: var(--FH);
  font-weight: 800;
  font-size: 2.2rem;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.svc-block .eyebrow {
  display: inline-block;
  font-family: var(--FH);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--R);
  margin-bottom: 12px;
}
.svc-block p {  line-height: 1.7; margin-bottom: 20px;  }
.svc-block ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.svc-block ul li {
  font-size: .9rem;
  color: rgba(255,255,255,0.82);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.svc-block ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--Rg);
  border: 1px solid var(--Rb);
}
.svc-block ul li::after {
  content: '';
  position: absolute;
  left: 4px; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--R);
}
.svc-visual {
  position: relative;

  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(238,43,36,0.14) 0%, transparent 70%), #0e0e0e;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r24);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(238,43,36,0.05) 0 2px, transparent 2px 14px);
}
.svc-visual-label {
  position: relative;
  z-index: 1;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .8rem;
  letter-spacing: .14em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}
.svc-visual-label strong { display: block; color: rgba(255,255,255,0.85); font-family: var(--FH); font-size: 1.05rem; margin-bottom: 6px; letter-spacing: 0; }

@media (max-width: 960px) {
  .svc-block { grid-template-columns: 1fr; gap: 32px; padding: 18px 0; }
  .svc-block.flip > div:first-child { order: 0; }
  .svc-block ul { grid-template-columns: 1fr; }
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
.cform {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r24);
  padding: 38px 36px;
}
.cform h2 { font-family: var(--FH); font-weight: 800; font-size: 1.7rem; color: #fff; margin-bottom: 8px; }
.cform .lead { color: rgba(255,255,255,0.65); margin-bottom: 28px; font-size: .98rem; line-height: 1.6; }
.cform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.fld { display: flex; flex-direction: column; gap: 7px; }
.fld.full { grid-column: 1 / -1; }
.fld label {
  font-family: var(--FH);
  font-weight: 600;
  font-size: .8rem;
  color: rgba(255,255,255,0.78);
  letter-spacing: .02em;
}
.fld label .req { color: var(--R); }
.fld input, .fld select, .fld textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r8);
  padding: 12px 14px;
  font-family: var(--FB);
  font-size: .95rem;
  color: #fff;
  width: 100%;
  transition: all var(--t);
}
.fld input::placeholder, .fld textarea::placeholder { color: rgba(255,255,255,0.35); }
.fld input:focus, .fld select:focus, .fld textarea:focus {
  outline: none;
  border-color: var(--R);
  background: rgba(238,43,36,0.05);
  box-shadow: 0 0 0 4px rgba(238,43,36,0.10);
}
.fld textarea { resize: vertical; min-height: 130px; font-family: var(--FB); }
.fld select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='%23ffffff88' d='M4 6l4 4 4-4'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 38px; }
.fld .err { display: none; color: var(--R); font-size: .78rem; }
.fld.invalid .err { display: block; }
.fld.invalid input, .fld.invalid select, .fld.invalid textarea { border-color: var(--R); }

.cform-consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 6px; }
.cform-consent input { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--R); }
.cform-consent label { font-size: .82rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.cform-foot { display: flex; gap: 14px; align-items: center; margin-top: 22px; flex-wrap: wrap; }
.cform-submit {
  background: var(--R);
  color: #fff;
  font-family: var(--FH);
  font-weight: 700;
  font-size: .98rem;
  padding: 14px 30px;
  border-radius: var(--r99);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 22px rgba(238,43,36,0.32);
  transition: all var(--t);
}
.cform-submit:hover { background: var(--Rd); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(238,43,36,0.42); }
.cform-note { font-size: .82rem; color: rgba(255,255,255,0.45); }
.cform-success {
  display: none;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.3);
  color: #22c55e;
  border-radius: var(--r12);
  padding: 16px 18px;
  margin-bottom: 16px;
  font-size: .92rem;
}
.cform-success.show { display: block; }

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cinfo {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r16);
  padding: 22px 22px;
  transition: all var(--t);
}
.cinfo:hover { border-color: rgba(238,43,36,0.35); background: rgba(238,43,36,0.04); }
.cinfo-l {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--FH);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.cinfo-l i { color: var(--R); font-size: 1rem; }
.cinfo h3 { font-family: var(--FH); font-weight: 700; font-size: 1.05rem; color: #fff; margin-bottom: 6px; }
.cinfo p, .cinfo a { font-size: .92rem; color: rgba(255,255,255,0.7); line-height: 1.6; transition: color var(--t); }
.cinfo a:hover { color: var(--R); }
.cinfo-row { display: flex; flex-direction: column; gap: 4px; }

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .cform { padding: 30px 24px; }
  .cform-grid { grid-template-columns: 1fr; }
}

/* Leadership / team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tm {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r16);
  overflow: hidden;
  transition: all var(--t);
}
.tm:hover { border-color: rgba(238,43,36,0.35); transform: translateY(-2px); }
.tm-img {
  aspect-ratio: 4/4;
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--FH);
  font-weight: 800;
  font-size: 2.4rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: -.02em;
}
.tm-b { padding: 16px 18px 20px; }
.tm-n { font-family: var(--FH); font-weight: 700; color: #fff; font-size: 1.22rem; }
.tm-r { font-size: .92rem; color: rgba(255,255,255,0.55); margin-top: 3px; }

@media (max-width: 960px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr 1fr; } .tm-img { font-size: 1.7rem; } }

/* Value cards (about) */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.vcard {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r16);
  padding: 30px 28px;
  transition: all var(--t);
}
.vcard:hover { border-color: rgba(238,43,36,0.35); background: rgba(238,43,36,0.04); transform: translateY(-3px); }
.vcard-ic {
  width: 52px; height: 52px;
  border-radius: var(--r12);
  background: var(--Rg);
  display: grid; place-items: center;
  color: var(--R);
  font-size: 2rem;
  margin-bottom: 28px;
  border: 1px solid var(--Rb);
}
.vcard h3 { font-family: var(--FH); font-weight: 700; font-size: 1.18rem; color: #fff; margin-bottom: 8px; }
.vcard p {    color: rgba(255, 255, 255, 0.68);
    line-height: 1.5;
    /* font-size: .93rem; */
    margin-top: 20px;
    font-size: 17px; }

@media (max-width: 960px) { .value-grid { grid-template-columns: 1fr; } }

/* Story timeline */
.tl {
  position: relative;
  margin: 0;
  padding: 0;
}
.tl::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--R), rgba(238,43,36,0.05));
}
.tl-item {
  position: relative;
  padding: 0 0 36px 48px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute;
  left: 6px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--R);
  border: 4px solid #000;
  box-shadow: 0 0 0 2px var(--R);
}
.tl-y {
  font-family: var(--FH);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--R);
  line-height: 1;
  margin-bottom: 6px;
}
.tl-t { font-family: var(--FH); font-weight: 700; font-size: 1.08rem; color: #fff; margin-bottom: 6px; }
.tl-d { font-size: .94rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* FAQ accordion */
.faq {
  background: #ffffff0a;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r12);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all var(--t);
}
.faq:hover { border-color: rgba(255,255,255,0.18); }
.faq.open { border-color: rgba(238,43,36,0.35); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--FH);
  font-weight: 600;
  color: #fff;
}
.faq-q .ic {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--t);
  flex-shrink: 0;
}
.faq.open .faq-q .ic { background: var(--R); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s var(--ease);
}
.faq.open .faq-a { max-height: 360px; }
.faq-a-in {
  padding: 0 22px 20px;
  color: rgba(255,255,255,0.68);
}

/* Map placeholder */
.mapbox {
  background: linear-gradient(135deg, #141414, #0a0a0a);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r16);
  height: 320px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mapbox::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(238,43,36,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238,43,36,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.mapbox-pin {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  background: var(--R);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 8px 22px rgba(238,43,36,0.45);
  animation: pinpulse 2s ease-in-out infinite;
}
.mapbox-pin::after {
  content: '';
  position: absolute;
  inset: 12px;
  background: #fff;
  border-radius: 50%;
}
@keyframes pinpulse {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-5px); }
}

/* Resource / blog grid (resources page) */
.res-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 30px; }

/* Generic image placeholder */
.imgph {
  background: linear-gradient(135deg, #181818, #0d0d0d);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.imgph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 14px);
}
.imgph-mono {
  position: relative;
  z-index: 1;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .72rem;
  letter-spacing: .14em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  text-align: center;
  padding: 14px;
}

/* Stat band (for about, services) */
.statband {
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r24);
  padding: 44px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.statband-i .v { font-family: var(--FH); font-weight: 800; font-size: 2.6rem; color: #fff; line-height: 1; letter-spacing: -.02em; }
.statband-i .v em { font-style: normal; color: var(--R); }
.statband-i .l { font-size: .85rem; color: rgba(255,255,255,0.65); margin-top: 10px; font-weight: 500; }
@media (max-width: 960px) { .statband { grid-template-columns: repeat(2, 1fr); gap: 28px; padding: 32px 24px; } }

/* Quote highlight */
.quote-pull {
  background: linear-gradient(135deg, rgba(238,43,36,0.06), rgba(238,43,36,0.02));
  border-left: 3px solid var(--R);
  border-radius: 0 var(--r16) var(--r16) 0;
  padding: 28px 32px;
  margin: 24px 0;
}
.quote-pull p {
  font-family: var(--FH);
  font-style: italic;
  font-size: 1.18rem;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 12px;
}
.quote-pull cite {
  font-style: normal;
  font-size: .82rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: .04em;
}



/*new css*/
.hero-image{
    position:relative;z-index: 2;
}

.hero-image img{
    border-radius:20px;
    box-shadow:0 0 50px rgba(215,25,32,.2);
}

.hero-content{
    position:relative;
    z-index:2;
}

.page-hero{ position:relative;
    padding:150px 0 150px;    background-size:cover;
    background-position:center;}



.btn-line-inner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--FH);
    font-weight: 600;
    font-size: .98rem;
   color: rgba(255, 255, 255, 0.98) !important;
    border-color: rgba(255, 255, 255, 0.82) !important;
    padding: 8px 20px;
    border-radius: var(--r99);
    transition: all var(--t);
    width: max-content !important;
        border: solid 1px;
}



.btn-line-inner:hover {
    border-color: #ee2b24 !important;
    color: #ee2b24 !important;
    background: var(--Rg) !important;
}

.hero-image img{height: 350px;
    object-fit: cover;width: 100%;
    object-position: left center;}

    .center{align-items: center; display: flex; justify-content: center;}

    .ind-grid2 {
    display: grid;
   grid-template-columns: repeat(3, 1fr);overflow: hidden;
    gap: 12px;
}


@media (max-width:768px) {
    .ind-grid2 {
        grid-template-columns: 1fr;
        gap: 10px;
    }

.page-hero {
    background: #000 !important;}

}


p {
    color: #bfbfbf;
}

.map-section{
    width:100%;
    overflow:hidden;
}

.map-section iframe{
    width:100%;
    height:500px;
    border:0;
    display:block;
}


/* ── Section wrapper ── */
    .tl-section {
      background: #111111;
      padding: 72px 48px 80px;
    }

    /* ── Section header ── */
    .tl-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .tl-eyebrow {
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #ee2b24;
      margin-bottom: 12px;
    }

    .tl-title {
      font-family: 'Outfit', sans-serif;
      font-size: 32px;
      font-weight: 700;
      color: #ffffff;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    /* ── Grid ── */
    .tl-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Horizontal spine line — row 1 */
    .tl-grid::before {
      content: '';
      position: absolute;
      top: 29px;
      left: 0;
      right: 0;
      height: 1px;
      background: rgba(255, 255, 255, 0.3);
      z-index: 0;
    }

    /* ── Individual node ── */
    .tl-node {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 0 24px 0 0;
      position: relative;
      z-index: 1;
    }

    .tl-node.row2 {
      margin-top: 48px;
    }

    /* ── Dot + number row ── */
    .tl-top {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .tl-num {
    
      font-size: 17px;
      font-weight: 600;
      color: rgba(255, 255, 255,1);
      letter-spacing: 0.06em;
      line-height: 1;
    }

    .tl-circle {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 2px solid #ee2b24;
      background: #111111;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .tl-circle::after {
      content: '';
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #ee2b24;
    }

    /* ── Content ── */
    .tl-year {
   
      font-size: 22px;
      font-weight: 700;
      color: #ee2b24;
      line-height: 1;
      margin-bottom: 10px;
      letter-spacing: -0.01em;
    }

    .tl-milestone {
    
      font-size: 13px;
      font-weight: 500;
      color: #ffffff;
      margin-bottom: 8px;
      line-height: 1.4;
    }

    .tl-desc {
font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    }

    /* ── Responsive ── */
    @media (max-width: 1024px) {
      .tl-section {
        padding: 56px 32px 64px;
      }
      .tl-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .tl-node:nth-child(n+4).row2 {
        margin-top: 48px;
      }
    }

    @media (max-width: 720px) {
      .tl-section {
        padding: 48px 24px 56px;
      }
      .tl-title {
        font-size: 24px;
      }
      .tl-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 0;
      }
      .tl-grid::before {
        display: none;
      }
      .tl-node.row2 {
        margin-top: 0;
      }
    }

    @media (max-width: 440px) {
      .tl-grid {
        grid-template-columns: 1fr;
      }
      .tl-year {
        font-size: 22px;
      }
    }


    /* ── Section ── */
    .gl-section {
      background: #111111;
      padding: 72px 48px 80px;
    }

    /* ── Header ── */
    .gl-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .gl-eyebrow {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #ee2b24;
      margin-bottom: 12px;
    }

    .gl-title {
      font-family: 'Outfit', sans-serif;
      font-size: 32px;
      font-weight: 700;
      color: #ffffff;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    /* ── Filter tabs ── */
    .gl-filters {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 40px;
    }

    .gl-filter-btn {
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      background: rgba(255,255,255,0.04);
      border: 0.5px solid rgba(255,255,255,0.1);
      border-radius: 4px;
      padding: 8px 18px;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .gl-filter-btn:hover {
      color: rgba(255,255,255,0.85);
      border-color: rgba(255,255,255,0.25);
      background: rgba(255,255,255,0.07);
    }

    .gl-filter-btn.active {
      color: #fff;
      background: #ee2b24;
      border-color: #ee2b24;
    }

    /* ── Uniform grid ── */
    .gl-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      max-width: 1280px;
      margin: 0 auto;
    }

    /* ── Each cell — fixed aspect ratio 4:3 ── */
    .gl-item {
      position: relative;
      overflow: hidden;
      border-radius: 6px;
      cursor: pointer;
      aspect-ratio: 4 / 3;
      background: #1a1a1a;
    }

    .gl-item.hidden {
      display: none;
    }

    .gl-item img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.45s ease;
    }

    .gl-item:hover img {
      transform: scale(1.06);
    }

    /* ── Hover overlay ── */
    .gl-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 18px 14px 14px;
      transition: background 0.3s ease;
      z-index: 1;
    }

    .gl-item:hover .gl-overlay {
      background: rgba(0,0,0,0.68);
    }

    .gl-overlay-tag {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #ee2b24;
      transform: translateY(8px);
      opacity: 0;
      transition: all 0.25s ease 0.04s;
      margin-bottom: 4px;
    }

    .gl-overlay-title {
      font-family: 'Outfit', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      transform: translateY(8px);
      opacity: 0;
      transition: all 0.25s ease;
      line-height: 1.3;
    }

    .gl-item:hover .gl-overlay-tag,
    .gl-item:hover .gl-overlay-title {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── Zoom icon ── */
    .gl-zoom {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(238,43,36,0.92);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: scale(0.7);
      transition: all 0.22s ease;
      z-index: 2;
    }

    .gl-item:hover .gl-zoom {
      opacity: 1;
      transform: scale(1);
    }

    .gl-zoom svg {
      width: 14px;
      height: 14px;
      stroke: #fff;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
    }

    /* ────────────────────────────────────────
       LIGHTBOX
    ──────────────────────────────────────── */
    .lb {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0,0,0,0.96);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .lb.open {
      opacity: 1;
      pointer-events: all;
    }

    .lb-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.05);
      color: #fff;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, border-color 0.2s;
      z-index: 2;
      line-height: 1;
    }

    .lb-close:hover {
      background: #ee2b24;
      border-color: #ee2b24;
    }

    .lb-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.18);
      background: rgba(255,255,255,0.05);
      color: #fff;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, border-color 0.2s;
      z-index: 2;
      user-select: none;
    }

    .lb-arrow:hover {
      background: #ee2b24;
      border-color: #ee2b24;
    }

    .lb-prev { left: 20px; }
    .lb-next { right: 20px; }

    .lb-stage {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      padding: 80px 90px 120px;
    }

    .lb-img {
      max-width: 100%;
      max-height: calc(100vh - 200px);
      width: auto;
      height: auto;
      border-radius: 6px;
      display: block;
      object-fit: contain;
      transition: opacity 0.2s ease;
    }

    .lb-img.fading { opacity: 0; }

    .lb-caption {
      position: absolute;
      bottom: 72px;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      white-space: nowrap;
    }

    .lb-cap-tag {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #ee2b24;
      margin-bottom: 4px;
    }

    .lb-cap-title {
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: #fff;
    }

    .lb-counter {
      position: absolute;
      bottom: 22px;
      right: 24px;
      font-size: 12px;
      color: rgba(255,255,255,0.35);
      letter-spacing: 0.06em;
    }

    /* ── Thumbnail strip ── */
    .lb-thumbs {
      position: absolute;
      bottom: 18px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 6px;
      max-width: 80vw;
      overflow-x: auto;
      padding: 4px;
      scrollbar-width: none;
    }

    .lb-thumbs::-webkit-scrollbar { display: none; }

    .lb-thumb {
      width: 52px;
      height: 38px;
      border-radius: 4px;
      overflow: hidden;
      flex-shrink: 0;
      cursor: pointer;
      border: 1.5px solid transparent;
      transition: border-color 0.2s, opacity 0.2s;
      opacity: 0.4;
    }

    .lb-thumb:hover { opacity: 0.75; }
    .lb-thumb.active { border-color: #ee2b24; opacity: 1; }

    .lb-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ── Responsive ── */
    @media (max-width: 1100px) {
      .gl-grid { grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 768px) {
      .gl-section { padding: 48px 20px 56px; }
      .gl-title { font-size: 24px; }
      .gl-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
      .lb-stage { padding: 60px 56px 120px; }
      .lb-prev { left: 8px; }
      .lb-next { right: 8px; }
      .lb-arrow { width: 36px; height: 36px; font-size: 16px; }
    }

    @media (max-width: 480px) {
      .gl-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
      .gl-section { padding: 36px 16px 44px; }
      .lb-stage { padding: 50px 20px 110px; }
      .lb-thumbs { display: none; }
      .lb-caption { bottom: 20px; }
      .lb-counter { display: none; }
    }