/* ============================================
   Jackson Voice Studio — Sing Smart Method
   css/method.css
   Page-specific styles. Requires global.css.
   ============================================ */

/* ============================================
   HERO
   ============================================ */
   .method-hero {
    padding-top: 60px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }
  
  .method-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(231,72,29,0.09) 0%, transparent 65%);
    pointer-events: none;
  }
  
  .method-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,128,0,0.05) 0%, transparent 65%);
    pointer-events: none;
  }
  
  .method-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px 80px;
  }
  
  .method-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: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
  }
  
  .method-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
  }
  
  .method-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 900;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
  }
  
  .method-hero h1 em {
    color: var(--accent);
    font-style: italic;
  }
  
  .method-hero-desc {
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: rgba(255,255,255,0.55);
    line-height: 1.72;
    max-width: 680px;
    margin-bottom: 40px;
    font-weight: 300;
  }
  
  .method-hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  /* ============================================
     ORIGIN STORY
     ============================================ */
  .origin-section {
    background: var(--light);
  }
  
  .origin-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
  }
  
  .origin-sidebar {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .origin-quote {
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    margin: 0;
  }
  
  .origin-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.55;
  }
  
  .origin-stat {
    background: var(--navy);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
  }
  
  .origin-stat-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  
  .origin-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 6px;
  }
  
  .origin-body h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 24px;
  }
  
  .origin-body p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.78;
    margin-bottom: 18px;
  }
  
  .origin-body p:last-child { margin-bottom: 0; }
  
  .origin-body strong {
    color: var(--navy);
    font-weight: 600;
  }
  
  /* ============================================
     DIFFERENTIATOR CALLOUT
     ============================================ */
  .diff-section {
    background: var(--accent);
    padding: 64px 24px;
  }
  
  .diff-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  
  .diff-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--white);
    line-height: 1.2;
    margin: 0;
  }
  
  .diff-heading em {
    font-style: italic;
    opacity: 0.72;
  }
  
  .diff-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  
  .diff-point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }
  
  .diff-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 10px;
    color: white;
    font-weight: 700;
  }
  
  .diff-point p {
    font-size: 0.93rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.62;
    margin: 0;
  }
  
  .diff-point strong {
    color: white;
    font-weight: 600;
  }
  
  /* ============================================
     5 PILLARS
     ============================================ */
  .pillars-section {
    background: var(--white);
  }
  
  .pillars-intro {
    max-width: 680px;
    margin-bottom: 64px;
  }
  
  .pillar {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0 40px;
    padding-bottom: 72px;
    margin-bottom: 72px;
    border-bottom: 1px solid var(--border);
    align-items: start;
  }
  
  .pillar:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .pillar-num-col {
    text-align: right;
    padding-top: 6px;
  }
  
  .pillar-big-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: rgba(231,72,29,0.12);
    line-height: 1;
    letter-spacing: -0.04em;
  }
  
  .pillar-content h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.2;
  }
  
  .pillar-tagline {
    font-size: 0.93rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
    display: block;
  }
  
  .pillar-content p {
    font-size: 0.97rem;
    color: var(--gray);
    line-height: 1.78;
    margin-bottom: 16px;
  }
  
  .pillar-content p:last-of-type { margin-bottom: 0; }
  
  .pillar-content strong {
    color: var(--navy);
    font-weight: 600;
  }
  
  /* Style technique sub-grid */
  .style-subgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
  }
  
  .style-subgrid-item {
    padding: 4px 0;
  }
  
  .style-subgrid-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
  }
  
  .style-subgrid-item p {
    font-size: 0.93rem;
    color: var(--gray);
    line-height: 1.65;
    margin: 0 !important;
  }
  
  /* ============================================
     STUDENT RESULTS
     ============================================ */
  .results-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }
  
  .results-section::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(231,72,29,0.07) 0%, transparent 65%);
    pointer-events: none;
  }
  
  .results-section .section-title { color: var(--white); }
  .results-section .section-label { color: rgba(231,72,29,0.8); }
  .results-section .section-subtitle { color: rgba(255,255,255,0.45); }
  
  .results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
  }
  
  .result-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 28px 22px;
    transition: background 0.2s, border-color 0.2s;
  }
  
  .result-card:hover {
    background: rgba(231,72,29,0.07);
    border-color: rgba(231,72,29,0.25);
  }
  
  .result-icon {
    font-size: 28px;
    margin-bottom: 14px;
  }
  
  .result-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
  }
  
  .result-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
  }
  
  /* ============================================
     TESTIMONIALS
     ============================================ */
  .method-testimonials {
    background: var(--light);
  }
  
  .method-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
  }
  
  .method-t-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    box-shadow: var(--shadow);
  }
  
  .method-t-stars {
    color: var(--orange);
    font-size: 14px;
    margin-bottom: 14px;
    letter-spacing: 2px;
  }
  
  .method-t-quote {
    font-size: 0.93rem;
    color: #3a3a4a;
    line-height: 1.72;
    font-style: italic;
    margin-bottom: 18px;
  }
  
  .method-t-author {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
  }
  
  .method-t-role {
    font-size: 12px;
    color: var(--gray);
    margin-top: 2px;
  }
  
  /* ============================================
     BOTTOM CTA
     ============================================ */
  .method-cta-section {
    background: var(--white);
    text-align: center;
  }
  
  .method-cta-inner {
    max-width: 580px;
    margin: 0 auto;
  }
  
  .method-cta-inner h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.25;
  }
  
  .method-cta-inner p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 32px;
  }
  
  .method-cta-note {
    font-size: 12px;
    color: var(--gray);
    margin-top: 14px;
  }
  
  /* ============================================
     RESPONSIVE
     ============================================ */
  @media (max-width: 1000px) {
    .results-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 860px) {
    .origin-layout {
      grid-template-columns: 1fr;
      gap: 36px;
    }
  
    .origin-sidebar {
      position: static;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
  
    .diff-inner {
      grid-template-columns: 1fr;
      gap: 36px;
    }
  
    .method-testimonials-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 640px) {
    .pillar {
      grid-template-columns: 1fr;
      gap: 12px;
    }
  
    .pillar-num-col {
      text-align: left;
    }
  
    .pillar-big-num {
      font-size: 2.4rem;
    }
  
    .style-subgrid {
      grid-template-columns: 1fr;
    }
  
    .style-subgrid-item.full-width {
      grid-column: auto;
    }
  
    .results-grid {
      grid-template-columns: 1fr;
    }
  
    .origin-sidebar {
      grid-template-columns: 1fr;
    }
  
    .method-hero-btns {
      flex-direction: column;
      align-items: flex-start;
    }
  }