/* ===================================================================
   HOME PAGE
   =================================================================== */

/* ── HERO ── */
.hero {
  background: var(--indigo-deep);
  position: relative; overflow: hidden;
  padding: 56px 0 0;
}
.hero::before {
  content:'';
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 55% 75% at 88% 30%, rgba(238,171,66,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 8% 85%, rgba(78,59,150,0.55) 0%, transparent 60%);
}
.hero-grid-bg {
  position:absolute; inset:0; opacity: 0.5;
  background-image:
    linear-gradient(rgba(238,171,66,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238,171,66,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding-top: 40px; padding-bottom: 40px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(238,171,66,0.12); border: 1px solid rgba(238,171,66,0.35);
  color: var(--gold-light); padding: 7px 18px; border-radius: 100px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: blink 1.6s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(38px, 4.6vw, 58px); line-height: 1.06; color: white; letter-spacing: -1px;
}
.hero h1 .accent { color: var(--gold); }
.hero-tagline { font-size: 18px; font-style: italic; color: rgba(255,255,255,0.55); margin: 18px 0 20px; font-family: var(--font-body); }
.hero-tagline span { color: var(--gold-light); font-weight: 600; font-style: normal; }
.hero p.desc { color: rgba(255,255,255,0.62); font-size: 16px; line-height: 1.8; max-width: 460px; margin-bottom: 30px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-charge {
  display: flex; align-items: center; gap: 14px; max-width: 380px;
}
.charge-track { flex: 1; height: 8px; background: rgba(255,255,255,0.1); border-radius: 100px; overflow: hidden; }
.charge-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); border-radius: 100px; animation: chargeUp 2.2s 0.5s cubic-bezier(.2,.8,.3,1) forwards; }
@keyframes chargeUp { to { width: 96%; } }
.charge-label { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.5); white-space: nowrap; }

.hero-visual { position: relative; }
.hero-visual img { border-radius: 20px; width: 100%; }

/* ── Hero slider ── */
.hero-slider { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 1009/916; box-shadow: var(--shadow-lg); }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slider-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.hero-slider-dots button { width: 8px; height: 8px; border-radius: 100px; background: rgba(255,255,255,0.5); transition: all .3s; }
.hero-slider-dots button.active { width: 22px; background: var(--gold); }
.hero-stats-float {
  position: absolute; bottom: -22px; left: -22px;
  background: white; border-radius: 14px; padding: 16px 20px;
  box-shadow: var(--shadow-lg); display: flex; gap: 20px;
}
.hsf-item { text-align: center; }
.hsf-num { font-family: var(--font-display); font-size: 26px; color: var(--indigo); font-weight: 700; line-height: 1; }
.hsf-num span { color: var(--gold-dark); }
.hsf-label { font-size: 10px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .8px; margin-top: 3px; }

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; padding-top: 24px; }
  .hero-visual { order: -1; }
  .hero-stats-float { position: static; margin-top: 16px; display: grid; grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 420px) {
  .hero-stats-float { grid-template-columns: repeat(2,1fr); gap: 14px 10px; }
}

/* ── Feature strip (from banner-1: trust icons) ── */
.feat-strip { background: var(--indigo-deep); border-top: 1px solid rgba(255,255,255,0.08); padding: 28px 0 40px; position: relative; z-index: 2; }
.feat-strip .wrap { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.feat-item { text-align: center; }
.feat-icon { width: 44px; height: 44px; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; background: rgba(238,171,66,0.1); border-radius: 12px; color: var(--gold); }
.feat-item span { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.75); }
@media (max-width: 700px) { .feat-strip .wrap { grid-template-columns: repeat(2,1fr); gap: 24px; } }

/* ── Ticker ── */
.ticker { background: var(--gold); overflow: hidden; padding: 11px 0; }
.ticker-track { display: flex; width: max-content; animation: tickerRoll 32s linear infinite; }
@keyframes tickerRoll { to { transform: translateX(-50%); } }
.ticker-item { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--indigo-deep); letter-spacing: .6px; text-transform: uppercase; padding: 0 30px; display: flex; align-items: center; gap: 12px; white-space: nowrap; }
.ticker-item .td { width: 5px; height: 5px; background: var(--indigo); border-radius: 50%; opacity: .5; }

/* ── Stats bar ── */
.stats-bar { background: white; border-bottom: 1px solid var(--line); }
.stats-bar .wrap { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-cell { padding: 44px 16px; text-align: center; border-right: 1px solid var(--line); }
.stat-cell:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 46px; font-weight: 700; color: var(--indigo); line-height: 1; }
.stat-num span { color: var(--gold-dark); }
.stat-label { font-size: 12.5px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }
@media (max-width: 700px) { .stats-bar .wrap { grid-template-columns: repeat(2,1fr); } .stat-cell:nth-child(2) { border-right: none; } }

/* ── About (home) ── */
.about-home { background: white; }
.about-home .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.ah-imgs { display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: 130px 130px; gap: 12px; }
.ah-imgs .big { grid-row: 1/3; }
.ah-imgs img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.about-text p { color: var(--ink-soft); font-size: 16px; line-height: 1.85; margin-bottom: 16px; }
.about-text strong { color: var(--indigo); }
.about-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 26px 0; }
.chip { display: flex; gap: 10px; align-items: flex-start; }
.chip .dot { width: 7px; height: 7px; background: var(--gold); border-radius: 2px; transform: rotate(45deg); margin-top: 6px; flex-shrink: 0; }
.chip strong { display: block; font-size: 13.5px; color: var(--indigo-deep); }
.chip span { font-size: 12.5px; color: var(--ink-mute); }
@media (max-width: 900px) { .about-home .wrap { grid-template-columns: 1fr; } .ah-imgs { order: -1; } }

/* ── Products (home) ── */
.products-home { background: var(--paper); }
.ph-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.prod-card { overflow: hidden; }
.prod-card .pc-img { aspect-ratio: 1/1; overflow: hidden; background: var(--indigo-pale); }
.prod-card .pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.prod-card:hover .pc-img img { transform: scale(1.06); }
.pc-body { padding: 20px; }
.pc-tag { font-family: var(--font-mono); font-size: 10.5px; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.pc-body h3 { font-family: var(--font-display); font-size: 18px; color: var(--indigo-deep); margin: 6px 0 10px; line-height: 1.25; }
.pc-specs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.pc-specs span { font-family: var(--font-mono); font-size: 10.5px; background: var(--indigo-pale); color: var(--indigo); padding: 4px 9px; border-radius: 5px; }
.pc-link { font-size: 13.5px; font-weight: 700; color: var(--indigo); display: inline-flex; align-items: center; gap: 6px; }
.pc-link svg { transition: transform .2s; }
.prod-card:hover .pc-link svg { transform: translateX(3px); }
@media (max-width: 980px) { .prod-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .prod-grid { grid-template-columns: 1fr; } }

/* ── Steps (how it works) ── */
.steps { background: var(--indigo-deep); position: relative; overflow: hidden; }
.steps::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 50% 60% at 15% 15%, rgba(238,171,66,0.1) 0%, transparent 60%); }
.steps .wrap { position: relative; z-index: 2; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 48px; position: relative; }
.step-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 32px 26px; }
.step-num { font-family: var(--font-mono); font-size: 13px; color: var(--gold); letter-spacing: 1px; margin-bottom: 16px; }
.step-card h3 { font-family: var(--font-display); font-size: 20px; color: white; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }
@media (max-width: 800px) { .steps-grid { grid-template-columns: 1fr; } }

/* ── Why us ── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; }
.why-card { padding: 30px 26px; }
.why-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--indigo-pale); color: var(--indigo); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.why-card h3 { font-family: var(--font-display); font-size: 18px; color: var(--indigo-deep); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ── Certifications ── */
.certs { background: white; }
.certs-row { display: flex; gap: 18px; margin-top: 40px; flex-wrap: wrap; justify-content: center; }
.cert-pill { display: flex; align-items: center; gap: 10px; padding: 14px 24px; border: 1.5px solid var(--line); border-radius: 100px; }
.cert-pill .ci { width: 30px; height: 30px; border-radius: 50%; background: var(--gold-pale); color: var(--gold-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cert-pill span { font-size: 13.5px; font-weight: 700; color: var(--indigo-deep); }

.cert-badges { display: flex; gap: 22px; margin-top: 44px; flex-wrap: wrap; justify-content: center; }
.cert-badge { width: 118px; text-align: center; padding: 18px 14px; border: 1.5px solid var(--line); border-radius: var(--radius); background: var(--white); transition: all .25s ease; }
.cert-badge:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.cert-badge img { width: 66px; height: 66px; object-fit: contain; margin: 0 auto; }
.cert-badge span { display: block; margin-top: 10px; font-size: 11.5px; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .4px; }

/* ── Use cases ── */
.usecases { background: var(--paper); }
.uc-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-top: 44px; }
.uc-card { padding: 26px 18px; text-align: center; }
.uc-icon { width: 46px; height: 46px; margin: 0 auto 14px; background: var(--indigo-deep); color: var(--gold); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.uc-card h4 { font-family: var(--font-display); font-size: 15px; color: var(--indigo-deep); margin-bottom: 6px; }
.uc-card p { font-size: 12px; color: var(--ink-mute); line-height: 1.5; }
@media (max-width: 980px) { .uc-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 560px) { .uc-grid { grid-template-columns: repeat(2,1fr); } }

/* ── Blog preview ── */
.blog-home { background: white; }
/* .bh-* (blog card) styles moved to css/inner.css — shared by home, blog listing, and blog post pages */

/* ── Export map ── */
.export-home { background: var(--indigo-deep); position: relative; overflow: hidden; }
.export-home .wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }
.export-home img { border-radius: var(--radius); width: 100%; }
.export-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.exp-item { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 12px 16px; font-size: 14px; color: white; font-weight: 600; }
.export-home .section-sub { color: rgba(255,255,255,0.6); }
@media (max-width: 900px) { .export-home .wrap { grid-template-columns: 1fr; } .export-home img { order: -1; } }
