/* ── HERO ─────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 999px;
  background: rgba(34,197,94,0.08);
  margin-bottom: 1.75rem;
}

.hero-headline {
  font-size: clamp(3.2rem, 7vw, 6rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.grad-text {
  background: linear-gradient(135deg, var(--green), #10b981, var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-2);
  max-width: 56ch;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Proof bar */
.proof-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.proof-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
}

.proof-label {
  font-size: 0.78rem;
  color: var(--text-3);
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--line-strong);
}

/* Floating card */
.hero-float-card {
  position: absolute;
  bottom: 5rem;
  right: max(20px, calc(50% - 560px));
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.float-icon { font-size: 1.5rem; }

.float-label {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.float-sub {
  font-size: 0.75rem;
  color: var(--text-2);
}

/* ── PROBLEMS ─────────────────────────────────────────────── */
.problems-section {
  padding: 6rem 0;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.problem-card {
  padding: 2rem;
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s;
}

.problem-card:hover {
  border-color: rgba(239,68,68,0.3);
  transform: translateY(-4px);
  background: var(--red-dim);
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.problem-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.problem-card p {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── SERVICES ─────────────────────────────────────────────── */
.services-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, transparent, rgba(34,197,94,0.04), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.service-card {
  padding: 2.25rem;
  border-radius: var(--radius);
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34,197,94,0.3);
}

.service-featured {
  border-color: rgba(34,197,94,0.4);
  background: rgba(34,197,94,0.05);
  box-shadow: 0 0 0 1px rgba(34,197,94,0.15), var(--shadow-sm);
}

.featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #030f06;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  white-space: nowrap;
}

.service-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-3);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.service-icon-wrap {
  font-size: 2.2rem;
  margin-bottom: 1.1rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.service-card > p {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.service-list li {
  font-size: 0.88rem;
  color: var(--text-2);
  padding-left: 1.25rem;
  position: relative;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ── PROCESS ──────────────────────────────────────────────── */
.process-section {
  padding: 6rem 0;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.process-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--amber));
  margin-top: 2.2rem;
  opacity: 0.3;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 260px;
  gap: 1rem;
}

.step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── FEATURED WORK ────────────────────────────────────────── */
.featured-section {
  padding: 6rem 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.55fr;
  gap: 1.25rem;
}

.featured-card {
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  transition: transform 0.3s, border-color 0.3s;
  cursor: pointer;
}

.featured-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
}

.featured-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.featured-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  transition: transform 0.5s ease;
}

.featured-card:hover .featured-img {
  transform: scale(1.05);
}

.featured-img--mcdesign {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #2d1a4a 100%);
}

.featured-img--renes {
  background: linear-gradient(135deg, #0a1a0a 0%, #1a3a1a 50%, #0d4b0d 100%);
}

.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.featured-card:hover .featured-overlay { opacity: 1; }

.featured-live {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 1rem;
  background: var(--green);
  color: #030f06;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.featured-info {
  padding: 1.25rem;
}

.feat-tag {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.featured-info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.featured-info p {
  font-size: 0.82rem;
  color: var(--text-2);
}

/* See more card */
.see-more-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(34,197,94,0.06), rgba(245,158,11,0.04));
  border-color: rgba(34,197,94,0.2);
}

.see-more-inner {
  text-align: center;
  padding: 2rem 1.5rem;
}

.see-more-icon {
  width: 56px; height: 56px;
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green);
  margin: 0 auto 1.25rem;
  transition: background 0.2s;
}

.see-more-card:hover .see-more-icon {
  background: var(--green-dim);
}

.see-more-inner h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.see-more-inner p { font-size: 0.82rem; color: var(--text-2); }

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

/* ── PIPELINE TEASER ──────────────────────────────────────── */
.pipeline-teaser-section {
  padding: 5rem 0;
}

.teaser-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3.5rem;
  border-radius: var(--radius-lg);
}

.teaser-content .eyebrow { margin-bottom: 0.75rem; }
.teaser-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.teaser-content > p { color: var(--text-2); margin-bottom: 2rem; line-height: 1.7; }

.teaser-features {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.teaser-feat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.93rem;
}

.feat-icon {
  width: 22px; height: 22px;
  background: var(--green-dim);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Mini CRM preview */
.mini-crm {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.mini-crm-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 1.25rem;
  font-family: 'IBM Plex Mono', monospace;
}

.mini-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
}

.mini-dot.active {
  background: var(--green);
  box-shadow: 0 0 8px var(--green-glow);
}

.mini-lead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 0.6rem;
  transition: border-color 0.2s;
}

.mini-lead:last-child { margin-bottom: 0; }
.mini-lead:hover { border-color: var(--line-strong); }

.mini-lead-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.mini-lead-info strong { font-size: 0.88rem; }

.mini-tag {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'IBM Plex Mono', monospace;
}

.mini-tag.ready   { background: var(--green-dim); color: var(--green); }
.mini-tag.callback { background: var(--amber-dim); color: var(--amber); }
.mini-tag.interested { background: rgba(139,92,246,0.15); color: #a78bfa; }

.mini-score {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-3);
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-section {
  padding: 6rem 0;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  padding: 3.5rem;
  border-radius: var(--radius-lg);
}

.contact-content .eyebrow { margin-bottom: 0.75rem; }
.contact-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.contact-content p { color: var(--text-2); line-height: 1.7; }

.contact-form {
  display: grid;
  gap: 1.1rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.93rem;
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-dim);
}

.contact-form textarea { resize: none; }

.contact-form .btn { width: 100%; margin-top: 0.25rem; }

.form-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 0.25rem;
}

.contact-success {
  text-align: center;
  padding: 3rem;
}

.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.contact-success h3 { margin-bottom: 0.75rem; }
.contact-success p { color: var(--text-2); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .see-more-card { display: none; }
  .contact-card { grid-template-columns: 1fr; gap: 2.5rem; }
  .teaser-card { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .hero-section { padding: 7rem 0 4rem; }
  .hero-float-card { display: none; }
  .problems-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .process-connector { width: 2px; height: 40px; background: linear-gradient(180deg, var(--green), var(--amber)); }
  .process-step { flex-direction: row; text-align: left; max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .teaser-card { padding: 2rem; }
  .contact-card { padding: 2rem; }
}
