/**
 * Phone A Mummy USA - Bold Blocks Theme
 * Fonts: Sora (headings, 900) + Nunito (body)
 * Palette: Care Bears pastels
 */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F0F4FF;
  --text: #4A3860;
  --pink: #F7A8B8;
  --peach: #FFD0B0;
  --yellow: #FFF0A0;
  --green: #B8E6B8;
  --blue: #A8D8F0;
  --lav: #D8B8F0;
  --white: #fff;
  --text-dark: #2E1D4A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Sora', sans-serif;
  color: var(--text-dark);
}

/* ─── RAINBOW BANNER ─── */
.rainbow-banner {
  width: 100%;
  background: linear-gradient(90deg,
    #F7A8B8 0%, #FFD0B0 16.6%, #FFF0A0 33.3%,
    #B8E6B8 50%, #A8D8F0 66.6%, #D8B8F0 83.3%, #F7A8B8 100%);
  text-align: center;
  padding: 10px 20px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  position: relative;
  z-index: 200;
}

.rainbow-banner a {
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 2px solid var(--text-dark);
}

/* ─── STICKY NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  box-shadow: 0 2px 20px rgba(74,56,96,0.10);
}

.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span { color: #c054a0; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover { color: #c054a0; }

.nav-cta {
  font-weight: 800;
  color: var(--text-dark) !important;
  background: var(--pink);
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover {
  background: #f07090 !important;
  color: var(--white) !important;
  transform: scale(1.04);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* ─── HERO ─── */
.hero {
  width: 100%;
  background: var(--lav);
  padding: 90px 40px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-phone-badge {
  position: absolute;
  top: 36px;
  right: 48px;
  background: var(--white);
  padding: 14px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(74,56,96,0.15);
  z-index: 3;
}

.hero-phone-badge .label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c054a0;
  margin-bottom: 4px;
}

.hero-phone-badge .number {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.hero-tag {
  display: inline-block;
  background: var(--white);
  color: #c054a0;
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  line-height: 1.0;
  max-width: 900px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.hero h1 em {
  font-style: normal;
  color: #c054a0;
}

.hero-sub {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  color: var(--white);
  background: var(--text-dark);
  padding: 18px 40px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #c054a0;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(192,84,160,0.35);
}

.btn-ghost {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  background: transparent;
  padding: 16px 38px;
  border-radius: 100px;
  border: 3px solid var(--text-dark);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-ghost:hover {
  background: var(--text-dark);
  color: var(--white);
  transform: translateY(-3px);
}

/* ─── SECTION HEADER ─── */
.section-header {
  padding: 0 40px;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c054a0;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

/* ─── SCROLLING TICKER ─── */
.ticker-wrap {
  width: 100%;
  background: var(--text-dark);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.ticker-content {
  display: inline-block;
  animation: ticker 28s linear infinite;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.ticker-content .sep {
  margin: 0 28px;
  color: var(--pink);
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── STATS BAR ─── */
.stats-bar {
  width: 100%;
  background: var(--blue);
  padding: 56px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 20px 24px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; height: 60%;
  width: 2px;
  background: rgba(74,56,96,0.15);
}

.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 800;
  color: #4A5880;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── MUMMIES SECTION ─── */
.mummies-section {
  width: 100%;
  background: var(--white);
  padding: 70px 0 70px;
  overflow: hidden;
}

.mummies-section .section-header {
  padding: 0 40px;
  margin-bottom: 48px;
}

.scroll-track {
  display: flex;
  gap: 24px;
  padding: 0 40px 20px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--pink) transparent;
  -webkit-overflow-scrolling: touch;
}

.scroll-track::-webkit-scrollbar { height: 4px; }
.scroll-track::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 4px; }

.mummy-card {
  flex: 0 0 260px;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(74,56,96,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.mummy-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(74,56,96,0.18);
}

.mummy-card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
  display: block;
  background: #fff;
}

.mummy-card-img-placeholder {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}

.mummy-card-body {
  padding: 20px 22px 24px;
}

.mummy-card-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.mummy-card-body p {
  font-size: 0.88rem;
  font-weight: 600;
  color: #7a6890;
  line-height: 1.5;
}

.mummy-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 12px;
}

/* ─── HOW IT WORKS ─── */
.how-section {
  width: 100%;
  background: var(--peach);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.how-section .section-header {
  padding: 0;
  margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.step {
  padding: 40px 40px 40px 0;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 2px;
  background: rgba(74,56,96,0.15);
}

.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(74,56,96,0.12);
  margin-bottom: -10px;
}

.step-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}

.step h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.step p {
  font-size: 1rem;
  font-weight: 600;
  color: #6a5080;
  line-height: 1.65;
}

/* ─── SERVICES ─── */
.services-section {
  width: 100%;
  background: var(--yellow);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.services-section .section-header { padding: 0; margin-bottom: 56px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 30px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 5px;
}

.service-card.c1::before { background: var(--pink); }
.service-card.c2::before { background: var(--blue); }
.service-card.c3::before { background: var(--green); }
.service-card.c4::before { background: var(--lav); }
.service-card.c5::before { background: var(--peach); }
.service-card.c6::before { background: var(--yellow); }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(74,56,96,0.15);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #7a6890;
  line-height: 1.6;
}

/* ─── TESTIMONIAL ─── */
.testimonial-section {
  width: 100%;
  background: var(--text-dark);
  padding: 90px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.testimonial-section .quote-mark {
  font-family: 'Sora', sans-serif;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  line-height: 0.7;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

.testimonial-section blockquote {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 36px;
  line-height: 1.4;
  position: relative;
  z-index: 2;
  letter-spacing: -0.01em;
}

.testimonial-section blockquote::before {
  content: '\201C';
  color: var(--pink);
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
}

.testimonial-section blockquote::after {
  content: '\201D';
  color: var(--pink);
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.4em;
  margin-left: 4px;
}

.testimonial-cite {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lav);
  position: relative;
  z-index: 2;
}

.testimonial-stars {
  font-size: 1.6rem;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  letter-spacing: 4px;
}

/* ─── BLOG ─── */
.blog-section {
  width: 100%;
  background: var(--green);
  padding: 80px 40px;
  overflow: hidden;
  position: relative;
}

.blog-section .section-header { padding: 0; margin-bottom: 48px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(74,56,96,0.18);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px 24px 28px;
}

.blog-cat {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--text-dark);
}

.blog-card p {
  font-size: 0.88rem;
  font-weight: 600;
  color: #7a6890;
  line-height: 1.6;
}

.blog-card-meta {
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #a090b8;
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ─── CTA BLOCK ─── */
.cta-section {
  width: 100%;
  background: var(--pink);
  padding: 90px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section .cta-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Sora', sans-serif;
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 900;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.cta-section h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  line-height: 1.05;
}

.cta-section .cta-phone {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: block;
  margin: 16px auto 36px;
  position: relative;
  z-index: 2;
  transition: color 0.2s;
}

.cta-section .cta-phone:hover { color: var(--white); }

.cta-section .cta-note {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(74,56,96,0.75);
  position: relative;
  z-index: 2;
  margin-top: 20px;
}

/* ─── FOOTER ─── */
footer {
  width: 100%;
  background: var(--text-dark);
  padding: 60px 40px 36px;
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 36px;
}

.footer-brand .logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  display: block;
  letter-spacing: -0.02em;
}

.footer-brand .logo span { color: var(--pink); }

.footer-brand p {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-phone {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--pink);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
}

.footer-rainbow {
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg,
    #F7A8B8 0%, #FFD0B0 20%, #FFF0A0 40%,
    #B8E6B8 60%, #A8D8F0 80%, #D8B8F0 100%);
  margin-top: 24px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 3px solid var(--pink);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    gap: 16px;
  }

  .hero { padding: 70px 24px 60px; }
  .hero-phone-badge { display: none; }

  .mummies-section, .how-section, .services-section,
  .testimonial-section, .blog-section, .cta-section { padding-left: 24px; padding-right: 24px; }

  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .step::after { display: none; }
  .step { padding: 0; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }

  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .section-header, .how-section .section-header,
  .services-section .section-header, .blog-section .section-header { padding: 0; }
}

/* ─── HOVER UTILITY ─── */
a { transition: all 0.2s; }

/* ─── ARCHIVE / MUMMIES GRID ─── */
.archive-header {
  width: 100%;
  background: var(--lav);
  padding: 80px 40px 60px;
  text-align: center;
}

.archive-header h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.archive-header p {
  font-size: 1.1rem;
  font-weight: 700;
  color: #5a4870;
  margin-top: 12px;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 30px 40px;
  background: var(--white);
}

.filter-btn {
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 100px;
  border: 2px solid rgba(74,56,96,0.15);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: #c054a0;
  border-color: #c054a0;
  color: var(--white);
}

.girls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 40px;
  background: var(--bg);
}

.girls-grid .mummy-card {
  flex: none;
}

/* ─── SINGLE MUMMY PROFILE ─── */
.profile-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  padding: 60px 40px;
  background: var(--white);
}

.profile-photo img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.profile-info h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.profile-role {
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c054a0;
  margin-bottom: 20px;
  display: block;
}

.profile-tagline {
  font-size: 1.15rem;
  font-weight: 700;
  color: #5a4870;
  line-height: 1.65;
  margin-bottom: 28px;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.profile-stat {
  background: var(--bg);
  padding: 10px 8px;
  border-radius: 12px;
  text-align: center;
}

.profile-stat .label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a090b8;
  margin-bottom: 2px;
}

.profile-stat .value {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-dark);
}

.profile-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  justify-content: center;
}

.profile-cta {
  text-align: center;
  margin-bottom: 8px;
}

.profile-specialties span {
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--lav);
  color: var(--text-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── PROFILE BIO BOX ─── */
.profile-bio-box {
  margin-top: 24px;
  background: var(--white);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(216,184,240,0.3);
}
.profile-bio-box h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--lav);
}
.profile-bio-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  max-height: 400px;
  overflow-y: auto;
}
.profile-bio-text p {
  margin-bottom: 12px;
}
.profile-bio-text::-webkit-scrollbar {
  width: 6px;
}
.profile-bio-text::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 3px;
}
.profile-bio-text::-webkit-scrollbar-thumb {
  background: var(--lav);
  border-radius: 3px;
}

/* ─── PROFILE THUMBNAIL GALLERY ─── */
.profile-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.profile-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  cursor: pointer;
  border: 3px solid transparent;
  opacity: 0.6;
  transition: all 0.2s;
}
.profile-thumb.active,
.profile-thumb:hover {
  opacity: 1;
  border-color: #c054a0;
}

/* ─── FULL GALLERY SECTION ─── */
.gallery-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 40px;
}
.gallery-section h2 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 24px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}
.gallery-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 3/4;
  transition: transform 0.2s;
}
.gallery-img:hover {
  transform: scale(1.03);
}

/* ─── CONTACT FORM ─── */
.contact-section {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 40px;
}
.contact-section h2 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.contact-section > p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 28px;
}
.pa-contact-form {
  max-width: 100%;
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(74,56,96,0.08);
}
.pa-form-header {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  color: var(--text-dark);
}
.pa-field-wrap { margin-bottom: 16px; }
.pa-field-wrap label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.pa-required { font-weight: 400; color: #a090b8; font-size: 0.78rem; }
.pa-contact-form input[type="text"],
.pa-contact-form input[type="email"],
.pa-contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(74,56,96,0.12);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--bg);
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.pa-contact-form input:focus,
.pa-contact-form textarea:focus {
  border-color: #c054a0;
  outline: none;
}
.pa-contact-form textarea {
  min-height: 100px;
  resize: vertical;
}
.pa-submit-wrap { margin-top: 20px; }
.pa-contact-form button[type="submit"] {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  background: #c054a0;
  padding: 16px 36px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}
.pa-contact-form button[type="submit"]:hover { background: #a8408a; transform: translateY(-2px); }
.pa-contact-form button[type="submit"]:disabled { background: #ccc; cursor: not-allowed; }
.pa-contact-msg {
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 12px;
}
.pa-contact-msg.pa-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.pa-contact-msg.pa-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

.related-section {
  padding: 60px 40px;
  background: var(--bg);
}

.related-section h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 32px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.related-grid .mummy-card {
  flex: none;
}

@media (max-width: 960px) {
  .profile-header { grid-template-columns: 1fr; padding: 40px 24px; gap: 32px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .profile-stats { grid-template-columns: repeat(4, 1fr); }
  .related-grid { grid-template-columns: 1fr; }
}

/* ─── PAGES (Prices, FAQs, How to Call, About, Blog) ─── */
.page-header {
  width: 100%;
  background: var(--lav);
  padding: 70px 40px 50px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.page-header p {
  font-size: 1.1rem;
  font-weight: 700;
  color: #5a4870;
  margin-top: 12px;
}

.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
}

.page-content h2 {
  font-size: 2rem;
  font-weight: 900;
  margin: 40px 0 16px;
}

.page-content h2:first-child { margin-top: 0; }

.page-content p {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.75;
  margin-bottom: 16px;
  color: var(--text);
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
}

.faq-item {
  border-bottom: 2px solid rgba(74,56,96,0.1);
  padding: 0;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 900;
  color: #c054a0;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0;
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 0 24px;
}

.faq-a p {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 5px;
}

.price-card:nth-child(1)::before { background: var(--pink); }
.price-card:nth-child(2)::before { background: var(--blue); }
.price-card:nth-child(3)::before { background: var(--green); }

.price-card.featured {
  background: var(--lav);
  transform: scale(1.05);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(74,56,96,0.15);
}

.price-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.price-amount {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.price-per {
  font-size: 0.85rem;
  font-weight: 700;
  color: #a090b8;
  margin-bottom: 20px;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.price-features li {
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid rgba(74,56,96,0.08);
  color: var(--text);
}

.price-features li::before {
  content: '\2713';
  color: #c054a0;
  font-weight: 800;
  margin-right: 10px;
}

/* Blog archive */
.blog-archive {
  padding: 40px;
  background: var(--bg);
}

.blog-archive .blog-grid {
  max-width: 1200px;
  margin: 0 auto;
}

/* Single post */
.single-post-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 40px;
}

.single-post-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.single-post-meta {
  font-size: 0.88rem;
  font-weight: 700;
  color: #a090b8;
  margin-bottom: 32px;
}

.single-post-content .entry-content {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.8;
  color: var(--text);
}

.single-post-content .entry-content p {
  margin-bottom: 20px;
}

.single-post-content .entry-content h2 {
  font-size: 1.8rem;
  font-weight: 900;
  margin: 40px 0 16px;
}

.single-post-content .entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 24px 0;
}

/* ─── 404 ─── */
.error-404 {
  text-align: center;
  padding: 100px 40px;
}

.error-404 h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  color: var(--pink);
  margin-bottom: 16px;
}

.error-404 p {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 32px;
}

/* ─── INTL COUNTRY SELECTOR ─── */
.country-box {
  max-width: 500px;
  margin: 40px auto;
  text-align: center;
}

.country-box select {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 100px;
  border: 3px solid var(--pink);
  background: var(--white);
  color: var(--text-dark);
  width: 100%;
  max-width: 400px;
  cursor: pointer;
}

.intl-result {
  display: none;
  margin-top: 24px;
  padding: 24px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(74,56,96,0.1);
}

.intl-result.show { display: block; }

.intl-result .dial-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #c054a0;
}

/* ─── PHONE BAR (reusable) ─── */
.phone-bar {
  width: 100%;
  background: #c054a0;
  padding: 28px 40px;
  text-align: center;
}

.phone-bar .num {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}

.phone-bar .note {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
}

@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .price-card.featured { transform: none; }
  .girls-grid { padding: 24px; }
  .filter-bar { padding: 20px 24px; }
}

/* ─── ABOUT PAGE ─── */
.about-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
}

.about-section h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.about-section p {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.75;
  margin-bottom: 16px;
  color: var(--text);
}

.about-warm { background: var(--bg); max-width: 100%; padding: 60px 40px; }
.about-warm h2, .about-warm p { max-width: 900px; margin-left: auto; margin-right: auto; }

.who-intro { display: flex; gap: 32px; align-items: flex-start; }
.who-icon { flex-shrink: 0; }
.who-text { flex: 1; }

.offer-grid, .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 32px auto 0;
}

.offer-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(74,56,96,0.12);
}

.offer-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 12px;
}

.offer-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.offer-card p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #7a6890;
  line-height: 1.6;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.why-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #c054a0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-check svg { width: 16px; height: 16px; }

.why-item h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.why-item p {
  font-size: 0.92rem;
  font-weight: 600;
  color: #7a6890;
  line-height: 1.6;
}

/* ─── LEGACY COMPATIBLE ─── */
.badge {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c054a0;
  margin-bottom: 10px;
}

.accent { color: #c054a0; }

.test-bg {
  background: var(--text-dark);
  padding: 80px 40px;
  text-align: center;
}

.test-inner { max-width: 700px; margin: 0 auto; }

.test-bg blockquote {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 24px;
}

.test-bg cite {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lav);
  font-style: normal;
}

.cta-banner {
  background: var(--pink);
  padding: 80px 40px;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.1rem;
  font-weight: 700;
  color: #5a4870;
  margin-bottom: 28px;
}

.btn-white {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  padding: 16px 40px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ─── PRICING PAGE ─── */
.pricing-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 40px;
}

.pricing-intro { text-align: center; margin-bottom: 40px; }
.pricing-intro h2 { font-size: 2rem; font-weight: 900; margin-bottom: 12px; }
.pricing-intro p { font-size: 1.05rem; font-weight: 600; color: var(--text); }

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.tier-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(74,56,96,0.1);
  transition: transform 0.25s, box-shadow 0.25s;
}

.tier-card.featured {
  border: 3px solid #c054a0;
}

.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(74,56,96,0.15);
}

.tier-header {
  padding: 32px 28px 20px;
  text-align: center;
}

.tier-badge {
  display: inline-block;
  background: #c054a0;
  color: white;
  padding: 4px 16px;
  border-radius: 100px;
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tier-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.rate {
  font-family: 'Sora', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-dark);
}

.rate small {
  font-size: 0.8rem;
  font-weight: 700;
  color: #a090b8;
}

.tier-body {
  padding: 0 28px 28px;
}

.tier-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  font-weight: 600;
}

.tier-table th {
  text-align: left;
  padding: 10px 0;
  border-bottom: 2px solid rgba(74,56,96,0.1);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a090b8;
}

.tier-table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(74,56,96,0.06);
  color: var(--text);
}

.tier-cta {
  display: block;
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  background: #c054a0;
  padding: 16px 28px;
  margin: 0 28px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
}
.tier-cta:hover { background: #a8408a; transform: translateY(-2px); }

/* ─── DEALS SECTION ─── */
.deals-section {
  background: linear-gradient(135deg, #F7A8B8 0%, #D8B8F0 100%);
  padding: 60px 40px;
}
.deals-inner { max-width: 1000px; margin: 0 auto; }
.deals-title { text-align: center; margin-bottom: 40px; }
.deals-title h2 { font-size: 2rem; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.deals-title p { font-size: 1.05rem; font-weight: 600; color: rgba(255,255,255,0.9); }

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.deal-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.2s;
}
.deal-card:hover { transform: translateY(-4px); }
.deal-icon { font-size: 2.4rem; margin-bottom: 12px; }
.deal-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; color: var(--text-dark); }
.deal-price {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #c054a0;
  margin-bottom: 8px;
}
.deal-price small { font-size: 0.8rem; font-weight: 700; color: #a090b8; }
.deal-detail { font-size: 0.92rem; font-weight: 600; color: var(--text); line-height: 1.6; margin-bottom: 12px; }
.deal-code {
  display: inline-block;
  background: #FFF0A0;
  color: var(--text-dark);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 6px 18px;
  border-radius: 100px;
}

/* ─── UPSELL SECTION ─── */
.upsell-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
}
.upsell-inner { text-align: center; }
.upsell-inner h3 { font-size: 1.6rem; font-weight: 900; margin-bottom: 8px; }
.upsell-sub { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 32px; }

.upsell-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.upsell-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  font-weight: 600;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
}
.upsell-table th {
  text-align: left;
  padding: 12px 20px;
  background: rgba(192,84,160,0.08);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a090b8;
}
.upsell-table td {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(74,56,96,0.06);
  color: var(--text);
}

/* ─── SPECIALS SECTION ─── */
.specials-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 40px;
}
.specials-title { text-align: center; margin-bottom: 40px; }
.specials-title h2 { font-size: 2rem; font-weight: 900; margin-bottom: 8px; }
.specials-title p { font-size: 1.05rem; font-weight: 600; color: var(--text); }

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.special-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s;
}
.special-card:hover { transform: translateY(-4px); }
.special-card .tag {
  display: inline-block;
  background: #c054a0;
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.special-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; color: var(--text-dark); }
.special-card p { font-size: 0.9rem; font-weight: 600; color: var(--text); line-height: 1.5; }
.special-price {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #c054a0;
  margin: 10px 0 4px;
}

/* ─── BILLING NOTE ─── */
.billing-note {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
}
.billing-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 8px 30px rgba(74,56,96,0.08);
}
.billing-icon { font-size: 2rem; flex-shrink: 0; }
.billing-inner p { font-size: 0.95rem; font-weight: 600; color: var(--text); line-height: 1.6; margin: 0; }

/* ─── INTERNATIONAL CALLERS BOX ─── */
.intl-section {
  max-width: 700px;
  margin: 60px auto;
  padding: 0 40px;
}
.intl-box {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(74,56,96,0.1);
  border: 2px solid rgba(192,84,160,0.15);
}
.intl-heading {
  display: inline-block;
  background: linear-gradient(135deg, #F7A8B8, #D8B8F0);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 22px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.intl-box h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.intl-box p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
}
.intl-select-wrap { margin-bottom: 20px; }
.intl-select-wrap label {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.intl-select-wrap select {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 100px;
  border: 3px solid var(--pink);
  background: var(--bg);
  color: var(--text-dark);
  width: 100%;
  max-width: 400px;
  cursor: pointer;
  appearance: none;
  -webkit-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='%234A3860' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}
.intl-result {
  display: none;
  margin-top: 24px;
  padding: 24px;
  background: var(--bg);
  border-radius: 16px;
}
.intl-result.show { display: block; }
.dial-label { font-size: 0.92rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.dial-number {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #c054a0;
}

/* also remove old intl-note styles if any */
.intl-note { display: none; }

/* ─── FAQ PAGE ─── */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
}

.faq-title { text-align: center; margin-bottom: 40px; }
.faq-title h2 { font-size: 2rem; font-weight: 900; margin-bottom: 8px; }
.faq-title p { font-size: 1rem; font-weight: 600; color: var(--text); }

.faq-icon { display: none; }
.faq-q .arrow { display: none; }

.faq-q h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  flex: 1;
}

.faq-a-inner {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text);
}

/* ─── HOW TO CALL PAGE ─── */
.steps-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 40px;
}

.steps-title { text-align: center; margin-bottom: 40px; }
.steps-title h2 { font-size: 2rem; font-weight: 900; margin-bottom: 8px; }
.steps-title p { font-size: 1rem; font-weight: 600; color: var(--text); }

.steps-wrapper { position: relative; }
.steps-connector { display: none; }

.step-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  margin-bottom: 24px;
  transition: transform 0.2s;
}

.step-card:hover { transform: translateY(-4px); }

.step-card .step-num {
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(74,56,96,0.12);
  line-height: 1;
  margin-bottom: 8px;
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.95rem;
  font-weight: 600;
  color: #7a6890;
  line-height: 1.6;
}

.step-illust { margin: 16px 0; }
.step-illust svg { max-width: 180px; }

.filter-pill {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 100px;
  border: 2px solid rgba(74,56,96,0.15);
  background: transparent;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s;
}

.filter-pill:hover, .filter-pill.active {
  background: #c054a0;
  border-color: #c054a0;
  color: var(--white);
}

/* ─── MISC LEGACY OVERRIDES ─── */
.ring-cta-wrap { text-align: center; padding: 40px; }
.ring-cta {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  background: #c054a0;
  padding: 18px 44px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
}
.ring-cta:hover { background: #a8408a; transform: translateY(-3px); }

@media (max-width: 960px) {
  .offer-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .who-intro { flex-direction: column; }
  .about-section { padding: 40px 24px; }
  .steps-section, .faq-section, .pricing-section { padding: 40px 24px; }
}

@media (max-width: 600px) {
  .offer-grid, .why-grid { grid-template-columns: 1fr; }
}
