/* ═══════════════════════════════════════
   Content Sections — Problem through Contact
═══════════════════════════════════════ */

/* ── PROBLEM SECTION ── */

#problem { background: var(--off-black); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
}

.problem-card {
  background: var(--off-black);
  padding: 40px;
  position: relative;
  transition: background 0.4s;
}

.problem-card:hover { background: var(--dark); }

.problem-num {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 200;
  color: rgba(0, 200, 150, 0.08);
  position: absolute;
  top: 20px;
  right: 30px;
  line-height: 1;
}

.problem-icon-wrap {
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.problem-card:hover .problem-icon-wrap {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px var(--glow);
}

.problem-icon-wrap svg { width: 20px; height: 20px; stroke: var(--steel-light); fill: none; }
.problem-title { font-size: 16px; font-weight: 500; color: var(--white); margin-bottom: 10px; }
.problem-desc { font-size: 14px; color: var(--steel); line-height: 1.6; }


/* ═══════════════════════════════════════
   MODULES / SYSTEM SECTION (Soluția)
═══════════════════════════════════════ */

#system { background: var(--black); }

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

.module-card {
  padding: 36px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s;
}

.module-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.module-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.module-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0 20px;
  background: rgba(255, 255, 255, 0.03);
}

.module-title { font-size: 18px; font-weight: 500; color: var(--white); margin-bottom: 10px; }
.module-desc { font-size: 14px; color: var(--steel); line-height: 1.7; margin-bottom: 20px; }

.module-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.module-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--steel-mid);
  line-height: 1.5;
}

.module-features li::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
  opacity: 0.6;
}

.module-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(0, 200, 150, 0.06);
  border: 1px solid rgba(0, 200, 150, 0.25);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.06em;
}

.module-stat::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.7;
}


/* ═══════════════════════════════════════
   DEMO / FLOW SECTION
═══════════════════════════════════════ */

#demo { background: var(--off-black); }

.flow-container {
  position: relative;
  margin-top: 80px;
  padding: 60px 0;
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.flow-line {
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--steel-dark);
  overflow: hidden;
}

.flow-line-fill {
  width: 100%;
  background: linear-gradient(to bottom, var(--steel), var(--steel-mid));
  height: 0;
  transition: height 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.flow-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.flow-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.step-node {
  width: 54px;
  height: 54px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-black);
  flex-shrink: 0;
  transition: all 0.4s;
}

.flow-step:hover .step-node {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 24px var(--glow);
}

.step-node svg { width: 20px; height: 20px; stroke: var(--steel-light); fill: none; }

.step-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--steel);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.step-title { font-size: 16px; font-weight: 500; color: var(--white); margin-bottom: 6px; }
.step-desc { font-size: 14px; color: var(--steel); }


/* ═══════════════════════════════════════
   INDUSTRIES SECTION
═══════════════════════════════════════ */

#industries { background: var(--black); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.industry-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.industry-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.industry-card.open { border-color: rgba(255, 255, 255, 0.18); }

.industry-card:active {
  transform: scale(0.98);
  transition: transform 0.1s;
}

@media (hover: none) {
  .industry-card { -webkit-tap-highlight-color: transparent; }
}

.industry-head { padding: 32px 28px 28px; position: relative; }

.industry-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 6px;
}

.industry-sub { font-size: 12px; color: var(--steel); letter-spacing: 0.04em; }

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.industry-tag {
  padding: 3px 10px;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--steel-mid);
  letter-spacing: 0.08em;
}

.industry-toggle {
  position: absolute;
  top: 28px;
  right: 24px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.industry-card:hover .industry-toggle {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.industry-toggle svg { width: 12px; height: 12px; stroke: var(--steel-light); fill: none; stroke-width: 2; }

.industry-bg-num {
  position: absolute;
  bottom: -14px;
  right: -8px;
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 200;
  color: rgba(0, 200, 150, 0.07);
  line-height: 1;
  pointer-events: none;
}


/* ═══════════════════════════════════════
   TECHNOLOGY SECTION
═══════════════════════════════════════ */

#technology { background: var(--off-black); }

.ai-tools-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.tool-card {
  padding: 28px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--steel-light), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.tool-card:hover {
  background: var(--glass-hover);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 30px var(--glow);
}

.tool-card:hover::before { opacity: 1; }

.tool-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}

.tool-card:hover .tool-icon {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px var(--glow);
}

.tool-icon svg { width: 22px; height: 22px; stroke: var(--steel-light); fill: none; }
.tool-name { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 6px; }
.tool-desc { font-size: 11px; color: var(--steel); line-height: 1.5; }

.tool-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 11px;
  color: var(--white);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 10;
}

.tool-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--glass-border);
}

.tool-card:hover .tool-tooltip { opacity: 1; }

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
}

.tech-badge {
  padding: 8px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--steel-mid);
  letter-spacing: 0.1em;
  transition: all 0.3s;
}

.tech-badge:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}


/* ═══════════════════════════════════════
   RESULTS & ROI SECTION
═══════════════════════════════════════ */

#results { background: var(--black); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 80px;
}

.stat-item {
  padding: 48px 36px;
  background: var(--black);
  text-align: center;
  transition: background 0.3s;
}

.stat-item:hover { background: var(--dark); }

.stat-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 200;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.stat-label { font-size: 13px; color: var(--steel); }

/* ── ROI Calculator ── */
.roi-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
  margin-top: 56px;
}

.roi-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}

.roi-ind-btn {
  padding: 10px 8px;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  background: none;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--steel);
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
  line-height: 1.3;
}

.roi-ind-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--steel-light);
  background: rgba(255, 255, 255, 0.04);
}

.roi-ind-btn.active {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.roi-header { margin-bottom: 28px; }
.roi-header h3 { font-size: 20px; font-weight: 400; color: var(--white); margin-bottom: 6px; }
.roi-header p { font-size: 13px; color: var(--steel); line-height: 1.6; }

/* Sliders */
.slider-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.slider-row input[type="range"] { flex: 1; }

.roi-number-input {
  display: none;
}

.slider-group { margin-bottom: 26px; }

.slider-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.slider-label span { font-size: 12px; color: var(--steel-light); }

.slider-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
}

.slider-unit { font-size: 12px; color: var(--steel); margin-left: 3px; }

input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 1px;
  background: var(--steel-dark);
  border-radius: 1px;
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.25); }

/* Result panel */
.roi-result {
  background: rgba(5, 5, 12, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 36px 32px;
  position: sticky;
  top: 120px;
}

.roi-result-header {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.roi-result-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.roi-big-number {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 200;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.roi-big-label { font-size: 12px; color: var(--steel); margin-bottom: 28px; }

.roi-metrics {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  margin-bottom: 24px;
}

.roi-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.roi-metric-row:last-child { border-bottom: none; }
.roi-metric-name { font-size: 12px; color: var(--steel); }

.roi-metric-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
}

.roi-metric-val.highlight { color: var(--accent); }

/* Industry insight */
.roi-insight {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 24px;
}

.roi-insight-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--steel);
  margin-bottom: 8px;
}

.roi-insight-text { font-size: 12px; color: var(--steel-light); line-height: 1.6; }

/* Email capture */
.roi-email-section {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 22px;
}

.roi-email-label { font-size: 12px; color: var(--steel-light); margin-bottom: 14px; line-height: 1.5; }
.roi-email-row { display: flex; gap: 8px; }

.roi-email-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 13px;
  color: var(--white);
  outline: none;
  font-family: var(--font-body);
  transition: border-color 0.25s;
}

.roi-email-input::placeholder { color: var(--steel); }
.roi-email-input:focus { border-color: rgba(255, 255, 255, 0.28); }

.roi-email-btn {
  padding: 11px 18px;
  background: var(--white);
  color: var(--black);
  border: none;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s;
  font-family: var(--font-body);
}

.roi-email-btn:hover { background: rgba(255, 255, 255, 0.88); transform: translateY(-1px); }
.roi-email-btn:disabled { opacity: 0.5; cursor: default; transform: none; }

.roi-email-success {
  display: none;
  font-size: 12px;
  color: var(--steel-light);
  text-align: center;
  padding: 10px 0;
  line-height: 1.6;
}

.roi-email-success.visible { display: block; }


/* ═══════════════════════════════════════
   IMPLEMENTATION / TIMELINE SECTION
═══════════════════════════════════════ */

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 64px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  z-index: 0;
}

.timeline-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 28px;
  align-items: start;
  padding-bottom: 52px;
  position: relative;
}

.timeline-step:last-child { padding-bottom: 0; }

.timeline-node {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 14, 0.95);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: border-color 0.4s;
}

.timeline-node svg { width: 18px; height: 18px; stroke: var(--steel-light); fill: none; stroke-width: 1.5; }

.timeline-step:hover .timeline-node {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.timeline-content { padding-top: 10px; }

.timeline-phase {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.timeline-desc {
  font-size: 13px;
  color: var(--steel);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 560px;
}

.timeline-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.timeline-detail {
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 100px;
  font-size: 11px;
  color: var(--steel-mid);
  background: rgba(255, 255, 255, 0.03);
}

.timeline-duration {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--steel);
  letter-spacing: 0.12em;
  opacity: 0.7;
}


/* ═══════════════════════════════════════
   TESTIMONIALS SECTION
═══════════════════════════════════════ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.13);
  transform: translateY(-3px);
}

.testimonial-metric {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.metric-val {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 200;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.testimonial-metric span:last-child { font-size: 11px; color: var(--steel); letter-spacing: 0.04em; }

.testimonial-quote {
  font-size: 13px;
  color: var(--steel-light);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 48px;
  color: rgba(255, 255, 255, 0.08);
  display: block;
  line-height: 0.8;
  margin-bottom: 12px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 2px; }
.testimonial-role { font-size: 11px; color: var(--steel); }

.testimonial-company {
  margin-left: auto;
  padding: 3px 10px;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--steel-mid);
  white-space: nowrap;
}


/* ═══════════════════════════════════════
   CTA SECTION — Momentul Deciziei
═══════════════════════════════════════ */

#cta { position: relative; overflow: hidden; }

.cta-bg-text {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 200px);
  font-weight: 200;
  color: rgba(255, 255, 255, 0.025);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
  user-select: none;
}

.cta-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 200;
  color: var(--white);
  line-height: 1.15;
  margin: 20px 0 24px;
}

.cta-desc {
  font-size: 15px;
  color: var(--steel-light);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 48px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.cta-proof {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.cta-proof-item { text-align: center; }

.cta-proof-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 200;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

.cta-proof-label { font-size: 11px; color: var(--steel); letter-spacing: 0.06em; }


/* ═══════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════ */

#contact { background: rgba(2, 2, 6, 0.82) !important; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.contact-info-block { padding-top: 8px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-detail:last-child { border-bottom: none; }

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.03);
}

.contact-detail-icon svg { width: 15px; height: 15px; stroke: var(--steel-light); fill: none; stroke-width: 1.5; }
.contact-detail-text { font-size: 13px; color: var(--steel-light); }
.contact-detail-text a { color: var(--steel-light); text-decoration: none; }
.contact-detail-text a:hover { color: var(--white); }

.contact-promise {
  margin-top: 32px;
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
}

.contact-promise-title {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 14px;
}

.contact-promise-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--steel-light);
  line-height: 1.55;
  padding: 6px 0;
}

.contact-promise-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
  width: 18px;
}

/* ── Form Card ── */
.contact-form-card {
  background: rgba(5, 5, 12, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 40px 36px;
}

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

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.cf-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}

.cf-input, .cf-select, .cf-textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 13px;
  color: var(--white);
  outline: none;
  font-family: var(--font-body);
  transition: border-color 0.25s;
  width: 100%;
  box-sizing: border-box;
}

.cf-input::placeholder, .cf-textarea::placeholder { color: var(--steel); }
.cf-input:focus, .cf-select:focus, .cf-textarea:focus { border-color: rgba(255, 255, 255, 0.25); }

.cf-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.cf-select option { background: var(--dark); color: var(--white); }
.cf-textarea { resize: vertical; min-height: 92px; line-height: 1.6; }

.cf-submit {
  width: 100%;
  padding: 15px;
  min-height: 48px;
  background: var(--accent);
  color: var(--black);
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.25s;
  margin-top: 6px;
  letter-spacing: 0.01em;
}

.cf-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 200, 150, 0.2);
}
