/* ================================================================
   WhartonBrein — components.css
   Design system: Precision Tech
   Fraunces (display) + Plus Jakarta Sans (UI)
   White / Deep Navy / Amber accent
   ================================================================ */

/* ── Skip Link ──────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.6em 1.2em;
  background: var(--accent-color);
  color: #ffffff;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* ── Section Label ──────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-text);
  margin-bottom: 0.85rem;
}

/* On dark backgrounds amber reads well (6.1:1 contrast) */
.hero .section-label,
.services-section .section-label,
.cta-section .section-label,
.page-hero .section-label {
  color: var(--accent-color);
}

/* ── Header ─────────────────────────────────────────────────── */
.header {
  background-color: var(--primary-color);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
}

.site-name {
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--transition-fast) ease;
  padding: 0.25em 0;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: width var(--transition-speed) ease;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  margin-left: var(--spacing-lg);
  padding: 0.5em 1.25em;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(200, 121, 58, 0.55);
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition-speed) ease;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #ffffff;
}

/* ── Hero ───────────────────────────────────────────────────── */

/* Dot-grid texture — more precise than grain, signals "tech" */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: calc(68px + 5.5rem) 3rem 5.5rem 3rem;
  background-color: var(--primary-color);
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 0
  );
  background-size: 28px 28px;
  min-height: calc(100vh - 68px);
  gap: var(--spacing-xl);
  position: relative;
  overflow: hidden;
}

/* Subtle radial fade to ground the content area */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 50% 50%,
    transparent 40%,
    rgba(11, 15, 42, 0.55) 100%
  );
  pointer-events: none;
}

.hero-content {
  flex: 1 1 380px;
  min-width: 300px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.65s ease both;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.07;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2.5rem;
  max-width: 440px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.8em 2em;
  background: var(--accent-color);
  color: #ffffff;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition-speed) ease,
    transform var(--transition-speed) ease;
}

.hero-cta:hover {
  background: #a8622e;
  color: #ffffff;
  transform: translateY(-1px);
}

.hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.8em 2em;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  transition: all var(--transition-speed) ease;
}

.hero-secondary:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-image {
  flex: 1 1 420px;
  min-width: 300px;
  max-width: 520px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.65s ease 0.15s both;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.45);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--background-color);
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 2.75rem var(--spacing-lg);
  border-right: 1px solid var(--border-color);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

/* navy on white = passes contrast easily */
.stat-number {
  display: block;
  font-family: var(--font-primary);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}

.stat-label {
  display: block;
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Services Section ───────────────────────────────────────── */
.services-section {
  background-color: var(--primary-color);
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 0
  );
  background-size: 28px 28px;
  padding: var(--spacing-2xl) 0;
}

.services-header {
  margin-bottom: 3.5rem;
  max-width: 640px;
}

.services-title {
  font-family: var(--font-primary);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.services-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

/* Grid lines as separators — elegant on dark bg */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-card {
  padding: 2rem 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  transition: background var(--transition-speed) ease;
}

/* Amber reveal bar from left on hover */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--accent-color);
  transition: height var(--transition-speed) ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.055);
}

.service-card:hover::before {
  height: 100%;
}

.service-num {
  display: block;
  font-family: var(--font-secondary);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.service-title {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.service-desc {
  font-family: var(--font-secondary);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.875rem;
  line-height: 1.75;
  margin: 0;
}

/* ── Why Section ────────────────────────────────────────────── */
.why-section-header {
  margin-bottom: 3.5rem;
  max-width: 640px;
}

.why-intro {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

.why-section {
  background: var(--surface-color);
  padding: var(--spacing-2xl) 0;
  border-top: 1px solid var(--border-color);
}

.why-title {
  font-family: var(--font-primary);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.why-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 3.5rem;
  max-width: 520px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-secondary);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent-text);
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.why-col-title {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.why-col-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ── Process Section ────────────────────────────────────────── */
.process-header {
  margin-bottom: 3.5rem;
  max-width: 640px;
}

.process-intro {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

.process-section {
  background: var(--background-color);
  padding: var(--spacing-2xl) 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.process-title {
  font-family: var(--font-primary);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 3.5rem;
  letter-spacing: -0.02em;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Thin connecting line through step numbers */
.process-grid::before {
  content: "";
  position: absolute;
  top: 0.85rem;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 1px;
  background: var(--border-color);
  z-index: 0;
}

.process-step {
  padding: 0 2rem 0 0;
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  font-family: var(--font-secondary);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent-text);
  letter-spacing: 0.04em;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}

.process-step-title {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.process-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ── About Section ──────────────────────────────────────────── */
.about-section {
  background: var(--surface-color);
  padding: var(--spacing-2xl) 0;
  border-top: 1px solid var(--border-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.about-image {
  position: sticky;
  top: calc(68px + 2rem);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  filter: grayscale(10%);
}

.about-label {
  display: inline-block;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-text);
  margin-bottom: 0.85rem;
}

.about-title {
  font-family: var(--font-primary);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.about-desc {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 1.5px solid var(--accent-color);
  padding-bottom: 2px;
  margin-top: 0.5rem;
  transition: color var(--transition-fast) ease,
    border-color var(--transition-fast) ease;
}

.about-link:hover {
  color: var(--accent-text);
  border-color: var(--accent-text);
}

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section {
  background-color: var(--primary-color);
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 0
  );
  background-size: 28px 28px;
  padding: var(--spacing-2xl) 0;
  text-align: center;
}

.cta-section .container {
  max-width: 680px;
}

.cta-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.52);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 auto 2.5rem;
  max-width: 480px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.9em 2.25em;
  background: var(--accent-color);
  color: #ffffff;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition-speed) ease,
    transform var(--transition-speed) ease,
    box-shadow var(--transition-speed) ease;
}

.cta-btn:hover {
  background: #a8622e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

/* ── Cards (generic — inner pages) ─────────────────────────── */
.card {
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  transition: border-color var(--transition-speed) ease,
    box-shadow var(--transition-speed) ease;
}

.card:hover {
  border-color: rgba(200, 121, 58, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.card-title {
  font-family: var(--font-primary);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.01em;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--primary-color);
  padding: var(--spacing-2xl) 0 var(--spacing-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-2xl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: var(--spacing-lg);
}

.footer-title {
  display: block;
  font-family: var(--font-secondary);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-color);
  margin-bottom: 1.25rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.875rem;
  line-height: 1.8;
  margin: 0;
  max-width: 260px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition-fast) ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-contact-item {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition-fast) ease;
  display: inline-block;
}

.footer-contact-item:hover {
  color: #ffffff;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.78rem;
  margin: 0;
  text-align: center;
}

/* ── Hamburger + Mobile Nav ─────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-left: 1rem;
  z-index: 1201;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #ffffff;
  border-radius: 1px;
  transition: all 0.2s ease;
}

.header-container.nav-open .hamburger {
  display: none !important;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  z-index: 1200;
  flex-direction: column;
  min-height: 100vh;
  animation: slideDown 0.2s ease;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  background: var(--primary-color);
  height: 68px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--accent-color);
}

.mobile-nav-header .site-name {
  color: #ffffff;
}

.close-mobile-nav {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-fast);
}

.close-mobile-nav:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.mobile-nav-menu li {
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-menu .nav-link {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--primary-color);
  font-size: 0.875rem;
  font-family: var(--font-secondary);
  font-weight: 500;
  text-decoration: none;
  transition: background var(--transition-fast) ease;
}

.mobile-nav-menu .nav-link::after {
  display: none;
}

.mobile-nav-menu .nav-link:hover {
  background: var(--surface-color);
  color: var(--primary-color);
}

.mobile-cta {
  margin: 1.5rem;
  display: block;
  text-align: center;
  background: var(--accent-color);
  color: #ffffff;
  padding: 0.85em 0;
  font-size: 0.875rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition-speed) ease;
}

.mobile-cta:hover {
  background: #a8622e;
  color: #ffffff;
}

/* ── Inner Page Hero ────────────────────────────────────────── */
.page-hero {
  background-color: var(--primary-color);
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 0
  );
  background-size: 28px 28px;
  padding: calc(68px + 4.5rem) 0 4.5rem 0;
}

.page-hero-label {
  display: inline-block;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.page-hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 760px;
}

.page-hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.58);
  max-width: 580px;
  line-height: 1.8;
  margin: 0;
}

/* ── Inner Page Body ────────────────────────────────────────── */
.page-body {
  padding: var(--spacing-2xl) 0;
  background: var(--background-color);
}

.page-body-alt {
  padding: var(--spacing-2xl) 0;
  background: var(--surface-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.content-section {
  margin-bottom: var(--spacing-xl);
}

.content-section:last-child {
  margin-bottom: 0;
}

.content-h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.content-p {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.content-p:last-child {
  margin-bottom: 0;
}

/* ── Service Detail (services page) ────────────────────────── */
.service-detail {
  padding: var(--spacing-xl) 0;
  border-bottom: 1px solid var(--border-color);
}

.service-detail:first-child {
  padding-top: 0;
}

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

/* ── Contact Page ───────────────────────────────────────────── */
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.contact-label {
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  min-width: 80px;
  flex-shrink: 0;
}

.contact-value {
  font-family: var(--font-secondary);
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast) ease;
}

.contact-value:hover {
  color: var(--accent-text);
}

.note-box {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface-color);
  border-left: 3px solid var(--accent-color);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.note-box p {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.7;
  margin: 0;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  counter-reset: process-counter;
}

.process-list li {
  counter-increment: process-counter;
  padding: 1.25rem 0 1.25rem 3rem;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.75;
}

.process-list li:last-child {
  border-bottom: none;
}

.process-list li::before {
  content: counter(process-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.3rem;
  font-family: var(--font-secondary);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent-text);
  letter-spacing: 0.06em;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 921px) {
  .desktop-nav,
  .desktop-cta {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    flex-direction: column;
    padding: calc(68px + 3.5rem) 1.5rem 4rem 1.5rem;
    min-height: auto;
    gap: var(--spacing-xl);
  }

  .hero-image {
    max-width: 100%;
    width: 100%;
    min-width: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-top: 1px solid var(--border-color);
  }

  .stat-item:nth-child(4) {
    border-right: none;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }

  .process-grid::before {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image {
    position: static;
    max-width: 260px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
  }

  .page-hero {
    padding: calc(68px + 3rem) 0 3.5rem 0;
  }
}

@media (max-width: 544px) {
  .hero {
    padding: calc(68px + 2.5rem) 1rem 3rem 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-cta,
  .hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 1.75rem 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .page-hero {
    padding: calc(68px + 2.5rem) 0 3rem 0;
  }

  .page-hero-title {
    font-size: 1.9rem;
  }

  .about-image {
    max-width: 200px;
  }
}

@media (min-width: 922px) {
  .mobile-nav,
  .mobile-cta,
  .close-mobile-nav,
  .hamburger {
    display: none !important;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-16px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ── Blog Grid ──────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  background: var(--background-color);
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition-speed) ease,
    box-shadow var(--transition-speed) ease;
}

.blog-card:hover {
  border-color: rgba(200, 121, 58, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.blog-card-label {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 0.67rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-text);
  margin-bottom: 0.85rem;
}

.blog-card-title {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 0.875rem;
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 auto 0;
}

.blog-card-coming {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-secondary);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.25em 0.75em;
}

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

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