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

/* HERO */
.demo-hero {
  background: linear-gradient(160deg, #FBFBFB 0%, #f0eaf6 55%, #F9DEDC 100%);
  padding: 9rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.demo-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;
}
.demo-hero .panel-content {
  position: relative;
  z-index: 2;
}
.demo-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;
}
.demo-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) {
  .demo-hero h1 { font-size: 2.75rem; }
}
@media (min-width: 1024px) {
  .demo-hero h1 { font-size: 3.5rem; }
}
.demo-hero h1 .highlight {
  background: linear-gradient(90deg, var(--pink-primary), #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.demo-hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--body-secondary);
  max-width: 38rem;
  margin: 0 auto;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .demo-hero-subtitle { font-size: 1.15rem; }
}

/* VIDEO PANEL */
.video-section {
  background: var(--background);
  padding: 4rem 2rem 7rem;
}
.video-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* FINAL CTA */
.final-cta {
  background: var(--section-brown);
  padding: 6.5rem 2rem;
  text-align: center;
}
.final-cta 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) {
  .final-cta h2 { font-size: 2.75rem; }
}
.final-cta p {
  font-size: 1rem;
  color: var(--body-secondary);
  font-weight: 300;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.btn-primary {
  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;
  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);
}
