/* ═══════════════════════════════════════════
   PoddyHost.com — Main Stylesheet
   Color palette derived from logo:
     Brand blue:  #1A82C9
     Taupe/beige: #BDB4AE  (logo icon color)
     Dark navy:   #0f1f2e  (hero/dark sections)
     Deep plum:   #381e2f  (footer)
     Warm mid:    #204b57  (nav)
═══════════════════════════════════════════ */

:root {
  --primary-color:   #204b57;
  --brand-blue:      #1A82C9;
  --brand-taupe:     #BDB4AE;
  --accent-color:    #BDB4AE;
  --dark-hero:       #0b1a24;
  --dark-section:    #0f2233;
  --dark-footer:     #381e2f;
  --text-dark:       #1a2530;
  --text-muted:      #6b7a87;
  --section-bg:      #f4f6f8;
  --white:           #ffffff;
}

/* ── Utilities ── */
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
.min-vh-80 { min-height: 80vh; }
.text-white-75 { color: rgba(255,255,255,.75); }

/* ── Base ── */
body {
  font-family: 'Open Sans', 'Lato', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
}

/* ── Hero ── */
.ph-hero {
  position: relative;
  background: var(--dark-hero);
  overflow: hidden;
}
.ph-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,130,201,.18) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(189,180,174,.08) 0%, transparent 55%);
}
.ph-eyebrow {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-taupe);
}
.ph-hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}
.ph-headline-accent {
  color: var(--brand-blue);
  position: relative;
}
.ph-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 500px;
}

/* ── Buttons ── */
.ph-btn-primary {
  display: inline-block;
  background: var(--brand-blue);
  color: #fff;
  padding: .8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(26,130,201,.35);
}
.ph-btn-primary:hover {
  background: #1671b0;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26,130,201,.45);
}
.ph-btn-ghost {
  display: inline-block;
  color: rgba(255,255,255,.8);
  padding: .8rem 1.5rem;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}
.ph-btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.07);
}

/* ── Hero badges ── */
.ph-social-proof { display: flex; flex-wrap: wrap; gap: .6rem; }
.ph-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  padding: .35rem .9rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 500;
}
.ph-badge i { color: var(--brand-taupe); }

/* ── Hero Mockup Card ── */
.ph-hero-mockup { perspective: 1000px; }
.ph-podcast-card {
  background: #1a2e3d;
  border: 1px solid rgba(26,130,201,.3);
  border-radius: 18px;
  padding: 1.5rem;
  width: 320px;
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(26,130,201,.15);
  transform: rotateY(-6deg) rotateX(3deg);
  animation: ph-float 4s ease-in-out infinite;
}
@keyframes ph-float {
  0%, 100% { transform: rotateY(-6deg) rotateX(3deg) translateY(0); }
  50%       { transform: rotateY(-6deg) rotateX(3deg) translateY(-10px); }
}
.ph-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.ph-waveform {
  display: flex; align-items: center; gap: 3px; height: 30px;
}
.ph-waveform span {
  display: inline-block;
  width: 4px;
  background: var(--brand-blue);
  border-radius: 2px;
  height: 10px;
  transition: height .12s ease;
}
.ph-live-badge {
  background: rgba(26,130,201,.15);
  color: var(--brand-blue);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .25rem .6rem;
  border-radius: 4px;
}
.ph-card-body { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1rem; }
.ph-card-img-placeholder {
  width: 60px; height: 60px; flex-shrink: 0;
  background: rgba(26,130,201,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--brand-blue);
}
.ph-card-title {
  font-weight: 600; font-size: .92rem; color: #fff; margin-bottom: .25rem; line-height: 1.3;
}
.ph-card-sub { font-size: .75rem; color: rgba(255,255,255,.5); margin-bottom: .6rem; }
.ph-card-progress { background: rgba(255,255,255,.1); height: 4px; border-radius: 2px; }
.ph-progress-bar {
  background: var(--brand-blue); height: 100%; width: 40%; border-radius: 2px;
  animation: ph-progress 8s linear infinite;
}
@keyframes ph-progress { 0% { width: 5%; } 100% { width: 95%; } }
.ph-card-platforms {
  display: flex; gap: .75rem;
  font-size: .72rem; color: rgba(255,255,255,.45);
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: .75rem;
}

/* ── Distribution Strip ── */
.ph-strip { background: var(--section-bg); border-top: 1px solid #e5e9ee; border-bottom: 1px solid #e5e9ee; }
.ph-strip-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); }
.ph-platform-badge {
  display: flex; align-items: center; gap: .5rem;
  background: #fff; border: 1px solid #e0e4ea;
  padding: .5rem 1rem; border-radius: 8px;
  font-weight: 600; font-size: .9rem; color: var(--text-dark);
}
.ph-platform-badge i { color: var(--brand-blue); }

/* ── Section headings ── */
.ph-section-label {
  font-size: .78rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--brand-blue); margin-bottom: .5rem;
}
.ph-section-label-light {
  font-size: .78rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--brand-taupe); margin-bottom: .5rem;
}
.ph-section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.2; }
.ph-section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; }
.ph-section-alt { background: var(--section-bg); }
.ph-section-dark { background: var(--dark-section); }

/* ── How It Works Steps ── */
.ph-step-card {
  background: var(--section-bg);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  position: relative;
  border: 2px solid transparent;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.ph-step-card:hover {
  border-color: var(--brand-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,130,201,.12);
}
.ph-step-card--accent { background: #e8f4fc; border-color: rgba(26,130,201,.25); }
.ph-step-num {
  font-size: 3.5rem; font-weight: 800;
  color: rgba(26,130,201,.12);
  line-height: 1; margin-bottom: .5rem;
}
.ph-step-icon {
  font-size: 2rem; color: var(--brand-blue); margin-bottom: 1rem;
}
.ph-step-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .75rem; }
.ph-step-card p { color: var(--text-muted); font-size: .95rem; margin: 0; }

/* ── Audience cards ── */
.ph-audience-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.75rem;
  height: 100%;
  border: 1px solid #e5e9ee;
  transition: box-shadow .2s, transform .2s;
}
.ph-audience-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.ph-audience-icon {
  width: 52px; height: 52px;
  background: rgba(26,130,201,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--brand-blue);
  margin-bottom: 1rem;
}
.ph-audience-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; }
.ph-audience-card p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* ── Feature rows ── */
.ph-feature-row {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: .9rem 1rem;
  background: var(--section-bg);
  border-radius: 10px;
  transition: background .15s;
}
.ph-feature-row:hover { background: #e8f4fc; }
.ph-feature-icon-sm {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(26,130,201,.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--brand-blue);
}
.ph-feature-desc { font-size: .82rem; color: var(--text-muted); margin-top: .15rem; }

/* ── Pricing ── */
.ph-price-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  height: 100%;
  transition: transform .2s, box-shadow .2s;
}
.ph-price-card:hover { transform: translateY(-4px); }
.ph-price-card--featured {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  position: relative;
  transform: scale(1.04);
  box-shadow: 0 20px 50px rgba(26,130,201,.45);
}
.ph-price-popular {
  background: var(--brand-taupe);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .8rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: .75rem;
}
.ph-price-name { font-size: 1.1rem; font-weight: 700; color: rgba(255,255,255,.85); margin-bottom: .5rem; }
.ph-price-amount { font-size: 3rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 1.5rem; }
.ph-price-amount span { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,.6); }
.ph-price-features { list-style: none; padding: 0; margin: 0 0 1.75rem; }
.ph-price-features li { padding: .45rem 0; font-size: .9rem; color: rgba(255,255,255,.85); display: flex; gap: .6rem; align-items: center; }
.ph-price-features li i { font-size: .95rem; }
.ph-price-features li.ph-price-off { color: rgba(255,255,255,.35); }
.ph-price-features .bi-check-circle-fill { color: #7ee8a2; }
.ph-price-features .bi-x-circle { color: rgba(255,255,255,.25); }
.ph-btn-price {
  display: block; text-align: center;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
  padding: .75rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}
.ph-btn-price:hover { background: rgba(255,255,255,.2); color: #fff; }
.ph-btn-price-featured {
  display: block; text-align: center;
  background: #fff;
  color: var(--brand-blue);
  padding: .75rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}
.ph-btn-price-featured:hover { background: #f0f0f0; color: var(--brand-blue); transform: translateY(-1px); }

/* ── Testimonials ── */
.ph-testimonial {
  background: var(--section-bg);
  border-radius: 14px;
  padding: 1.75rem;
  height: 100%;
  border-left: 3px solid var(--brand-blue);
}
.ph-testimonial-stars { color: #f4a200; margin-bottom: .75rem; font-size: 1rem; }
.ph-testimonial-text { font-size: .95rem; color: var(--text-dark); font-style: italic; margin-bottom: 1.25rem; line-height: 1.6; }
.ph-testimonial-author { display: flex; align-items: center; gap: .75rem; }
.ph-testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand-blue);
  color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}

/* ── CTA Banner ── */
.ph-cta-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--brand-blue) 100%);
}
.ph-btn-cta {
  display: inline-block;
  background: #fff;
  color: var(--brand-blue);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: all .2s;
}
.ph-btn-cta:hover {
  background: #f0f7ff;
  color: var(--brand-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
}

/* ── FAQ ── */
.ph-faq-item { border: 1px solid #e5e9ee; border-radius: 10px !important; margin-bottom: .5rem; overflow: hidden; }
.ph-faq-btn {
  font-weight: 600; color: var(--text-dark);
  background: #fff !important;
  box-shadow: none !important;
  font-size: .95rem;
}
.ph-faq-btn:not(.collapsed) { color: var(--brand-blue); }
.ph-faq-body { color: var(--text-muted); font-size: .92rem; }
.ph-link { color: var(--brand-blue); text-decoration: none; font-weight: 600; }
.ph-link:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .ph-podcast-card { width: 100%; max-width: 320px; transform: none; animation: none; }
  .ph-price-card--featured { transform: none; }
}
