/* ============================================================
   South Ops Forge — Main Stylesheet
   2026 Pantone Palette:
   Cloud Dancer  #F7F5F2
   Baltic Sea    #2C5E82
   Teal          #0D9488
   Cloud Cover   #B5A494
   Hematite      #454547
   Blue Fusion   #4A7DA8
   ============================================================ */

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

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cloud-dancer: #F7F5F2;
  --baltic-sea:   #2C5E82;
  --teal:         #0D9488;
  --cloud-cover:  #B5A494;
  --hematite:     #454547;
  --blue-fusion:  #4A7DA8;

  --bg:           #FAF9F7;
  --bg-dark:      #16202C;
  --text:         #2A2A2C;
  --text-muted:   #6B6B70;
  --white:        #FFFFFF;
  --border:       #E2DED8;

  --primary:      var(--baltic-sea);
  --accent:       var(--teal);
  --dark:         var(--hematite);

  --font-head:    'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;

  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.14);

  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --max-w:        1200px;
  --max-w-text:   780px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--blue-fusion); }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--hematite);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }
p  { color: var(--text-muted); font-size: 1.05rem; }

.lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: var(--text-muted);
}

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── Layout Helpers ───────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-text {
  max-width: var(--max-w-text);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-lg { padding: 7rem 0; }
.section-sm { padding: 3rem 0; }

.text-center { text-align: center; }
.text-white, .text-white h1, .text-white h2, .text-white h3,
.text-white h4, .text-white p, .text-white .eyebrow { color: var(--white); }
.text-white p, .text-white .lead { color: rgba(255,255,255,0.78); }
.text-white .eyebrow { color: var(--teal); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--baltic-sea);
  color: var(--white);
  border-color: var(--baltic-sea);
}
.btn-primary:hover {
  background: #1e4a68;
  border-color: #1e4a68;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 94, 130, 0.35);
}
.btn-accent {
  background: var(--teal);
  color: #1A1A1A;
  border-color: var(--teal);
}
.btn-accent:hover {
  background: #0a7a70;
  border-color: #0a7a70;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.40);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--baltic-sea);
  border-color: var(--baltic-sea);
}
.btn-outline-dark:hover {
  background: var(--baltic-sea);
  color: var(--white);
}
.btn-lg { padding: 1.1rem 2.6rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.3rem; font-size: 0.875rem; }

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

/* ── Site Header ──────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}
.site-header.transparent { background: transparent; }
.site-header.scrolled {
  background: rgba(22, 32, 44, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #152234, var(--teal));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 24px; height: 24px; fill: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1; gap: 5px; }
.logo-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: var(--transition);
}
.site-nav a:hover, .site-nav a.active { color: var(--white); }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 0.5rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero Slider ──────────────────────────────────────────── */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}
.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.slide.active .slide-bg { transform: scale(1); }

.slide:nth-child(1) .slide-bg {
  background: linear-gradient(135deg, #16202C 0%, #1E3A52 40%, #2C5E82 100%);
}
.slide:nth-child(2) .slide-bg {
  background: linear-gradient(135deg, #1A1A1F 0%, #2A2A35 40%, #1E3A52 100%);
}
.slide:nth-child(3) .slide-bg {
  background: linear-gradient(135deg, #1C1A16 0%, #2E2A22 50%, #3A3020 100%);
}

/* Geometric accent overlays */
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(44,94,130,0.15) 0%, transparent 60%),
              linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}
.slide-accent {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.slide-accent-1 {
  width: 600px; height: 600px;
  background: var(--teal);
  top: -150px; right: -150px;
}
.slide-accent-2 {
  width: 400px; height: 400px;
  background: var(--baltic-sea);
  bottom: -100px; left: -100px;
}
.slide-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 2rem;
  text-align: center;
  color: var(--white);
}
.slide-eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.slide-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s;
}
.slide-title span { color: var(--teal); }
.slide-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}
.slide-actions {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.65s, transform 0.6s ease 0.65s;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.slide.active .slide-eyebrow,
.slide.active .slide-title,
.slide.active .slide-subtitle,
.slide.active .slide-actions {
  opacity: 1;
  transform: translateY(0);
}

/* Slider Controls */
.slider-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.6rem;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--teal);
  width: 28px;
  border-radius: 4px;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.slider-arrow:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}
.slider-arrow svg { width: 20px; height: 20px; fill: none; stroke: white; stroke-width: 2; }
.slider-prev { left: 2rem; }
.slider-next { right: 2rem; }
.slider-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--teal);
  width: 0%;
  z-index: 10;
  transition: width linear;
}

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--hematite);
  padding: 2rem 0;
}
.stats-bar .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-top: 0.35rem;
  display: block;
}

/* ── Section Headers ──────────────────────────────────────── */
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header h2 { margin-top: 0.5rem; }
.section-header p {
  margin-top: 1rem;
  max-width: 600px;
}
.section-header.centered p { margin-left: auto; margin-right: auto; }

/* ── Problem Section ──────────────────────────────────────── */
.problem-section { background: var(--cloud-dancer); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.problem-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.problem-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.problem-item:hover {
  border-color: var(--cloud-cover);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.problem-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(44,94,130,0.1), rgba(74,125,168,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.problem-item-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--hematite);
  margin-bottom: 0.25rem;
}
.problem-item-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.problem-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem-card-stack { position: relative; width: 100%; max-width: 380px; margin: auto; }
.problem-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.problem-card-main { position: relative; z-index: 2; }
.problem-card-bg {
  position: absolute;
  top: -12px; right: -12px;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--baltic-sea), var(--blue-fusion));
  border-radius: var(--radius-md);
  z-index: 0;
  opacity: 0.15;
}
.card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.card-metric {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--baltic-sea);
  line-height: 1;
}
.card-metric-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}
.card-bar { margin-top: 1.25rem; }
.card-bar-track {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.card-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--baltic-sea), var(--teal));
}

/* ── Services Grid ────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--baltic-sea), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.service-card-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(44,94,130,0.08), rgba(74,125,168,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  border: 1px solid rgba(44,94,130,0.12);
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--hematite);
}
.service-card p { font-size: 0.95rem; line-height: 1.65; }
.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.tag {
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(44,94,130,0.08);
  color: var(--baltic-sea);
  border: 1px solid rgba(44,94,130,0.15);
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.75rem;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--baltic-sea);
}
.service-card-link svg { width: 16px; height: 16px; transition: var(--transition); }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* ── Process Section ──────────────────────────────────────── */
.process-section { background: var(--bg-dark); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 2.1rem;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--baltic-sea), var(--teal));
  opacity: 0.4;
}
.process-step { text-align: center; padding: 0 1.5rem; }
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--baltic-sea), var(--blue-fusion));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(44,94,130,0.15);
}
.process-step h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.6rem;
}
.process-step p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ── Why Us Section ───────────────────────────────────────── */
.why-section { background: var(--cloud-dancer); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.why-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.why-item h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.why-item p { font-size: 0.9rem; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--baltic-sea) 0%, var(--bg-dark) 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.06);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(74,125,168,0.08);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 2.5rem; font-size: 1.1rem; }

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1E3448 100%);
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,0.72); max-width: 600px; }
.page-hero-accent {
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,148,136,0.12) 0%, transparent 70%);
}

/* ── About Page ───────────────────────────────────────────── */
.about-mission { background: var(--white); }
.about-mission-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.about-visual {
  position: relative;
  padding: 2rem;
}
.about-visual-card {
  background: linear-gradient(135deg, var(--baltic-sea), #1a3d5c);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about-visual-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(13,148,136,0.1);
}
.about-quote {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.about-quote-mark {
  font-size: 4rem;
  color: var(--teal);
  line-height: 0.5;
  display: block;
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
}
.about-author {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  position: relative;
  z-index: 1;
}

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--teal);
  background: var(--cloud-dancer);
  transition: var(--transition);
}
.value-card:hover { background: var(--white); box-shadow: var(--shadow-md); }
.value-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(44,94,130,0.12);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.value-card h4 { font-size: 1.05rem; color: var(--hematite); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; }

.approach-steps { display: flex; flex-direction: column; gap: 0; }
.approach-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.approach-step:last-child { border-bottom: none; }
.approach-step:hover { padding-left: 1rem; }
.approach-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(44,94,130,0.1);
  line-height: 1;
}
.approach-step h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

/* ── Services Page ────────────────────────────────────────── */
.service-pillar {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.service-pillar:last-of-type { border-bottom: none; }
.service-pillar:nth-child(even) { background: var(--cloud-dancer); }
.service-pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.service-pillar:nth-child(even) .service-pillar-grid { direction: rtl; }
.service-pillar:nth-child(even) .service-pillar-grid > * { direction: ltr; }
.pillar-number {
  font-family: var(--font-head);
  font-size: 6rem;
  font-weight: 800;
  color: rgba(44,94,130,0.06);
  line-height: 1;
  margin-bottom: -1rem;
}
.pillar-icon-wrap {
  width: 72px; height: 72px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--baltic-sea), var(--blue-fusion));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.pillar-features { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.pillar-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.pillar-feature::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--baltic-sea), var(--teal));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.pillar-visual {
  background: linear-gradient(135deg, #16202C, #1E3448);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.pillar-visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(13,148,136,0.07);
}
.pillar-visual-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  font-weight: 600;
}
.pillar-visual-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 0.5rem;
  line-height: 1.3;
}
.pillar-metrics { display: flex; gap: 1.5rem; }
.pillar-metric-item { }
.pillar-metric-val {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  display: block;
}
.pillar-metric-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* Pricing/Engagement section */
.engagement-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.engagement-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
  position: relative;
}
.engagement-card.featured {
  background: linear-gradient(135deg, var(--baltic-sea), #1a3d5c);
  border-color: transparent;
  color: var(--white);
}
.engagement-card.featured h3, .engagement-card.featured h4 { color: var(--white); }
.engagement-card.featured p { color: rgba(255,255,255,0.7); }
.engagement-card.featured .tag { background: rgba(255,255,255,0.15); color: var(--white); border-color: transparent; }
.featured-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #1A1A1A;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
}
.engagement-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.engagement-card:hover:not(.featured) { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.engagement-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.25rem; }
.engagement-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.engagement-card.featured .engagement-list li { color: rgba(255,255,255,0.72); }
.engagement-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--cloud-dancer);
  border-radius: var(--radius-lg);
  padding: 3rem;
}
.contact-form-wrap h3 { margin-bottom: 0.5rem; }
.contact-form-wrap p { margin-bottom: 2rem; }

/* Form Styles */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hematite);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--baltic-sea);
  box-shadow: 0 0 0 3px rgba(44,94,130,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; }
.form-message {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.form-message.success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #15803d;
}
.form-message.error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #b91c1c;
}

/* Contact Info */
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--baltic-sea), var(--blue-fusion));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-info-item h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.contact-info-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-info-item a { color: var(--baltic-sea); font-weight: 500; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-name { font-size: 1.2rem; }
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  line-height: 1.6;
  max-width: 280px;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.footer-contact-info a, .footer-contact-info span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-contact-info a:hover { color: var(--teal); }
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover {
  color: var(--teal);
  transform: translateX(4px);
}
.footer-services-list { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-services-list span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-copy a { color: rgba(255,255,255,0.45); }
.footer-copy a:hover { color: var(--teal); }

/* ── Scroll Animations ────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── 404 ──────────────────────────────────────────────────── */
.not-found { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem 1.5rem; }
.not-found-code { font-family: var(--font-head); font-size: 8rem; font-weight: 800; color: rgba(44,94,130,0.1); line-height: 1; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-3, .services-grid, .why-grid, .values-grid, .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-mission-grid, .service-pillar-grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-pillar:nth-child(even) .service-pillar-grid { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .engagement-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .site-nav.open { display: flex; }
  .site-nav a { font-size: 1.5rem; }
  .hamburger { display: flex; z-index: 1001; }
  .nav-cta { display: none; }

  .grid-3, .services-grid, .why-grid, .values-grid { grid-template-columns: 1fr; }
  .stats-bar .container { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .slider-arrow { display: none; }
  .section { padding: 3.5rem 0; }
  .section-lg { padding: 5rem 0; }
  .contact-form-wrap { padding: 2rem 1.5rem; }
  .about-visual-card { padding: 2rem 1.5rem; }
  .pillar-metrics { flex-direction: column; gap: 1rem; }
}

@media (max-width: 480px) {
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; justify-content: center; }
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.breadcrumb a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-head);
  font-weight: 500;
  transition: var(--transition);
}
.breadcrumb a:hover { color: rgba(255,255,255,0.75); }
.breadcrumb-sep { font-size: 0.65rem; color: rgba(255,255,255,0.2); }
.breadcrumb-current {
  font-size: 0.78rem;
  color: var(--teal);
  font-family: var(--font-head);
  font-weight: 600;
}

/* ── Service Detail Stats ─────────────────────────────────── */
.service-detail-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--cloud-dancer);
  border-bottom: 1px solid var(--border);
}
.service-detail-stat {
  padding: 2rem 2.5rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.service-detail-stat:last-child { border-right: none; }
.service-detail-stat-value {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--baltic-sea);
  line-height: 1;
  display: block;
}
.service-detail-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.45rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ── Feature Grid ─────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.feature-item:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-2px);
}
.feature-item-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(13,148,136,0.08), rgba(44,94,130,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  border: 1px solid rgba(13,148,136,0.15);
}
.feature-item h4 { font-size: 0.95rem; color: var(--hematite); margin-bottom: 0.3rem; }
.feature-item p { font-size: 0.875rem; line-height: 1.55; }

/* ── Related Services ─────────────────────────────────────── */
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.related-service-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-md);
  background: var(--cloud-dancer);
  border: 1px solid var(--border);
  text-decoration: none;
  display: block;
  transition: var(--transition);
}
.related-service-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.related-service-card-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.related-service-card h4 { font-size: 1rem; color: var(--hematite); margin-bottom: 0.4rem; }
.related-service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: 1rem;
  font-family: var(--font-head);
}
.arrow-link svg { width: 14px; height: 14px; transition: var(--transition); }
.related-service-card:hover .arrow-link svg { transform: translateX(3px); }

/* ── Service detail responsive ────────────────────────────── */
@media (max-width: 768px) {
  .service-detail-stats { grid-template-columns: 1fr; }
  .service-detail-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-grid { grid-template-columns: 1fr; }
  .related-services-grid { grid-template-columns: 1fr; }
}
