/* ============================================
   Jackson Voice Studio — Homepage Styles
   css/index.css
   Homepage only. Requires global.css.
   ============================================ */

/* ============================================
   HERO
   ============================================ */
   .hero {
    min-height: 100svh;
    padding-top: 60px;
    background-color: var(--navy);
    background-image:
      linear-gradient(
        to bottom,
        rgba(31,37,51,0.98) 15%,
        rgba(31,37,51,0.75) 30%,
        rgba(31,37,51,0.85) 70%,
        rgba(31,37,51,0.99) 100%
      ),
      url('../images/hero-desktop.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 80px;
    position: relative;
  }
  
  /* Logo bar — studio name, prominent in hero */
  .hero-logo-bar {
    width: clamp(260px, 55vw, 520px);
    margin-bottom: 32px;
    opacity: 0.95;
  }
  
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(231,72,29,0.12);
    border: 1px solid rgba(231,72,29,0.28);
    color: #FF9070;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 22px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .eyebrow-dot {
    display: inline;
  }
  
  .hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
  }
  
  /* A/B tested headline */
  .hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 6.5vw, 4.4rem);
    line-height: 1.12;
    color: var(--white);
    max-width: 780px;
    margin-bottom: 20px;
  }
  
  .hero-headline em {
    color: var(--accent);
    font-style: italic;
  }
  
  .hero-subheadline {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    line-height: 1.68;
    margin-bottom: 36px;
    font-weight: 300;
  }
  
  /* A/B tested CTA */
  .hero-cta {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 32px rgba(231,72,29,0.30);
  }
  
  .hero-cta:hover {
    background: #c93d18;
    transform: translateY(-2px);
  }
  
  .hero-cta:active { transform: translateY(0); }
  
  .hero-note {
    margin-top: 14px;
    font-size: 12px;
    color: rgba(255,255,255,0.32);
    letter-spacing: 0.03em;
  }
  
  /* Animated scroll indicator */
  .hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.22);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  
  .hero-scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.22; }
    50%       { opacity: 0.65; }
  }
  
  /* ============================================
     SOCIAL PROOF STRIP
     ============================================ */
  .proof-strip {
    background: var(--navy);
    padding: 28px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  
  .proof-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 40px;
    border-right: 1px solid rgba(255,255,255,0.07);
  }
  
  .proof-stat:last-child { border-right: none; }
  
  /* Fixed: DM Sans bold — no cursive/serif */
  .proof-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  
  .proof-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 500;
  }
  
  /* ============================================
     TESTIMONIALS
     ============================================ */
  .testimonials-section { background: var(--light); }
  
  /* Featured pull quote — magazine style */
  .testimonial-featured {
    background: var(--navy);
    border-radius: 16px;
    padding: 36px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 48px;
    margin-bottom: 28px;
  }

  .testimonial-featured::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(231,72,29,0.08) 0%, transparent 65%);
    pointer-events: none;
  }

  .featured-quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.15rem, 2.5vw, 1.55rem);
    font-style: italic;
    font-weight: 700;
    line-height: 1.6;
    color: rgba(255,255,255,0.88);
    max-width: 720px;
    margin: 0 auto 24px;
    position: relative;
  }

  .featured-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .featured-author .testimonial-stars {
    margin-bottom: 4px;
  }

  .featured-author .testimonial-author {
    color: var(--white);
  }

  .featured-author .testimonial-role {
    color: rgba(255,255,255,0.4);
  }

  /* Supporting testimonial cards */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    position: relative;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
  }
  
  .testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
  }
  
  .star { color: var(--orange); font-size: 15px; }
  
  .testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.72;
    color: #3a3a4a;
    margin-bottom: 20px;
    font-style: italic;
    flex: 1;
  }
  
  .testimonial-author {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
  }
  
  .testimonial-role {
    font-size: 12px;
    color: var(--gray);
    margin-top: 3px;
  }
  
  .testimonial-accent {
    position: absolute;
    top: 16px;
    right: 22px;
    font-size: 52px;
    color: rgba(231,72,29,0.06);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }
  
  /* ============================================
     WHO THIS IS FOR
     ============================================ */
  .audience-section { background: var(--white); }
  
  .audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
  }
  
  .audience-card {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: default;
    display: flex;
    flex-direction: column;
  }
  
  .audience-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(231,72,29,0.08);
  }

  .audience-photo {
    width: 100%;
    background: #23283c;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }

  .audience-photo img {
    width: 100%;
    max-width: 90%;
    height: 150px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
  }

  .audience-card:hover .audience-photo img {
    transform: scale(1.04);
  }

  .audience-badge {
    background: rgba(231,72,29,0.15);
    border: 1px solid rgba(231,72,29,0.3);
    color: #FF9070;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
    margin: 10px 0 14px;
  }

  .audience-body {
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  
  .audience-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
  }
  
  .audience-card p {
    font-size: 0.91rem;
    line-height: 1.65;
    color: var(--gray);
  }
  
  /* ============================================
     SING SMART METHOD TEASER
     ============================================ */
  .method-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }
  
  /* Subtle radial glow */
  .method-section::before {
    content: '';
    position: absolute;
    top: -40%; right: -20%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(231,72,29,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  
  .method-section .section-title { color: var(--white); }
  
  .method-section .section-label {
    color: rgba(231,72,29,0.82);
  }
  
  .method-intro {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.52);
    line-height: 1.68;
    max-width: 580px;
    margin-bottom: 48px;
  }
  
  .pillars-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .pillar-card {
    flex: 1 1 185px;
    max-width: 240px;
  }
  
  .pillar-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 24px 20px;
    transition: background 0.2s, border-color 0.2s;
  }
  
  .pillar-card:hover {
    background: rgba(231,72,29,0.08);
    border-color: rgba(231,72,29,0.26);
  }
  
  .pillar-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(231,72,29,0.28);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
  }
  
  .pillar-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
  }
  
  .pillar-desc {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.58;
  }
  
  .method-cta-wrap { margin-top: 40px; }
  
  /* ============================================
     COACHES TEASER
     ============================================ */
  .coaches-section { background: var(--light); }
  
  .coaches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  
  .coach-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  
  .coach-photo {
    width: 100%;
    height: 300px;
    background: var(--navy);
    overflow: hidden;
  }
  
  .coach-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  
  .coach-info { padding: 24px; }
  
  .coach-badge {
    display: inline-block;
    background: rgba(231,72,29,0.1);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
  }
  
  .coach-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
  }
  
  .coach-title {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.4;
  }
  
  .coach-desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--gray);
  }
  
  /* ============================================
     WHAT TO EXPECT
     ============================================ */
  .trial-section { background: var(--white); }
  
  .trial-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 48px;
  }
  
  .trial-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .trial-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  
  .trial-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-top: 2px;
  }
  
  .trial-step-content h4 {
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 5px;
  }
  
  .trial-step-content p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.62;
  }
  
  .trial-callout {
    background: var(--navy);
    border-radius: 16px;
    padding: 40px 36px;
    text-align: center;
  }
  
  .trial-callout h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
  }
  
  .trial-callout > p {
    color: rgba(255,255,255,0.52);
    font-size: 0.93rem;
    line-height: 1.62;
    margin-bottom: 28px;
  }
  
  .trial-location {
    font-size: 12px;
    color: rgba(255,255,255,0.28);
    margin-top: 18px;
    line-height: 1.65;
  }
  
  /* ============================================
     FORM SECTION
     ============================================ */
  .form-section {
    background: var(--light);
    padding: 80px 24px 100px;
  }
  
  .form-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  
  .form-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.2;
  }
  
  .form-subtitle {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.62;
    margin-bottom: 32px;
  }
  
  .form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 8px 48px rgba(0,0,0,0.10);
    border: 1px solid var(--border);
    text-align: left;
  }
  
  #wufoo-m10h748w06syjlx { width: 100%; }
  
  .form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 22px;
    flex-wrap: wrap;
  }
  
  .trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
  }
  
  .trust-check {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
  }
  
  /* ============================================
     RESPONSIVE — HOMEPAGE
     ============================================ */

  /* Hero background — shift focal point toward mic on narrower screens */
  @media (max-width: 1024px) {
    .hero {
      background-position: 35% top;
      background-image:
        linear-gradient(
          to bottom,
          rgba(31,37,51,0.98) 15%,
          rgba(31,37,51,0.75) 30%,
          rgba(31,37,51,0.85) 70%,
          rgba(31,37,51,0.99) 100%
        ),
        url('../images/hero-tablet.webp');
    }
  }

  @media (max-width: 900px) {
    .trial-layout {
      grid-template-columns: 1fr;
      gap: 36px;
    }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    .hero {
      background-position: 30% top;
      background-image:
        linear-gradient(
          to bottom,
          rgba(31,37,51,0.98) 15%,
          rgba(31,37,51,0.75) 30%,
          rgba(31,37,51,0.85) 70%,
          rgba(31,37,51,0.99) 100%
        ),
        url('../images/hero-mobile.webp');
    }

    .testimonial-featured { padding: 28px 24px; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }

    .proof-stat {
      padding: 12px 16px;
      border-right: none;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      width: 50%;
    }
    .proof-stat:nth-child(odd) {
      border-right: 1px solid rgba(255,255,255,0.07);
    }
    .proof-stat:last-child { border-bottom: none; }

    .coaches-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }

    .form-card { padding: 32px 24px; }
  }

  @media (max-width: 480px) {
    .hero { padding-left: 20px; padding-right: 20px; background-position: 25% top; }
    .hero-cta { width: 100%; text-align: center; display: block; }
    .audience-grid { grid-template-columns: 1fr; }
    .pillar-card { flex: 1 1 100%; max-width: 100%; }
    .proof-stat { width: 100% !important; border-right: none !important; }
  }

  @media (max-width: 400px) {
    .eyebrow-dot { display: none; }
    .hero-eyebrow { gap: 4px; }
  }