/* ===== HolmanAds Website Draft — Extra Styles ===== */
/* Layered on top of styles.css                       */

/* ===== Platforms Strip ===== */
.platforms {
  padding: 40px 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border-lt);
}

.platforms-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.platforms-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-bg);
  transition: var(--transition);
  letter-spacing: 0.02em;
  cursor: default;
}

.platform-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: var(--transition);
}

.platform-badge:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-lt);
}

.platform-badge:hover svg {
  opacity: 1;
}

/* ===== Service Icons ===== */
.service-icon {
  width: 36px;
  height: 36px;
  color: var(--color-accent);
  margin-bottom: 16px;
  display: block;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  color: var(--color-terra);
  transform: scale(1.1) rotate(-3deg);
}

/* ===== Industry Icons ===== */
.industry-icon-svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: var(--transition);
  opacity: 0.8;
}

.industry-item:hover .industry-icon-svg {
  color: var(--color-terra);
  opacity: 1;
  transform: scale(1.15);
}

/* ===== Process Timeline Connector ===== */
.process-connector {
  position: relative;
}

.process-connector::before {
  content: '';
  position: absolute;
  top: 50px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(74, 124, 89, 0.25) 10%,
    rgba(74, 124, 89, 0.25) 90%,
    transparent
  );
  pointer-events: none;
  z-index: 0;
}

.process-connector::after {
  content: '';
  position: absolute;
  top: 50px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(74, 124, 89, 0.5) 10%,
    rgba(74, 124, 89, 0.5) 90%,
    transparent
  );
  pointer-events: none;
  z-index: 0;
  animation: connectorPulse 3s ease-in-out infinite;
}

@keyframes connectorPulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.process-step {
  position: relative;
  z-index: 1;
}

/* Step number dot indicator on the connector line */
.step-number::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.4;
  margin-top: 8px;
  transition: var(--transition);
}

.process-step:hover .step-number::after {
  opacity: 1;
  transform: scale(1.3);
}

/* ===== Results Section ===== */
.results {
  padding: 120px 0;
  background: var(--color-ink);
  position: relative;
  overflow: hidden;
}

.results::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(74, 124, 89, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.results .section-label {
  color: var(--color-accent);
}

.results-title {
  color: #EDE8E0;
}

.results-title em {
  color: var(--color-terra);
  font-style: italic;
}

.results-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.results-text .section-label {
  display: inline-block;
  margin-bottom: 16px;
}

.results-intro {
  color: rgba(201, 185, 154, 0.65);
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 24px;
  margin-bottom: 36px;
}

.results-cta {
  display: inline-flex;
}

/* Metrics list */
.results-metrics {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.result-metric {}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 16px;
}

.result-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(237, 232, 224, 0.75);
  letter-spacing: 0.01em;
}

.result-icon {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.result-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.result-bar-track {
  width: 100%;
  height: 5px;
  background: rgba(237, 232, 224, 0.07);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.result-bar-fill {
  height: 100%;
  border-radius: 3px;
  width: 0%;
  background: linear-gradient(to right, var(--color-accent), var(--color-terra));
  transition: width 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-note {
  font-size: 0.78rem;
  color: rgba(201, 185, 154, 0.4);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* ===== Responsive Additions ===== */
@media (max-width: 1024px) {
  .results-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-connector::before,
  .process-connector::after {
    display: none;
  }

  .step-number::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .platforms {
    padding: 32px 0;
  }

  .platforms-grid {
    gap: 8px;
  }

  .platform-badge {
    font-size: 0.78rem;
    padding: 8px 14px;
  }

  .results {
    padding: 80px 0;
  }

  .result-value {
    font-size: 1.25rem;
  }
}
