/* InnerTally home page sections. Extracted from the inline block so the
   production CSP (style-src self) can serve it as a same-origin stylesheet. */
    .section-tag {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #C05070;
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(1.6rem, 3.5vw, 2.3rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #3D2B2B;
      margin-bottom: 16px;
    }
    .section-intro {
      font-size: 1.05rem;
      color: #6B4E4E;
      max-width: 640px;
      margin-bottom: 48px;
    }

    /* ===== How It Works ===== */
    .how-it-works { background: rgba(255, 255, 255, 0.4); }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .step-card {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 195, 114, 0.2);
      border-radius: 20px;
      padding: 36px 28px;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .step-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(192, 80, 112, 0.1);
    }
    .step-number {
      width: 48px; height: 48px;
      margin: 0 auto 20px;
      border-radius: 50%;
      background: linear-gradient(135deg, #FFC372 0%, #FF8EB3 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
      box-shadow: 0 4px 16px rgba(255, 142, 179, 0.3);
    }
    .step-card h3 {
      font-size: 1.15rem;
      font-weight: 600;
      color: #3D2B2B;
      margin-bottom: 10px;
    }
    .step-card p {
      font-size: 0.95rem;
      color: #6B4E4E;
      line-height: 1.6;
    }

    /* ===== Why Count ===== */
    .why-count { position: relative; }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }
    .why-item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }
    .why-icon {
      width: 44px; height: 44px;
      flex-shrink: 0;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
    }
    .why-icon.icon-1 { background: linear-gradient(135deg, #FFC372 0%, #FFD89B 100%); }
    .why-icon.icon-2 { background: linear-gradient(135deg, #FF8EB3 0%, #FDA4CE 100%); }
    .why-icon.icon-3 { background: linear-gradient(135deg, #C05070 0%, #AD7D9E 100%); }
    .why-icon.icon-4 { background: linear-gradient(135deg, #FDA4CE 0%, #FFC372 100%); }
    .why-item h3 {
      font-size: 1.1rem;
      font-weight: 600;
      color: #3D2B2B;
      margin-bottom: 6px;
    }
    .why-item p {
      font-size: 0.95rem;
      color: #6B4E4E;
      line-height: 1.6;
    }

    /* ===== Features ===== */
    .features { background: rgba(255, 255, 255, 0.4); }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .feature-card {
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 195, 114, 0.15);
      border-radius: 18px;
      padding: 28px 24px;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .feature-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(192, 80, 112, 0.08);
    }
    .feature-card .feature-emoji {
      font-size: 1.8rem;
      margin-bottom: 14px;
      display: block;
    }
    .feature-card h3 {
      font-size: 1.05rem;
      font-weight: 600;
      color: #3D2B2B;
      margin-bottom: 8px;
    }
    .feature-card p {
      font-size: 0.9rem;
      color: #6B4E4E;
      line-height: 1.55;
    }

    /* ===== CTA Section ===== */
    .cta-section {
      padding: 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-card {
      max-width: 680px;
      margin: 0 auto;
      background: linear-gradient(135deg, rgba(255, 195, 114, 0.15) 0%, rgba(255, 142, 179, 0.15) 100%);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 195, 114, 0.25);
      border-radius: 28px;
      padding: 56px 40px;
      position: relative;
      z-index: 1;
    }
    .cta-card h2 {
      font-size: clamp(1.6rem, 3.5vw, 2.2rem);
      font-weight: 700;
      color: #3D2B2B;
      margin-bottom: 16px;
    }
    .cta-card p {
      font-size: 1.05rem;
      color: #6B4E4E;
      margin-bottom: 32px;
    }

    /* ===== FAQ Preview ===== */
    .faq-preview { padding: 72px 0; }
    .faq-list {
      max-width: 760px;
      margin: 0 auto;
    }
    .faq-item {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 195, 114, 0.15);
      border-radius: 16px;
      padding: 24px 28px;
      margin-bottom: 16px;
      transition: box-shadow 0.2s;
    }
    .faq-item:hover { box-shadow: 0 4px 20px rgba(192, 80, 112, 0.06); }
    .faq-item h3 {
      font-size: 1.05rem;
      font-weight: 600;
      color: #3D2B2B;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .faq-item h3::before {
      content: "Q";
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px; height: 24px;
      border-radius: 50%;
      background: linear-gradient(135deg, #FFC372 0%, #FF8EB3 100%);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      flex-shrink: 0;
    }
    .faq-item p {
      font-size: 0.95rem;
      color: #6B4E4E;
      line-height: 1.6;
      padding-left: 32px;
    }
    .faq-more {
      text-align: center;
      margin-top: 32px;
    }
    .faq-more a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      color: #C05070;
      font-size: 1rem;
    }

    @media (max-width: 768px) {
      .steps-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .features-grid { grid-template-columns: 1fr; }
      .cta-card { padding: 40px 24px; }
    }
