:root {
  --ink: #18212f;
  --muted: #5f6b7a;
  --line: #dce3ea;
  --paper: #ffffff;
  --soft: #f4f7f9;
  --blue: #1f72d6;
  --teal: #0f8d83;
  --amber: #eeaa21;
  --charcoal: #101723;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
  padding: 10px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 370px;
}

.brand-logo {
  width: 355px;
  height: 80px;
  object-fit: contain;
  object-position: left center;
  padding: 0;
  background: #fff;
  border: 0;
  border-radius: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  color: #18212f;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  flex: 1;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 58px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 7px;
  font-weight: 700;
  white-space: nowrap;
}

.header-action,
.primary-button {
  color: #fff;
  background: var(--blue);
}

.secondary-button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 84px clamp(18px, 5vw, 72px) 110px;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 15, 25, 0.9) 0%, rgba(13, 28, 46, 0.78) 42%, rgba(13, 28, 46, 0.28) 100%),
    linear-gradient(0deg, rgba(8, 15, 25, 0.45), rgba(8, 15, 25, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.intro-band div {
  padding: 28px clamp(18px, 4vw, 52px);
  background: var(--soft);
}

.intro-band strong,
.intro-band span {
  display: block;
}

.intro-band strong {
  font-size: 19px;
}

.intro-band span {
  margin-top: 5px;
  color: var(--muted);
}

.india-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: #fff;
  background: linear-gradient(90deg, #075fc7, #0f8d83);
  text-align: center;
}

.india-highlight strong {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.1;
  text-transform: uppercase;
}

.india-highlight span {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 700;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #075fc7;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.stats-strip div {
  min-height: 64px;
  padding: 10px 18px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.stats-strip div:last-child {
  border-right: 0;
}

.stats-strip strong,
.stats-strip span {
  display: block;
}

.stats-strip strong {
  font-size: 24px;
  line-height: 1;
}

.stats-strip span {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 18px 0;
  overflow: hidden;
  border-radius: 8px;
  background: #075fc7;
  color: #fff;
}

.mini-stats div {
  min-height: 62px;
  padding: 10px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.mini-stats div:last-child {
  border-right: 0;
}

.mini-stats strong,
.mini-stats span {
  display: block;
}

.mini-stats strong {
  font-size: 20px;
  line-height: 1;
}

.mini-stats span {
  margin-top: 5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
}

.section,
.about-section,
.feature-band,
.contact-section {
  padding: 82px clamp(18px, 5vw, 72px);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: start;
  background: #fff;
}

.about-copy {
  max-width: 760px;
}

.about-image {
  display: block;
  width: min(100%, 520px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.about-copy h2,
.government-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

.about-copy p:not(.eyebrow),
.government-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.brand-strip {
  padding: 22px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

.brand-strip h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  flex-wrap: wrap;
}

.brand-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.brand-hp,
.brand-dell,
.brand-asus,
.brand-epson {
  color: #1265c7;
}

.brand-lenovo,
.brand-canon,
.brand-apc {
  color: #d71920;
}

.brand-acer {
  color: #55a51f;
  font-style: italic;
}

.brand-hik {
  color: #e31837;
  font-size: 18px;
}

.brand-dahua {
  color: #202020;
  font-size: 22px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.feature-copy h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.feature-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card,
.sector-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-card {
  padding: 0;
  overflow: hidden;
}

.service-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
  background: var(--soft);
}

.service-icon {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.service-card:nth-child(2n) .service-icon {
  background: var(--blue);
}

.service-card:nth-child(3n) .service-icon {
  background: var(--amber);
  color: var(--charcoal);
}

.service-card h3,
.sector-grid h3 {
  margin: 0;
  font-size: 19px;
}

.service-card h3 {
  padding: 13px 18px;
  color: #fff;
  background: var(--blue);
}

.service-card p,
.sector-grid p {
  margin: 0;
  color: var(--muted);
}

.service-card p {
  padding: 14px 18px 18px;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
  background: var(--charcoal);
  color: #fff;
}

.government-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.government-list li {
  min-height: 64px;
  padding: 18px 18px 18px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  position: relative;
  font-weight: 700;
}

.government-list li::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 20px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(31, 114, 214, 0.12);
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-list li {
  min-height: 76px;
  padding: 18px 18px 18px 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
}

.product-list li::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
}

.compact {
  background: var(--soft);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sector-grid article {
  padding: 28px;
}

.app-download-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 430px);
  gap: 34px;
  align-items: center;
  padding: 82px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--charcoal);
}

.app-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.app-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.secondary-app-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 7px;
  color: #fff;
  font-weight: 700;
}

.app-panel {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.app-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--charcoal);
  background: var(--amber);
  font-weight: 800;
}

.app-panel strong {
  display: block;
  margin-top: 16px;
  font-size: 26px;
}

.app-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.app-panel li {
  padding-left: 22px;
  position: relative;
  color: rgba(255, 255, 255, 0.84);
}

.app-panel li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 420px);
  gap: 36px;
  align-items: center;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-panel a,
.contact-panel span {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.contact-panel .gst-line {
  color: #fff;
  background: var(--blue);
}

.contact-quote {
  margin-top: 18px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 38px;
  align-items: start;
  padding: 82px clamp(18px, 5vw, 72px);
  background: var(--soft);
}

.quote-intro h1,
.thanks-box h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.04;
}

.quote-intro p:not(.eyebrow),
.thanks-box p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.quote-form .wide {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.quote-submit {
  grid-column: 1 / -1;
  border: 0;
  cursor: pointer;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--soft);
}

.thanks-box {
  width: min(640px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #0a1019;
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    min-height: auto;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 720px;
    padding-top: 74px;
  }

  .intro-band,
  .india-highlight,
  .stats-strip,
  .about-section,
  .quote-section,
  .app-download-section,
  .service-grid,
  .feature-band,
  .sector-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .india-highlight {
    flex-direction: column;
    gap: 8px;
  }

  .product-list,
  .government-list,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-form .wide,
  .quote-submit {
    grid-column: auto;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 300px;
    height: 68px;
  }

  .header-action {
    width: 100%;
  }

  .hero {
    min-height: 680px;
    padding-bottom: 84px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions a {
    width: 100%;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
