/* ============================================
   Cleaning with Focus — Inner Pages CSS
   Extends style.css for services, about, privacy
   ============================================ */

/* --- Active nav link --- */
.nav__links a.active { color: var(--blue); font-weight: 500; }

/* --- Page hero --- */
.page-hero {
  background: linear-gradient(160deg, var(--blue-pale) 0%, var(--white) 70%);
  padding: 72px 0 64px;
  text-align: center;
}
.page-hero .badge    { margin-bottom: 16px; }
.page-hero h1        { margin-bottom: 16px; }
.page-hero p         { font-size: 18px; color: var(--text-muted); max-width: 540px; margin: 0 auto; }
.page-hero--sm       { padding: 56px 0 48px; }

/* --- Alternate section bg --- */
.section--alt { background: var(--off-white); }

/* --- Service detail layout --- */
.service-detail__header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.service-detail__icon {
  width: 60px; height: 60px;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-detail__sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-top: 8px;
  max-width: 560px;
}

/* --- Pricing cards --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.pricing-card--featured {
  border-color: var(--blue-mid);
  border-width: 2px;
}

.pricing-card__label {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card h3 { font-size: 1.1rem; }

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 4px 0;
}
.price-from  { font-size: 13px; color: var(--text-muted); }
.pricing-card__price strong { font-size: 2.2rem; font-weight: 500; color: var(--gray-900); line-height: 1; }
.price-unit  { font-size: 14px; color: var(--text-muted); }

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

.pricing-card__includes {
  display: flex; flex-direction: column; gap: 7px; flex: 1;
}
.pricing-card__includes li {
  font-size: 13px; color: var(--gray-700);
  padding-left: 18px; position: relative;
}
.pricing-card__includes li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-mid);
}
.pricing-card .btn { margin-top: auto; }

.pricing-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--gray-50);
  padding: 12px 16px;
  border-radius: var(--radius-md);
}
.pricing-note svg { color: var(--blue); flex-shrink: 0; }

/* --- Commercial features --- */
.commercial-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-sm); }

.feature-card__icon {
  width: 40px; height: 40px;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.feature-card h4 { font-size: 15px; font-weight: 500; }
.feature-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }

.commercial-cta {
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--white) 100%);
  border: 1px solid var(--blue-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.commercial-cta h3 { font-size: 1.2rem; margin-bottom: 6px; }
.commercial-cta p  { font-size: 15px; color: var(--text-muted); max-width: 480px; }

/* --- Add-ons --- */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.addon-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all var(--transition);
}
.addon-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-sm); }
.addon-card h4    { font-size: 14px; font-weight: 500; }
.addon-card p     { font-size: 13px; color: var(--text-muted); flex: 1; line-height: 1.5; margin: 0; }
.addon-price {
  font-size: 14px; font-weight: 500; color: var(--blue);
  margin-top: 4px;
}

/* --- FAQ --- */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }

.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open]       { border-color: var(--blue-light); }
.faq-item summary {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--blue);
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* --- Bottom CTA banner --- */
.bottom-cta { background: var(--blue-dark); }
.bottom-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.bottom-cta h2   { color: var(--white); margin-bottom: 8px; }
.bottom-cta p    { color: rgba(255,255,255,0.7); font-size: 16px; margin: 0; }
.bottom-cta .btn--primary {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--white);
  white-space: nowrap;
}
.bottom-cta .btn--primary:hover { background: var(--blue-light); border-color: var(--blue-light); }

/* --- About story --- */
.about-story {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-story__text .section__tag { display: block; margin-bottom: 12px; }
.about-story__text h2 { margin-bottom: 20px; }
.about-story__text p  { color: var(--text-muted); margin-bottom: 16px; font-size: 15px; line-height: 1.8; }

.about-story__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-block {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
}
.stat-block strong { display: block; font-size: 1.8rem; font-weight: 500; color: var(--blue); margin-bottom: 4px; }
.stat-block span   { font-size: 13px; color: var(--text-muted); }

/* --- Values --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-light); }
.value-card__icon {
  width: 44px; height: 44px;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.value-card h3 { font-size: 1rem; font-weight: 500; }
.value-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* --- Area tags --- */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 680px;
  margin: 0 auto 20px;
}
.area-tag {
  padding: 8px 18px;
  border: 1px solid var(--blue-light);
  background: var(--blue-pale);
  color: var(--blue-dark);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
}
.area-tag--muted { background: var(--gray-50); border-color: var(--gray-200); color: var(--text-muted); }

.areas-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}
.areas-note a { color: var(--blue); text-decoration: underline; }

/* --- Prose (privacy policy) --- */
.prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-700);
}
.prose h2 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin: 40px 0 12px;
  padding-top: 8px;
  border-top: 1px solid var(--gray-100);
}
.prose h2:first-child { border-top: none; margin-top: 0; }
.prose p  { margin-bottom: 14px; }
.prose ul { padding-left: 20px; margin-bottom: 14px; }
.prose ul li { margin-bottom: 6px; list-style: disc; }
.prose a  { color: var(--blue); text-decoration: underline; }
.prose strong { font-weight: 500; color: var(--gray-900); }

/* --- Responsive --- */
@media (max-width: 900px) {
  .pricing-grid          { grid-template-columns: 1fr; }
  .commercial-features   { grid-template-columns: 1fr; }
  .addons-grid           { grid-template-columns: repeat(2, 1fr); }
  .values-grid           { grid-template-columns: repeat(2, 1fr); }
  .about-story           { grid-template-columns: 1fr; gap: 40px; }
  .about-story__stats    { grid-template-columns: repeat(4, 1fr); }
  .commercial-cta        { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .page-hero { padding: 48px 0 40px; }
  .addons-grid        { grid-template-columns: 1fr; }
  .values-grid        { grid-template-columns: 1fr; }
  .about-story__stats { grid-template-columns: repeat(2, 1fr); }
  .bottom-cta__inner  { flex-direction: column; text-align: center; }
  .service-detail__header { flex-direction: column; }
}

@media (max-width: 480px) {
  .page-hero { padding: 36px 0 28px; }
  .page-hero p { font-size: 15px; }
  .page-hero--sm { padding: 28px 0 20px; }
  .pricing-grid { gap: 12px; }
  .pricing-card { padding: 22px 18px; }
  .addons-grid { gap: 10px; }
  .addon-card { padding: 16px; }
  .values-grid { gap: 12px; }
  .value-card { padding: 20px; }
  .commercial-cta { padding: 20px 16px; gap: 16px; }
  .bottom-cta__inner { gap: 16px; }
  .bottom-cta .btn--primary { width: 100%; justify-content: center; }
  .stat-block { padding: 16px 12px; }
  .stat-block strong { font-size: 1.5rem; }
  .faq-item summary { padding: 14px 16px; font-size: 14px; }
  .faq-item p { padding: 0 16px 14px; }
  .service-detail__header { gap: 14px; }
  .feature-card { padding: 18px; }
}
