/**
 * Industries we serve — hub (v2)
 */

:root{
  --ind-blue:#0057ff;
  --ind-ink:#0b1220;
  --ind-muted:#5b6475;
  --ind-line:rgba(11,18,32,.1);
  --ind-soft:#f3f6fb;
  --ind-max:1100px;
  --ind-font:'Poppins',system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
}

.ind,
.ind *{ box-sizing:border-box; }
.ind{
  font-family:var(--ind-font);
  color:var(--ind-ink);
  background:#fff;
  overflow-x:clip;
  line-height:1.6;
}
.ind a{ text-decoration:none; }
.ind img{ max-width:100%; height:auto; display:block; }
.ind-wrap{
  width:100%;
  max-width:var(--ind-max);
  margin:0 auto;
  padding-left:24px;
  padding-right:24px;
}

.ind-label{
  margin:0 0 14px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--ind-muted);
}

/* Hero */
.ind-hero{
  padding:88px 0 56px;
  background:linear-gradient(180deg, #f5f7fb 0%, #fff 100%);
  border-bottom:1px solid var(--ind-line);
}
.ind-hero h1{
  margin:0 0 16px;
  font-size:clamp(34px,4.5vw,48px);
  font-weight:700;
  letter-spacing:-0.03em;
  line-height:1.12;
  color:var(--ind-ink);
  max-width:720px;
}
.ind-lead{
  margin:0 0 28px;
  font-size:17px;
  line-height:1.7;
  color:var(--ind-muted);
  max-width:580px;
}
.ind-hero-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:16px 28px;
}
.ind-hero-cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  font-weight:600;
  color:#fff !important;
  background:var(--ind-ink);
  padding:14px 22px;
  border-radius:2px;
  transition:background .2s ease;
}
.ind-hero-cta::after{ content:"\2192"; font-size:16px; line-height:1; }
.ind-hero-cta:hover{ background:#1a2438; }
.ind-hero-link{
  font-size:14px;
  font-weight:600;
  color:var(--ind-ink);
  border-bottom:1px solid rgba(11,18,32,.25);
  padding-bottom:2px;
  transition:border-color .2s ease;
}
.ind-hero-link:hover{ border-color:var(--ind-ink); }

/* Trust */
.ind-trust{
  border-bottom:1px solid var(--ind-line);
  background:#fff;
  padding:28px 0;
}
.ind-trust-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:0;
}
.ind-trust-item{
  padding:8px 20px 8px 0;
  border-right:1px solid var(--ind-line);
}
.ind-trust-item:last-child{ border-right:0; }
.ind-trust-item strong{
  display:block;
  font-size:clamp(26px,2.6vw,34px);
  font-weight:700;
  letter-spacing:-0.03em;
  line-height:1.1;
  color:var(--ind-ink);
  margin-bottom:6px;
}
.ind-trust-item span{
  font-size:13.5px;
  color:var(--ind-muted);
  line-height:1.4;
}

/* Why */
.ind-why{
  padding:72px 0;
  background:var(--ind-soft);
  border-bottom:1px solid var(--ind-line);
}
.ind-why-inner{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1.1fr);
  gap:40px 56px;
  align-items:start;
}
.ind-why-copy h2{
  margin:0 0 14px;
  font-size:clamp(26px,3vw,36px);
  font-weight:600;
  letter-spacing:-0.03em;
  line-height:1.15;
  max-width:420px;
}
.ind-why-copy p:not(.ind-label){
  margin:0;
  font-size:15.5px;
  line-height:1.7;
  color:var(--ind-muted);
  max-width:440px;
}
.ind-why-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.ind-why-list li{
  background:#fff;
  border:1px solid var(--ind-line);
  border-radius:12px;
  padding:20px 22px;
}
.ind-why-list strong{
  display:block;
  font-size:15px;
  font-weight:600;
  margin-bottom:6px;
  letter-spacing:-0.01em;
}
.ind-why-list span{
  font-size:14px;
  line-height:1.6;
  color:var(--ind-muted);
}

/* Groups + grid */
.ind-grid-sec{ padding:72px 0 40px; }
.ind-grid-head{
  margin:0 0 48px;
  max-width:640px;
}
.ind-grid-head h2{
  margin:0 0 12px;
  font-size:clamp(28px,3.4vw,40px);
  font-weight:600;
  letter-spacing:-0.03em;
  line-height:1.15;
}
.ind-grid-head p:not(.ind-label){
  margin:0;
  font-size:16px;
  line-height:1.65;
  color:var(--ind-muted);
}
.ind-group{ margin-bottom:48px; }
.ind-group-head{
  margin:0 0 20px;
  max-width:640px;
}
.ind-group-head h3{
  margin:0 0 8px;
  font-size:18px;
  font-weight:600;
  letter-spacing:-0.02em;
  color:var(--ind-ink);
}
.ind-group-head p{
  margin:0;
  font-size:14.5px;
  line-height:1.6;
  color:var(--ind-muted);
}
.ind-grid{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.ind-card{
  display:grid;
  grid-template-columns:48px minmax(0,1fr) auto;
  gap:16px;
  align-items:start;
  padding:22px 20px;
  border:1px solid var(--ind-line);
  border-radius:12px;
  background:#fff;
  color:inherit;
  height:100%;
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.ind-card:hover{
  border-color:rgba(0,87,255,.28);
  box-shadow:0 10px 28px rgba(11,18,32,.08);
  transform:translateY(-2px);
}
.ind-card-ico{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--ind-soft);
  border-radius:10px;
  overflow:hidden;
}
.ind-card-ico img{
  width:28px;
  height:28px;
  object-fit:contain;
}
.ind-card-body{
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width:0;
}
.ind-card-body strong{
  font-size:16px;
  font-weight:600;
  letter-spacing:-0.015em;
  color:var(--ind-ink);
  line-height:1.3;
}
.ind-card-body span{
  font-size:13.5px;
  line-height:1.55;
  color:var(--ind-muted);
}
.ind-card-arrow{
  font-size:18px;
  line-height:1;
  color:var(--ind-blue);
  margin-top:2px;
  opacity:.7;
  transition:opacity .2s ease, transform .2s ease;
}
.ind-card:hover .ind-card-arrow{
  opacity:1;
  transform:translateX(3px);
}

/* Case studies */
.ind-stories{
  padding:56px 0 80px;
  background:linear-gradient(180deg, #fff 0%, var(--ind-soft) 100%);
  border-top:1px solid var(--ind-line);
}
.ind-stories-head{
  margin:0 0 36px;
  max-width:640px;
}
.ind-stories-head h2{
  margin:0 0 12px;
  font-size:clamp(26px,3vw,36px);
  font-weight:600;
  letter-spacing:-0.03em;
  line-height:1.15;
}
.ind-stories-head p:not(.ind-label){
  margin:0;
  font-size:15.5px;
  line-height:1.65;
  color:var(--ind-muted);
}
.ind-stories-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}
.ind-story{
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid var(--ind-line);
  border-radius:12px;
  overflow:hidden;
  color:inherit;
  transition:box-shadow .2s ease, transform .2s ease;
}
.ind-story:hover{
  box-shadow:0 12px 32px rgba(11,18,32,.1);
  transform:translateY(-2px);
  color:inherit;
}
.ind-story-img{
  overflow:hidden;
  aspect-ratio:16/10;
  background:#e8edf5;
}
.ind-story-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.ind-story-body{ padding:20px 20px 24px; }
.ind-story-tag{
  display:inline-block;
  margin:0 0 10px;
  font-size:11px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--ind-blue);
}
.ind-story-body h3{
  margin:0 0 10px;
  font-size:16px;
  font-weight:600;
  letter-spacing:-0.02em;
  line-height:1.35;
  color:var(--ind-ink);
}
.ind-story-body p{
  margin:0;
  font-size:13.5px;
  line-height:1.6;
  color:var(--ind-muted);
}

/* Close */
.ind-close{
  background:#0b1220;
  color:#fff;
  padding:56px 0;
}
.ind-close-inner{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:24px 40px;
}
.ind-close h2{
  margin:0 0 8px;
  font-size:clamp(22px,2.6vw,30px);
  font-weight:600;
  letter-spacing:-0.025em;
  line-height:1.25;
}
.ind-close p{
  margin:0;
  font-size:15px;
  line-height:1.65;
  color:rgba(255,255,255,.68);
  max-width:480px;
}
.ind-cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
  font-size:14px;
  font-weight:600;
  color:#0b1220 !important;
  background:#fff;
  padding:14px 22px;
  border-radius:2px;
  transition:background .2s ease;
}
.ind-cta::after{ content:"\2192"; font-size:16px; line-height:1; }
.ind-cta:hover{ background:#e8edf5; }

header{ position:relative; z-index:50; }

@media (max-width:1024px){
  .ind-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .ind-why-inner{ grid-template-columns:1fr; gap:28px; }
  .ind-stories-grid{ grid-template-columns:1fr; max-width:480px; }
}
@media (max-width:680px){
  .ind-hero{ padding:64px 0 40px; }
  .ind-wrap{ padding-left:16px; padding-right:16px; }
  .ind-trust-grid{ grid-template-columns:1fr; gap:16px; }
  .ind-trust-item{
    border-right:0;
    border-bottom:1px solid var(--ind-line);
    padding:12px 0;
  }
  .ind-trust-item:last-child{ border-bottom:0; }
  .ind-grid{ grid-template-columns:1fr; }
  .ind-grid-sec{ padding:48px 0 24px; }
  .ind-why{ padding:48px 0; }
  .ind-stories{ padding:40px 0 56px; }
  .ind-close-inner{ flex-direction:column; align-items:flex-start; }
}
