:root {
  --dark: #1e2d35;
  --dark2: #263238;
  --teal: #0f6e6e;
  --teal-light: #1a9090;
  --accent: #4db8b8;
  --light: #f5f5f2;
  --white: #ffffff;
  --gray: #6b7280;
  --border: #e5e7e6;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: #1a1a1a;
  background: var(--white);
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(30, 45, 53, 0.97);
  backdrop-filter: blur(8px);
}

.nav-brand {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--white);
}

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #1e2d35 0%, #263238 45%, #1a3a3a 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(15,110,110,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(30,45,53,0.5) 0%, transparent 60%);
  pointer-events: none;
}

.hero-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-geo::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border: 1px solid rgba(77,184,184,0.08);
  transform: rotate(30deg);
  right: -100px; top: 50px;
}

.hero-geo::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border: 1px solid rgba(77,184,184,0.05);
  transform: rotate(15deg);
  right: -200px; top: -100px;
}

.hero-content { position: relative; max-width: 860px; }

.hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: #5ecece;
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  background: transparent;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
}

.btn-outline-dark {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--teal);
  color: var(--teal);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  cursor: pointer;
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--teal);
  color: var(--white);
}

/* SECTIONS */
section {
  padding: 80px 48px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--dark2);
  margin-bottom: 20px;
}

.section-body {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  max-width: 680px;
}

/* POSITIONING SECTION */
.positioning {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.positioning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
  align-items: start;
}

.positioning-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--dark2);
  line-height: 1.3;
  margin-bottom: 20px;
}

.positioning-left .section-body {
  margin-bottom: 24px;
}

.bullet-list {
  list-style: none;
  margin: 0;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.bullet-list li:last-child { border-bottom: none; }

.bullet-list li::before {
  content: '';
  width: 6px; height: 6px;
  min-width: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
}

.positioning-right {
  background: var(--light);
  padding: 36px;
}

.positioning-right p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}

/* CAPABILITIES */
.capabilities {
  background: var(--dark2);
}

.capabilities .section-label { color: var(--accent); }
.capabilities .section-title { color: var(--white); }
.capabilities .section-body { color: rgba(255,255,255,0.65); }

.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  margin-top: 48px;
}

.cap-card {
  background: var(--dark2);
  padding: 36px 28px;
  transition: background 0.2s;
}

.cap-card:hover {
  background: #2d3f47;
}

.cap-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: rgba(77,184,184,0.25);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
}

.cap-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 12px;
}

.cap-body {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* PARTNERSHIP SECTION (homepage) */
.partnership-band {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* WHY */
.why {
  background: var(--light);
}

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

.why-item {
  background: var(--white);
  padding: 32px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}

.why-item:hover {
  border-left-color: var(--accent);
}

.why-item-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark2);
  margin-bottom: 8px;
}

.why-item-body {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* CTA SECTION */
.cta-section {
  background: var(--teal);
  padding: 72px 48px;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}

/* SERVICES PAGE */
.services-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  background: var(--dark2);
}

.services-hero .section-title { color: var(--white); }
.services-hero .section-label { color: var(--accent); }
.services-hero .section-body { color: rgba(255,255,255,0.65); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 0;
}

.service-card {
  background: var(--white);
  padding: 48px 40px;
}

.service-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--dark2);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* IMPLEMENTATION STEPS */
.impl-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 32px;
  border: 1px solid var(--border);
}

.impl-step {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  position: relative;
}

.impl-step:last-child { border-right: none; }

.impl-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: rgba(77,184,184,0.3);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 12px;
}

.impl-step-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark2);
  line-height: 1.4;
}

/* ABOUT PAGE */
.about-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  background: var(--dark2);
}

.about-hero .section-title { color: var(--white); }
.about-hero .section-label { color: var(--accent); }
.about-hero .section-body { color: rgba(255,255,255,0.65); }

.about-body {
  background: var(--white);
}

.about-intro {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.8;
  color: #333;
  max-width: 760px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.focus-areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 48px;
}

.focus-card {
  background: var(--light);
  padding: 36px 32px;
  text-align: center;
}

.focus-card-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark2);
  margin-bottom: 8px;
}

.focus-dot {
  width: 32px; height: 3px;
  background: var(--accent);
  margin: 0 auto 16px;
}

/* PARTNERSHIPS PAGE */
.partnerships-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  background: var(--dark2);
}

.partnerships-hero .section-title { color: var(--white); }
.partnerships-hero .section-label { color: var(--accent); }
.partnerships-hero .section-body { color: rgba(255,255,255,0.65); }

.partner-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.partner-focus-card {
  border: 1px solid var(--border);
  padding: 32px;
}

.partner-focus-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark2);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.partner-focus-title::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.partner-focus-body {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.how-we-work {
  background: var(--light);
}

.section-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 760px;
}

.section-list li {
  font-size: 15px;
  color: var(--gray);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 16px;
  position: relative;
}

.section-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* CONTACT PAGE */
.contact-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  background: var(--dark2);
}

.contact-hero .section-title { color: var(--white); }
.contact-hero .section-label { color: var(--accent); }

.contact-body {
  background: var(--white);
  max-width: 600px;
}

.contact-intro {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--teal);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--teal-light);
  padding-bottom: 2px;
}

/* FOOTER */
footer {
  background: #111c22;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.8); }

.footer-phone {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-phone:hover { color: rgba(255,255,255,0.8); }

/* DIVIDER */
.section-divider {
  width: 48px; height: 2px;
  background: var(--accent);
  margin-bottom: 32px;
}

/* ICON CARDS */
.icon-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.icon-card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.icon-card {
  background: var(--light);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.15s;
}

.icon-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.icon-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  color: var(--accent);
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-card-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark2);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.icon-card-body {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.about-section-block {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

/* HERO SPLIT LAYOUT (homepage + about) */
.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  max-width: 1100px;
}

.hero-split .hero-content {
  max-width: 560px;
  flex: 0 0 auto;
}

.hero-visual {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  opacity: 0.92;
  margin-right: -32px;
}

.hero-visual svg {
  width: 100%;
  max-width: 460px;
  height: auto;
}

/* ABOUT HERO SPLIT */
.about-hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  max-width: 1100px;
}

.about-hero-split .about-hero-text {
  flex: 1 1 auto;
}

.about-hero-visual {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0.85;
}

.about-hero-visual svg {
  width: 320px;
  height: auto;
}

/* RESULTS STRIP */
.results-strip {
  background: var(--dark);
  padding: 72px 48px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  margin-top: 48px;
}

.result-stat {
  background: var(--dark);
  padding: 40px 36px;
  position: relative;
  transition: background 0.2s;
}

.result-stat:hover { background: #243036; }

.result-stat::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
}

.result-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.result-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.result-body {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* PROCESS FLOW VISUAL (services) */
.process-flow-wrap {
  margin-bottom: 40px;
  overflow-x: auto;
}

.process-flow-wrap svg {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* CRM PIPELINE SECTION (partnerships) */
.crm-section {
  background: var(--dark2);
  padding: 72px 48px;
}

.crm-section .section-label { color: var(--accent); }
.crm-section .section-title { color: var(--white); }
.crm-section .section-body { color: rgba(255,255,255,0.65); }

.pipeline-wrap {
  margin-top: 48px;
  overflow-x: auto;
}

.pipeline-wrap svg {
  width: 100%;
  max-width: 880px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* CONTACT SPLIT LAYOUT */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.contact-visual svg {
  width: 100%;
  max-width: 380px;
  height: auto;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-split,
  .about-hero-split {
    flex-direction: column;
    gap: 40px;
  }

  .hero-split .hero-content { max-width: 100%; }

  .hero-visual,
  .about-hero-visual {
    width: 100%;
    justify-content: center;
  }

  .hero-visual svg,
  .about-hero-visual svg {
    max-width: 320px;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .contact-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-visual {
    justify-content: flex-start;
  }
}
