/* Agendo - practitioners.html only.  Loads after assets/css/site.css. */

/* HERO */
.pr-hero {
  background: linear-gradient(160deg, #FBFBFB 0%, #f0eaf6 55%, #F9DEDC 100%);
  padding: 9rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pr-hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 100, 143, 0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.pr-hero .panel-content {
  position: relative;
  z-index: 2;
}
.pr-hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-primary);
  margin-bottom: 2rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(229, 100, 143, 0.3);
  border-radius: 2rem;
  max-width: 100%;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .pr-hero-label {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    padding: 0.45rem 1rem;
  }
}
.pr-hero h1 {
  font-family: 'Arya', sans-serif;
  font-weight: 700;
  color: var(--body-primary);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .pr-hero h1 { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .pr-hero h1 { font-size: 3.75rem; }
}
.pr-hero h1 .highlight {
  background: linear-gradient(90deg, var(--pink-primary), #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pr-hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--body-secondary);
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .pr-hero-subtitle { font-size: 1.15rem; }
}
.pr-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  border-radius: 3rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn-primary {
  background: var(--pink-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(229, 100, 143, 0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--body-primary);
  border: 1.5px solid var(--body-primary);
}
.btn-secondary:hover {
  background: var(--body-primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-primary svg, .btn-secondary svg { width: 14px; height: 14px; }
.pr-hero-image {
  max-width: 1100px;
  margin: 4rem auto 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.05);
}
.pr-hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* PILLARS */
.pillars {
  padding: 6rem 2rem;
  background: var(--background);
  text-align: center;
}
.pillars h2 {
  font-family: 'Arya', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--body-primary);
  margin-bottom: 3rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .pillars h2 { font-size: 2.5rem; }
}
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .pillar-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.pillar-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.pillar-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(229,100,143,0.15), rgba(192,132,252,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-primary);
  margin-bottom: 1.25rem;
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar-card h3 {
  font-family: 'Arya', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--body-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.pillar-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--body-secondary);
  font-weight: 300;
}

/* HOW AI WORKS */
.how-ai {
  background: var(--section-brown);
  padding: 6rem 2rem;
}
.how-ai .panel-content { max-width: 1100px; }
.how-ai-header {
  text-align: center;
  margin-bottom: 4rem;
}
.how-ai-header .eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-primary);
  margin-bottom: 1rem;
}
.how-ai-header h2 {
  font-family: 'Arya', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--body-primary);
  line-height: 1.2;
}
@media (min-width: 768px) {
  .how-ai-header h2 { font-size: 2.5rem; }
}
.how-ai-header p {
  font-size: 1rem;
  color: var(--body-secondary);
  font-weight: 300;
  margin-top: 1rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.stage-row {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 4rem;
}
.stage-row:last-child { margin-bottom: 0; }
@media (min-width: 768px) {
  .stage-row {
    flex-direction: row;
    gap: 4rem;
  }
  .stage-row.reverse {
    flex-direction: row-reverse;
  }
}
.stage-text { flex: 1; }
.stage-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink-primary);
  margin-bottom: 0.85rem;
}
.stage-text h3 {
  font-family: 'Arya', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--body-primary);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .stage-text h3 { font-size: 1.85rem; }
}
.stage-text ul {
  list-style: none;
  padding: 0;
}
.stage-text li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.85rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--body-secondary);
  font-weight: 300;
}
.stage-text li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink-primary);
}
.stage-image {
  flex: 1;
  width: 100%;
  max-width: 540px;
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.10), 0 0 0 1px rgba(0,0,0,0.04);
  background: #fff;
}
.stage-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* SHARED RECORD HIGHLIGHT */
.shared-record {
  background: var(--section-purple);
  padding: 7rem 2rem;
  text-align: center;
}
.shared-record .panel-content { max-width: 820px; }
.shared-record .eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-primary);
  margin-bottom: 1.25rem;
}
.shared-record h2 {
  font-family: 'Arya', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--body-primary);
  line-height: 1.2;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .shared-record h2 { font-size: 2.5rem; }
}
.shared-record p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--body-secondary);
  font-weight: 300;
}
@media (min-width: 768px) {
  .shared-record p { font-size: 1.15rem; }
}
.shared-record-image {
  max-width: 900px;
  margin: 3rem auto 0;
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.10), 0 0 0 1px rgba(0,0,0,0.04);
}
.shared-record-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* WHAT CHANGES */
.what-changes {
  background: var(--background);
  padding: 6rem 2rem;
}
.what-changes .panel-content { max-width: 1100px; }
.what-changes h2 {
  font-family: 'Arya', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--body-primary);
  text-align: center;
  margin-bottom: 3.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .what-changes h2 { font-size: 2.75rem; }
}
.changes-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .changes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 4rem;
  }
}
.change-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.change-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--pink-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-primary);
  margin-top: 2px;
}
.change-icon svg { width: 14px; height: 14px; }
.change-item h4 {
  font-family: 'Arya', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--body-primary);
  margin-bottom: 0.4rem;
}
.change-item p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--body-secondary);
  font-weight: 300;
}

/* DEMO PANEL */
.demo-panel {
  background: linear-gradient(160deg, #f0eaf6 0%, #FBFBFB 100%);
  padding: 7rem 2rem;
  text-align: center;
}
.demo-panel .panel-content { max-width: 1100px; }
.demo-panel .eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-primary);
  margin-bottom: 1rem;
}
.demo-panel h2 {
  font-family: 'Arya', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--body-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .demo-panel h2 { font-size: 2.75rem; }
}
.demo-panel-subtitle {
  font-size: 1rem;
  color: var(--body-secondary);
  font-weight: 300;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.demo-panel-image {
  max-width: 1000px;
  margin: 0 auto 2.5rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
}
.demo-panel-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* NETWORK */
.network {
  background: var(--section-warm);
  padding: 6rem 2rem;
  text-align: center;
}
.network .panel-content { max-width: 820px; }
.network .eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-primary);
  margin-bottom: 1.25rem;
}
.network h2 {
  font-family: 'Arya', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--body-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .network h2 { font-size: 2.5rem; }
}
.network p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--body-secondary);
  font-weight: 300;
}
.specialties {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.specialty-tag {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(229,100,143,0.2);
  border-radius: 2rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--body-primary);
  letter-spacing: 0.02em;
}

/* FINAL CTA */
.final-cta {
  background: var(--background);
  padding: 7rem 2rem;
  text-align: center;
}
.final-cta h2 {
  font-family: 'Arya', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--body-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .final-cta h2 { font-size: 3rem; }
}
.final-cta p {
  font-size: 1.05rem;
  color: var(--body-secondary);
  font-weight: 300;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
