/* Netsmartz – shared styles for all 11 HTML pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #fe7725;
  --orange-light: #ff9555;
  --dark: #1a1a1a;
  --dark-hero: #1c0f08;
  --white: #ffffff;
  --gray-100: #f9f9f9;
  --gray-200: #f0f0f0;
  --gray-600: #6b7280;
  --text-body: #374151;
  --border: #e5e7eb;
  --max-w: 1280px;
}

body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--dark); background: #fff; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* ─── TOP BAR ─── */
.top-bar {
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
}
.top-bar .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.top-bar .contacts { display: flex; gap: 24px; align-items: center; }
.top-bar .contacts a { display: flex; align-items: center; gap: 6px; color: #fff; font-size: 13px; }
.top-bar .contacts a:hover { color: #000; }
.top-bar .ai-badge {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(4px);
  border-radius: 999px; padding: 4px 14px;
  font-size: 12px; font-weight: 600; color: #fff; white-space: nowrap;
}
.top-bar .ai-badge img { width: 18px; height: 18px; object-fit: contain; }

/* ─── HEADER / NAV ─── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff; box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.site-logo img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 20px; align-items: center; list-style: none; }
.nav-links a, .nav-links span {
  font-size: 13px; font-weight: 500; color: var(--dark);
  cursor: pointer; transition: color .2s;
}
.nav-links a:hover, .nav-links span:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange); color: #fff !important;
  padding: 10px 20px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  transition: background .2s;
}
.nav-cta:hover { background: #e06515 !important; color: #fff; }

/* ─── HERO ─── */
.hero {
  background: radial-gradient(ellipse at 60% 40%, #4a1a0a 0%, #1c0f08 50%, #0d0604 100%);
  color: #fff;
  padding: 64px 24px;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 6px; padding: 4px 12px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  color: rgba(255,255,255,.9);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15;
  color: #fff; margin-bottom: 18px;
}
.hero h1 .accent { color: var(--orange); }
.hero-desc { font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.65; margin-bottom: 28px; max-width: 520px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.btn-primary {
  background: var(--orange); color: #fff;
  padding: 12px 24px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background .2s;
}
.btn-primary:hover { background: #e06515; }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,.55); color: #fff;
  padding: 12px 24px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.hero-pills { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-pill { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.7); }
.hero-pill::before { content: ''; display: block; width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--orange); flex-shrink: 0; }
.hero-img-wrap {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.hero-img-wrap img { width: 100%; height: 340px; object-fit: cover; }

/* hero variant – full-width centered (fiber, healthcare) */
.hero-centered {
  background: radial-gradient(ellipse at 50% 60%, #4a1a0a 0%, #1c0f08 50%, #0d0604 100%);
  color: #fff; padding: 80px 24px;
  text-align: center; position: relative; overflow: hidden;
}
.hero-centered .hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .25;
}
.hero-centered .hero-centered-inner { position: relative; max-width: 860px; margin: 0 auto; }
.hero-centered h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.hero-centered h1 .accent { color: var(--orange); }
.hero-centered .hero-desc { color: rgba(255,255,255,.75); font-size: 17px; line-height: 1.65; max-width: 680px; margin: 0 auto 28px; }
.hero-tags { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-tag {
  border: 1.5px solid rgba(255,255,255,.4); color: rgba(255,255,255,.85);
  padding: 6px 18px; border-radius: 999px; font-size: 13px; font-weight: 500;
}

/* ─── TRUSTED PARTNER CARD ─── */
.partner-card-wrap { position: relative; }
.partner-card {
  background: #2a1810; border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 32px 36px;
  display: flex; flex-direction: column; gap: 20px;
}
.partner-label {
  align-self: flex-end;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.25); border-radius: 4px; padding: 3px 10px;
}
.partner-logos { display: flex; align-items: center; gap: 18px; }
.partner-logos img { height: 36px; object-fit: contain; }
.partner-sep { color: rgba(255,255,255,.4); font-size: 22px; font-weight: 300; }

/* ─── SECTION GENERIC ─── */
.section { padding: 72px 24px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  text-align: center; color: var(--orange);
  font-size: 11px; font-weight: 800; letter-spacing: .15em;
  text-transform: uppercase; margin-bottom: 16px;
}
.section-title {
  text-align: center; font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--dark); margin-bottom: 14px; line-height: 1.2;
}
.section-subtitle {
  text-align: center; font-size: 16px; color: var(--gray-600);
  max-width: 640px; margin: 0 auto 48px; line-height: 1.6;
}

/* ─── FEATURE CARDS (image + text) ─── */
.features-grid { display: flex; flex-direction: column; gap: 0; }
.feature-card {
  background: #f8f8f8; border-radius: 16px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 24px;
}
.feature-card.reverse { direction: rtl; }
.feature-card.reverse > * { direction: ltr; }
.feature-img { width: 100%; height: 320px; object-fit: contain; padding: 24px; background: #fff; }
.feature-img-dark { width: 100%; height: 320px; object-fit: cover; }
.feature-body { padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; }
.feature-body h3 { font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: 14px; }
.feature-body p { font-size: 15px; color: var(--text-body); line-height: 1.7; }

/* ─── STAT PILLS ─── */
.stat-pills { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.stat-pill {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 999px; padding: 8px 18px;
  font-size: 13px; font-weight: 600; color: var(--dark);
}
.stat-pill .num { color: var(--orange); font-weight: 800; font-size: 15px; }

/* ─── CAPABILITIES GRID ─── */
.caps-section { background: var(--gray-100); }
.caps-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px; margin-top: 36px;
}
.cap-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 18px 20px;
}
.cap-item strong { display: block; font-size: 14px; color: var(--dark); margin-bottom: 4px; }
.cap-item span { font-size: 12px; color: var(--gray-600); line-height: 1.4; }

/* ─── STATS ROW ─── */
.stats-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px; margin-top: 48px;
}
.stat-box { text-align: center; }
.stat-box .big { font-size: 2.4rem; font-weight: 800; color: var(--orange); display: block; }
.stat-box .label { font-size: 13px; color: var(--gray-600); margin-top: 4px; }

/* ─── WHY CHOOSE US ─── */
.why-section { background: #0f0f0f; color: #fff; }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: 40px;
}
.why-left h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 16px; }
.why-left p { color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.why-features { display: flex; flex-direction: column; gap: 10px; }
.why-feat {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,119,37,.12); border: 1px solid rgba(255,119,37,.25);
  border-radius: 8px; padding: 12px 18px; font-size: 14px; font-weight: 600; color: #fff;
}
.why-feat::before { content: '✓'; color: var(--orange); font-weight: 800; flex-shrink: 0; }
.why-cta-box {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 32px;
}
.why-cta-box h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.why-cta-box p { color: rgba(255,255,255,.65); font-size: 14px; margin-bottom: 20px; line-height: 1.6; }

/* ─── CTA FORM ─── */
.cta-section { background: var(--gray-100); }
.cta-inner {
  max-width: 680px; margin: 0 auto; text-align: center;
}
.cta-form { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; text-align: left; }
.cta-form input, .cta-form textarea {
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 12px 16px; font-size: 14px; width: 100%;
  font-family: inherit; color: var(--dark); background: #fff;
  transition: border-color .2s;
}
.cta-form input:focus, .cta-form textarea:focus { outline: none; border-color: var(--orange); }
.cta-form textarea { resize: vertical; min-height: 100px; }
.cta-form button {
  background: var(--orange); color: #fff;
  border: none; border-radius: 8px;
  padding: 13px 28px; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: background .2s; align-self: flex-start;
}
.cta-form button:hover { background: #e06515; }

/* ─── CHALLENGES / CARDS ─── */
.challenges-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px; margin-top: 36px;
}
.challenge-card {
  border: 1.5px solid var(--border); border-radius: 12px;
  padding: 24px; background: #fff;
}
.challenge-card .num { font-size: 1.8rem; font-weight: 800; color: var(--orange); margin-bottom: 8px; }
.challenge-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.challenge-card p { font-size: 14px; color: var(--text-body); line-height: 1.6; }

/* ─── SOLUTIONS GRID ─── */
.solutions-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px; margin-top: 36px;
}
.solution-card {
  background: var(--dark); color: #fff;
  border-radius: 12px; padding: 28px 24px;
}
.solution-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--orange); }
.solution-card p { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.6; }

/* ─── FOOTER ─── */
.site-footer { background: #0f0f0f; color: rgba(255,255,255,.7); padding: 64px 24px 32px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-about p { font-size: 13px; line-height: 1.7; margin-top: 14px; color: rgba(255,255,255,.55); }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,.35); }
.footer-bottom-links a:hover { color: var(--orange); }
.footer-partners { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; margin-bottom: 24px; }
.footer-partners img { height: 22px; object-fit: contain; filter: brightness(0) invert(1); opacity: .55; }
.footer-partners img:hover { opacity: .9; }

/* ─── OVERVIEW SECTION FEATURE BLOCKS (page 1 style) ─── */
.capability-table {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
  margin-top: 36px;
}
.capability-table-cell {
  background: #fff; padding: 24px 20px;
}
.capability-table-cell .ct-label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--orange);
  text-transform: uppercase; margin-bottom: 6px;
}
.capability-table-cell h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.capability-table-cell p { font-size: 13px; color: var(--text-body); line-height: 1.5; }

/* ─── PARTNER PAGE SPECIFIC ─── */
.how-engage {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 36px;
}
.engage-step {
  border: 1.5px solid var(--border); border-radius: 12px; padding: 28px 22px;
}
.engage-step .step-num { font-size: 2rem; font-weight: 800; color: var(--orange); margin-bottom: 10px; }
.engage-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.engage-step p { font-size: 13px; color: var(--text-body); line-height: 1.6; }

/* Industry solution cards */
.industry-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px;
}
.industry-card {
  border: 1.5px solid var(--border); border-radius: 14px; padding: 32px 28px; background: #fff;
}
.industry-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; color: var(--dark); }
.industry-card > p { font-size: 14px; color: var(--text-body); margin-bottom: 18px; line-height: 1.6; }
.industry-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.industry-card ul li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-body); }
.industry-card ul li::before { content: '→'; color: var(--orange); flex-shrink: 0; margin-top: 1px; }
.industry-card .explore-link { display: inline-block; margin-top: 18px; color: var(--orange); font-size: 13px; font-weight: 700; }

/* servicenow capability tags */
.sn-caps-list {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px;
}
.sn-cap-tag {
  background: var(--dark); color: #fff;
  padding: 8px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
}
.sn-cap-tag span { color: var(--orange); margin-right: 4px; }

/* value/outcome cards */
.outcome-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px; margin-top: 36px;
}
.outcome-card {
  border: 1.5px solid var(--border); border-radius: 12px; padding: 28px;
  background: #fff; cursor: pointer; transition: box-shadow .2s, border-color .2s;
}
.outcome-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); border-color: var(--orange); }
.outcome-card .oc-num { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: .1em; margin-bottom: 10px; }
.outcome-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.outcome-card p { font-size: 13px; color: var(--text-body); line-height: 1.6; }
.outcome-card .oc-link { display: inline-block; color: var(--orange); font-size: 13px; font-weight: 700; margin-top: 12px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .feature-card { grid-template-columns: 1fr; }
  .feature-card.reverse { direction: ltr; }
  .feature-img { height: 240px; }
  .how-engage { grid-template-columns: 1fr 1fr; }
  .industry-cards { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .top-bar .ai-badge { display: none; }
  .how-engage { grid-template-columns: 1fr; }
  .capability-table { grid-template-columns: 1fr; }
}


@media (max-width:768px){
    .partner-logos {
        flex-direction: column;
    }
}
