@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --green-950: #062f25;
  --green-900: #064e3b;
  --green-800: #065f46;
  --green-700: #047857;
  --green-600: #059669;
  --green-100: #d1fae5;
  --green-50: #ecfdf5;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  --soft-shadow: 0 10px 34px rgba(15, 23, 42, 0.08);
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--slate-900);
  background: var(--slate-50);
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--slate-200);
}

.header-inner {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo {
  height: 108px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--slate-700);
  font-size: 14px;
  font-weight: 600;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(4, 120, 87, 0.22);
}

.btn-primary:hover {
  background: var(--green-800);
}

.btn-light {
  background: var(--white);
  color: var(--green-950);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.16);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.10);
}

.icon-inline {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 88% 80%, rgba(16, 185, 129, 0.20), transparent 34%), linear-gradient(135deg, var(--green-950), var(--slate-900) 52%, var(--slate-950));
}

.hero-rings {
  position: absolute;
  left: -230px;
  top: -40px;
  width: 680px;
  height: 680px;
  opacity: 0.9;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
  padding: 106px 24px 116px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 22px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(110, 231, 183, 0.28);
  color: #d1fae5;
  font-size: 14px;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-copy {
  max-width: 720px;
  margin: 28px 0 0;
  color: #e2e8f0;
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-card-outer {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 36px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card {
  border-radius: 28px;
  padding: 28px;
  background: var(--white);
  color: var(--slate-900);
}

.card-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.small-label {
  margin: 0;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.20em;
}

.hero-card h2,
.section-intro h2,
.statement-copy h2,
.sectors-copy h2,
.brand-copy h2,
.contact-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.hero-card h2 {
  font-size: 28px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-item,
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-item {
  border-radius: 18px;
  padding: 16px;
  background: var(--slate-50);
  color: var(--slate-800);
  font-weight: 700;
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 18px;
  background: var(--green-50);
}

.icon-box img,
.check-icon,
.contact-line img {
  width: 24px;
  height: 24px;
}

.section {
  padding: 86px 0;
}

.section-white {
  background: var(--white);
}

.section-dark {
  background: var(--slate-900);
  color: var(--white);
}

.section-intro {
  max-width: 780px;
}

.section-intro p,
.statement-copy p,
.sectors-copy p,
.brand-copy p,
.contact-copy p {
  margin: 22px 0 0;
  color: var(--slate-600);
  font-size: 18px;
  line-height: 1.75;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.service-card,
.process-card,
.capability-item,
.sector-item,
.brand-panel,
.contact-card {
  border-radius: var(--radius-2xl);
}

.service-card {
  min-height: 310px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
}

.service-card h3,
.process-card h3,
.brand-panel h3 {
  margin: 22px 0 0;
  font-size: 22px;
  line-height: 1.18;
}

.service-card p,
.process-card p,
.brand-panel p {
  margin: 15px 0 0;
  color: var(--slate-600);
  line-height: 1.72;
}

.statement-grid,
.sectors-grid,
.brand-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 58px;
  align-items: start;
}

.statement-callout {
  margin-top: 32px;
  border-radius: 30px;
  padding: 26px;
  background: var(--green-950);
  color: var(--white);
}

.statement-callout .feature-item {
  padding: 0;
  background: transparent;
  color: var(--slate-100);
  font-weight: 500;
  line-height: 1.65;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.capability-item {
  padding: 22px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
}

.capability-item p {
  margin: 12px 0 0;
  color: var(--slate-800);
  font-weight: 800;
  line-height: 1.42;
}

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

.process-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--soft-shadow);
}

.step-number {
  display: block;
  color: var(--green-100);
  font-size: 58px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.sectors-copy p {
  color: var(--slate-300);
}

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

.sector-item {
  padding: 22px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}

.sector-item img {
  margin-bottom: 16px;
}

.sector-item p {
  margin: 0;
  color: var(--slate-100);
  font-weight: 800;
  line-height: 1.5;
}

.brand-block {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  padding: 48px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-700), var(--green-950));
  box-shadow: var(--shadow);
}

.brand-rings {
  position: absolute;
  right: -130px;
  top: -150px;
  width: 420px;
  opacity: 0.12;
}

.brand-grid {
  position: relative;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.brand-copy p {
  color: var(--green-50);
}

.brand-panel {
  padding: 30px;
  background: var(--white);
  color: var(--slate-900);
}

.tagline {
  margin-top: 14px;
  color: var(--green-800);
  font-size: 30px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-notes {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.55;
}

.brand-notes strong {
  color: var(--slate-900);
}

.contact-box {
  border-radius: 42px;
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--soft-shadow);
}

.contact-card {
  padding: 28px;
  background: var(--slate-50);
}

.contact-card .btn {
  width: 100%;
  margin-top: 20px;
}

.contact-line {
  padding: 14px 0;
  color: var(--slate-700);
  font-weight: 600;
  border-bottom: 1px solid var(--slate-200);
}

.contact-line:last-of-type {
  border-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--slate-200);
  background: var(--white);
  color: var(--slate-500);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 24px;
  font-size: 14px;
}

/* Secondary pages */
.document-page {
  background: var(--white);
}

.doc-hero {
  padding: 70px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-950), var(--slate-900));
}

.doc-content {
  max-width: 980px;
  padding: 56px 24px 96px;
}

.doc-content h2 {
  margin: 38px 0 12px;
  font-size: 30px;
  letter-spacing: -0.03em;
}

.doc-content p,
.doc-content li {
  color: var(--slate-600);
  line-height: 1.72;
}

.doc-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  overflow: hidden;
  border-radius: 18px;
}

.doc-table th,
.doc-table td {
  padding: 16px;
  border: 1px solid var(--slate-200);
  text-align: left;
  vertical-align: top;
}

.doc-table th {
  background: var(--green-50);
  color: var(--green-900);
}

.swatches {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.swatch {
  min-height: 120px;
  border-radius: 22px;
  padding: 14px;
  display: flex;
  align-items: flex-end;
  font-size: 12px;
  font-weight: 800;
  color: white;
}

.swatch.light {
  color: var(--slate-900);
  border: 1px solid var(--slate-200);
}

@media (max-width: 920px) {
  .nav,
  .header-inner > .btn {
    display: none;
  }

  .hero-grid,
  .statement-grid,
  .sectors-grid,
  .brand-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .cards-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .capability-grid,
  .sector-grid,
  .swatches {
    grid-template-columns: 1fr;
  }

  .brand-block,
  .contact-box {
    padding: 28px;
    border-radius: 30px;
  }

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

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .btn {
    display: none !important;
  }

  body {
    background: white;
  }

  .doc-hero {
    background: white;
    color: var(--slate-900);
    padding: 20px 0;
  }
}
