/* ==========================================================
   SERVICES PAGE
   ========================================================== */

/* ---- Service Area Cards ---- */
.service-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}

.service-area-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--peach-light);
  padding: var(--space-8);
  transition:
    transform var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease);
}

.service-area-card:hover {
  transform: translateY(-5px);
  border-color: var(--apricot);
  box-shadow: var(--shadow-lg);
}

.service-area-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--peach-light), var(--blush-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  transition: transform var(--t-base) var(--ease);
}

.service-area-card:hover .service-area-card__icon {
  transform: scale(1.1) rotate(5deg);
}

.service-area-card__title {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--taupe);
  margin-bottom: var(--space-3);
}

.service-area-card__desc {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

/* ---- Approach Callout ---- */
.approach-callout {
  background: linear-gradient(135deg, var(--taupe) 0%, #4a3828 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-16);
  position: relative;
  overflow: hidden;
}

.approach-callout::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,201,168,0.1);
  top: -100px;
  right: -100px;
}

.approach-callout::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(249,197,176,0.08);
  bottom: -60px;
  left: 100px;
}

.approach-callout__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.approach-callout__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background: rgba(244,160,122,0.2);
  border: 1px solid var(--apricot);
  color: var(--peach);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xs);
  margin-bottom: var(--space-5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.approach-callout__title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-xbold);
  color: var(--cream);
  margin-bottom: var(--space-5);
  line-height: var(--lh-snug);
}

.approach-callout__body {
  font-size: var(--fs-base);
  color: var(--taupe-muted);
  line-height: var(--lh-relaxed);
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.approach-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  background: rgba(255,248,240,0.06);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  border: 1px solid rgba(255,248,240,0.1);
}

.approach-step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--apricot), var(--blush));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: var(--fw-xbold);
  font-size: var(--fs-sm);
  color: var(--white);
  flex-shrink: 0;
}

.approach-step__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  color: var(--cream);
  margin-bottom: var(--space-1);
}

.approach-step__desc {
  font-size: var(--fs-xs);
  color: var(--taupe-muted);
  line-height: var(--lh-relaxed);
}

/* ---- Where Sessions Happen ---- */
.settings-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
}

.setting-badge {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--peach-light);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: all var(--t-base) var(--ease);
  cursor: default;
}

.setting-badge:hover {
  border-color: var(--apricot);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.setting-badge__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peach), var(--blush));
  margin-inline: auto;
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-base) var(--ease);
}

.setting-badge:hover .setting-badge__icon {
  transform: scale(1.15);
}

.setting-badge__label {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  color: var(--taupe);
}

/* ---- Collaboration Tiles ---- */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.collab-tile {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--peach-light);
  padding: var(--space-8);
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  transition: all var(--t-base) var(--ease);
}

.collab-tile:hover {
  border-color: var(--apricot);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.collab-tile__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--peach-light), var(--blush-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.collab-tile__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  color: var(--taupe);
  margin-bottom: var(--space-2);
}

.collab-tile__desc {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

/* ---- Cases Supported ---- */
.cases-section { background: var(--bg-alt); }

.cases-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

.case-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  background: var(--white);
  border: 2px solid var(--peach-light);
  color: var(--taupe);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  transition: all var(--t-base) var(--ease);
}

.case-tag:hover {
  border-color: var(--apricot);
  background: var(--peach-light);
  transform: translateY(-2px);
}

/* ---- Services CTA ---- */
.services-cta {
  background: linear-gradient(135deg, var(--peach-light), var(--blush-light));
  text-align: center;
  border-radius: var(--radius-xl);
  padding: var(--space-16);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .settings-grid { grid-template-columns: repeat(3, 1fr); }
  .approach-callout__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .settings-grid { grid-template-columns: repeat(2, 1fr); }
  .collab-grid { grid-template-columns: 1fr; }
  .approach-callout { padding: var(--space-10); }
}

@media (max-width: 480px) {
  .settings-grid { grid-template-columns: repeat(2, 1fr); }
  .service-area-grid { grid-template-columns: 1fr; }
}
