:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --border: #e5e7eb;
  --text: #1a1a2e;
  --text-secondary: #4a4a68;
  --text-muted: #7c7c96;
  --accent: #0d9488;
  --accent-light: #ccfbf1;
  --white: #ffffff;
  --black: #1a1a2e;
}

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

body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

nav {
  padding: 32px 0;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.back-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 24px;
  transition: opacity 0.2s ease;
}

.back-link:hover {
  opacity: 0.7;
}

.service-hero {
  padding: 60px 0 64px;
  opacity: 0;
  animation: fadeIn 0.6s ease 0.15s forwards;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--accent);
}

h1 {
  font-family: "Inter", sans-serif;
  font-size: clamp(36px, 6vw, 52px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  font-weight: 700;
  color: var(--text);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-detail-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.service-detail-badge {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
}

.service-detail-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.hero-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.hero-cta:hover svg {
  transform: translateX(3px);
}

.divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 0;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

h2 {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 40px;
  color: var(--text);
}

.details {
  padding: 64px 0;
  opacity: 0;
  animation: fadeIn 0.6s ease 0.3s forwards;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.detail-item {
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.detail-item:last-child {
  border-bottom: 1px solid var(--border);
}

.detail-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.detail-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-cta {
  padding: 80px 0;
  text-align: center;
  opacity: 0;
  animation: fadeIn 0.6s ease 0.4s forwards;
}

.service-cta h2 {
  margin-bottom: 16px;
  font-size: 36px;
}

.service-cta p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.service-cta .hero-cta {
  font-size: 16px;
  padding: 16px 32px;
}

.email-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.email-note a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(13, 148, 136, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}

.email-note a:hover {
  text-decoration-color: var(--accent);
}

footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

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

@media (max-width: 600px) {
  nav .container {
    flex-wrap: wrap;
    gap: 12px;
  }
  .nav-left {
    gap: 16px;
  }
  .logo {
    font-size: 17px;
  }
  .nav-cta {
    font-size: 12px;
    padding: 8px 16px;
  }
  .service-hero {
    padding: 40px 0 48px;
  }
  h1 {
    font-size: 28px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .service-detail-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  h2 {
    font-size: 26px;
  }
  .service-cta h2 {
    font-size: 28px;
  }
  .service-cta {
    padding: 56px 0;
  }
  .hero-cta {
    font-size: 14px;
    padding: 12px 20px;
  }
  .service-cta .hero-cta {
    font-size: 14px;
    padding: 14px 24px;
  }
}
