/* ── HERO ──────────────────────────────────────────────── */
.hero-section {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 4rem;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-2);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 1.25rem;
}
.hero-name {
  font-family: var(--font-sans);
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-2);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.badge {
  font-size: 12px;
  color: var(--green);
  background: var(--green-2);
  border: 1px solid #C4D9CA;
  border-radius: 100px;
  padding: 4px 12px;
}
.hero-photo-wrap { flex-shrink: 0; }
.hero-photo {
  width: 480px;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
}

/* ── STATS DASHBOARD ───────────────────────────────────── */
.stats-section {
  padding: 80px 0;
  background: #111110;
}
.stats-section .section-label {
  color: rgba(255,255,255,0.3);
  margin-bottom: 2.5rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-card {
  position: relative;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.07);
  margin: -1px 0 0 -1px;
  opacity: 0;
  animation: statFadeUp 0.6s ease forwards;
  cursor: default;
  transition: background 0.2s ease;
}
.stat-card:hover {
  background: rgba(255,255,255,0.04);
}
@keyframes statFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.stat-value {
  font-family: var(--font-sans);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.45;
  max-width: 160px;
}
/* accent line on hover */
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 2rem; right: 2rem;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.stat-card:hover::after { transform: scaleX(1); }

/* ── ABOUT ─────────────────────────────────────────────── */
.about-section { background: var(--green-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 4rem;
  align-items: start;
}
.about-text p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-facts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-2);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
}
.fact-icon { font-size: 16px; flex-shrink: 0; }

/* ── ACCELERATORS ──────────────────────────────────────── */
.accel-section { background: var(--bg); }
.accel-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.accel-tag {
  font-size: 13px;
  color: var(--text-2);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  transition: all var(--transition);
}
.accel-tag:hover { border-color: var(--border-2); color: var(--text); }
.accel-featured {
  color: var(--green);
  background: var(--green-2);
  border-color: transparent;
}

/* ── CLIENTS ───────────────────────────────────────────── */
.clients-section { background: var(--green-2); }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}
.client-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.client-card:hover {
  border-color: var(--border-2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.client-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.client-role { font-size: 13px; color: var(--text-3); line-height: 1.4; }

/* ── BLOG ──────────────────────────────────────────────── */
.blog-section { background: var(--bg); }
.blog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  border-color: var(--border-2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.blog-card-meta { display: flex; align-items: center; gap: 10px; }
.blog-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-2);
  border-radius: 100px;
  padding: 3px 10px;
}
.blog-date { font-size: 12px; color: var(--text-3); }
.blog-card-title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}
.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  flex: 1;
}
.blog-read-more {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-top: 4px;
  transition: opacity var(--transition);
}
.blog-read-more:hover { opacity: 0.7; }

/* ── CALENDAR ──────────────────────────────────────────── */
.calendar-section { background: var(--text); }
.calendar-cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.calendar-cta-title {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.calendar-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  line-height: 1.6;
}
.calendar-section .section-label { color: rgba(255,255,255,0.3); margin-bottom: 1rem; }
.calendar-cta-btn {
  font-size: 15px;
  padding: 14px 28px;
  white-space: nowrap;
  flex-shrink: 0;
  background: var(--accent);
  border-color: var(--accent);
}

/* ── CONTACT ───────────────────────────────────────────── */
.contact-section { background: var(--bg); }
.contact-grid { display: flex; gap: 4rem; flex-wrap: wrap; }
.contact-block { display: flex; flex-direction: column; gap: 10px; }
.contact-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.contact-value {
  font-size: 18px;
  color: var(--text);
  transition: color var(--transition);
}
.contact-value:hover { color: var(--accent); }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  font-size: 14px;
  color: var(--text-2);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.social-link:hover {
  color: var(--text);
  border-color: var(--border-2);
  background: var(--bg-alt);
}

/* ── FOOTER ────────────────────────────────────────────── */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 13px;
  color: var(--text-3);
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-inner { grid-template-columns: 1fr 380px; }
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo-wrap { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .nav-hamburger { display: flex; }
  .blog-header { flex-direction: column; }
  .calendar-cta-block { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .calendar-cta-btn { width: 100%; justify-content: center; }
}
@media (max-width: 560px) {
  section { padding: 56px 0; }
  .container { padding: 0 1.25rem; }
  .hero-section { padding: calc(var(--nav-h) + 48px) 0 48px; }
  .hero-name { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-badges { gap: 6px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { padding: 1.25rem 1rem; }
  .stat-value { font-size: 28px; }
  .stat-label { font-size: 12px; }
  .about-facts { gap: 8px; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { flex-direction: column; gap: 2rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .calendar-cta-title { font-size: 24px; }
}
