:root {
  color-scheme: dark;
  --bg: #020617;
  --surface: #11172c;
  --surface-strong: #182045;
  --text: #e9edf9;
  --muted: #99a2c8;
  --accent: #6de8ff;
  --accent-strong: #38b2ff;
  --border: rgba(109, 232, 255, 0.12);
  --shadow: 0 25px 90px rgba(2, 6, 23, 0.3);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(109, 232, 255, 0.12), transparent 28%),
              radial-gradient(circle at bottom right, rgba(56, 178, 255, 0.1), transparent 22%),
              var(--bg);
  color: var(--text);
}

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

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2, 6, 23, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.cta-button,
.primary-button,
.secondary-button,
button {
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.cta-button,
.primary-button {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #020617;
  padding: 0.9rem 1.5rem;
}

.secondary-button {
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 0.9rem 1.5rem;
}

button:hover,
.cta-button:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.hero-section {
  padding: 6rem 0 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-copy h1,
.section-heading h2,
.why-section h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.05;
  margin: 0;
}

.hero-copy p {
  max-width: 50rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 1.5rem 0 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  width: 100%;
  max-width: 500px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.04);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.visual-tag {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(109, 232, 255, 0.14);
  color: var(--accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.visual-card h2 {
  margin: 0 0 1rem;
}

.visual-card p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stats-grid div {
  padding: 1rem;
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
}

.stats-grid strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.section-heading,
.about-section,
.services-section,
.workflow-section,
.why-section,
.contact-section {
  padding: 4rem 0;
}

.about-grid,
.services-grid,
.workflow-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.contact-grid {
  justify-items: center;
}

.about-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-card,
.service-card,
.workflow-step,
.contact-card,
.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  padding: 2rem;
}

.about-card h3,
.service-card h3,
.workflow-step h3,
.contact-card h3 {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  border-radius: 0.85rem;
  background: rgba(109, 232, 255, 0.15);
  color: var(--accent);
}

.icon svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  fill: none;
}

.icon.small {
  width: 1.75rem;
  height: 1.75rem;
}

.icon.tiny {
  width: 1.5rem;
  height: 1.5rem;
}

.feature-item strong {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.contact-card p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  line-height: 1.8;
  margin: 0.85rem 0;
}

.contact-card p strong {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card {
  min-height: 220px;
}

.contact-card {
  width: min(520px, 100%);
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.workflow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.workflow-step {
  display: grid;
  gap: 1rem;
}

.workflow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(109, 232, 255, 0.14);
  color: var(--accent);
  font-weight: 800;
}

.why-section {
  padding-top: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-item {
  padding: 1rem 1.2rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.contact-card p {
  line-height: 1.8;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  border-radius: 18px;
  color: var(--text);
  padding: 0.95rem 1.1rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid rgba(109,232,255,0.5);
  outline-offset: 2px;
}

.contact-form button {
  appearance: none;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #020617;
  padding: 1rem 1.2rem;
  cursor: pointer;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}

.footer-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: center;
  flex-wrap: wrap;
}

.msme-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  background: rgba(255, 255, 255, 0.841);
  border-radius: 18px;
  overflow: hidden;
}

.msme-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .services-grid,
  .workflow-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .header-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .nav {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding-top: 4rem;
  }
  .hero-copy h1 {
    font-size: 2.5rem;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 0.9rem 1rem;
  }
}
