/* =====================================================================
   PRAGATI LOGISTICS — styles.css
   Design system: "Together We Grow"
   Light enterprise · navy + steel base · brand azure primary · brand green accent
   ===================================================================== */

/* ---------- TOKENS ---------- */
:root {
  /* surfaces */
  --white:    #ffffff;
  --paper:    #f6f9fc;   /* off-white app bg */
  --mist:     #eef3f8;   /* soft grey surfaces */
  --bluegrey: #e2eaf3;   /* light blue-grey panels */
  --line:     #e1e9f1;
  --line-2:   #cfdbe8;

  /* brand */
  --navy:     #0b2a47;   /* deep navy — dark sections, headings */
  --navy-2:   #0f335a;
  --navy-3:   #16406b;
  --steel:    #2f6ba3;   /* steel blue secondary */
  --blue:     #0f7fd0;   /* logo azure — primary */
  --blue-d:   #0a66af;
  --blue-soft:#e6f1fb;
  --green:    #1a9d3a;   /* logo green — signature accent */
  --green-d:  #14842f;
  --green-soft:#e7f6ec;

  /* text */
  --ink:      #15314c;   /* primary text on light */
  --muted:    #57708a;   /* secondary text */
  --faint:    #8295a9;   /* captions */
  --on-dark:  #eaf2fb;
  --on-dark-mut:#9fb6cf;

  --wa:       #25d366;
  --wa-dark:  #1ebe5a;

  /* type */
  --display: "Sora", system-ui, sans-serif;
  --body:    "Archivo", system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;

  /* metrics */
  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 56px);
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --shadow-sm: 0 2px 10px rgba(11,42,71,.05), 0 1px 2px rgba(11,42,71,.04);
  --shadow:    0 18px 50px rgba(11,42,71,.10), 0 4px 12px rgba(11,42,71,.05);
  --shadow-lg: 0 40px 90px rgba(11,42,71,.16), 0 8px 24px rgba(11,42,71,.07);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ---------- LAYOUT HELPERS ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(72px, 10vw, 132px); position: relative; }

.section__head { max-width: 780px; margin-bottom: clamp(40px, 6vw, 72px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--navy);
}
.section__sub { margin-top: 1.1rem; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.14rem); max-width: 680px; }
.section__head--center .section__sub { margin-inline: auto; }

.eyebrow {
  font-family: var(--mono);
  font-size: .73rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.1rem;
  font-weight: 500;
  flex-wrap: wrap;
  max-width: 100%;
}
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-soft);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.01em;
  border-radius: 999px;
  transition: transform .25s var(--ease), background .25s, box-shadow .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn--sm { padding: .58rem 1.15rem; font-size: .9rem; }
.btn--lg { padding: .95rem 1.7rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn--solid {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(15,127,208,.26);
}
.btn--solid:hover { background: var(--blue-d); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(15,127,208,.34); }

.btn--ghost {
  color: var(--navy);
  border: 1px solid var(--line-2);
  background: var(--white);
}
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

.btn--whatsapp { background: var(--wa); color: #042a13; box-shadow: 0 10px 24px rgba(37,211,102,.26); }
.btn--whatsapp:hover { background: var(--wa-dark); transform: translateY(-2px); }

/* ---------- PRELOADER ---------- */
.loader {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  background: var(--navy);
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__inner { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.loader__logo { width: 68px; height: auto; animation: floaty 2.4s var(--ease) infinite; filter: drop-shadow(0 10px 24px rgba(0,0,0,.4)); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.loader__name { font-family: var(--display); font-weight: 600; letter-spacing: .12em; color: var(--on-dark); font-size: clamp(.72rem, 3vw, .95rem); margin-top: .6rem; text-align: center; max-width: 90vw; padding: 0 16px; line-height: 1.4; }
.loader__name strong { font-weight: 800; }
.loader__motto { font-family: var(--mono); font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--green); }
.loader__bar { width: 140px; height: 3px; border-radius: 3px; background: rgba(255,255,255,.14); overflow: hidden; margin-top: 1rem; }
.loader__bar i { display: block; height: 100%; width: 40%; border-radius: 3px; background: linear-gradient(90deg, var(--blue), var(--green)); animation: load 1.2s var(--ease) infinite; }
@keyframes load { 0% { transform: translateX(-120%); } 100% { transform: translateX(360%); } }

/* ---------- NAV ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, backdrop-filter .3s, border-color .3s, box-shadow .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: .85rem var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--navy); }
.brand__logo { width: 38px; height: auto; }
.brand__text {
  font-family: var(--display); font-weight: 800; font-size: .82rem;
  letter-spacing: .015em; line-height: 1.05; display: flex; flex-direction: column; color: var(--navy);
  white-space: nowrap;
}
.brand__sub { font-size: .54rem; letter-spacing: .14em; color: var(--steel); font-weight: 600; text-transform: uppercase; margin-top: 3px; white-space: nowrap; }

.nav__links { display: flex; align-items: center; gap: 1.1rem; }
.nav__links a:not(.btn) {
  font-family: var(--display); font-weight: 500; white-space: nowrap;
  font-size: .86rem; color: var(--ink); position: relative; padding: .3rem 0;
  transition: color .2s;
}
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--blue); transition: width .25s var(--ease);
}
.nav__links a:not(.btn):hover { color: var(--blue); }
.nav__links a:not(.btn):hover::after { width: 100%; }

.nav__actions { display: flex; gap: .55rem; }
.nav__links-cta { display: none; }

.nav__toggle { display: none; width: 42px; height: 42px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 112px; padding-bottom: 72px;
  overflow: hidden;
  background:
    radial-gradient(110% 90% at 90% 0%, var(--blue-soft), transparent 55%),
    radial-gradient(90% 80% at 0% 100%, var(--mist), transparent 60%),
    var(--paper);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: radial-gradient(130% 100% at 70% 25%, #000 25%, transparent 78%);
  opacity: .8;
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); width: 100%;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero__copy, .facility { min-width: 0; }
.hero__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.04; letter-spacing: -.03em;
  margin-bottom: 1.4rem; color: var(--navy);
}
.hero__title .accent { color: var(--blue); display: block; }
.hero__lead { max-width: 560px; color: var(--muted); font-size: clamp(1.04rem, 1.5vw, 1.2rem); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }

.hero__proof { display: flex; gap: clamp(1.2rem, 3vw, 2.6rem); margin-top: 2.6rem; flex-wrap: wrap; }
.hero__proof li { display: flex; flex-direction: column; }
.hero__proof strong { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--navy); line-height: 1; }
.hero__proof span { font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); margin-top: .4rem; }

/* facility snapshot card */
.facility {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem 1.2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.facility::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, rgba(15,127,208,.4), transparent 40%, transparent 70%, rgba(26,157,58,.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.facility__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.3rem; }
.facility__id { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; color: var(--faint); }
.facility__live { font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; color: var(--green-d); display: inline-flex; align-items: center; gap: .45rem; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); position: relative; }
.pulse::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--green); animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.6); opacity: 1; } 100% { transform: scale(1.8); opacity: 0; } }

.facility__gauge { display: flex; align-items: center; gap: 1.3rem; }
.facility__stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.1rem 1rem;
}
.fstat { display: flex; flex-direction: column; gap: .15rem; }
.fstat__num { font-family: var(--display); font-weight: 800; font-size: 1.32rem; color: var(--navy); line-height: 1.05; letter-spacing: -.01em; }
.fstat__label { font-family: var(--mono); font-size: .58rem; letter-spacing: .06em; text-transform: uppercase; color: var(--faint); line-height: 1.25; }
.gauge { position: relative; width: 124px; height: 124px; flex: 0 0 auto; }
.gauge svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.gauge__track { fill: none; stroke: var(--mist); stroke-width: 11; }
.gauge__fill { fill: none; stroke: var(--blue); stroke-width: 11; stroke-linecap: round; stroke-dasharray: 327; stroke-dashoffset: 327; transition: stroke-dashoffset 1.6s var(--ease); }
.gauge__center { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; }
.gauge__num { font-family: var(--display); font-weight: 800; font-size: 1.6rem; color: var(--navy); line-height: 1; }
.gauge__label { font-family: var(--mono); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }

.facility__metrics { flex: 1 1 auto; display: flex; flex-direction: column; gap: .85rem; }
.fmetric { display: flex; flex-direction: column; gap: .15rem; }
.fmetric__label { font-family: var(--mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.fmetric__val { font-family: var(--display); font-weight: 700; font-size: 1.12rem; color: var(--navy); }
.facility__note { font-size: .72rem; color: var(--faint); margin-top: 1.1rem; padding-top: .9rem; border-top: 1px solid var(--line); }

.hero__scroll { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 2; }
.hero__scroll span { display: block; width: 24px; height: 38px; border: 1.5px solid var(--line-2); border-radius: 14px; position: relative; }
.hero__scroll span::after { content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 7px; border-radius: 2px; background: var(--blue); transform: translateX(-50%); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%,12px); } }

/* ---------- TRUST BAR ---------- */
.trustbar { background: var(--navy); color: var(--on-dark); }
.trustbar__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding-block: 1.6rem; }
.trustbar__item { display: flex; flex-direction: column; gap: .25rem; padding-inline: .5rem; position: relative; }
.trustbar__item + .trustbar__item::before { content: ""; position: absolute; left: -.75rem; top: 50%; transform: translateY(-50%); height: 60%; width: 1px; background: rgba(255,255,255,.12); }
.trustbar__k { font-family: var(--mono); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-mut); }
.trustbar__v { font-family: var(--display); font-weight: 600; font-size: 1.02rem; }
.trustbar__v--accent { color: var(--green); font-weight: 700; letter-spacing: .01em; }

/* ---------- ABOUT ---------- */
.about__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__media { position: relative; }
.about__img { width: 100%; height: clamp(320px, 42vw, 480px); object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.img--fallback { background: linear-gradient(135deg, var(--navy), var(--steel)); min-height: 320px; }
.about__media .img--fallback { display: block; width: 100%; height: clamp(320px, 42vw, 480px); border-radius: var(--radius); }
.about__badge {
  position: absolute; right: -14px; bottom: -18px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 1rem 1.3rem;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.about__badge-num { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--blue); line-height: 1; }
.about__badge-label { font-family: var(--mono); font-size: .64rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-top: .3rem; }
.img-real {
  position: absolute; top: .8rem; left: .8rem; z-index: 3;
  font-family: var(--mono); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: rgba(11,42,71,.8); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  padding: .38rem .65rem .38rem .58rem; border-radius: 999px;
  display: inline-flex; align-items: center; gap: .4rem;
}
.img-real::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(26,157,58,.3); }
.about__body p { color: var(--muted); margin-top: 1.1rem; font-size: 1.05rem; }
.about__pills { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.6rem; }
.pill { font-family: var(--mono); font-size: .7rem; letter-spacing: .04em; padding: .5rem .9rem; border: 1px solid var(--line-2); border-radius: 999px; color: var(--steel); background: var(--white); }

/* ---------- SERVICES ---------- */
.services { background: var(--white); border-block: 1px solid var(--line); }

/* featured warehousing block */
.feature {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.5rem, 3vw, 3rem);
  align-items: stretch; margin-bottom: clamp(1.4rem, 2.5vw, 2rem);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.feature__media { position: relative; min-height: 340px; }
.feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature__media .img--fallback { position: absolute; inset: 0; }
.feature__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 55%, rgba(11,42,71,.18)); }
.feature__body { padding: clamp(1.8rem, 3.4vw, 3rem); display: flex; flex-direction: column; align-items: flex-start; }
.feature__tag {
  font-family: var(--mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-d); background: var(--green-soft); border-radius: 999px; padding: .4rem .8rem; margin-bottom: 1rem;
}
.feature__title { font-family: var(--display); font-weight: 700; font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--navy); letter-spacing: -.02em; }
.feature__lead { color: var(--muted); margin-top: .9rem; font-size: 1.05rem; }
.feature__list { margin-top: 1.3rem; display: flex; flex-direction: column; gap: .65rem; }
.feature__list li { position: relative; padding-left: 1.7rem; color: var(--ink); font-size: .98rem; }
.feature__list li::before {
  content: ""; position: absolute; left: 0; top: .35em; width: 16px; height: 16px; border-radius: 50%;
  background: var(--green-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8l3 3 5-6' fill='none' stroke='%231a9d3a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.feature__cta { margin-top: 1.7rem; display: inline-flex; align-items: center; gap: .5rem; font-family: var(--display); font-weight: 600; color: var(--blue); transition: gap .2s; }
.feature__cta:hover { gap: .85rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.4rem); }
.card {
  position: relative; padding: 2rem 1.8rem 2.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
  box-shadow: var(--shadow-sm);
}
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--blue), var(--green)); transition: width .4s var(--ease); }
.card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow); }
.card:hover::before { width: 100%; }
.card__icon { color: var(--blue); margin-bottom: 1.2rem; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: var(--blue-soft); }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-family: var(--display); font-weight: 600; font-size: 1.22rem; margin-bottom: .55rem; letter-spacing: -.01em; color: var(--navy); }
.card p { color: var(--muted); font-size: .97rem; }

/* ---------- NETWORK ---------- */
.network { background: var(--paper); }
.network__layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.network__map { display: grid; place-items: center; }
.indiamap { width: 100%; max-width: 520px; height: auto; overflow: visible; }
.indiamap__land { fill: var(--mist); stroke: var(--line-2); stroke-width: 1.5; }
.indiamap__links line { stroke: var(--blue); stroke-width: 1.4; opacity: .45; stroke-dasharray: 4 5; }
.mapnode__ring { fill: none; stroke: var(--blue); stroke-width: 1.5; opacity: 0; transform-origin: center; transform-box: fill-box; }
.mapnode__dot { fill: var(--blue); transition: r .25s var(--ease), fill .25s; }
.mapnode--hub .mapnode__dot { fill: var(--green); }
.mapnode--hub .mapnode__ring { stroke: var(--green); }
.mapnode__ring.is-on { animation: ping 2.2s ease-out infinite; }
@keyframes ping { 0% { opacity: .7; transform: scale(.4); } 100% { opacity: 0; transform: scale(2.6); } }
.mapnode.is-active .mapnode__dot { fill: var(--green); r: 8; }

.network__list { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.netcard {
  display: flex; align-items: center; gap: .8rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .9rem 1rem; transition: border-color .25s, transform .25s, box-shadow .25s;
}
.netcard:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.netcard__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--blue); flex: 0 0 auto; box-shadow: 0 0 0 4px var(--blue-soft); }
.netcard__dot--hub { background: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }
.netcard__dot--soon { background: transparent; border: 2px dashed var(--steel); box-shadow: none; }
.netcard--upcoming { opacity: .82; }
.netcard--upcoming strong { color: var(--steel); }
.netcard--upcoming span { color: var(--muted); font-style: italic; }
.netcard strong { font-family: var(--display); font-weight: 600; font-size: .98rem; color: var(--navy); display: block; }
.netcard span { font-size: .78rem; color: var(--muted); }

/* ---------- WHY ---------- */
.why { background: var(--white); border-block: 1px solid var(--line); }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.why__item { padding: 2.2rem 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s; }
.why__item:hover { background: var(--paper); }
.why__grid .why__item:nth-child(3n) { border-right: none; }
.why__grid .why__item:nth-last-child(-n+3) { border-bottom: none; }
.why__item h3 { font-family: var(--display); font-weight: 600; font-size: 1.16rem; margin-bottom: .5rem; color: var(--navy); display: flex; align-items: center; gap: .55rem; }
.why__item h3::before { content: ""; width: 18px; height: 18px; flex: 0 0 auto; border-radius: 50%; background: var(--green-soft); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8l3 3 5-6' fill='none' stroke='%231a9d3a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.why__item p { color: var(--muted); font-size: .96rem; }

/* ---------- PROCESS / TIMELINE ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; position: relative; }
.timeline::before { content: ""; position: absolute; top: 23px; left: 6%; right: 6%; height: 2px; background: repeating-linear-gradient(90deg, var(--line-2) 0 14px, transparent 14px 26px); z-index: 0; }
.timeline__step { position: relative; z-index: 1; padding-top: 3.6rem; }
.timeline__num {
  position: absolute; top: 0; left: 0;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--mono); font-weight: 700; font-size: .9rem;
  color: var(--white); background: var(--blue); box-shadow: 0 8px 18px rgba(15,127,208,.3);
}
.timeline__step h3 { font-family: var(--display); font-weight: 600; font-size: 1.18rem; margin-bottom: .5rem; color: var(--navy); }
.timeline__step p { color: var(--muted); font-size: .95rem; }

/* ---------- STATS ---------- */
.stats { background: var(--navy); position: relative; overflow: hidden; }
.stats::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 100% 0%, rgba(15,127,208,.22), transparent 60%); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.stat { text-align: center; padding: 1rem; }
.stat__num { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(2.1rem, 4.4vw, 3.2rem); color: var(--white); letter-spacing: -.02em; line-height: 1; }
.stat__label { display: block; margin-top: .7rem; font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; color: var(--on-dark-mut); text-transform: uppercase; }

/* ---------- CERTIFICATIONS ---------- */
.certs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.cert {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem 2rem; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s;
  position: relative; overflow: hidden;
}
.cert:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.cert__badge {
  width: 84px; height: 84px; margin: 0 auto 1.2rem; border-radius: 50%;
  display: grid; place-items: center; color: var(--blue);
  background: radial-gradient(circle at 30% 25%, var(--blue-soft), var(--white));
  border: 1px solid var(--line);
}
.cert__badge svg { width: 46px; height: 46px; }
.cert:nth-child(2) .cert__badge { color: var(--green); background: radial-gradient(circle at 30% 25%, var(--green-soft), var(--white)); }
.cert:nth-child(3) .cert__badge { color: var(--steel); background: radial-gradient(circle at 30% 25%, var(--mist), var(--white)); }
.cert__code { font-family: var(--mono); font-size: .76rem; letter-spacing: .14em; color: var(--steel); text-transform: uppercase; }
.cert h3 { font-family: var(--display); font-weight: 600; font-size: 1.18rem; color: var(--navy); margin: .35rem 0 .7rem; }
.cert p { color: var(--muted); font-size: .94rem; }

/* ---------- CLIENTS / TRUSTED BY ---------- */
.clients { background: var(--paper); }
.clients__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.9rem, 1.6vw, 1.2rem);
}
.client {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .85rem;
  min-height: 138px; padding: 1.5rem 1.2rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.client:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
.client__logo {
  max-height: 48px; max-width: 80%; width: auto; object-fit: contain;
}
.client__name {
  font-family: var(--display); font-weight: 600; font-size: .92rem;
  letter-spacing: .01em; color: var(--navy); text-align: center; line-height: 1.25;
}

/* ---------- REAL WAREHOUSES ---------- */
.realwh { background: var(--white); border-block: 1px solid var(--line); }
.realwh__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.6rem); }
.realwh__item { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.realwh__item img { width: 100%; height: clamp(320px, 38vw, 440px); object-fit: cover; display: block; }
.realwh__item .img--fallback { width: 100%; height: clamp(320px, 38vw, 440px); }

/* ---------- LOGIPARK (UPCOMING) ---------- */
.logipark { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: var(--on-dark); position: relative; overflow: hidden; }
.logipark::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 100% at 0% 0%, rgba(15,127,208,.22), transparent 55%), radial-gradient(60% 100% at 100% 100%, rgba(26,157,58,.16), transparent 55%); }
.logipark__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.logipark__media { position: relative; display: flex; flex-direction: column; gap: .8rem; }
.logipark__img { width: 100%; height: clamp(200px, 26vw, 280px); object-fit: cover; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.12); }
.logipark__img:first-child { height: clamp(240px, 32vw, 340px); }
.logipark__media .img--fallback { min-height: 200px; }
.img-real--build { background: rgba(20,132,47,.94); }
.logipark__badge { display: inline-block; font-family: var(--mono); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--navy); background: var(--green); padding: .42rem .85rem; border-radius: 999px; font-weight: 700; margin-bottom: 1.1rem; }
.logipark__title { font-family: var(--display); font-weight: 700; font-size: clamp(1.7rem, 3.4vw, 2.6rem); line-height: 1.1; letter-spacing: -.02em; color: #fff; }
.logipark__body p { color: var(--on-dark-mut); margin-top: 1.1rem; font-size: 1.05rem; }
.logipark__stats { display: flex; gap: 2.6rem; margin: 1.8rem 0; flex-wrap: wrap; }
.lp-stat { display: flex; flex-direction: column; }
.lp-stat__num { font-family: var(--display); font-weight: 800; font-size: clamp(1.8rem, 3.4vw, 2.4rem); color: var(--green); line-height: 1; }
.lp-stat__label { font-family: var(--mono); font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--on-dark-mut); margin-top: .45rem; max-width: 170px; }

/* ---------- TESTIMONIALS ---------- */.testimonials { background: var(--white); border-block: 1px solid var(--line); }
.testimonials__flag { font-size: .8rem; color: var(--faint); font-style: italic; margin-top: .8rem; }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.quote { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem 1.8rem 1.8rem; position: relative; }
.quote::before { content: "\201C"; position: absolute; top: .4rem; left: 1.3rem; font-family: var(--display); font-size: 3.6rem; color: var(--blue); opacity: .18; line-height: 1; }
.quote blockquote { font-size: 1.02rem; color: var(--ink); margin: 1rem 0 1.4rem; position: relative; }
.quote figcaption { display: flex; flex-direction: column; gap: .15rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.quote__name { font-family: var(--display); font-weight: 600; font-size: .95rem; color: var(--navy); }
.quote__org { font-family: var(--mono); font-size: .72rem; color: var(--faint); letter-spacing: .03em; }

/* ---------- CONTACT ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact__left p { color: var(--muted); margin-top: 1rem; }
.contact__methods { display: flex; flex-direction: column; gap: .9rem; margin-top: 2rem; }
.contact__method { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); transition: border-color .25s, transform .25s, box-shadow .25s; }
.contact__method:hover { border-color: var(--blue); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.contact__icon { width: 44px; height: 44px; flex: 0 0 auto; border-radius: 50%; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue); }
.contact__icon--wa { background: rgba(37,211,102,.14); color: var(--wa-dark); }
.contact__detail { display: flex; flex-direction: column; font-size: 1rem; font-weight: 500; color: var(--ink); }
.contact__detail strong { font-family: var(--mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); font-weight: 600; margin-bottom: .12rem; }
.contact__method--multi .contact__detail a { color: var(--ink); font-weight: 500; line-height: 1.55; width: fit-content; transition: color .2s; }
.contact__method--multi .contact__detail a:hover { color: var(--brand); }
.contact__method--addr { cursor: default; }
.contact__method--addr .contact__detail { font-size: .94rem; font-weight: 500; line-height: 1.45; }
.contact__person { margin-top: 1.4rem; font-size: .95rem; color: var(--muted); }
.contact__person strong { color: var(--navy); }

.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow); }
.form__title { font-family: var(--display); font-weight: 700; font-size: 1.5rem; margin-bottom: 1.4rem; color: var(--navy); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form label { display: flex; flex-direction: column; font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); gap: .4rem; margin-bottom: 1rem; }
.form input, .form textarea, .form select {
  background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  padding: .85rem 1rem; color: var(--ink); font-size: .98rem; font-family: var(--body);
  text-transform: none; letter-spacing: normal; transition: border-color .2s, box-shadow .2s;
}
.form input::placeholder, .form textarea::placeholder { color: var(--faint); }
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.form textarea { resize: vertical; }
.form__note { font-size: .76rem; color: var(--faint); text-transform: none; letter-spacing: normal; margin-top: .9rem; text-align: center; }

/* ---------- FOOTER ---------- */
.footer { background: var(--navy); color: var(--on-dark); padding-top: clamp(3rem, 6vw, 5rem); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 3rem; }
.brand--footer { display: inline-flex; align-items: center; gap: .65rem; }
.brand--footer .brand__logo { width: 40px; }
.brand--footer .brand__text { color: var(--white); }
.brand--footer .brand__sub { color: var(--on-dark-mut); }
.footer__brand p { color: var(--on-dark-mut); margin-top: 1rem; max-width: 320px; font-size: .95rem; }
.footer__motto { color: var(--green) !important; font-family: var(--display); font-weight: 700; letter-spacing: .02em; margin-top: .8rem !important; }
.footer__col h4 { font-family: var(--display); font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-mut); margin-bottom: 1rem; }
.footer__col { display: flex; flex-direction: column; gap: .7rem; }
.footer__col a { color: var(--on-dark); font-size: .94rem; transition: color .2s; width: fit-content; }
.footer__person { font-family: var(--mono); font-size: .82rem; color: var(--on-dark-mut); letter-spacing: .02em; }
.footer__col a:hover { color: var(--green); }
.footer__addr { color: var(--on-dark-mut); font-size: .86rem; line-height: 1.5; max-width: 240px; margin-top: .2rem; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.4rem; }
.footer__bar-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer__bar-inner span { font-family: var(--mono); font-size: .73rem; color: var(--on-dark-mut); letter-spacing: .03em; }

/* ---------- FLOATING WHATSAPP ---------- */
.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #042a13;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  transition: transform .25s var(--ease);
  animation: fabPulse 2.6s ease-in-out infinite;
}
.fab:hover { transform: scale(1.08); }
@keyframes fabPulse { 0%,100% { box-shadow: 0 10px 30px rgba(37,211,102,.4); } 50% { box-shadow: 0 10px 30px rgba(37,211,102,.4), 0 0 0 12px rgba(37,211,102,.10); } }

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1040px) {
  .hero__inner { grid-template-columns: 1fr; }
  .facility { max-width: 460px; }
}
@media (max-width: 1200px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open { background: rgba(255,255,255,.98); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0; width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: .25rem var(--pad) 1.2rem;
    max-height: calc(100svh - 100%); overflow-y: auto;
    box-shadow: var(--shadow);
  }
  .nav.is-open .nav__links a:not(.btn) { padding: .95rem 0; border-bottom: 1px solid var(--line); width: 100%; }
  .nav.is-open .nav__links-cta { display: flex; gap: .6rem; margin-top: 1rem; }
  .nav.is-open .nav__links-cta .btn { flex: 1; }
}
@media (max-width: 980px) {
  .about__grid, .contact__grid, .feature, .network__layout, .logipark__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 560px; }
  .feature__media { min-height: 280px; }
  .cards, .quotes, .certs__grid, .clients__grid { grid-template-columns: repeat(2, 1fr); }
  .certs__grid .cert:last-child { grid-column: 1 / -1; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid .why__item:nth-child(3n) { border-right: 1px solid var(--line); }
  .why__grid .why__item:nth-child(2n) { border-right: none; }
  .why__grid .why__item:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .why__grid .why__item:nth-last-child(-n+2) { border-bottom: none; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar__inner { grid-template-columns: repeat(2, 1fr); gap: 1.2rem 1.5rem; }
  .trustbar__item:nth-child(odd)::before { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .indiamap { max-width: 360px; }
}
@media (max-width: 600px) {
  .cards, .quotes, .why__grid, .stats__grid, .timeline, .certs__grid, .realwh__grid { grid-template-columns: 1fr; }
  .network__list { gap: .5rem; }
  .netcard { padding: .7rem .8rem; }
  .certs__grid .cert:last-child { grid-column: auto; }
  .why__grid .why__item { border-right: none !important; border-bottom: 1px solid var(--line) !important; }
  .why__grid .why__item:last-child { border-bottom: none !important; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bar-inner { justify-content: flex-start; }
  .hero__cta .btn { flex: 1; }
  .trustbar__inner { grid-template-columns: 1fr; }
  .trustbar__item::before { display: none !important; }
  .trustbar__item { flex-direction: row; justify-content: space-between; align-items: baseline; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: .7rem; }
  .about__badge { right: 10px; bottom: -16px; padding: .8rem 1rem; }
  .facility__gauge { flex-direction: column; align-items: flex-start; }
  .gauge { margin: 0 auto; }
}

/* ---------- ACCESSIBILITY ---------- */
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .gauge__fill { transition: none; }
}

/* ---------- SMALL PHONES: brand name wraps cleanly, no hamburger collision ---------- */
@media (max-width: 540px) {
  .nav__inner { gap: .7rem; }
  .brand { flex: 1 1 auto; min-width: 0; }
  .brand__text { white-space: normal; font-size: .74rem; line-height: 1.2; }
  .brand__sub { white-space: normal; font-size: .52rem; margin-top: 2px; }
}
