/* ============================================================
   KAILASH — Public Landing Page
   Ice cube factory · Distribution Bali
   ============================================================ */

.kailash-landing {
  --ld-ice: #4fc3f7;
  --ld-cream: #e8f4fc;
  --ld-blush: #d4ecfa;
  --ld-peach: #b3e5fc;
  --ld-brown-dark: #0a1f3d;
  --ld-brown: #1565c0;
  --ld-gold: #0288d1;
}

.landing-page {
  font-family: 'Poppins', sans-serif;
  background: var(--ld-cream, var(--spa-cream, #f0f7ff));
  color: var(--ld-brown-dark, var(--spa-brown-dark, #0d2847));
  overflow-x: hidden;
}

/* Nav */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.landing-nav.scrolled {
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(61, 40, 16, 0.08);
  padding: 0.6rem 0;
}
.landing-nav .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--ld-brown-dark);
  text-decoration: none;
}
.landing-nav .brand span {
  color: var(--ld-gold);
}
.landing-nav-links a {
  color: var(--ld-brown);
  font-size: 0.88rem;
  font-weight: 500;
  margin-left: 1.75rem;
  text-decoration: none;
  transition: color 0.2s;
}
.landing-nav-links a:hover { color: var(--ld-gold); }

/* Hero */
.landing-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 7rem 0 4rem;
  background:
    linear-gradient(135deg, var(--ld-cream) 0%, var(--ld-blush) 45%, var(--ld-peach) 100%),
    url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  background-blend-mode: overlay, normal;
}
.landing-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(201,162,39,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.landing-hero .container { position: relative; z-index: 1; }

.landing-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(201,162,39,0.35);
  color: var(--ld-brown);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 1.25rem;
}

.landing-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--ld-brown-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.landing-hero h1 em {
  font-style: italic;
  color: var(--ld-gold);
}

.landing-hero-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ld-brown);
  max-width: 540px;
  margin-bottom: 2rem;
  font-weight: 300;
}

.landing-hero-cta .btn-landing-primary {
  background: linear-gradient(135deg, var(--ld-brown-dark), #8b5a2b);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 8px 24px rgba(92,61,30,0.25);
}
.landing-hero-cta .btn-landing-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(92,61,30,0.35);
  color: #fff;
}
.landing-hero-cta .btn-landing-outline {
  border: 1.5px solid var(--ld-brown);
  color: var(--ld-brown);
  background: rgba(255,255,255,0.5);
  padding: 13px 24px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  margin-left: 12px;
  transition: background 0.25s, color 0.25s;
}
.landing-hero-cta .btn-landing-outline:hover {
  background: var(--ld-brown);
  color: #fff;
}

.landing-hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.landing-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--ld-gold);
}
.landing-stat span {
  font-size: 0.78rem;
  color: var(--ld-brown);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Portal cards */
.landing-portals {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--ld-cream) 0%, var(--ld-blush) 100%);
}
.landing-section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.landing-section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--ld-brown-dark);
  margin-bottom: 0.5rem;
}
.landing-section-title p {
  color: var(--ld-brown);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
}

.portal-card {
  background: rgba(255,255,255,0.85);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(201,162,39,0.2);
  box-shadow: 0 12px 40px rgba(61,40,16,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  text-decoration: none;
  color: inherit;
  display: block;
}
.portal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(61,40,16,0.12);
  color: inherit;
}
.portal-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: #fff;
}
.portal-card.operator .portal-card-icon { background: linear-gradient(135deg, #4a2c0a, #a0622a); }
.portal-card.agent .portal-card-icon    { background: linear-gradient(135deg, #2d5a4a, #6b9e7a); }
.portal-card.member .portal-card-icon  { background: linear-gradient(135deg, #3d5a80, #7ba3c9); }
.portal-card.audit .portal-card-icon    { background: linear-gradient(135deg, #6b3a20, #c97a50); }

.portal-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--ld-brown-dark);
}
.portal-card p {
  font-size: 0.82rem;
  color: #7a6a58;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.portal-card .portal-enter {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ld-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Features */
.landing-features {
  padding: 5rem 0;
  background: var(--ld-cream);
}
.feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.feature-item .feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--ld-peach), var(--ld-sage));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ld-brown);
  font-size: 1.1rem;
}
.feature-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--ld-brown-dark);
}
.feature-item p {
  font-size: 0.85rem;
  color: #7a6a58;
  margin: 0;
  line-height: 1.6;
}

.landing-visual {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(61,40,16,0.15);
  position: relative;
}
.landing-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.landing-visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(250,246,240,0.92);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(201,162,39,0.25);
}
.landing-visual-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  color: var(--ld-brown-dark);
}

/* Integration strip */
.landing-integration {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--ld-brown-dark) 0%, #6b4423 50%, #8b6340 100%);
  color: #faf6f0;
  text-align: center;
}
.landing-integration h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}
.landing-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0;
  margin-top: 2rem;
  font-size: 0.85rem;
}
.landing-flow span {
  background: rgba(255,255,255,0.12);
  padding: 8px 16px;
  border-radius: 8px;
  margin: 4px;
}
.landing-flow .flow-arrow {
  background: none;
  color: var(--ld-gold);
  padding: 8px 4px;
}

/* Footer */
.landing-footer {
  padding: 2.5rem 0;
  background: var(--ld-brown-dark);
  color: rgba(250,246,240,0.7);
  font-size: 0.85rem;
  text-align: center;
}
.landing-footer a { color: var(--ld-gold); text-decoration: none; }

/* Kailash hero & distribution */
.kailash-hero {
  background:
    linear-gradient(135deg, rgba(227,242,253,0.92) 0%, rgba(179,229,252,0.75) 50%, rgba(129,212,250,0.55) 100%),
    url('https://images.unsplash.com/photo-1627483298270-f9b0885be710?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  background-blend-mode: overlay, normal;
}
.kailash-hero::after {
  background: radial-gradient(ellipse at 70% 30%, rgba(79,195,247,0.2) 0%, transparent 55%);
}
.kailash-distribution {
  background: linear-gradient(135deg, #0a1f3d 0%, #01579b 50%, #0277bd 100%);
}
.kailash-map-panel {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(179,229,252,0.25);
  border-radius: 20px;
  padding: 1.75rem;
  text-align: left;
}
.kailash-zone-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.kailash-zone-grid span {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(179,229,252,0.3);
  color: #e1f5fe;
}
.kailash-route-diagram {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kailash-route-hub {
  position: relative;
  z-index: 2;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0288d1, #4fc3f7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 8px 28px rgba(2,136,209,0.45);
}
.kailash-route-hub i { font-size: 1.4rem; margin-bottom: 4px; }
.kailash-route-hub small { font-weight: 400; opacity: 0.85; }
.kailash-route-spokes {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.5rem;
}
.kailash-route-arm {
  font-size: 0.68rem;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(179,229,252,0.2);
  color: #b3e5fc;
  display: flex;
  align-items: center;
  gap: 6px;
}
.kailash-flow-wide span { font-size: 0.8rem; }

/* ============================================================
   KAILASH Engine Index (index.php)
   ============================================================ */
.kailash-engine .landing-nav.scrolled {
  background: rgba(240, 248, 255, 0.96);
  box-shadow: 0 4px 24px rgba(1, 87, 155, 0.08);
}

.kailash-engine .kailash-badge {
  border-color: rgba(79, 195, 247, 0.45);
  background: rgba(255, 255, 255, 0.85);
}

.kailash-engine-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6.5rem 0 4rem;
  background:
    linear-gradient(145deg, rgba(227, 242, 253, 0.95) 0%, rgba(179, 229, 252, 0.55) 55%, rgba(129, 212, 250, 0.35) 100%),
    url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  background-blend-mode: overlay, normal;
  position: relative;
}
.kailash-engine-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(79, 195, 247, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.kailash-engine-hero .container { position: relative; z-index: 1; }

.kailash-btn-primary {
  background: linear-gradient(135deg, #01579b, #0288d1) !important;
  box-shadow: 0 8px 24px rgba(1, 87, 155, 0.3) !important;
}
.kailash-btn-primary:hover {
  box-shadow: 0 12px 32px rgba(2, 136, 209, 0.4) !important;
}
.kailash-btn-outline {
  border-color: #0288d1 !important;
  color: #01579b !important;
}
.kailash-btn-outline:hover {
  background: #0288d1 !important;
  color: #fff !important;
}

/* Hero mosaic */
.kailash-hero-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  position: relative;
}
.kailash-mosaic-main {
  grid-column: 1 / -1;
  margin: 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(1, 87, 155, 0.2);
}
.kailash-mosaic-main img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.kailash-mosaic-sub {
  margin: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(1, 87, 155, 0.15);
}
.kailash-mosaic-sub img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.kailash-mosaic-main figcaption,
.kailash-mosaic-sub figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  background: linear-gradient(transparent, rgba(5, 25, 55, 0.85));
}

/* Ops cards */
.kailash-engine-ops {
  padding: 5rem 0;
  background: #fff;
}
.kailash-ops-card {
  background: #f8fcff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(129, 212, 250, 0.35);
  box-shadow: 0 12px 40px rgba(1, 87, 155, 0.06);
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.kailash-ops-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(1, 87, 155, 0.12);
}
.kailash-ops-card-featured {
  border-color: #4fc3f7;
  box-shadow: 0 16px 48px rgba(2, 136, 209, 0.15);
}
.kailash-ops-img {
  position: relative;
  overflow: hidden;
}
.kailash-ops-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.kailash-ops-card:hover .kailash-ops-img img {
  transform: scale(1.05);
}
.kailash-ops-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(1, 87, 155, 0.88);
  color: #e1f5fe;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}
.kailash-ops-body {
  padding: 1.35rem 1.25rem 1.5rem;
}
.kailash-ops-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #0a1f3d;
  margin-bottom: 0.5rem;
}
.kailash-ops-body p {
  font-size: 0.85rem;
  color: #5a7a9a;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.kailash-ops-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.78rem;
  color: #1565c0;
}
.kailash-ops-list li {
  padding: 4px 0 4px 18px;
  position: relative;
}
.kailash-ops-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: #4fc3f7;
  font-size: 0.55rem;
  top: 7px;
}

/* Market section */
.kailash-engine-market {
  padding: 5rem 0;
  background: linear-gradient(180deg, #e3f2fd 0%, #f0f8ff 100%);
}
.kailash-market-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #0a1f3d;
  margin-bottom: 1rem;
}
.kailash-market-intro p {
  color: #5a7a9a;
  line-height: 1.75;
  font-weight: 300;
}
.kailash-market-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  border: 1px solid rgba(129, 212, 250, 0.4);
  font-size: 0.78rem;
  font-weight: 600;
  color: #01579b;
}
.kailash-market-flow i.fa-arrow-right {
  color: #4fc3f7;
  font-size: 0.65rem;
}
.kailash-market-flow span {
  background: rgba(2, 136, 209, 0.1);
  padding: 6px 10px;
  border-radius: 8px;
}

.kailash-segment-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  height: 100%;
  border: 1px solid rgba(129, 212, 250, 0.35);
  box-shadow: 0 8px 28px rgba(1, 87, 155, 0.06);
}
.kailash-segment-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
}
.kailash-segment-tourism .kailash-segment-icon {
  background: linear-gradient(135deg, #0288d1, #4fc3f7);
}
.kailash-segment-daily .kailash-segment-icon {
  background: linear-gradient(135deg, #00838f, #4dd0e1);
}
.kailash-segment-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #0a1f3d;
  margin-bottom: 0.5rem;
}
.kailash-segment-card p {
  font-size: 0.84rem;
  color: #5a7a9a;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.kailash-segment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.kailash-segment-tags span {
  font-size: 0.68rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  background: #e3f2fd;
  color: #01579b;
}

.kailash-bali-strip {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(1, 87, 155, 0.12);
}
.kailash-bali-strip img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.kailash-bali-strip-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(5, 25, 55, 0.88));
  color: #e1f5fe;
}
.kailash-bali-strip-caption strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 4px;
}
.kailash-bali-strip-caption span {
  font-size: 0.72rem;
  opacity: 0.9;
}

/* Portal section */
.kailash-engine-portals {
  background: linear-gradient(180deg, #f0f8ff 0%, #e3f2fd 100%);
}
.kailash-engine .portal-card.operator .portal-card-icon {
  background: linear-gradient(135deg, #01579b, #4fc3f7);
}
.kailash-portal-card {
  text-align: left !important;
}
.kailash-portal-desc {
  font-size: 0.82rem;
  color: #5a7a9a;
  text-align: left;
}
.kailash-portal-db {
  font-size: 0.68rem;
  margin-bottom: 0.75rem;
  text-align: left;
}
.kailash-portal-db code {
  color: #888;
}

.kailash-dev-bar {
  text-align: center;
  font-size: 0.78rem;
  padding: 0.65rem 1rem;
  background: rgba(2, 136, 209, 0.08);
  border: 1px dashed rgba(2, 136, 209, 0.35);
  border-radius: 10px;
  margin-bottom: 2rem;
  color: #01579b;
}
.kailash-dev-bar a {
  color: #0288d1;
  text-decoration: none;
  font-weight: 500;
}
.kailash-dev-bar a:hover { text-decoration: underline; }

.kailash-theme-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(129, 212, 250, 0.4);
  font-size: 0.78rem;
  color: #5a7a9a;
}
.kailash-theme-bar button {
  border: 1.5px solid rgba(2, 136, 209, 0.35);
  background: #fff;
  color: #01579b;
  border-radius: 8px;
  padding: 4px 14px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.kailash-theme-bar button.active,
.kailash-theme-bar button:hover {
  background: #0288d1;
  border-color: #0288d1;
  color: #fff;
}

.kailash-engine-footer {
  background: linear-gradient(135deg, #0a1f3d 0%, #01579b 100%);
}
.kailash-nav-dev {
  font-size: 0.78rem !important;
  opacity: 0.7;
}

/* Single portal login (satu entitas) */
.kailash-single-portal {
  max-width: 640px;
  margin: 0 auto;
}
.kailash-portal-login {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(129, 212, 250, 0.45);
  box-shadow: 0 16px 48px rgba(1, 87, 155, 0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.kailash-portal-login:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(1, 87, 155, 0.16);
  border-color: #4fc3f7;
  color: inherit;
}
.kailash-portal-login-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #01579b, #4fc3f7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
}
.kailash-portal-login-body {
  flex: 1;
  min-width: 0;
}
.kailash-portal-login-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #0a1f3d;
  margin: 0 0 0.25rem;
}
.kailash-portal-login-body p {
  font-size: 0.85rem;
  color: #5a7a9a;
  margin: 0;
  line-height: 1.5;
}
.kailash-portal-login-action {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0288d1;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .landing-hero-cta .btn-landing-outline { margin-left: 0; margin-top: 10px; display: inline-flex; }
  .landing-nav-links { display: none; }
  .kailash-route-diagram { min-height: auto; flex-direction: column; gap: 1rem; }
  .kailash-route-spokes { position: static; display: flex; flex-direction: column; }
  .kailash-engine-hero { padding-top: 5rem; min-height: auto; }
  .kailash-mosaic-main img { height: 220px; }
  .kailash-mosaic-sub img { height: 130px; }
  .kailash-market-intro { margin-bottom: 1rem; }
  .kailash-portal-login { flex-direction: column; text-align: center; }
  .kailash-portal-login-action { margin-top: 0.5rem; }
}
