/* ============================================================
   Akriti Precision Systems — akriti.tech
   Shared stylesheet. Tokens per design handoff (README.md).
   ============================================================ */

:root {
  --navy: #071F44;
  --blue: #0052CC;
  --blue-hover: #003B99;
  --saffron: #fa9734;
  --saffron-hover: #E67F17;
  --bg: #FCFDFF;
  --band: #EEF4FC;
  --card-border: #D5E2F5;
  --band-border: #DDE8F7;
  --tile-border: #E2EAF6;
  --text: #10203A;
  --text-2: #4A5D78;
  --muted: #7C8DA6;
  --navy-body: #B9CBE8;
  --navy-muted: #9FB6DC;
  --navy-link: #C9D8F0;
  --navy-bright: #DCE8FA;
  --eyebrow-navy: #6FA0E8;
  --fine: #5F779E;
  --gold-border: #C8B273;
  --gold-text: #7A6420;
  --gold-on-navy: #EAD9A0;
  --gold-bg: #FDF9EC;
  --stat-rule: #3D7BE0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

/* ---------- Layout ---------- */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

.wrap-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

.wrap-1000 {
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

.wrap-1100 {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

.grid {
  display: grid;
  gap: 20px;
}

.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gap-14 {
  gap: 14px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

/* ---------- Type ---------- */
h1 {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 16px;
  text-wrap: pretty;
}

.h1-46 {
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
}

.h1-44 {
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -1.2px;
}

.h1-54 {
  font-size: 54px;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.h1-40 {
  font-size: 40px;
  margin-bottom: 12px;
}

h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin: 0 0 6px;
}

.h2-34 {
  font-size: 34px;
  margin-bottom: 8px;
}

.h2-30 {
  font-size: 30px;
  margin-bottom: 10px;
  letter-spacing: -0.7px;
}

.h2-28 {
  font-size: 28px;
  margin-bottom: 8px;
  letter-spacing: -0.6px;
}

.h2-26 {
  font-size: 26px;
  margin-bottom: 12px;
  letter-spacing: -0.6px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.band-navy .eyebrow {
  color: var(--eyebrow-navy);
}

.eyebrow--gold {
  color: var(--gold-border);
}

.lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 24px;
  max-width: 520px;
}

.section-sub {
  font-size: 15px;
  color: var(--text-2);
  margin: 0 0 28px;
}

.center {
  text-align: center;
}

.checklist {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checklist li {
  display: flex;
  gap: 10px;
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.5;
}

.checklist li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 800;
}

.band-navy .checklist li {
  font-size: 15px;
  color: var(--navy-bright);
}

.band-navy .checklist li::before {
  color: var(--eyebrow-navy);
}

/* Hero Carousel Container */
.hero-carousel-container {
  position: relative;
  /* Removed min-height to allow grid to define height automatically */
}

/* Hero Carousel Slides Grid */
.hero-carousel-slides {
  display: grid;
  grid-template-columns: 1fr;
}

.hero-carousel-slide {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.hero-carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

/* Hero Carousel Indicators */
.carousel-indicators {
  display: flex;
  gap: 8px;
  margin-top: -12px;
  margin-bottom: 24px;
}

.carousel-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  opacity: 0.3;
  transition: opacity 0.3s, transform 0.3s;
}

.carousel-indicator.active {
  opacity: 1;
  transform: scale(1.25);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 8px;
  transition: background .2s;
  white-space: nowrap;
  font-family: inherit;
  cursor: pointer;
}

.btn-wa {
  /* background: var(--saffron); */
  background: #FF7722;
  color: #fff;
}

.btn-wa:hover {
  /* background: var(--saffron-hover); */
  background: #FF7722;
}

.btn-wa--glow {
  /* box-shadow: 0 4px 14px rgba(250, 151, 52, .3); */
  background: #FF7722;
}

.btn-blue {
  background: var(--blue);
  color: #fff;
}

.btn-blue:hover {
  background: var(--blue-hover);
}

.btn-outline {
  background: #fff;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 12px 24px;
}

.btn-outline:hover {
  background: var(--band);
}

.btn-white {
  background: #fff;
  color: var(--navy);
}

.btn-white:hover {
  background: var(--navy-bright);
}

.btn-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-row--center {
  justify-content: center;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #B9CFEF;
  background: var(--band);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 22px;
}

.price-anchor {
  border: 2px solid var(--blue);
  background: #fff;
  color: var(--blue);
  font-size: 19px;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 8px;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px 48px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .08);
}

.site-header .logo {
  flex: none;
  text-decoration: none;
}

.site-header .logo img {
  height: 34px;
  display: block;
}

.site-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  align-items: center;
}

.site-nav a {
  color: var(--navy-link);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a:hover {
  color: #fff;
}

.site-nav .btn-wa {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 6px;
}

.site-nav .btn-wa:hover {
  color: #fff;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.breadcrumb {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 48px 0;
  font-size: 13px;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}

.breadcrumb b {
  color: var(--text);
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 44px 48px 56px;
}

.hero--home {
  grid-template-columns: 1.1fr 1fr;
  padding: 72px 48px 56px;
}

.hero-media {
  position: relative;
}

.hero-media .glow {
  position: absolute;
  inset: 8% -4% 0;
  background: radial-gradient(closest-side, #E3EEFB 0%, rgba(227, 238, 251, 0) 100%);
  border-radius: 50%;
}

.hero-media .glow--gold {
  background: radial-gradient(closest-side, #FDF6E3 0%, rgba(253, 246, 227, 0) 100%);
}

.hero-media>img,
.hero-media>iframe {
  position: relative;
  width: 600px;
  height: 350px;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(7, 31, 68, .18));
}

.hero-media .callout {
  position: absolute;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(7, 31, 68, .1);
  z-index: 5;
}

/* Fullscreen Button */
.fullscreen-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
  line-height: 1;
}

.fullscreen-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.hero-photo {
  width: 100%;
  border-radius: 14px;
  display: block;
  box-shadow: 0 24px 50px rgba(7, 31, 68, .18);
}

.price-note {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.4;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

/* ---------- Bands ---------- */
.band-navy {
  background: var(--navy);
  color: #fff;
}

.band-navy p {
  color: var(--navy-body);
}

.band-light {
  background: var(--band);
  border-top: 1px solid var(--band-border);
  border-bottom: 1px solid var(--band-border);
}

.band-light--top {
  background: var(--band);
  border-top: 1px solid var(--band-border);
}

/* ---------- Stat bar ---------- */
.statbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 26px;
  padding-bottom: 26px;
}

.stat {
  border-left: 3px solid var(--stat-rule);
  padding-left: 18px;
}

.stat-num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 13px;
  color: var(--navy-muted);
}

/* ---------- Logo tiles ---------- */
.logo-tile {
  background: #2a3b69;
  border: 1px solid var(--tile-border);
  border-radius: 8px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.logo-tile img {
  max-height: 120px;
  max-width: 100%;
  object-fit: contain;
}

.logo-tile--navy {
  /* background: var(--navy);
  border-color: var(--navy); */
  background: #2a3b69;
  border-color: #2a3b69;
}

.logo-tile--glass {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  height: 96px;
  padding: 12px;
}

.logo-tile--glass img {
  max-height: 64px;
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

a.card {
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s;
}

a.card:hover {
  box-shadow: 0 14px 34px rgba(7, 31, 68, .12);
  transform: translateY(-3px);
}

.card--featured {
  border: 2px solid var(--blue);
}

.card--tint {
  background: #F5F9FF;
}

.card-flag {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
}

.card-img {
  width: 100%;
  height: 130px;
  object-fit: contain;
}

.card-img--sm {
  height: 110px;
  align-self: center;
}

.card-img--cover {
  height: 110px;
  object-fit: cover;
}

.card-title {
  font-size: 20px;
  font-weight: 800;
}

.card-title--sm {
  font-size: 18px;
}

.card-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
}

.card-desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.5;
}

.card-link {
  margin-top: auto;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
}

.card-cta {
  margin-top: auto;
  display: flex;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 11px;
  border-radius: 8px;
  transition: background .2s;
}

.card-cta:hover {
  background: var(--blue-hover);
}

.card-cta--outline {
  background: #fff;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 9px;
}

.card-cta--outline:hover {
  background: var(--band);
}

.card--gap10 {
  gap: 10px;
}

/* ---------- Chips ---------- */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  border: 1px solid var(--card-border);
  border-radius: 99px;
  padding: 3px 10px;
  font-size: 12px;
  color: var(--text-2);
  background: #F5F9FF;
}

.chip--gold {
  border-color: var(--gold-border);
  color: var(--gold-text);
  background: var(--gold-bg);
}

.chip-lg {
  border-radius: 99px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 700;
}

.chip-lg--gold {
  border: 1px solid var(--gold-border);
  color: var(--gold-on-navy);
}

.chip-lg--navy {
  border: 1px solid rgba(255, 255, 255, .25);
  color: var(--navy-link);
}

.chip-md {
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 99px;
  padding: 8px 18px;
  font-size: 14.5px;
  font-weight: 700;
}

/* ---------- Workflow / logic chains ---------- */
.flow {
  display: grid;
  gap: 16px;
  align-items: center;
}

.flow-4 {
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
}

.flow-3 {
  grid-template-columns: 1fr auto 1fr auto 1fr;
}

.flow--stretch {
  align-items: stretch;
}

.flow--stretch .flow-arrow {
  align-self: center;
}

.flow-arrow {
  font-size: 20px;
  color: var(--eyebrow-navy);
  font-weight: 800;
}

.flow-arrow--blue {
  font-size: 22px;
  color: var(--blue);
}

.flow-step {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
}

.flow-step--hot {
  border: 1px solid var(--saffron);
  background: rgba(250, 151, 52, .12);
}

.flow-step-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
}

.flow-step-desc {
  font-size: 13px;
  color: var(--navy-muted);
  line-height: 1.5;
}

.chain-step {
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  text-align: center;
}

.chain-step--final {
  border: 2px solid var(--blue);
  background: #F5F9FF;
}

.chain-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}

.chain-step--final .chain-title {
  color: var(--blue);
}

.chain-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--card-border);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  padding: 16px 20px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.faq-q .faq-icon {
  color: var(--blue);
  font-size: 18px;
  flex: none;
}

.faq-icon::before {
  content: "+";
}

.faq-item.open .faq-icon::before {
  content: "−";
}

.faq-a {
  display: none;
  padding: 0 20px 16px;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.65;
}

.faq-item.open .faq-a {
  display: block;
}

/* ---------- ROI calculator ---------- */
.roi-box {
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(7, 31, 68, .08);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.roi-inputs {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: #fff;
}

.roi-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.roi-slider-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.roi-slider-head .roi-label {
  margin-bottom: 0;
}

.roi-val {
  font-size: 17px;
  font-weight: 800;
  color: var(--blue);
}

.roi-inputs select {
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  padding: 11px 12px;
  border: 2px solid var(--card-border);
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
}

.roi-inputs input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
}

.roi-assume {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.5;
  border-top: 1px solid var(--tile-border);
  padding-top: 14px;
}

.roi-outputs {
  background: var(--navy);
  color: #fff;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.roi-payback {
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  padding: 20px;
}

.roi-payback-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--eyebrow-navy);
}

.roi-payback-num {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
}

.roi-minis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.roi-mini {
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  padding: 16px;
}

.roi-mini-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--eyebrow-navy);
}

.roi-mini-num {
  font-size: 22px;
  font-weight: 800;
  margin-top: 4px;
}

.roi-mini-sub {
  font-size: 11px;
  color: var(--navy-muted);
}

.roi-outputs .btn-wa {
  display: flex;
  padding: 15px;
  margin-top: auto;
}

.roi-fine {
  font-size: 11px;
  color: var(--navy-muted);
  text-align: center;
}

/* ---------- Rupee table (Composite Story) ---------- */
.rupee-table {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  overflow: hidden;
}

.rupee-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
}

.rupee-grid>div {
  padding: 15px 22px;
  border-top: 1px solid var(--tile-border);
  font-size: 14.5px;
}

.rupee-grid>.rt-head {
  padding: 14px 22px;
  border-top: none;
  font-size: 13px;
  font-weight: 700;
}

.rt-head--navy {
  background: var(--navy);
  color: #fff;
}

.rt-head--navy-dim {
  background: var(--navy);
  color: var(--navy-muted);
}

.rt-head--blue {
  background: var(--blue);
  color: #fff;
}

.rt-row {
  font-weight: 600;
}

.rt-steel {
  color: var(--text-2);
}

.rt-akriti {
  font-weight: 800;
  color: var(--blue);
  background: #F5F9FF;
}

.table-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 14px 0 0;
}

/* ---------- Footers ---------- */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-top: 48px;
  padding-bottom: 32px;
}

.site-footer {
  background: var(--navy);
  color: var(--navy-muted);
}

.site-footer a {
  color: var(--navy-link);
  text-decoration: none;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
}

.footer-head {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--eyebrow-navy);
  margin-bottom: 4px;
}

.footer-addr {
  font-size: 13px;
  line-height: 1.7;
}

.footer-contact {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 10px;
  color: #fff;
  font-weight: 600;
}

.footer-fine {
  font-size: 12px;
  color: var(--fine);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 18px;
  padding-bottom: 28px;
}

.footer-slim {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 12px;
  color: var(--fine);
}

.footer-slim a {
  color: var(--navy-muted);
  text-decoration: none;
}

.footer-contactbar {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  padding-top: 36px;
  padding-bottom: 36px;
}

.footer-contactbar .lines {
  font-size: 13px;
  line-height: 1.7;
}

.footer-contactbar .lines span {
  color: var(--fine);
}

.footer-contactbar .btn-wa {
  flex: none;
  font-size: 14px;
  padding: 11px 22px;
}

/* ---------- Misc blocks ---------- */
.strip-cta {
  border: 2px solid var(--blue);
  background: #F5F9FF;
  border-radius: 16px;
  padding: 28px 34px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.yt-tile {
  text-decoration: none;
  color: inherit;
  background: var(--navy);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}

.yt-tile:hover {
  box-shadow: 0 14px 34px rgba(7, 31, 68, .25);
}



.yt-thumb {
  background-size: cover;
  background-position: center;
  position: relative;
  Height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yt-play {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

.yt-meta {
  padding: 14px 18px;
}

.yt-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.yt-sub {
  font-size: 12.5px;
  color: var(--navy-muted);
  margin-top: 3px;
}

.numbox {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #F3F6FB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--muted);
}

.numbox--blue {
  background: var(--blue);
  color: #fff;
}

.iconbox {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
}

.stepnum {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 12px;
}

/* ---------- Blog index ---------- */
.blog-search {
  width: 100%;
  max-width: 560px;
  background: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 15px;
  color: var(--text);
  font-family: inherit;
  outline: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

.blog-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-chip {
  font-family: inherit;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 99px;
  background: #fff;
  color: var(--text-2);
  border: 1px solid var(--card-border);
}

.blog-chip.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.blog-card {
  padding: 20px;
  gap: 10px;
}

a.blog-card:hover {
  box-shadow: 0 12px 30px rgba(7, 31, 68, .12);
  transform: translateY(-2px);
}

.blog-cat {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--band);
  border: 1px solid var(--card-border);
  border-radius: 99px;
  padding: 4px 12px;
}

.blog-title {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.4;
  text-wrap: pretty;
}

.blog-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--muted);
  font-size: 15px;
}

.blog-empty a {
  color: var(--blue);
  font-weight: 700;
}

/* ---------- Product pages ---------- */
.prod-hero-img {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-hero-img img {
  max-height: 340px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #0B2C5E;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.pdf-embed {
  width: 100%;
  height: 900px;
  border: 1px solid var(--card-border);
  border-radius: 12px;
}

.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
}

.filter-bar select {
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  padding: 10px 12px;
  border: 2px solid var(--card-border);
  border-radius: 8px;
  background: #fff;
}

.filter-bar .reset {
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 6px;
}

.filter-count {
  font-size: 13px;
  color: var(--muted);
  margin-left: auto;
}

.dev-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--saffron);
  background: rgba(250, 151, 52, .12);
  color: #9A5B10;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 22px;
}

/* ============================================================
   Responsive — designs are desktop 1240px; per handoff:
   grids stack to 1-col, industry hub to 2-col at tablet.
   ============================================================ */

@media (max-width: 1080px) {

  .wrap,
  .wrap-narrow,
  .wrap-1000,
  .wrap-1100,
  .breadcrumb {
    padding-left: 32px;
    padding-right: 32px;
  }

  .site-header {
    padding-left: 32px;
    padding-right: 32px;
  }

  .cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cols-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-nav {
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 16px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 14px 30px rgba(7, 31, 68, .35);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
    font-size: 15px;
  }

  .site-nav .btn-wa {
    justify-content: center;
    margin-top: 8px;
    padding: 12px 20px;
  }

  .hero,
  .hero--home {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  [data-stack] {
    grid-template-columns: 1fr !important;
  }

  .cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cols-2 {
    grid-template-columns: 1fr;
  }

  .statbar {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .flow-4,
  .flow-3 {
    grid-template-columns: 1fr;
  }

  .flow .flow-arrow {
    display: none;
  }

  .roi-box {
    grid-template-columns: 1fr;
  }

  .rupee-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .rupee-grid>div {
    padding: 12px 14px;
    font-size: 13.5px;
  }

  .strip-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contactbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .wrap,
  .wrap-narrow,
  .wrap-1000,
  .wrap-1100,
  .breadcrumb {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header {
    padding-left: 20px;
    padding-right: 20px;
    gap: 16px;
  }

  h1 {
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .h1-46,
  .h1-44 {
    font-size: 36px;
  }

  .h1-54 {
    font-size: 40px;
  }

  h2,
  .h2-34 {
    font-size: 27px;
  }

  .cols-3,
  .cols-4,
  .cols-5 {
    grid-template-columns: 1fr;
  }

  .statbar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .btn-row {
    flex-wrap: wrap;
  }

  .price-row {
    flex-wrap: wrap;
  }

  .roi-inputs,
  .roi-outputs {
    padding: 24px 20px;
  }

  .pdf-embed {
    height: 480px;
  }

  .filter-count {
    margin-left: 0;
    width: 100%;
  }

  .rupee-grid {
    grid-template-columns: 1fr;
  }

  .rupee-grid>.rt-head {
    display: none;
  }

  .rupee-grid>.rt-steel::before {
    content: "Steel-frame machine: ";
    font-weight: 700;
    color: var(--text);
  }

  .rupee-grid>.rt-akriti::before {
    content: "Akriti composite: ";
    color: var(--text);
    font-weight: 700;
  }

  .footer-slim {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}





/* ---------- Trust Ribbon Auto Carousel ---------- */
.logo-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.logo-carousel-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: logo-scroll 90s linear infinite;
}

.logo-carousel:hover .logo-carousel-track {
  animation-play-state: paused;
}

.logo-carousel-track .logo-tile {
  flex: 0 0 auto;
  width: 200px;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .logo-carousel-track .logo-tile {
    width: 160px;
    height: 72px;
  }

  .logo-carousel-track {
    animation-duration: 50s;
  }
}

@media (max-width: 560px) {
  .logo-carousel-track .logo-tile {
    width: 130px;
    height: 64px;
  }

  .logo-carousel-track {
    gap: 10px;
    animation-duration: 40s;
  }
}





/* ============================================================
   EXTRA RESPONSIVE FIXES — paste at the end of site.css
   ============================================================ */

/* 0. Safety net — stop any horizontal scroll on mobile */



iframe,
video {
  max-width: 100%;
}

/* 1. MAIN FIX — hero video/image was hard-coded to 600x350px,
   which broke every mobile layout. Make it fluid instead. */
.hero-media>.hero-media>iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 600 / 350;
}

/* 2. Hero side padding shrinks with the screen */
@media (max-width: 900px) {

  .hero,
  .hero--home {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 640px) {

  .hero,
  .hero--home {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .hero-media .callout {
    display: none;
    /* floating badge looks cramped on small screens */
  }

  .fullscreen-btn {
    width: 34px;
    height: 34px;
    font-size: 16px;
    bottom: 10px;
    right: 10px;
  }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-row .btn {
    text-align: center;
    justify-content: center;
  }
}

/* 3. Extra-small phones (≤480px) — tighten spacing/type further */
@media (max-width: 480px) {
  .site-header {
    padding: 12px 16px;
    gap: 12px;
  }

  .site-header .logo img {
    height: 26px;
  }

  h1,
  .h1-46,
  .h1-44,
  .h1-54,
  .h1-40 {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  h2,
  .h2-34,
  .h2-30,
  .h2-28 {
    font-size: 22px;
  }

  .lede {
    font-size: 15px;
  }

  .badge-pill {
    font-size: 12px;
    padding: 5px 12px;
  }

  .stat-num {
    font-size: 22px;
  }

  .statbar {
    gap: 16px;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .roi-box {
    border-radius: 10px;
  }

  .roi-inputs,
  .roi-outputs {
    padding: 20px 16px;
  }

  .roi-payback-num {
    font-size: 34px;
  }

  .roi-minis {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .logo-tile img {
    max-height: 90px;
  }

  .strip-cta {
    padding: 20px;
  }
}


.hero-video {
  position: relative;
}

.hero-video .glow {
  position: absolute;
  inset: 8% -4% 0;
  background: radial-gradient(closest-side, #E3EEFB 0%, rgba(227, 238, 251, 0) 100%);
  border-radius: 50%;
}

.hero-video>iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 600 / 350;
  position: relative;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(7, 31, 68, .18));
}