/* ===== Home Page V2 — Expert-Reviewed Redesign ===== */

    /* --- Design Tokens Extension --- */
    :root {
      --text-body: #374151;
      --text-muted: #4b5563;
      --text-subtle: #6b7280;
    }

    /* --- Focus Styles (page-specific) --- */
    .hero-v2 *:focus-visible,
    .testimonials-section *:focus-visible,
    .final-cta *:focus-visible {
      outline-color: var(--color-light-blue);
    }

    /* --- Announcement Bar --- */
    .announcement-bar {
      background: var(--color-navy);
      color: var(--color-white);
      text-align: center;
      padding: 10px 24px;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.01em;
    }

    .announcement-bar strong {
      font-weight: 700;
    }
    .announcement-bar a {
      color: var(--color-white);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    /* --- Hero V2 --- */
    .hero-v2 {
      background: var(--color-black);
      color: var(--color-white);
      overflow: hidden;
      position: relative;
    }
    .hero-v2::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 50%;
      background: linear-gradient(135deg, rgba(17,51,98,0.15) 0%, rgba(0,0,0,0) 60%);
      pointer-events: none;
    }
    .hero-v2-inner {
      display: grid;
      grid-template-columns: 55fr 45fr;
      min-height: 720px;
      max-width: none;
      margin: 0;
      position: relative;
      z-index: 1;
    }
    .hero-v2-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 72px 80px calc(max(24px, (100vw - var(--max-width)) / 2));
      max-width: none;
    }
    .hero-v2-eyebrow {
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--color-light-blue);
      margin-bottom: 20px;
    }
    .hero-v2 h1 {
      font-family: var(--font-family);
      font-size: 3.2rem;
      font-weight: 800;
      line-height: 1.12;
      letter-spacing: -0.01em;
      margin-bottom: 24px;
    }
    .hero-v2 h1 em {
      font-style: italic;
      color: var(--color-light-blue);
    }
    .hero-v2-subtitle {
      font-size: 1.1rem;
      color: #d1d5db;
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 460px;
    }
    .hero-v2-buttons {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap;
    }
    .hero-v2-trust {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 24px;
      font-size: 0.85rem;
      color: #b0b0b0;
    }
    .hero-v2-trust svg {
      flex-shrink: 0;
      color: #fbbf24;
    }
    .hero-v2-image {
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
    }
    .hero-v2-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .hero-v2-image:hover img {
      transform: scale(1.02);
    }
    .hero-v2-proof {
      display: flex;
      gap: 32px;
      margin-top: 36px;
      padding-top: 28px;
      border-top: 1px solid #2a2a2a;
    }
    .hero-v2-stat {
      display: flex;
      flex-direction: column;
    }
    .hero-v2-stat strong {
      font-size: 1.3rem;
      font-weight: 800;
      color: var(--color-white);
    }
    .hero-v2-stat span {
      font-size: 0.8rem;
      color: #b0b0b0;
      margin-top: 2px;
    }

    /* --- Social Proof Bar --- */
    /* --- Scroll Animations --- */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .fade-in-delay-1 { transition-delay: 0.1s; }
    .fade-in-delay-2 { transition-delay: 0.2s; }
    .fade-in-delay-3 { transition-delay: 0.3s; }

    /* --- How It Works (visual walkthrough) --- */
    .how-section {
      padding: 96px 0 88px;
      background: var(--color-white);
    }
    .how-section-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .section-eyebrow {
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--color-navy);
      margin-bottom: 12px;
    }
    .how-section-header h2 {
      font-family: var(--font-family);
      font-size: 2.4rem;
      font-weight: 700;
      line-height: 1.2;
    }
    .how-section-header p {
      font-size: 1.05rem;
      color: var(--text-muted);
      margin-top: 12px;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Step-by-step visual layout */
    .how-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .how-step {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      padding: 48px 0;
    }
    .how-step:nth-child(even) {
      direction: rtl;
    }
    .how-step:nth-child(even) > * {
      direction: ltr;
    }
    .how-step-text {
      max-width: 460px;
    }
    .how-step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--color-navy);
      color: var(--color-white);
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 16px;
    }
    .how-step-text h3 {
      font-family: var(--font-family);
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.3;
    }
    .how-step-text p {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.7;
    }
    .how-step-visual {
      border-radius: 16px;
      overflow: hidden;
    }

    /* Step 1: Email card visual */
    .email-card-visual {
      background: var(--color-pale-blue);
      padding: 40px 32px;
      border-radius: 16px;
    }
    .email-card-mock {
      background: var(--color-white);
      border-radius: 12px;
      padding: 24px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }
    .email-card-to {
      font-size: 0.8rem;
      color: var(--text-subtle);
      margin-bottom: 12px;
    }
    .email-card-to strong {
      color: var(--color-navy);
      font-weight: 600;
    }
    .email-card-address {
      display: inline-block;
      background: var(--color-pale-blue);
      color: var(--color-navy);
      font-size: 0.8rem;
      font-weight: 600;
      padding: 6px 12px;
      border-radius: 6px;
      font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
    }

    /* Step 2: Transformation visual */
    .transform-visual {
      background: var(--color-cream);
      padding: 32px;
      border-radius: 16px;
    }
    .transform-before {
      background: var(--color-white);
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 16px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    }
    .transform-before-label,
    .transform-after-label {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 8px;
    }
    .transform-before-label { color: var(--text-subtle); }
    .transform-after-label { color: var(--color-navy); }
    .transform-before p {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.6;
      font-family: 'Courier New', monospace;
    }
    .transform-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4px 0;
      color: var(--color-navy);
    }
    .transform-after {
      background: var(--color-white);
      border-radius: 10px;
      padding: 20px;
      border-left: 3px solid var(--color-navy);
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    }
    .transform-after h4 {
      font-family: var(--font-family);
      font-size: 1rem;
      margin-bottom: 6px;
    }
    .transform-after p {
      font-size: 0.85rem;
      color: var(--text-body);
      line-height: 1.6;
    }

    /* Step 3: Book visual */
    .book-visual {
      background: linear-gradient(135deg, var(--color-navy) 0%, #1a4080 100%);
      padding: 48px 32px;
      border-radius: 16px;
      text-align: center;
      color: var(--color-white);
    }
    .book-visual-icon {
      margin-bottom: 20px;
    }
    .book-visual h4 {
      font-family: var(--font-family);
      font-size: 1.2rem;
      margin-bottom: 8px;
    }
    .book-visual p {
      font-size: 0.9rem;
      color: var(--color-light-blue);
    }
    .book-visual-specs {
      display: flex;
      gap: 24px;
      justify-content: center;
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.15);
    }
    .book-visual-spec {
      text-align: center;
    }
    .book-visual-spec strong {
      display: block;
      font-size: 1.1rem;
    }
    .book-visual-spec span {
      font-size: 0.75rem;
      color: var(--color-light-blue);
    }

    /* --- Featured Testimonial (Story Moment) --- */
    .story-moment {
      background: var(--color-cream);
      padding: 96px 0;
      overflow: hidden;
    }
    .story-moment-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .story-moment-quote {
      max-width: 480px;
    }
    .story-moment-quote blockquote {
      font-family: var(--font-family);
      font-size: 1.7rem;
      font-style: italic;
      font-weight: 700;
      line-height: 1.4;
      color: var(--color-navy);
      margin-bottom: 24px;
    }
    .story-moment-quote footer {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .story-moment-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--color-pale-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1rem;
      color: var(--color-navy);
      flex-shrink: 0;
    }
    .story-moment-info strong {
      font-size: 1rem;
      display: block;
    }
    .story-moment-info span {
      font-size: 0.85rem;
      color: var(--text-subtle);
    }
    .story-moment-scene {
      position: relative;
    }
    .story-moment-card {
      background: var(--color-white);
      border-radius: 16px;
      padding: 40px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    }
    .story-moment-card p {
      font-size: 1rem;
      color: var(--text-body);
      line-height: 1.8;
    }
    .story-moment-card p strong {
      color: var(--color-navy);
    }

    /* --- "Why not DIY?" Section --- */
    /* --- Features Grid --- */
    .features-section {
      padding: 88px 0;
      background: #f9fafb;
    }
    .features-section .section-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .features-section h2 {
      font-family: var(--font-family);
      font-size: 2.2rem;
      font-weight: 700;
      line-height: 1.2;
    }
    .features-section .section-subtitle {
      color: var(--text-muted);
      font-size: 1.05rem;
      margin-top: 8px;
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .feature-card {
      padding: 32px;
      background: var(--color-white);
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    }
    .feature-card:hover {
      border-color: var(--color-navy);
      box-shadow: 0 8px 30px rgba(17, 51, 98, 0.08);
      transform: translateY(-2px);
    }
    .feature-card-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--color-pale-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .feature-card-icon svg {
      color: var(--color-navy);
    }
    .feature-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .feature-card p {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* --- Testimonials Grid --- */
    .testimonials-section {
      background: var(--color-navy);
      color: var(--color-white);
      padding: 96px 0;
    }
    .testimonials-section .section-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .testimonials-section h2 {
      font-family: var(--font-family);
      font-size: 2.2rem;
      font-weight: 700;
    }
    .testimonials-section .section-subtitle {
      color: var(--color-light-blue);
      margin-top: 8px;
      font-size: 1.05rem;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testimonial-card {
      background: rgba(255,255,255,0.06);
      border-radius: 12px;
      padding: 32px;
      border: 1px solid rgba(255,255,255,0.1);
      transition: background 0.25s ease;
    }
    .testimonial-card:hover {
      background: rgba(255,255,255,0.1);
    }
    .testimonial-stars {
      display: block;
      color: #fbbf24;
      font-size: 0.9rem;
      margin-bottom: 16px;
      letter-spacing: 2px;
    }
    .testimonial-card blockquote {
      font-size: 1rem;
      font-style: italic;
      line-height: 1.65;
      color: #e0e7f0;
      margin-bottom: 24px;
    }
    .testimonial-card cite {
      display: flex;
      align-items: center;
      gap: 12px;
      font-style: normal;
    }
    .testimonial-card-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(148, 174, 208, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.8rem;
      color: var(--color-white);
      flex-shrink: 0;
    }
    .testimonial-card-info strong {
      font-size: 0.9rem;
      display: block;
    }
    .testimonial-card-info span {
      font-size: 0.8rem;
      color: var(--color-light-blue);
    }

    /* --- What's Included --- */
    .included {
      background: var(--color-cream);
      padding: 80px 0;
    }
    .included .container {
      max-width: 960px;
    }
    .included-heading {
      text-align: center;
      margin-bottom: 48px;
    }
    .included-heading h2 {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 8px;
    }
    .included-heading p {
      color: var(--text-muted);
      font-size: 1rem;
    }
    .included-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }
    .included-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .included-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--color-white);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--color-navy);
    }
    .included-item h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .included-item p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.55;
    }

    /* --- FAQ --- */
    .faq-inline {
      padding: 96px 0;
      background: var(--color-white);
    }
    .faq-inline .section-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .faq-inline h2 {
      font-family: var(--font-family);
      font-size: 2.2rem;
      font-weight: 700;
    }
    .faq-list {
      max-width: 680px;
      margin: 0 auto;
    }
    .faq-item-v2 {
      border-bottom: 1px solid #e5e7eb;
    }
    .faq-item-v2:first-child {
      border-top: 1px solid #e5e7eb;
    }
    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 0;
      min-height: 56px;
      cursor: pointer;
      background: none;
      border: none;
      width: 100%;
      font-family: var(--font-family);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--color-black);
      text-align: left;
    }
    .faq-question:hover {
      color: var(--color-navy);
    }
    .faq-question svg {
      flex-shrink: 0;
      transition: transform 0.25s ease;
    }
    .faq-item-v2.open .faq-question svg {
      transform: rotate(45deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.7;
    }
    .faq-item-v2.open .faq-answer {
      max-height: 300px;
      padding-bottom: 20px;
    }

    /* --- Final CTA --- */
    .final-cta {
      background: var(--color-black);
      color: var(--color-white);
      padding: 112px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .final-cta::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -20%;
      width: 60%;
      height: 200%;
      background: radial-gradient(ellipse at center, rgba(17,51,98,0.2) 0%, transparent 70%);
      pointer-events: none;
    }
    .final-cta .container {
      position: relative;
      z-index: 1;
    }
    .final-cta h2 {
      font-family: var(--font-family);
      font-size: 2.6rem;
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 20px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .final-cta p {
      font-size: 1.1rem;
      color: #d1d5db;
      max-width: 500px;
      margin: 0 auto 40px;
      line-height: 1.65;
    }
    .final-cta-buttons {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .final-cta .final-cta-trust {
      margin: 56px auto 0;
      font-size: 0.85rem;
      color: #9ca3af;
    }

    /* --- Reduced Motion --- */
    @media (prefers-reduced-motion: reduce) {
      .fade-in { opacity: 1; transform: none; transition: none; }
      .faq-answer { transition: none; }
      .feature-card { transition: none; }
      .hero-v2-image img { transition: none; }
      .hero-v2-image:hover img { transform: none; }
      .faq-question svg { transition: none; }
      .testimonial-card { transition: none; }
    }

    /* ===== Responsive ===== */

    @media (max-width: 1024px) {
      .hero-v2 h1 { font-size: 2.6rem; }
      .hero-v2-text { padding: 64px 40px 64px calc(max(24px, (100vw - var(--max-width)) / 2)); }
      .how-step { gap: 40px; }
      .story-moment-inner { gap: 40px; }
    }

    @media (max-width: 834px) {
      .hero-v2-inner { grid-template-columns: 1fr; min-height: auto; }
      .hero-v2-text { padding: 56px 24px 48px; }
      .hero-v2 h1 { font-size: 2.4rem; }
      .hero-v2-image {
        height: 420px;
        background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
      }
      .hero-v2-image img { width: 100%; height: 100%; object-fit: cover; }
      .how-step {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 0;
      }
      .how-step:nth-child(even) { direction: ltr; }
      .story-moment-inner { grid-template-columns: 1fr; gap: 40px; }
      .story-moment-quote blockquote { font-size: 1.4rem; }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 640px) {
      .hero-v2 h1 { font-size: 2rem; }
      .hero-v2-subtitle { font-size: 1rem; }
      .hero-v2-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
      .hero-v2-buttons { flex-direction: column; align-items: stretch; }
      .hero-v2-buttons .btn { text-align: center; }
      .how-section-header h2,
      .features-section h2,
      .testimonials-section h2,
      .included-heading h2,
      .faq-inline h2 {
        font-size: 1.8rem;
      }
      .features-grid { grid-template-columns: 1fr; }
      .included-grid { grid-template-columns: 1fr; }
      .included { padding: 56px 0; }
      .included-heading { margin-bottom: 32px; }
      .final-cta { padding: 80px 0; }
      .final-cta h2 { font-size: 2rem; }
      .final-cta-buttons { flex-direction: column; align-items: center; }
    }

    @media (max-width: 480px) {
      .hero-v2 h1 { font-size: 1.75rem; }
      .hero-v2-image { height: 300px; }
      .hero-v2-image img { width: 100%; height: 100%; object-fit: cover; }
      body { font-size: 1rem; }
      .feature-card p,
      .how-step-text p,
      .faq-answer {
        font-size: 1rem;
      }
      .story-moment-quote blockquote { font-size: 1.2rem; }
    }
