body {
  font-family: var(--font-family);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--color-black);
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--color-black);
  letter-spacing: -0.02em;
}

h1 { font-size: var(--fs-5xl); }
h2 { font-size: var(--fs-4xl); }
h3 { font-size: var(--fs-3xl); }
h4 { font-size: var(--fs-2xl); }
h5 { font-size: var(--fs-xl); }
h6 { font-size: var(--fs-lg); }

p {
  color: var(--color-gray-700);
  max-width: 680px;
}

strong { font-weight: var(--fw-semibold); }

a {
  transition: color var(--duration-fast) var(--ease-in-out);
}

a:hover {
  color: var(--color-primary);
}

::selection {
  background-color: var(--color-primary);
  color: var(--color-white);
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-gray { color: var(--color-gray-500); }
.text-white { color: var(--color-white); }

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  background-color: var(--color-gray-100);
  border-bottom: 1px solid var(--color-gray-200);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  flex-wrap: wrap;
}

.breadcrumb__item a {
  color: var(--color-gray-500);
  text-decoration: none;
}

.breadcrumb__item a:hover {
  color: var(--color-primary);
}

.breadcrumb__item:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--color-gray-400);
}

.breadcrumb__item:last-child {
  color: var(--color-black);
  font-weight: var(--fw-semibold);
}

/* Service Hero */
.service-hero {
  background: var(--color-black);
  color: var(--color-white);
  padding-top: 10rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.service-hero .section__title {
  font-size: var(--fs-4xl);
  color: var(--color-white);
}

.service-hero .section__subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: var(--color-gray-400);
}

.service-hero .section__label {
  color: var(--color-primary);
}

/* Service Hero Decorative Elements */
.service-hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(230, 57, 70, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(230, 57, 70, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.service-hero__diagonal {
  position: absolute;
  inset: 0;
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
  background: linear-gradient(160deg, rgba(230, 57, 70, 0.03) 0%, rgba(230, 57, 70, 0.08) 50%, rgba(230, 57, 70, 0.03) 100%);
  pointer-events: none;
}

.service-hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.service-hero__particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(230, 57, 70, var(--particle-opacity, 0.2));
  animation: service-particle-float var(--particle-duration, 6s) ease-in-out var(--particle-delay, 0s) infinite alternate;
}

@keyframes service-particle-float {
  0% { transform: translateY(0) scale(1); opacity: var(--particle-opacity, 0.2); }
  100% { transform: translateY(-30px) scale(1.3); opacity: 0.05; }
}

/* Breadcrumb inside dark hero */
.service-hero .breadcrumb {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 0;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.service-hero .breadcrumb__list {
  color: var(--color-gray-500);
}

.service-hero .breadcrumb__item a {
  color: var(--color-gray-500);
}

.service-hero .breadcrumb__item a:hover {
  color: var(--color-primary);
}

.service-hero .breadcrumb__item:last-child {
  color: var(--color-gray-300);
}

.service-hero .breadcrumb__item:not(:last-child)::after {
  color: var(--color-gray-700);
}

.service-hero .section__header {
  position: relative;
  z-index: 1;
}

.service-hero .hero__actions {
  position: relative;
  z-index: 1;
}

/* ========== SERVICE FEATURES GRID ========== */
.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-lg);
  margin-top: 2rem;
}

.service-feature {
  display: flex;
  gap: var(--gap-md);
  padding: var(--gap-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-200);
  transition: all var(--duration-base) var(--ease-out);
}

.service-feature:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
  border-color: var(--color-primary-light);
}

.service-feature__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
}

.service-feature__icon svg {
  width: 22px;
  height: 22px;
}

.service-feature__content h4 {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  margin-bottom: 4px;
  color: var(--color-black);
}

.service-feature__content p {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  line-height: var(--lh-normal);
}

/* ========== SERVICE CHECKLIST ========== */
.service-checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-sm);
}

.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-sm);
  padding: var(--gap-sm) var(--gap-md);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: var(--color-gray-700);
  transition: background var(--duration-fast);
}

.service-checklist li:hover {
  background: var(--color-gray-100);
}

.service-checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  background: var(--color-primary-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23E63946' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* ========== SERVICE CONTENT PROSE ========== */
.service-content h2 {
  margin-top: var(--gap-3xl);
  margin-bottom: var(--gap-lg);
  position: relative;
  padding-bottom: var(--gap-sm);
}

.service-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 2px;
}

.service-content h2:first-child {
  margin-top: 0;
}

.service-content h3 {
  margin-top: var(--gap-2xl);
  margin-bottom: var(--gap-md);
  font-size: var(--fs-xl);
}

.service-content p {
  margin-bottom: var(--gap-md);
}

/* Service content styles */
main ul, main ol {
  padding-left: 1.5rem;
}

main ul li, main ol li {
  color: var(--color-gray-700);
}
