*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --white: #fafafa;
  --gray-100: #f2f2f2;
  --gray-200: #e0e0e0;
  --gray-400: #767676; /* bumped from #999 to pass WCAG AA 4.5:1 on white */
  --gray-600: #4a4a4a; /* bumped slightly from #555 */
  --accent: #3B82F6;
  --accent-dark: #1d4ed8;
  --serif: 'Plus Jakarta Sans', system-ui, sans-serif;
  --sans: 'Inter', system-ui, sans-serif;
  --display: 'DM Sans', system-ui, sans-serif;
}


body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 68px;
  background: rgba(250,250,250,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 34px; height: 34px;
  background: var(--black);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 22px; height: 22px; }
.nav-logo-name {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}
.nav-logo-name span { color: var(--accent); }

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-center a {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--black);
  text-decoration: none;
  padding: 0.45rem 1rem;
  border-radius: 2rem;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-center a:hover,
.nav-center a.active { color: var(--black); background: var(--gray-100); }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 2rem;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.2s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.nav-cta:hover { background: #222; }

@media (max-width: 900px) {
  .nav-cta { display: none; }
}

.page {
  padding-top: 68px;
}

.inner { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem; }

.section-label {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-600);
  font-weight: 300;
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

#page-home { background: var(--white); }

.hero {
  min-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 2.5rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle, #d4d4d4 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.1s;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.25s;
}

.hero h1 em { font-style: normal; color: var(--accent); }

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray-600);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.4s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.55s;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
  display: inline-block;
}
.btn-primary:hover { background: #222; }

.btn-secondary {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--sans);
}
.btn-secondary:hover { color: var(--black); }

.hero-divider {
  width: 100%;
  height: 1px;
  background: var(--gray-200);
  margin-top: 4rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.7s;
}

.logos-strip {
  padding: 3.5rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--gray-200);
}

.logos-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 2rem;
  text-align: center;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.logo-item {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.03em;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 2rem;
  padding: 0.35rem 1rem;
  transition: border-color 0.2s, color 0.2s;
}

.why-section {
  padding: 6rem 2.5rem;
  background: var(--black);
}

.why-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-left .section-label { color: var(--accent); }
.why-left .section-title { color: var(--white); }
.why-left .section-sub { color: #777; margin-bottom: 0; }

.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
}

.why-card {
  background: #0f0f0f;
  padding: 2rem;
  transition: background 0.2s;
}
.why-card:hover { background: #141414; }

.why-icon {
  width: 36px; height: 36px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}

.why-icon svg {
  width: 18px; height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: #ccc;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.825rem;
  color: #555;
  font-weight: 300;
  line-height: 1.6;
}

.testimonials-section {
  padding: 6rem 2.5rem;
  background: var(--gray-100);
}

.testimonials-grid {
  max-width: 1100px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }

.testimonial-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
}

.testimonial-biz {
  font-size: 0.75rem;
  color: var(--gray-400);
}

#page-about { background: var(--white); }

.about-hero {
  padding: 6rem 2.5rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-photo {
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  background: var(--gray-100);
  max-width: 320px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-text .section-sub { margin-bottom: 1.5rem; }

.about-text p {
  font-size: 0.95rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-text p strong {
  font-weight: 600;
  color: var(--black);
}

.about-stats {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem 6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-200);
}

.stat {
  background: transparent;
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid var(--gray-200);
}

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

.stat-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

#page-services { background: var(--white); }

.services-hero {
  padding: 6rem 2.5rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 6rem;
}

.service-card {
  background: #e8e8e8;
  border: 1px solid #c8c8c8;
  border-radius: 12px;
  padding: 2.5rem;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  position: relative;
}

.service-card:hover {
  background: #e0e0e0;
  border-color: #aaa;
  transform: translateY(-2px);
}

.service-card.featured-svc {
  border: 2px solid var(--black);
  background: var(--black);
}

.service-card.featured-svc:hover { border-color: #2a2a2a; transform: translateY(-2px); }
.service-card.featured-svc .service-num { color: var(--accent); }
.service-card.featured-svc .service-name { color: #f0f0f0; }
.service-card.featured-svc .service-desc { color: #666; }
.service-card.featured-svc .service-divider { background: #1e1e1e; }
.service-card.featured-svc .service-features li { color: #777; }
.service-card.featured-svc .service-features li::before { background: var(--accent); }
.service-card.featured-svc .service-icon { background: #1a1a1a; border-color: #2a2a2a; }
.service-card.featured-svc .service-icon svg { stroke: var(--accent); }

.service-icon {
  width: 42px; height: 42px;
  background: var(--white);
  border: 1px solid #c8c8c8;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 20px; height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-divider {
  height: 1px;
  background: #c8c8c8;
  margin: 1.25rem 0;
}

.service-num {
  font-size: 0.7rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.service-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: var(--black);
}

.service-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-features li {
  font-size: 0.8rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.process-section {
  background: var(--black);
  padding: 6rem 2.5rem;
}

.process-inner { max-width: 1100px; margin: 0 auto; }
.process-section .section-label { color: var(--accent); }
.process-section .section-title { color: var(--white); }
.process-section .section-sub { color: #666; }

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

.step {
  border-top: 1px solid #1e1e1e;
  padding: 2rem 2rem 2rem 0;
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 30px; height: 2px;
  background: var(--accent);
}

.step-num {
  font-size: 0.7rem;
  color: #333;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.step-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.step-desc {
  font-size: 0.825rem;
  color: #555;
  font-weight: 300;
  line-height: 1.7;
}

#page-pricing { background: var(--white); }

.pricing-hero {
  padding: 6rem 2.5rem 3rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.pricing-hero .section-sub {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pricing-title-accent { color: var(--accent); }

.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2.5rem;
  background: var(--white);
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--gray-400);
  transform: translateY(-3px);
}

.pricing-card.featured {
  border: 2px solid var(--black);
  background: var(--black);
}

.pricing-card.featured:hover { border-color: #333; }

.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  white-space: nowrap;
}

.pricing-plan-icon {
  width: 40px; height: 40px;
  background: var(--gray-100);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 1.25rem;
}

.pricing-card.featured .pricing-plan-icon { background: #1a1a1a; }

.pricing-plan {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-plan { color: #555; }

.pricing-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.pricing-card.featured .pricing-name { color: var(--white); }

.pricing-desc {
  font-size: 0.825rem;
  color: var(--gray-400);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.pricing-card.featured .pricing-desc { color: #555; }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.3rem;
}

.pricing-amount {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
}

.pricing-card.featured .pricing-amount { color: var(--white); }

.pricing-period {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 400;
}

.pricing-monthly {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
}

.pricing-card.featured .pricing-monthly { color: #444; }

.pricing-divider {
  height: 1px;
  background: var(--gray-200);
  margin-bottom: 1.75rem;
}

.pricing-card.featured .pricing-divider { background: #1a1a1a; }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--gray-600);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 300;
}

.pricing-card.featured .pricing-features li { color: #777; }

.pricing-features li .check {
  color: var(--accent);
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.85rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
  border: none;
  font-family: var(--sans);
}

.pricing-btn-dark { background: var(--black); color: var(--white); }
.pricing-btn-dark:hover { background: #222; }
.pricing-btn-white { background: var(--white); color: var(--black); }
.pricing-btn-white:hover { opacity: 0.9; }
.pricing-btn-outline { background: transparent; color: var(--black); border: 1px solid var(--gray-200); }
.pricing-btn-outline:hover { border-color: var(--gray-400); background: var(--gray-100); }

.pricing-note {
  max-width: 1100px;
  margin: 0 auto 6rem;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.pricing-note-badge {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray-600);
  font-weight: 500;
  white-space: nowrap;
}

.pricing-note p {
  font-size: 0.825rem;
  color: var(--gray-400);
  font-weight: 300;
}

#page-contact { background: var(--gray-100); }

.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.contact-info .section-sub { margin-bottom: 2rem; }

.contact-detail {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.contact-detail a {
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
}

.contact-detail a:hover { color: var(--accent); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--gray-100);
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  background: var(--white);
  border-color: var(--gray-400);
}

.form-group textarea { min-height: 130px; resize: vertical; }

.form-submit {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 2rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.form-submit:hover { background: #222; }

footer {
  padding: 2rem 2.5rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gray-600);
  text-decoration: none;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--gray-400);
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  flex-shrink: 0;
}

.mobile-menu-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--black);
  transition: all 0.2s;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

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

.mobile-nav a {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--accent); }

.mobile-nav .mob-cta {
  margin-top: 0.5rem;
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.8rem 2.25rem;
  border-radius: 2rem;
  font-size: 0.95rem !important;
  font-weight: 600;
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  font-weight: 300;
}

/* ── SERVICES LIST (editorial) ── */
.services-list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.svc-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem;
  align-items: start;
  background: #0a1628;
  border: 1px solid #0f2040;
  border-radius: 16px;
}

.svc-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 800;
  color: #1e3a5f;
  letter-spacing: -0.04em;
  line-height: 1;
  padding-top: 0.25rem;
}

.svc-badge {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #60a5fa;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 2rem;
  padding: 0.2rem 0.75rem;
  margin-bottom: 0.85rem;
}

.svc-name {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.svc-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.8;
  font-weight: 300;
  max-width: 580px;
  margin-bottom: 1.25rem;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.svc-tags span {
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 2rem;
  padding: 0.25rem 0.75rem;
}

.svc-divider {
  height: 1px;
  background: var(--gray-200);
}

.svc-row {
  transition: border-color 0.2s, transform 0.15s;
}

.svc-row:hover {
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .nav-center { display: none; }
  nav { justify-content: space-between; padding: 0 1.25rem; }
  .mobile-menu-btn { display: flex; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .about-hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 2.5rem 2rem; }
  .about-photo { aspect-ratio: 3/2; max-height: 380px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  footer { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 600px) {
  .nav-logo-name { font-size: 1.05rem; }
  .hero { padding: 4rem 1.25rem 3rem; min-height: auto; }
  .hero h1 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary { text-align: center; }
  .why-section { padding: 4rem 1.25rem; }
  .why-grid { gap: 2.5rem; }
  .why-right { grid-template-columns: 1fr; }
  .testimonials-section { padding: 4rem 1.25rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .logos-strip { padding: 2.5rem 1.25rem; }
  .logos-row { gap: 1.5rem; }
  .about-hero { padding: 4rem 1.25rem 2rem; }
  .about-photo { aspect-ratio: 4/3; }
  .svc-row { grid-template-columns: 48px 1fr; gap: 1.25rem; padding: 1.75rem; }
  .svc-num { font-size: 2.5rem; }
  .services-list { padding: 0 1.25rem 3rem; }
  .svc-tags { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .svc-tags span { text-align: center; display: flex; align-items: center; justify-content: center; }
  .about-stats { padding: 0 1.25rem 4rem; grid-template-columns: 1fr 1fr; }
  .services-hero { padding: 4rem 1.25rem 2rem; }
  .services-grid { grid-template-columns: 1fr; padding: 0 1.25rem; margin-bottom: 0; gap: 1rem; }
  .process-section { padding: 4rem 1.25rem; }
  .steps { grid-template-columns: 1fr; }
  .pricing-hero { padding: 4rem 1.25rem 2rem; }
  .pricing-grid { padding: 0 1.25rem 2rem; max-width: 100%; }
  .pricing-note { padding: 0 1.25rem; flex-direction: column; align-items: flex-start; }
  .contact-wrap { padding: 4rem 1.25rem; gap: 2rem; }
  .contact-form { padding: 1.75rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit { width: 100%; text-align: center; }
  footer { padding: 1.5rem 1.25rem; }
}
