*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:        #678489;
  --teal-deep:   #344245;
  --teal-dark:   #4A6568;
  --teal-light:  #90C4CF;
  --teal-muted:  #AABCBF;
  --accent:      #4793A3;
  --accent-hover:#3A7F8E;
  --accent-soft: #6DB4C3;
  --paper:       #F7F9FA;
  --ice:         #E1EFF2;
  --white:       #FFFFFF;
  --ink:         #2C2C2C;
  --ink-75:      rgba(44,44,44,0.75);
  --ink-50:      #6E6E6E;
  --ink-30:      #A5A5A5;
  --cool-gray:   #C6D2D4;
  --line:        rgba(52,66,69,0.08);
  --border:      rgba(52,66,69,0.12);
  --border-strong:rgba(52,66,69,0.18);
  --brand-glow:  rgba(71,147,163,0.12);
  --gradient-hero: linear-gradient(145deg, var(--teal-deep), var(--teal-dark), var(--teal));
  --radius-button: 8px;
  --radius-card:   12px;
  --radius-modal:  20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 72px;
  background: rgba(52,66,69,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo svg { height: 32px; width: auto; }
.nav-logo svg path { fill: var(--teal-light); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--teal-light); }

.nav-cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-button);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-hover); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(144,196,207,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(144,196,207,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 4rem 80px;
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 2rem;
}

.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 200;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: normal;
  font-weight: 600;
  color: var(--teal-light);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 3rem;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-button);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-light);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 14px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(144,196,207,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 6rem 80px 2rem;
  position: relative;
  z-index: 2;
}

.hero-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-logo-wrap svg {
  width: clamp(180px, 22vw, 280px);
  height: auto;
  opacity: 0.92;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.3));
}

.hero-logo-sub {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--teal-muted);
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: bounce 2s infinite;
}
.scroll-hint span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-muted);
}
.scroll-hint svg { color: var(--teal-muted); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── SECTION LABEL PATTERN ── */
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.section-label::before { content: '[ '; }
.section-label::after  { content: ' ]'; }

/* ── ABOUT ── */
#about {
  background: var(--white);
  padding: 8rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--teal-deep);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--ink-75);
  margin-bottom: 1.2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-hero);
}

.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 0.6rem;
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 200;
  color: var(--teal-deep);
  letter-spacing: -0.02em;
  font-family: 'Raleway', sans-serif;
  line-height: 1;
}

.stat-value span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--ink-50);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ── SERVICES ── */
#services {
  background: var(--paper);
  padding: 8rem 6rem;
}

#services .section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 5rem;
}

#services h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--teal-deep);
  line-height: 1.2;
  margin-bottom: 1rem;
}

#services .sub {
  font-size: 1rem;
  color: var(--ink-50);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: default;
}
.service-card:hover {
  border-color: rgba(71,147,163,0.3);
  box-shadow: 0 8px 32px rgba(71,147,163,0.1);
  transform: translateY(-3px);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--ink-50);
  line-height: 1.7;
}

/* ── APPROACH ── */
#approach {
  background: var(--teal-deep);
  padding: 8rem 6rem;
  position: relative;
  overflow: hidden;
}
#approach::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(144,196,207,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(144,196,207,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

#approach .inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

#approach .section-label { color: var(--teal-light); }
#approach .section-label::before { content: '[ '; }
#approach .section-label::after  { content: ' ]'; }

#approach h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 200;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
  max-width: 640px;
  line-height: 1.2;
}
#approach h2 strong {
  font-weight: 600;
  color: var(--teal-light);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: rgba(144,196,207,0.2);
  z-index: 0;
}

.step {
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--accent-soft);
  flex-shrink: 0;
}

.step h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ── WHO WE SERVE ── */
#clients {
  background: var(--white);
  padding: 8rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

#clients h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--teal-deep);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

#clients .intro {
  font-size: 1rem;
  color: var(--ink-75);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.client-types {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.client-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--paper);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.client-row:hover { border-color: rgba(71,147,163,0.25); }

.client-row-icon {
  width: 36px;
  height: 36px;
  background: var(--brand-glow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.client-row-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 0.25rem;
}

.client-row-text p {
  font-size: 0.82rem;
  color: var(--ink-50);
  line-height: 1.5;
}

.locations-block {
  padding: 2rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  background: var(--paper);
  margin-top: 2rem;
}

.loc-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 1rem;
}

.loc-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.loc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-75);
  font-weight: 500;
}
.loc-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── GET STARTED ── */
#get-started {
  background: var(--white);
  padding: 8rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.gs-left h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--teal-deep);
  margin-bottom: 1.25rem;
}

.gs-left h2 em {
  font-style: normal;
  color: var(--accent);
}

.gs-left .gs-sub {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-50);
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.gs-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-deep);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.gs-cta:hover { background: var(--accent); transform: translateY(-2px); }

.gs-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gs-step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.15s;
  cursor: default;
}
.gs-step:first-child { border-top: 1px solid var(--border); }
.gs-step:hover .gs-step-num { background: var(--teal-deep); color: var(--white); }
.gs-step:hover .gs-step-text { color: var(--teal-deep); }

.gs-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ice);
  color: var(--teal-deep);
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.gs-step-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink-75);
  line-height: 1.4;
  transition: color 0.2s;
}

.gs-step-text small {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--ink-30);
  margin-top: 2px;
}

/* ── PORTFOLIO ── */
#portfolio {
  background: var(--paper);
  padding: 8rem 6rem;
  text-align: center;
}

#portfolio h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 1.25rem;
}

#portfolio .sub {
  font-size: 1rem;
  color: var(--ink-50);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 3.5rem;
}

.portfolio-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-modal);
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.portfolio-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(71,147,163,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71,147,163,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.portfolio-card .inner-rel {
  position: relative;
  z-index: 2;
}

.portfolio-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-glow);
  border: 1px solid rgba(71,147,163,0.18);
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.portfolio-card h3 {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--teal-deep);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.portfolio-card h3 strong { font-weight: 700; }

.portfolio-card p {
  font-size: 0.95rem;
  color: var(--ink-50);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* ── CONTACT / CTA ── */
#contact {
  background: var(--gradient-hero);
  padding: 8rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(144,196,207,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(144,196,207,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black, transparent);
  pointer-events: none;
}

#contact .inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

#contact .section-label { color: var(--teal-light); }

#contact h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 200;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
#contact h2 strong { font-weight: 700; color: var(--teal-light); }

#contact p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 3rem;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.contact-info {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-item {
  text-align: center;
}
.contact-item .ci-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal-muted);
  margin-bottom: 0.35rem;
}
.contact-item .ci-val {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}

/* ── FOOTER ── */
footer {
  background: var(--teal-deep);
  padding: 2.5rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-left svg { height: 24px; width: auto; }
.footer-left svg path { fill: var(--teal-muted); }

.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal-muted);
}

.footer-right {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal-muted);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 120px 2rem 7rem; }
  .hero-right { display: none; }
  #about, #clients { grid-template-columns: 1fr; padding: 5rem 2rem; gap: 3rem; }
  #services, #portfolio, #contact, footer { padding: 5rem 2rem; }
  #approach { padding: 5rem 2rem; }
  #get-started { grid-template-columns: 1fr; padding: 5rem 2rem; gap: 3rem; }
  .gs-left h2 { font-size: 2.6rem; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .steps::before { display: none; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
}
