:root{
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --color-text-primary: #0F1724;
  --color-text-secondary: #475569;
  --color-text-tertiary: #6B7280;
  --color-border-secondary: #E6E9EE;
  --color-border-tertiary: #E8EEF1;
  --color-background-primary: #ffffff;
  --color-background-secondary: #F8FAFC;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
}

/* Basic utilities */
html { scroll-behavior: smooth; }
body { margin: 0; padding: 2rem 1rem; background: var(--color-background-primary); }
* { box-sizing: border-box; margin: 0; padding: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.lp { max-width: 1180px; font-family: var(--font-sans); margin: 0 auto; font-size: 17px; }

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

:focus-visible {
  outline: 2px solid #1D9E75;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Nav */
.nav { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; row-gap: 14px; padding: 1.5rem 0 2.25rem; border-bottom: 0.5px solid var(--color-border-tertiary); margin-bottom: 3.5rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { display: block; }
.nav-cta { font-size: 15px; padding: 8px 20px; border-radius: var(--border-radius-md); background: #1D9E75; color: #E1F5EE; border: none; cursor: pointer; font-weight: 500; display: inline-block; }
.nav-links { display:flex; gap:20px; align-items:center; flex-wrap: wrap; row-gap: 10px; }
.nav-link { font-size:15px; color:var(--color-text-secondary); padding: 8px 2px; display: inline-block; }

@media (max-width: 640px) {
  .logo img { height: 40px; }
  .nav-links { width: 100%; justify-content: flex-start; }
}

/* Hero */
.hero { margin-bottom: 4rem; }
.hero-eyebrow { font-size: 14px; color: #0F6E56; background: #E1F5EE; padding: 5px 14px; border-radius: 20px; display: inline-block; margin-bottom: 1.5rem; font-weight: 500; }
.hero h1 { font-size: 60px; font-weight: 500; color: var(--color-text-primary); line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: #1D9E75; }
.hero p { font-size: 18px; color: var(--color-text-secondary); line-height: 1.7; margin-bottom: 2rem; max-width: 640px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.btn-primary { font-size: 16px; padding: 12px 26px; border-radius: var(--border-radius-md); background: #1D9E75; color: #E1F5EE; border: none; cursor: pointer; font-weight: 500; display: inline-block; }
.btn-secondary { font-size: 16px; padding: 12px 26px; border-radius: var(--border-radius-md); background: transparent; color: var(--color-text-primary); border: 0.5px solid var(--color-border-secondary); cursor: pointer; display: inline-block; }

@media (max-width: 480px) {
  .hero h1 { font-size: 40px; }
}

/* Sections */
.section-label { font-size: 13px; font-weight: 500; color: var(--color-text-tertiary); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.5rem; }
.section { margin-bottom: 4rem; }

.biz-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 0 auto; }
@media (max-width: 768px) {
  .biz-grid { grid-template-columns: repeat(2, 1fr); }
}
.biz-grid .biz-card:nth-child(7),
.biz-grid .biz-card:nth-child(8) {
  grid-column: auto / span 1;
}
.biz-grid > :nth-child(7) {
  margin-left: auto;
}
.biz-grid > :nth-child(8) {
  margin-right: auto;
}
.biz-card { border: 0.5px solid var(--color-border-tertiary); border-radius: var(--border-radius-lg); padding: 1.25rem; background: var(--color-background-primary); }
.biz-icon { font-size: 24px; color: #1D9E75; margin-bottom: 10px; }
.biz-card h3 { font-size: 16px; font-weight: 500; color: var(--color-text-primary); margin-bottom: 5px; }
.biz-card p { font-size: 14px; color: var(--color-text-secondary); line-height: 1.5; }

.service-list { display: flex; flex-direction: column; border: 0.5px solid var(--color-border-tertiary); border-radius: var(--border-radius-lg); overflow: hidden; }
.service-row { display: flex; align-items: flex-start; gap: 20px; padding: 1.4rem 1.6rem; border-bottom: 0.5px solid var(--color-border-tertiary); background: var(--color-background-primary); }
.service-row:last-child { border-bottom: none; }
.service-num { font-size: 14px; color: var(--color-text-tertiary); min-width: 20px; padding-top: 2px; }
.service-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; width: 26px; text-align: center; }
.service-icon.green { color: #1D9E75; }
.service-icon.blue { color: #185FA5; }
.service-icon.purple { color: #7C4FE0; }
.service-body h3 { font-size: 17px; font-weight: 500; color: var(--color-text-primary); margin-bottom: 5px; }
.service-body p { font-size: 15px; color: var(--color-text-secondary); line-height: 1.55; }
.service-tag { font-size: 13px; padding: 3px 10px; border-radius: 20px; display: inline-block; margin-top: 8px; }
.tag-ai { background: #E1F5EE; color: #085041; }
.tag-tech { background: #E6F1FB; color: #0C447C; }
.tag-upskill { background: #F1EBFC; color: #5B21B6; }

.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 20px; padding: 1.25rem 0; border-bottom: 0.5px solid var(--color-border-tertiary); }
.step:last-child { border-bottom: none; }
.step-dot { width: 34px; height: 34px; border-radius: 50%; background: #E1F5EE; color: #0F6E56; font-size: 15px; font-weight: 500; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.step h3 { font-size: 17px; font-weight: 500; color: var(--color-text-primary); margin-bottom: 5px; }
.step p { font-size: 15px; color: var(--color-text-secondary); line-height: 1.55; }

.cta-block { border: 0.5px solid var(--color-border-tertiary); border-radius: var(--border-radius-lg); padding: 2.5rem 2rem; background: var(--color-background-primary); margin-bottom: 3.5rem; text-align: center; }
.cta-block h2 { font-size: 27px; font-weight: 500; color: var(--color-text-primary); margin-bottom: 0.65rem; letter-spacing: -0.3px; }
.cta-block p { font-size: 16px; color: var(--color-text-secondary); margin-bottom: 1.75rem; line-height: 1.6; }

.contact-form { display: flex; flex-direction: column; gap: 12px; max-width: 460px; margin: 0 auto; }
.contact-form input, .contact-form textarea { font-size: 16px; padding: 11px 14px; border-radius: var(--border-radius-md); border: 0.5px solid var(--color-border-secondary); background: var(--color-background-secondary); color: var(--color-text-primary); width: 100%; font-family: var(--font-sans); }
.contact-form textarea { height: 90px; resize: none; }
.contact-form .btn-primary { width: 100%; }

.footer { border-top: 0.5px solid var(--color-border-tertiary); padding-top: 1.75rem; margin-bottom: 1rem; display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; }
.footer > div { flex: 1; text-align: right; }
.footer-logo { display: block; }
.footer p { font-size: 14px; color: var(--color-text-tertiary); margin: 0; }
.footer p a { text-decoration: underline; }
.footer-legal { margin-top: 0.4rem; }
.copyright { font-size: 13px; color: var(--color-text-tertiary); margin-top: 0.5rem; }
.section-intro { font-size: 15px; color: var(--color-text-secondary); line-height: 1.6; margin: 0 0 1.5rem; }

.legal h3 { font-size: 17px; font-weight: 500; color: var(--color-text-primary); margin: 1.5rem 0 0.5rem; }
.legal p { font-size: 15px; color: var(--color-text-secondary); line-height: 1.6; margin-bottom: 0.5rem; }
.legal p a { text-decoration: underline; }
