/* The Permanent Makeup Studio — Training
   Shared design system, adapted from the pms-campaign-lp look & feel.
   Palette: soft pink #E8B4D4 → mauve #9B6BA8, cream sections, dark footer. */

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; overflow-x: hidden; color: #111827; }
a { text-decoration: none; }
img { max-width: 100%; height: auto; }

:root {
  --pink: #E8B4D4;
  --purple: #9B6BA8;
  --grad: linear-gradient(135deg, #E8B4D4 0%, #9B6BA8 100%);
  --ink: #111827;
  --muted: #6b7280;
  --cream: linear-gradient(135deg, #faf8f6 0%, #f5f1ed 100%);
}

/* ---------------------------------------------------------------- Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.site-header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.site-header-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-header-logo img { max-height: 50px; height: auto; width: auto; display: block; }
.site-header-cta {
  background: var(--grad);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.site-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(232, 180, 212, 0.3);
}
@media (max-width: 768px) {
  .site-header-content { padding: 12px 16px; gap: 12px; }
  .site-header-logo img { max-height: 40px; }
  .site-header-cta { padding: 10px 18px; font-size: 0.9rem; }
}

/* ------------------------------------------------------------------ Hero */
.hero {
  position: relative;
  width: 100%;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.6));
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  padding: 80px 5%;
  margin: 0 auto;
  text-align: center;
}
.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero-text {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 16px;
  line-height: 1.6;
}
.hero-trust {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  letter-spacing: 0.3px;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
@media (max-width: 768px) {
  .hero { min-height: 68vh; }
  .hero-inner { padding: 60px 5%; }
  .hero-title { font-size: 2.15rem; }
  .hero-text { font-size: 1rem; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.85rem; }
}

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-light { background: #ffffff; color: #111827; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.3); }
.btn-pink { background: var(--grad); color: #ffffff; box-shadow: 0 4px 15px rgba(232,180,212,0.35); }
.btn-pink:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,180,212,0.45); }
.btn-outline-white { background: rgba(232,180,212,0.9); color: #ffffff; border-color: rgba(255,255,255,0.35); }
.btn-outline-white:hover { background: var(--pink); border-color: rgba(255,255,255,0.6); }
.btn-outline-pink { background: transparent; color: var(--purple); border-color: #ffffff; }
.btn-on-pink { background: #ffffff; color: var(--purple); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-on-pink:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }

/* -------------------------------------------------------------- Sections */
.section { padding: 80px 20px; background: var(--cream); }
.section-narrow { max-width: 1000px; margin: 0 auto; }
.section-wide { max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section { padding: 60px 16px; }
  .section-title { font-size: 1.75rem; }
  .section-subtitle { font-size: 1rem; }
  .section-head { margin-bottom: 40px; }
}

/* -------------------------------------------------------- About (2-col) */
.about {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-reverse { flex-direction: row-reverse; }
.about-col { flex: 1; min-width: 0; }
.about-img { width: 100%; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.12); display: block; }
.about-title { font-size: 2.25rem; font-weight: 700; color: var(--ink); margin-bottom: 24px; line-height: 1.2; letter-spacing: -0.5px; }
.about-p { font-size: 1.0625rem; color: var(--ink); line-height: 1.7; margin-bottom: 18px; }
.about-benefits { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
.about-benefit { display: flex; align-items: center; gap: 14px; font-size: 1rem; color: var(--ink); font-weight: 500; }
.about-benefit i { color: var(--pink); font-size: 24px; flex-shrink: 0; }
.about-credentials {
  display: flex; flex-direction: column; gap: 14px;
  margin: 28px 0; padding: 28px;
  background: rgba(255,255,255,0.7);
  border-radius: 12px; border-left: 4px solid var(--pink);
}
@media (max-width: 768px) {
  .about, .about-reverse { flex-direction: column; gap: 36px; }
  .about-title { font-size: 1.6rem; }
  .about-p { font-size: 1rem; }
}

/* ------------------------------------------------------------ Card grid */
.cards { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; }
.card {
  max-width: 320px; flex: 1 1 280px;
  background: #ffffff; border-radius: 16px; padding: 32px 24px;
  text-align: center; box-shadow: 0 4px 12px rgba(139,92,131,0.08);
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; align-items: center;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 12px 24px rgba(139,92,131,0.15); border-color: var(--pink); }
.card-icon {
  width: 60px; height: 60px; min-width: 60px; min-height: 60px;
  border-radius: 50%; background: var(--pink);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  transition: all 0.3s ease;
}
.card:hover .card-icon { transform: scale(1.1) rotate(5deg); }
.card-icon i { color: #ffffff; font-size: 28px; }
.card-title { font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: 12px; line-height: 1.3; }
.card-text { font-size: 1rem; line-height: 1.6; color: var(--muted); margin-bottom: 20px; flex-grow: 1; }
.card-link {
  display: inline-block; padding: 12px 26px; background: var(--grad);
  color: #ffffff; border-radius: 8px; font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.3px; transition: all 0.3s ease;
}
.card-link:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(155,107,168,0.3); }

/* ---------------------------------------------------- Feature icon rows */
.feature-list { max-width: 900px; margin: 0 auto 40px; }
.feature-item { display: flex; align-items: flex-start; gap: 28px; margin-bottom: 40px; transition: transform 0.3s ease; }
.feature-item:hover { transform: translateX(8px); }
.feature-ico {
  width: 76px; height: 76px; min-width: 76px; min-height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, #E8B4D4 0%, #D99BC8 100%);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(232,180,212,0.25);
}
.feature-ico i { color: #ffffff; font-size: 44px; }
.feature-h { font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.feature-p { font-size: 1rem; color: var(--muted); line-height: 1.6; }
.feature-img-wrap { text-align: center; margin: 40px 0; }
.feature-img { border-radius: 16px; box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
@media (max-width: 768px) {
  .feature-item { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  .feature-item:hover { transform: none; }
}

/* -------------------------------------------------------- Value cards 4 */
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.value {
  text-align: center; padding: 28px 20px; background: #ffffff; border-radius: 14px;
  box-shadow: 0 4px 12px rgba(139,92,131,0.08); transition: all 0.3s ease;
  border: 2px solid transparent;
}
.value:hover { transform: translateY(-6px); border-color: var(--pink); box-shadow: 0 12px 24px rgba(139,92,131,0.15); }
.value-ico {
  width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
}
.value-ico i { color: #ffffff; font-size: 26px; }
.value-h { font-size: 1.125rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.value-p { font-size: 0.9375rem; color: var(--muted); line-height: 1.55; }

/* -------------------------------------------------- Bulleted info lists */
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.info-card { background: #ffffff; border-radius: 16px; padding: 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid rgba(232,180,212,0.15); }
.info-card-ico { width: 56px; height: 56px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.info-card-ico i { color: #ffffff; font-size: 26px; }
.info-card-h { font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: 14px; }
.info-list { list-style: none; }
.info-list li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--ink); font-size: 0.98rem; line-height: 1.5; }
.info-list li::before { content: 'check'; font-family: 'Material Symbols Outlined'; position: absolute; left: 0; color: var(--pink); font-size: 18px; }

/* --------------------------------------------------------- CTA band pink */
.cta-band {
  background: var(--pink);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.cta-band-title { font-size: 2.75rem; font-weight: 800; color: #ffffff; line-height: 1.15; margin-bottom: 20px; }
.cta-band-text { font-size: 1.15rem; color: #ffffff; line-height: 1.7; margin-bottom: 40px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-band-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band::before, .cta-band::after {
  content: ''; position: absolute; border-radius: 50%; background: #ffffff; opacity: 0.1; z-index: 1;
}
.cta-band::before { width: 320px; height: 320px; top: -80px; right: -80px; }
.cta-band::after { width: 380px; height: 380px; bottom: -120px; left: -100px; }
@media (max-width: 768px) {
  .cta-band { padding: 60px 20px; }
  .cta-band-title { font-size: 2rem; }
  .cta-band-text { font-size: 1rem; }
  .cta-band-buttons .btn { width: 100%; max-width: 320px; }
}

/* ---------------------------------------------------------------- Footer */
.site-footer { background: #1a1a2e; padding: 2.5rem 2rem; }
.site-footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; }
.site-footer-logo { max-height: 40px; object-fit: contain; margin-bottom: 14px; }
.site-footer-nav { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 16px; }
.site-footer-link { color: #a0aec0; font-size: 0.875rem; font-weight: 500; transition: color 0.3s ease; }
.site-footer-link:hover { color: #e2e8f0; }
.site-footer-divider { width: 100%; height: 1px; background: rgba(160,174,192,0.2); margin: 16px 0; }
.site-footer-copy { color: #a0aec0; font-size: 0.875rem; line-height: 1.5; }
