/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #1f1f1f;
  --dark: #5a5a5a;
  --white: #ffffff;
  --pink: #db8a82;
  --pink-light: #f3e1dd;
  --pink-dark: #c47a72;
  --pink-faint: #f7e9e6;
  --radius: 10px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
  overflow-x: hidden;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  padding-left: 1.4em;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.nav.scrolled {
  border-bottom-color: var(--pink-light);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--pink-dark);
}

/* NAV TOGGLE (hamburger) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 56px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid var(--pink-light);
  }

  .nav-links.open {
    max-height: 200px;
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 16px;
    font-size: 1rem;
  }
}

/* ===== HERO ===== */
.hero {
  padding: 0;
  background: linear-gradient(to right, var(--pink), var(--white) 60%);
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0,100 C300,120 500,20 780,60 C1060,100 1250,20 1440,40 L1440,120 L0,120 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: 100% 100%;
  z-index: 3;
  pointer-events: none;
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 68px 24px 0;
  position: relative;
  z-index: 2;
}

.hero-photo {
  position: absolute;
  left: 74px;
  top: 100px;
  width: 320px;
  z-index: 2;
}

.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
}


.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 48px 80px;
  margin-left: 320px;
}

.hero-logo {
  max-width: 180px;
  height: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 20px;
  margin-left: -4px;
}

.hero h1 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.35;
  margin-bottom: 20px;
  white-space: nowrap;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--dark);
  line-height: 1.7;
}

.hero-body {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.7;
  margin-top: 8px;
}

.hero-cta {
  margin-top: 48px;
}

/* ===== SECTION DIVIDERS ===== */
.section {
  padding: 72px 0;
  border-top: none;
  position: relative;
}

/* Vlnka: bílá sekce → růžová sekce (vlnka v barvě pink-light) */
.wave-to-pink {
  padding-bottom: 100px;
}
.wave-to-pink::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,65 C300,80 500,10 780,40 C1060,70 1250,10 1440,25 L1440,80 L0,80 Z' fill='%23f3e1dd'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: 100% 100%;
  z-index: 1;
  pointer-events: none;
}

/* Vlnka: růžová sekce → bílá sekce (vlnka v bílé) */
.wave-to-white {
  padding-bottom: 100px;
}
.wave-to-white::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,65 C300,80 500,10 780,40 C1060,70 1250,10 1440,25 L1440,80 L0,80 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: 100% 100%;
  z-index: 1;
  pointer-events: none;
}

.section p.section-bridge {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--pink-dark);
  margin-top: 32px;
  margin-bottom: 0;
}

.bridge-cta {
  text-align: center;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.section.no-border {
  border-top: none;
}

#intro {
  padding-top: 24px;
  border: none;
  margin-top: -2px;
  position: relative;
  z-index: 1;
  background: var(--white);
}


.section.no-gap {
  padding-top: 20px;
}

.section:has(+ .no-gap) {
  padding-bottom: 30px;
}

.section h2 {
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
  line-height: 1.35;
}

.section h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-top: 28px;
  margin-bottom: 12px;
}

.section p {
  color: var(--dark);
  font-size: 1rem;
  margin-bottom: 16px;
}

.section ul,
.section ol {
  margin-bottom: 20px;
}

.section li {
  color: var(--dark);
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ===== WRAP WIDE ===== */
.wrap-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== PAIN GRID ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--pink-light);
  border-radius: var(--radius);
  padding: 24px 20px;
  border-left: 3px solid var(--pink);
  box-shadow: 0 2px 8px rgba(236, 179, 170, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.pain-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 28px rgba(236, 179, 170, 0.4);
}


.pain-card p {
  margin-bottom: 0;
  color: var(--black);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pain-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.3s ease, background 0.3s ease;
}

.intro-box {
  background: var(--pink);
  border-radius: var(--radius);
  padding: 32px 36px;
  text-align: center;
}

.intro-box p {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===== SERVICES ===== */
.services-title {
  text-align: center;
  margin-bottom: 36px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--pink-light);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 32px rgba(236, 179, 170, 0.25);
}

.service-card > h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  margin-top: 0;
}

.service-card .expand-content h3 {
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
}

.service-card ul {
  margin-bottom: 24px;
}

.service-card li {
  font-size: 0.93rem;
}

.service-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ===== EXPAND / ACCORDION ===== */
.expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--pink-dark);
  cursor: pointer;
  padding: 0;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.expand-btn:hover {
  color: var(--black);
}

.expand-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 0.85rem;
}

.expand-btn[aria-expanded="true"] .expand-arrow {
  transform: rotate(180deg);
}

.expand-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.expand-content.open {
  opacity: 1;
  margin-bottom: 8px;
}

.service-date {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.service-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pink-dark);
  margin-bottom: 8px;
}

.service-card .subtitle {
  color: var(--dark);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.service-card .note {
  font-size: 0.93rem;
  color: var(--black);
  margin-bottom: 8px;
}

.service-subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}

.service-subcard {
  background: var(--white);
  border: 1px solid var(--pink-light);
  border-radius: var(--radius);
  padding: 20px;
}

.service-subcard h3 {
  font-size: 0.95rem;
  margin-top: 0;
  margin-bottom: 10px;
}

.service-subcard ul {
  padding-left: 1.2em;
  margin-bottom: 0;
}

.service-subcard li {
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.btn-outline-pink {
  background: transparent;
  color: var(--pink-dark);
  border: 2px solid var(--pink);
}

.btn-outline-pink:hover {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(236, 179, 170, 0.3);
}

.btn-pink {
  background: var(--pink);
  color: var(--white);
}

.btn-pink:hover {
  background: var(--pink-dark);
  box-shadow: 0 4px 16px rgba(236, 179, 170, 0.3);
}

/* ===== REGISTRATION PAGE ===== */
.reg-hero {
  background: var(--pink-light);
  padding: 100px 24px 40px;
  border-bottom: 3px solid var(--pink);
}

.back-link {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pink-dark);
  margin-bottom: 20px;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--black);
}

.reg-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 8px;
}

.reg-subtitle {
  font-size: 1.05rem;
  color: var(--dark);
  font-style: italic;
}

.reg-section {
  padding: 48px 0 72px;
}

.reg-section .form-card {
  max-width: 600px;
}

.termin-box {
  background: var(--pink-faint);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  margin-bottom: 8px;
}

.termin-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.termin-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
}

.termin-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pink-dark);
  margin-top: 4px;
}

/* ===== INFO BOX ===== */
.info-box {
  background: var(--pink-light);
  padding: 20px 20px;
  border-radius: var(--radius);
  margin: 20px 0;
  border-left: 4px solid var(--pink);
}

.info-box p {
  margin-bottom: 0;
  color: var(--black);
  font-size: 0.95rem;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background: var(--pink);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  margin-top: 8px;
}

.btn:hover {
  background: var(--pink-dark);
  box-shadow: 0 4px 16px rgba(232, 160, 153, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--pink-dark);
  border: 2px solid var(--pink);
}

.btn-outline:hover {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232, 160, 153, 0.35);
}

/* ===== ABOUT ===== */
.section-with-arrow {
  position: relative;
}

.section-arrow {
  position: absolute;
  left: calc((100vw - 720px) / 4 + 12px);
  top: calc(50% + 100px);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-light);
  border-radius: 50%;
  color: var(--pink-dark);
  cursor: pointer;
  animation: arrowBounce 2s ease-in-out infinite;
  transition: background 0.3s ease;
}

.section-arrow:hover {
  background: var(--pink);
  color: var(--white);
}

.about-content {
  max-width: 720px;
}

.about-text ul {
  margin-top: 8px;
  margin-bottom: 28px;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pink-dark);
  transition: color 0.2s ease;
}

.social-link:hover {
  color: var(--black);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* ===== PHOTO STRIP ===== */
.photo-strip {
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--pink);
  border-bottom: 3px solid var(--pink);
}

.photo-strip-track {
  display: flex;
  gap: 4px;
  will-change: transform;
}

.photo-strip-track img {
  height: 280px;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
}

.strip-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--pink-dark);
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 2;
}

.strip-btn:hover {
  background: var(--white);
}

.strip-btn-prev {
  left: 10px;
}

.strip-btn-next {
  right: 10px;
}

@media (max-width: 768px) {
  .photo-strip-track img {
    height: 200px;
  }

  .strip-btn {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }
}

/* ===== REGISTRATION SECTION ===== */
.section-pink {
  background: var(--pink-light);
}

.registration-title {
  color: var(--pink-dark);
  margin-bottom: 28px;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--pink-light);
  border-radius: var(--radius);
  padding: 40px 36px;
  max-width: 680px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.form-intro {
  color: var(--dark);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ===== FORM SHARED ===== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}

.form-hint {
  display: block;
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--pink-light);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}

.form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5a5a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select:invalid {
  color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 2px rgba(219, 138, 130, 0.3);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--pink-dark);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: end;
}

/* checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--pink);
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.5;
}

.form-checkbox a {
  color: var(--pink-dark);
  text-decoration: underline;
}

.form-checkbox a:hover {
  color: var(--black);
}

.form-checkbox.has-error label {
  color: #c0392b;
}

.btn-full {
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 1.05rem;
}

a.hero-cta.btn {
  padding: 0.55rem 1.4rem;
  font-size: 0.85rem;
  width: auto;
  max-width: fit-content;
  text-align: center;
  align-self: center;
}

/* ===== WORKSHOP REFERENCES ===== */
.references-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.reference-video {
  width: 210px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.reference-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .references-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== CONTACT FORM ===== */
.contact-intro {
  color: var(--dark);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.link-pink {
  color: var(--pink-dark);
  font-weight: 600;
  text-decoration: underline;
}

.link-pink:hover {
  color: var(--black);
}

.contact-alt {
  text-align: center;
  margin-top: 24px;
  font-size: 0.95rem;
}

.contact-form {
  max-width: 580px;
}

.contact-form .btn {
  margin-top: 4px;
}

.form-success {
  padding: 20px;
  background: var(--pink-light);
  border-radius: var(--radius);
  color: var(--black);
  font-weight: 600;
  text-align: center;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--pink-light);
  text-align: center;
  border-top: 3px solid var(--pink);
}

.cta-wrap h2 {
  color: var(--black);
}

.cta-wrap p {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 24px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== NEWSLETTER EMBED (Forendors) ===== */
.pew {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.pew * {
  box-sizing: border-box;
}

.pe {
  width: 230px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.pe .pf {
  margin-bottom: 1em;
}

.pe input[type="email"] {
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 15px;
  border: 1px solid var(--pink-light);
  border-radius: var(--radius);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pe input[type="email"]:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 2px rgba(219, 138, 130, 0.3);
}

.pe .iw.he {
  border-radius: var(--radius);
  background: #cb0000;
  text-align: center;
}

.pe .iw.he input {
  border-color: #cb0000;
}

.pe .iw.he p.error {
  padding: 5px 14px;
  margin: 0;
  color: var(--white);
  font-size: 13px;
}

.pe button {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  width: 100%;
  border: none;
  border-radius: var(--radius);
  padding: 0.85rem 1.8rem;
  background: var(--pink);
  white-space: nowrap;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.pe button:hover {
  background: var(--pink-dark);
  box-shadow: 0 4px 16px rgba(232, 160, 153, 0.35);
}

.pe .info {
  padding: 16px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.4);
  text-align: left;
}

.pe .info a {
  color: var(--pink-dark);
  text-decoration: underline;
}

.pe .info a:hover {
  color: var(--black);
}

.pe p {
  line-height: 17px;
  margin: 0;
}

.pe p + p {
  margin-top: 16px;
}

.pe .pb {
  display: flex;
  font-size: 12px;
  opacity: 0.7;
  align-items: center;
  gap: 5px;
}

.pe .pb svg {
  width: 90px;
}

.pe .pb a {
  line-height: normal;
}

.pe .agreement {
  font-size: 0.8rem;
  color: var(--dark);
}

.pe .success {
  padding: 15px;
  background: var(--pink-light);
  border-radius: var(--radius);
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 10px;
  color: var(--black);
}

@media (min-width: 480px) {
  .pe {
    min-width: 480px;
    max-width: 600px;
    width: unset !important;
  }

  .pe .iw {
    width: 100%;
  }

  .pe .pf {
    display: flex;
    align-items: flex-start;
    gap: 1em;
  }

  .pe .pf input[type="email"] {
    min-width: 340px;
  }

  .pe button {
    margin: 0 !important;
    height: 50px;
    width: fit-content !important;
  }

  .pe .pb a {
    line-height: 1em !important;
  }
}

/* ===== FOOTER ===== */
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--pink-light);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer p {
  font-size: 0.85rem;
  color: var(--dark);
}

.footer a {
  font-size: 0.85rem;
  color: var(--dark);
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--pink-dark);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* staggered children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--pink);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius);
  z-index: 10000;
  font-size: 0.9rem;
}

.skip-link:focus {
  top: 16px;
}

/* ===== FOCUS STATES ===== */
.btn:focus-visible,
.nav-links a:focus-visible,
.social-link:focus-visible,
.expand-btn:focus-visible,
.strip-btn:focus-visible,
.link-pink:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--pink-dark);
  outline-offset: 2px;
}

/* ===== TOUCH TARGETS ===== */
.expand-btn {
  min-height: 44px;
  padding: 10px 0;
}

.social-link {
  min-height: 44px;
  padding: 8px 0;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    background: linear-gradient(to bottom, var(--pink), var(--white) 80%);
    padding-bottom: 40px;
  }

  .hero::after {
    display: none;
  }

  .hero-inner {
    padding: 68px 24px 0;
  }

  .hero-photo {
    position: relative;
    left: auto;
    bottom: auto;
    width: 240px;
    margin: -60px auto 0;
    overflow: hidden;
  }

  .hero-photo img {
    border-radius: 0;
  }

  .hero-text {
    padding: 24px 16px 16px;
    text-align: center;
    margin-left: 0;
    align-items: center;
  }

  .hero-logo {
    max-width: 140px;
    margin-left: 0;
    filter: brightness(0.75) contrast(1.4);
  }

  .hero h1 {
    font-size: 1.5rem;
    white-space: normal;
  }

  .hero-body {
    font-size: 0.9rem;
  }

  .scroll-arrow,
  .section-arrow {
    display: none;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-subgrid {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 28px 20px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .intro-box {
    padding: 24px 20px;
  }
}

@media (max-width: 600px) {
  .logo {
    margin-bottom: 16px;
  }

  .section {
    padding: 56px 0;
  }

  .service-block {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 375px) {
  .hero-inner {
    padding: 60px 16px 0;
  }

  .hero-text {
    padding: 20px 8px 40px;
  }

  .hero h1 {
    font-size: 1.3rem;
  }

  .hero-body {
    font-size: 0.85rem;
  }

  .wrap,
  .wrap-wide {
    padding: 0 16px;
  }

  .section {
    padding: 44px 0;
  }

  .pain-card {
    padding: 18px 14px;
  }

  .service-card {
    padding: 24px 18px;
  }

  .form-card {
    padding: 20px 14px;
  }

  .btn {
    padding: 0.75rem 1.4rem;
    font-size: 0.9rem;
  }

  .btn-full {
    padding: 14px;
    font-size: 1rem;
  }
}
