:root {
  --bg: #F8FAFC;
  --bg-soft: #eef2f7;
  --panel: #ffffff;
  --panel-border: #dbe3ee;
  --text: #0f172a;
  --muted: #475569;
  --accent: #22c55e;
  --accent-2: #0ea5e9;
  --shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(248, 250, 252, 0.88);
  border-bottom: 1px solid var(--panel-border);
}

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

.brand-logo {
  width: 255px;
  max-width: 42vw;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

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

.nav nav a {
  color: #334155;
  font-weight: 600;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid,
.split,
.contact-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  color: #1e293b;
  background: #eef2f7;
  font-size: 0.9rem;
}

h1, h2, h3 { margin: 0 0 1rem; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.00; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; }
p, li { color: var(--muted); font-size: 1.02rem; line-height: 1.7; }

.hero-copy p { max-width: 60ch; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.6rem 0 2rem;
}
.hero-actions1 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.6rem 0 2rem;
  justify-content: flex-end;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.2rem;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #ffffff;
}
.btn-secondary {
  background: #e2e8f0;
  border: 1px solid #cbd5e1;
  color: var(--text);
}
.full { width: 100%; }

.hero-metrics,
.card-grid,
.industries-grid {
  display: grid;
  gap: 1rem;
}
.hero-metrics {
  grid-template-columns: repeat(3, 1fr);
}
.hero-metrics > div,
.card,
.glass-card,
.feature-box,
.contact-card,
.pill {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.hero-metrics > div {
  padding: 1rem;
}
.hero-metrics strong {
  display: block;
  margin-bottom: 0.35rem;
}
.hero-metrics span { color: var(--muted); font-size: 0.94rem; }

.hero-card {
  position: relative;
}
.hero-card > img {
  width: min(100%, 540px);
  margin: 0 auto;
  border-radius: 30px;
}
.glass-card {
  margin-top: 1rem;
  padding: 1.2rem 1.4rem;
}
.mini-title {
  margin: 0 0 0.75rem;
  color: var(--text);
  font-weight: 800;
}

.section { padding: 4.6rem 0; }
.section.alt {
  background: linear-gradient(180deg, #f1f5f9, #eef2f7);
  border-top: 1px solid var(--panel-border);
  border-bottom: 1px solid var(--panel-border);
}
.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}
.section-heading.left { text-align: left; margin-left: 0; }
.three-col { grid-template-columns: repeat(3, 1fr); }
.card { padding: 1.5rem; }

.industries-grid {
  grid-template-columns: repeat(5, 1fr);
}
.pill {
  padding: 1rem 1.1rem;
  text-align: center;
  font-weight: 700;
  color: #1e293b;
}

.feature-box,
.contact-card { padding: 1.5rem; }
.feature-box ul,
.glass-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.contact-copy p {
  margin: 0 0 1rem;
}

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

.form-submit-frame {
  width: 0;
  height: 0;
  border: 0;
  position: absolute;
  pointer-events: none;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  font-weight: 700;
  color: var(--text);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  background: #f8fafc;
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
  background: #ffffff;
}

.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
  border-color: #dc2626;
}

.form-note,
.form-status {
  margin: 0;
  font-size: 0.95rem;
}

.form-note a {
  color: #0f766e;
  text-decoration: underline;
}

.form-status {
  min-height: 1.4rem;
  color: #0f766e;
  font-weight: 600;
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid var(--panel-border);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .contact-wrap,
  .three-col,
  .industries-grid,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero { padding-top: 2.5rem; }
  h1 { font-size: 2.4rem; }
  .brand-logo { width: 170px; }
  .container { width: min(100% - 1.2rem, 1120px); }
}
