/*
 * Skopos Partners - Landing Page Stylesheet
 * Optimized, pure CSS. Respects brand tokens from identity manual.
 */

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

body.skopos-body {
  font-family: var(--skopos-font-display, 'Plus Jakarta Sans', system-ui, sans-serif);
  color: #1E293B;
  background-color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.skopos-container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Typography Helpers */
.highlight-emerald {
  color: var(--skopos-emerald, #16C784);
}

.text-center {
  text-align: center;
}

/* Header */
.skopos-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 42, 58, 0.08);
  transition: background-color 0.2s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.skopos-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.skopos-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-link:hover {
  color: var(--skopos-emerald, #16C784);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  background: #F1F5F9;
  border-radius: 20px;
  padding: 4px 8px;
  border: 1px solid #E2E8F0;
}

.lang-btn {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 700;
  color: #64748B;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 12px;
  transition: all 0.15s ease;
}

.lang-btn.active {
  background: #1B2A3A;
  color: #FFFFFF;
}

.lang-divider {
  color: #CBD5E1;
  font-size: 12px;
  margin: 0 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-emerald {
  background-color: var(--skopos-emerald, #16C784);
  color: #0B131B;
}

.btn-emerald:hover {
  background-color: #13ad73;
  transform: translateY(-1px);
}

.btn-emerald-outline {
  background: transparent;
  color: #1B2A3A;
  border: 1.5px solid rgba(27, 42, 58, 0.25);
}

.btn-emerald-outline:hover {
  border-color: #16C784;
  color: #16C784;
}

.btn-outline {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  font-size: 13px;
  padding: 8px 16px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #16C784;
  border-radius: 50%;
  margin-right: 8px;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(22, 199, 132, 0.2);
}

/* Sections Common */
.skopos-section {
  padding: 96px 0;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 64px auto;
}

.sub-badge {
  display: inline-block;
  font-family: var(--skopos-font-mono, monospace);
  font-size: 12px;
  font-weight: 600;
  color: #16C784;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  color: #1B2A3A;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 18px;
  color: #64748B;
  line-height: 1.6;
}

/* Hero Section */
.section-hero {
  position: relative;
  background-color: #1B2A3A;
  color: #FFFFFF;
  padding: 120px 0 100px 0;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 960px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22, 199, 132, 0.12);
  border: 1px solid rgba(22, 199, 132, 0.3);
  color: #16C784;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--skopos-font-mono, monospace);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #16C784;
  border-radius: 50%;
}

.hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 20px;
  color: #CBD5E1;
  max-width: 820px;
  margin: 0 auto 36px auto;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* Hero Showcase Card (Apple Tech Display Style) */
.hero-showcase-card {
  margin-top: 10px;
  margin-bottom: 48px;
  background: #0B131B;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5);
  text-align: left;
}

.showcase-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red { background: #EF4444; }
.dot-amber { background: #F59E0B; }
.dot-green { background: #10B981; }

.showcase-caption {
  font-family: var(--skopos-font-mono, monospace);
  font-size: 11px;
  color: #64748B;
  letter-spacing: 1px;
  margin-left: 12px;
}

.showcase-status {
  display: flex;
  align-items: center;
  font-family: var(--skopos-font-mono, monospace);
  font-size: 11px;
  color: #16C784;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
}

@media (max-width: 860px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

.showcase-img-wrap {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 19, 27, 0.95) 0%, rgba(11, 19, 27, 0.3) 60%, transparent 100%);
}

.showcase-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(11, 19, 27, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 6px;
  font-family: var(--skopos-font-mono, monospace);
  font-size: 11px;
  color: #E2E8F0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tag-dot {
  width: 6px;
  height: 6px;
  background: #16C784;
  border-radius: 50%;
}

.showcase-telemetry {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #0B131B;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.telemetry-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--skopos-font-mono, monospace);
  font-size: 11px;
  color: #16C784;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.telemetry-title {
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.telemetry-desc {
  font-size: 13px;
  color: #94A3B8;
  line-height: 1.5;
  margin-bottom: 20px;
}

.telemetry-metrics {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 12px 16px;
}

.telemetry-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #CBD5E1;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.telemetry-row:last-child {
  border-bottom: none;
}

.hero-metrics-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 28px;
  background: rgba(11, 19, 27, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.metric-val {
  font-size: 28px;
  font-weight: 800;
  color: #16C784;
  margin-bottom: 4px;
}

.metric-lbl {
  font-size: 13px;
  color: #94A3B8;
  line-height: 1.35;
}

/* About Section */
.section-about {
  background-color: #F8FAFC;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.card {
  background: #FFFFFF;
  border: 1px solid rgba(27, 42, 58, 0.08);
  border-radius: 8px;
  padding: 36px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(27, 42, 58, 0.05);
}

.card-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(22, 199, 132, 0.12);
  color: #16C784;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-title {
  font-size: 22px;
  font-weight: 800;
  color: #1B2A3A;
  margin-bottom: 12px;
}

.card-text {
  font-size: 16px;
  color: #64748B;
  line-height: 1.6;
}

/* Methodology */
.methodology-box {
  background: #FFFFFF;
  border: 1px solid rgba(27, 42, 58, 0.08);
  border-radius: 8px;
  padding: 40px;
}

.methodology-title {
  font-size: 22px;
  font-weight: 800;
  color: #1B2A3A;
  text-align: center;
  margin-bottom: 32px;
}

.methodology-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  padding: 24px;
  background: #F8FAFC;
  border-radius: 6px;
  border-left: 3px solid #16C784;
}

.step-num {
  font-family: var(--skopos-font-mono, monospace);
  font-size: 24px;
  font-weight: 800;
  color: #16C784;
  margin-bottom: 8px;
}

.step-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1B2A3A;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.5;
}

/* Experience & Pillars */
.section-experience {
  background-color: #FFFFFF;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.pillar-card {
  background: #0B131B;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 40px;
}

.pillar-tag {
  display: inline-block;
  font-family: var(--skopos-font-mono, monospace);
  font-size: 12px;
  font-weight: 700;
  color: #16C784;
  background: rgba(22, 199, 132, 0.15);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.pillar-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}

.pillar-subtitle {
  font-size: 16px;
  color: #16C784;
  font-weight: 600;
  margin-bottom: 16px;
}

.pillar-card p {
  font-size: 15px;
  color: #94A3B8;
  margin-bottom: 20px;
  line-height: 1.6;
}

.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillar-list li {
  font-size: 14px;
  color: #E2E8F0;
  position: relative;
  padding-left: 20px;
}

.pillar-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #16C784;
  font-weight: 800;
}

/* Apple Keynote Style Pillars */
.pillars-apple-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .pillars-apple-grid {
    grid-template-columns: 1fr;
  }
}

.pillar-apple-card {
  position: relative;
  background: #0B131B;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.pillar-apple-card:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 199, 132, 0.4);
}

.pillar-apple-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.apple-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--skopos-font-mono, monospace);
  font-size: 11px;
  font-weight: 700;
  color: #16C784;
  background: rgba(22, 199, 132, 0.1);
  border: 1px solid rgba(22, 199, 132, 0.25);
  padding: 5px 12px;
  border-radius: 20px;
}

.apple-pill-dot {
  width: 6px;
  height: 6px;
  background: #16C784;
  border-radius: 50%;
}

.apple-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.apple-pretitle {
  font-family: var(--skopos-font-mono, monospace);
  font-size: 13px;
  font-weight: 700;
  color: #16C784;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.apple-headline {
  font-size: 32px;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.apple-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #94A3B8;
  margin-bottom: 16px;
}

.apple-desc {
  font-size: 15px;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 24px;
}

.apple-schematic-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
  font-family: var(--skopos-font-mono, monospace);
}

.schematic-header {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #94A3B8;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.schematic-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #E2E8F0;
  margin-bottom: 8px;
}

.schematic-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.schematic-progress {
  height: 100%;
  background: linear-gradient(90deg, #16C784, #10B981);
}

.schematic-sub {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #64748B;
}

.apple-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

.spec-col {
  padding: 6px 0;
}

.spec-val {
  font-size: 18px;
  font-weight: 800;
  color: #16C784;
}

.spec-lbl {
  font-size: 12px;
  font-weight: 600;
  color: #E2E8F0;
}

.spec-sub {
  font-size: 10px;
  color: #64748B;
  font-family: var(--skopos-font-mono, monospace);
}

.pillar-apple-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillar-apple-list li {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.4;
}

.quote-banner {
  background: #F1F5F9;
  border-left: 4px solid #16C784;
  padding: 32px;
  border-radius: 0 8px 8px 0;
  text-align: center;
}

.quote-text {
  font-size: 18px;
  font-style: italic;
  color: #1B2A3A;
  margin-bottom: 12px;
}

.quote-author {
  font-size: 14px;
  font-weight: 700;
  color: #64748B;
}

/* Services Section */
.section-services {
  background-color: #F8FAFC;
}

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

.service-card {
  background: #FFFFFF;
  border: 1px solid rgba(27, 42, 58, 0.08);
  border-radius: 8px;
  padding: 36px;
  transition: all 0.2s ease;
}

.service-card:hover {
  border-color: #16C784;
  transform: translateY(-2px);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: #1B2A3A;
  color: #16C784;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-title {
  font-size: 22px;
  font-weight: 800;
  color: #1B2A3A;
  margin-bottom: 8px;
}

.service-sub {
  font-size: 14px;
  font-weight: 600;
  color: #16C784;
  margin-bottom: 14px;
}

.service-desc {
  font-size: 15px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tags span {
  font-size: 12px;
  font-family: var(--skopos-font-mono, monospace);
  background: #F1F5F9;
  color: #334155;
  padding: 4px 10px;
  border-radius: 4px;
}

/* Sectors Grid */
.section-sectors {
  background: #FFFFFF;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sector-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 24px;
}

.sector-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: #1B2A3A;
  margin-bottom: 10px;
}

.sector-card p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.5;
  margin-bottom: 16px;
}

.sector-stat {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: #16C784;
  font-family: var(--skopos-font-mono, monospace);
  background: rgba(22, 199, 132, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

/* Contact Section */
.section-contact {
  background: #0B131B;
  color: #FFFFFF;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info .sub-badge {
  color: #16C784;
}

.contact-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.25;
}

.contact-lead {
  font-size: 17px;
  color: #94A3B8;
  margin-bottom: 36px;
  line-height: 1.6;
}

.direct-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.channel-card {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 8px;
}

.channel-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon.whatsapp-color {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}

.channel-title {
  font-size: 13px;
  font-weight: 600;
  color: #94A3B8;
  margin-bottom: 4px;
}

.channel-link {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  text-decoration: none;
  display: block;
}

.channel-link:hover {
  color: #16C784;
}

.channel-hint {
  font-size: 12px;
  color: #64748B;
}

/* Contact Form */
.contact-form-card {
  background: #121E2A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #CBD5E1;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: #0B131B;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.15s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #16C784;
}

.form-consent {
  margin-bottom: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #94A3B8;
  cursor: pointer;
}

.checkbox-label input {
  margin-top: 3px;
}

.btn-link-legal {
  background: none;
  border: none;
  color: #16C784;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

.form-success-box {
  background: rgba(22, 199, 132, 0.1);
  border: 1px solid #16C784;
  border-radius: 6px;
  padding: 24px;
  text-align: center;
}

.success-icon {
  width: 48px;
  height: 48px;
  background: #16C784;
  color: #0B131B;
  font-size: 24px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

/* Footer */
.skopos-footer {
  background: #070D13;
  color: #94A3B8;
  padding: 64px 0 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-tagline {
  font-size: 14px;
  color: #64748B;
  margin-top: 16px;
  line-height: 1.6;
}

.footer-col-title {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-col a,
.footer-link-btn {
  color: #94A3B8;
  text-decoration: none;
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.footer-nav-col a:hover,
.footer-link-btn:hover {
  color: #16C784;
}

.compliance-badge {
  display: inline-block;
  font-size: 11px;
  font-family: var(--skopos-font-mono, monospace);
  color: #16C784;
  background: rgba(22, 199, 132, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-contact-info {
  display: flex;
  gap: 20px;
}

.footer-contact-info a {
  color: #CBD5E1;
  text-decoration: none;
}

/* Modal LFDPDPPP */
.skopos-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.skopos-modal-content {
  background: #FFFFFF;
  color: #1E293B;
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px;
  border-bottom: 1px solid #E2E8F0;
}

.modal-badge {
  font-family: var(--skopos-font-mono, monospace);
  font-size: 11px;
  font-weight: 700;
  color: #16C784;
}

.modal-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: #1B2A3A;
  margin-top: 4px;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #64748B;
  cursor: pointer;
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.6;
}

.legal-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1B2A3A;
  margin: 16px 0 6px 0;
}

.legal-text ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid #E2E8F0;
  display: flex;
  justify-content: flex-end;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.mobile-toggle .bar {
  width: 22px;
  height: 2px;
  background: #1B2A3A;
  transition: all 0.2s;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .skopos-nav {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-metrics-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid,
  .pillars-grid,
  .services-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .methodology-steps {
    grid-template-columns: 1fr;
  }
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .hero-metrics-bar {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .sectors-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
