/* 
 * Stylesheet for the 'Mind Format Passport' user flow.
 * Includes Landing, Pay Checkout/Simulator, Thanks, and Anketa styles.
 * Theme: GeneratePress Child
 */

/* Common Variables & Tokens */
:root {
    --fm-blue: #0071e3;
    --fm-blue-hover: #0077ed;
    --fm-black: #1d1d1f;
    --fm-dark-gray: #424245;
    --fm-gray: #86868b;
    --fm-light-gray: #f5f5f7;
    --fm-border: #e5e5ea;
    --fm-white: #ffffff;
    --fm-font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fm-animate {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Shared Containers & Layout */
.fm-container {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

.fm-section {
    padding: 100px 0;
    box-sizing: border-box;
}

.fm-section.dark-bg {
    background-color: var(--fm-black);
    color: var(--fm-white);
}

.fm-section.dark-bg .section-title,
.fm-section.dark-bg .section-subtitle,
.fm-section.dark-bg h2,
.fm-section.dark-bg h3,
.fm-section.dark-bg p {
    color: var(--fm-white);
}

.fm-section.alt-bg {
    background-color: var(--fm-light-gray);
}

.fm-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px auto;
}

.fm-section-header .section-category-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fm-gray);
    margin-bottom: 12px;
}

.fm-section-header .section-title {
    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--fm-black);
}

.fm-section-header .section-subtitle {
    font-size: 18px;
    line-height: 1.5;
    color: var(--fm-gray);
}

/* Icons styling */
.fm-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--fm-light-gray);
    color: var(--fm-blue);
    margin-bottom: 24px;
}

.fm-icon-wrapper svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Buttons */
.fm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 980px;
    text-decoration: none !important;
    transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}

.fm-btn.primary {
    background-color: var(--fm-blue);
    color: var(--fm-white) !important;
}

.fm-btn.primary:hover {
    background-color: var(--fm-blue-hover);
    transform: scale(1.02);
}

.fm-btn.secondary {
    background-color: var(--fm-light-gray);
    color: var(--fm-black) !important;
}

.fm-btn.secondary:hover {
    background-color: var(--fm-border);
    transform: scale(1.02);
}

/* ==========================================================================
   PAGE 1: LANDING PAGE SPECIFICS
   ========================================================================== */

/* Hero Section */
.fm-hero-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.fm-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.fm-hero-info .hero-tagline {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--fm-gray);
    margin-bottom: 12px;
}

.fm-hero-info .hero-title {
    font-size: 56px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--fm-black);
    margin-bottom: 24px;
}

.fm-hero-info .hero-description {
    font-size: 20px;
    line-height: 1.45;
    color: var(--fm-dark-gray);
    margin-bottom: 32px;
}

.fm-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fm-hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--fm-dark-gray);
}

.fm-hero-bullets li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    fill: var(--fm-blue);
    margin-top: 2px;
}

.fm-hero-cta-box {
    display: flex;
    align-items: center;
    gap: 24px;
}

.fm-hero-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--fm-black);
    letter-spacing: -0.02em;
}

.fm-hero-price-note {
    font-size: 13px;
    color: var(--fm-gray);
    margin-top: 4px;
}

.fm-hero-cta-box .fm-hero-cta-btn-wrapper {
    display: flex;
    flex-direction: column;
}

.fm-hero-cta-note {
    font-size: 12px;
    color: var(--fm-gray);
    margin-top: 8px;
    max-width: 280px;
    line-height: 1.4;
}

/* Concept Section (OS мозга) */
.fm-concept-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.fm-concept-intro {
    font-size: 20px;
    line-height: 1.55;
    text-align: center;
    max-width: 780px;
    margin: 0 auto 20px auto;
    color: var(--fm-dark-gray);
}

.fm-concept-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fm-concept-card {
    background-color: var(--fm-white);
    border: 1px solid var(--fm-border);
    border-radius: 20px;
    padding: 32px;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fm-concept-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.fm-concept-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--fm-black);
}

.fm-concept-card-text {
    font-size: 15px;
    line-height: 1.5;
    color: var(--fm-dark-gray);
}

/* Pain Section (Усталость / Отапливание космоса) */
.fm-pain-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.fm-pain-info .lead-text {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--fm-black);
    margin-bottom: 24px;
}

.fm-pain-info p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--fm-dark-gray);
    margin-bottom: 20px;
}

.fm-pain-visual {
    position: relative;
    border: 1px solid var(--fm-border);
    border-radius: 24px;
    background-color: var(--fm-white);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

/* Measures Section (Что измеряем) */
.fm-measures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.fm-measure-card {
    background-color: var(--fm-white);
    border: 1px solid var(--fm-border);
    border-radius: 24px;
    padding: 40px 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.fm-measure-card .fm-icon-wrapper {
    background-color: var(--fm-light-gray);
}

.fm-measure-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--fm-black);
}

.fm-measure-desc {
    font-size: 15px;
    line-height: 1.55;
    color: var(--fm-dark-gray);
}

.fm-measures-footer {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--fm-gray);
}

/* Value Section (Что вы получаете) */
.fm-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.fm-value-card {
    background-color: var(--fm-light-gray);
    border-radius: 20px;
    padding: 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    transition: background-color 0.2s ease;
}

.fm-value-card:hover {
    background-color: #ededf0;
}

.fm-value-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--fm-black);
}

.fm-value-card-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--fm-dark-gray);
}

.fm-value-footer {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    color: var(--fm-black);
    letter-spacing: -0.01em;
}

/* Before / After Section */
.fm-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.fm-split-column {
    background-color: var(--fm-white);
    border: 1px solid var(--fm-border);
    border-radius: 24px;
    padding: 48px;
    box-sizing: border-box;
}

.fm-split-column.dark {
    background-color: var(--fm-light-gray);
}

.fm-split-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.fm-split-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fm-split-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    line-height: 1.45;
}

.fm-split-list li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.fm-split-list.before li svg {
    fill: #ff3b30;
}

.fm-split-list.after li svg {
    fill: #34c759;
}

/* Example Language Section */
.fm-example-card {
    background-color: var(--fm-white);
    border: 1px solid var(--fm-border);
    border-radius: 24px;
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.01);
}

.fm-example-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fm-example-list li {
    position: relative;
    padding-left: 36px;
    font-size: 17px;
    line-height: 1.55;
    color: var(--fm-dark-gray);
}

.fm-example-list li::before {
    content: "—";
    position: absolute;
    left: 8px;
    color: var(--fm-blue);
    font-weight: 700;
}

/* Process Steps Section */
.fm-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.fm-step-card {
    background-color: var(--fm-white);
    border: 1px solid var(--fm-border);
    border-radius: 20px;
    padding: 32px 24px;
    box-sizing: border-box;
    position: relative;
}

.fm-step-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--fm-blue);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fm-step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--fm-black);
}

.fm-step-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--fm-gray);
}

/* Main Purchase Box Section */
.fm-purchase-card {
    background-color: var(--fm-white);
    border: 1px solid var(--fm-border);
    border-radius: 28px;
    padding: 60px;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.03);
}

.fm-purchase-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--fm-black);
    letter-spacing: -0.025em;
}

.fm-purchase-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--fm-blue);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.fm-purchase-bullets {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    max-width: 440px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid var(--fm-border);
    border-bottom: 1px solid var(--fm-border);
    padding-top: 28px;
    padding-bottom: 28px;
}

.fm-purchase-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    color: var(--fm-dark-gray);
}

.fm-purchase-bullets li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    fill: #34c759;
    margin-top: 2px;
}

.fm-purchase-footnote {
    font-size: 12px;
    color: var(--fm-gray);
    margin-top: 12px;
    line-height: 1.5;
}

/* FAQ Accordion Section */
.fm-faq-accordion {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fm-faq-item {
    border: 1px solid var(--fm-border);
    border-radius: 16px;
    background-color: var(--fm-white);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.fm-faq-item:hover {
    border-color: #a2a2a7;
}

.fm-faq-question {
    padding: 24px;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--fm-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.fm-faq-question::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--fm-gray);
    border-bottom: 2px solid var(--fm-gray);
    transform: rotate(45deg);
    margin-right: 4px;
    transition: transform 0.2s ease;
}

.fm-faq-item.active .fm-faq-question::after {
    transform: rotate(-135deg);
}

.fm-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.fm-faq-answer-inner {
    padding: 0 24px 24px 24px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--fm-dark-gray);
}

/* Sticky Bottom Purchase Panel */
.fm-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-top: 1px solid var(--fm-border);
    padding: 16px 0;
    z-index: 990;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.03);
}

.fm-sticky-bar.visible {
    transform: translateY(0);
}

.fm-sticky-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fm-sticky-bar-info {
    display: flex;
    flex-direction: column;
}

.fm-sticky-bar-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--fm-black);
}

.fm-sticky-bar-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--fm-blue);
}

.fm-sticky-bar-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
}

/* ==========================================================================
   PAGE 2: PAY CHECKOUT & SIMULATOR
   ========================================================================== */

.fm-flow-page {
    background-color: var(--fm-light-gray);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    box-sizing: border-box;
    width: 100%;
}

.fm-card-box {
    background-color: var(--fm-white);
    border: 1px solid var(--fm-border);
    border-radius: 28px;
    padding: 48px;
    width: 100%;
    max-width: 520px;
    box-sizing: border-box;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.fm-flow-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: var(--fm-black);
    letter-spacing: -0.02em;
}

.fm-flow-subtitle {
    font-size: 15px;
    color: var(--fm-gray);
    text-align: center;
    margin-bottom: 36px;
    line-height: 1.4;
}

/* Form Styles */
.fm-form-group {
    margin-bottom: 24px;
}

.fm-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--fm-black);
    margin-bottom: 8px;
}

.fm-input,
.fm-textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    background-color: var(--fm-light-gray);
    border: 1px solid transparent;
    border-radius: 12px;
    box-sizing: border-box;
    color: var(--fm-black);
    outline: none;
    transition: all 0.2s ease;
    font-family: var(--fm-font);
}

.fm-input:focus,
.fm-textarea:focus {
    background-color: var(--fm-white);
    border-color: var(--fm-blue);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.fm-textarea {
    min-height: 100px;
    resize: vertical;
}

.fm-form-btn {
    width: 100%;
    margin-top: 12px;
}

/* Simulator/Warning Box */
.fm-simulator-box {
    background-color: #fff8e6;
    border: 1px solid #ffeeba;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    color: #856404;
}

.fm-simulator-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    background-color: #ffe8a1;
    color: #b25900;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.fm-simulator-box h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #856404;
}

.fm-simulator-box p {
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
    color: #997509;
}

.fm-simulator-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.fm-simulator-btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
}

/* ==========================================================================
   PAGE 3: THANKS SPECIFICS
   ========================================================================== */

.fm-success-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    background-color: #e8f7ed;
    color: #34c759;
    margin: 0 auto 28px auto;
}

.fm-success-icon-wrapper svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.fm-order-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    background-color: var(--fm-light-gray);
    color: var(--fm-dark-gray);
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* ==========================================================================
   PAGE 4: ANKETA QUESTIONNAIRE SPECIFICS
   ========================================================================== */

.fm-anketa-card {
    max-width: 680px;
}

/* Progress Bar */
.fm-progress-container {
    margin-bottom: 36px;
}

.fm-progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: var(--fm-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.fm-progress-bar-bg {
    height: 6px;
    background-color: var(--fm-light-gray);
    border-radius: 100px;
    overflow: hidden;
}

.fm-progress-bar-fill {
    height: 100%;
    background-color: var(--fm-blue);
    width: 25%;
    border-radius: 100px;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Step navigation flow */
.fm-anketa-step {
    display: none;
}

.fm-anketa-step.active {
    display: block;
    animation: fadeInUp 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Custom Channel Radio choices */
.fm-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.fm-channel-option {
    position: relative;
}

.fm-channel-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.fm-channel-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 1px solid var(--fm-border);
    border-radius: 16px;
    background-color: var(--fm-white);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.fm-channel-box svg {
    width: 24px;
    height: 24px;
    margin-bottom: 10px;
    fill: var(--fm-gray);
    transition: fill 0.2s ease;
}

.fm-channel-box span {
    font-size: 13px;
    font-weight: 600;
    color: var(--fm-dark-gray);
}

.fm-channel-option input[type="radio"]:checked + .fm-channel-box {
    border-color: var(--fm-blue);
    background-color: rgba(0, 113, 227, 0.03);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.fm-channel-option input[type="radio"]:checked + .fm-channel-box svg {
    fill: var(--fm-blue);
}

.fm-channel-option input[type="radio"]:checked + .fm-channel-box span {
    color: var(--fm-blue);
}

/* Nav Actions inside Anketa */
.fm-anketa-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 36px;
    gap: 16px;
    border-top: 1px solid var(--fm-border);
    padding-top: 24px;
}

.fm-anketa-nav .fm-btn {
    flex: 1;
}

/* Disclaimer Section (Required by payment processor) */
.fm-disclaimer-section {
    padding: 60px 0 80px 0;
    background-color: var(--fm-light-gray);
    border-top: 1px solid var(--fm-border);
    color: var(--fm-gray);
    font-size: 13px;
    line-height: 1.6;
}

.fm-disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
}

.fm-disclaimer-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--fm-dark-gray);
    margin-top: 0;
    margin-bottom: 16px;
    line-height: 1.4;
}

.fm-disclaimer-text {
    margin-bottom: 12px;
    color: var(--fm-gray);
}

.fm-disclaimer-subcontent {
    margin: 20px 0;
    padding-left: 0;
}

.fm-disclaimer-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--fm-dark-gray);
    margin-top: 0;
    margin-bottom: 10px;
}

.fm-disclaimer-list {
    margin: 0 0 12px 0;
    padding-left: 20px;
    list-style-type: disc;
}

.fm-disclaimer-list li {
    margin-bottom: 10px;
    color: var(--fm-gray);
}

.fm-disclaimer-list li strong,
.fm-disclaimer-text strong {
    color: var(--fm-dark-gray);
}

/* Report Accordion Styles */
.fm-report-accordion {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid var(--fm-border);
}

.fm-report-item {
    border-bottom: 1px solid var(--fm-border);
}

.fm-report-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--fm-black);
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
    border-radius: 12px;
}

button.fm-report-header:focus,
button.fm-report-header:active {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    color: var(--fm-black) !important;
}

.fm-report-item.active button.fm-report-header:focus,
.fm-report-item.active button.fm-report-header:active {
    color: var(--fm-blue) !important;
}

button.fm-faq-question:focus,
button.fm-faq-question:active {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    color: var(--fm-black) !important;
}

button.fm-faq-question:hover,
button.fm-faq-question:hover:focus {
    background: none !important;
    background-color: transparent !important;
    color: var(--fm-black) !important;
}

button.fm-report-header:hover,
button.fm-report-header:hover:focus {
    background-color: #f5f5f7 !important;
    color: var(--fm-blue) !important;
}

.fm-report-header::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--fm-gray);
    border-bottom: 2px solid var(--fm-gray);
    transform: rotate(45deg);
    margin-right: 8px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.2s ease;
}

.fm-report-header:hover::after {
    border-color: var(--fm-blue);
}

.fm-report-item.active .fm-report-header {
    color: var(--fm-blue);
}

.fm-report-item.active .fm-report-header::after {
    transform: rotate(-135deg);
    border-color: var(--fm-blue);
}

.fm-report-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.fm-report-content-inner {
    padding: 0 16px 24px 16px;
}

.fm-report-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fm-report-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--fm-dark-gray);
}

.fm-report-list-item svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    fill: var(--fm-blue);
    margin-top: 3.5px;
}

.fm-report-note {
    text-align: center;
    font-size: 13px;
    color: var(--fm-gray);
    margin-top: 32px;
}

/* ==========================================================================
   RESPONSIVENESS (MOBILE-FIRST)
   ========================================================================== */

@media (max-width: 900px) {
    .fm-section {
        padding: 60px 0;
    }
    
    .fm-section-header {
        margin-bottom: 40px;
    }
    
    .fm-section-header .section-title {
        font-size: 30px;
    }
    
    /* Hero */
    .fm-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    
    .fm-hero-info .hero-title {
        font-size: 40px;
    }
    
    .fm-hero-info .hero-description {
        font-size: 17px;
    }
    
    .fm-hero-bullets {
        align-items: center;
    }
    
    .fm-hero-bullets li {
        max-width: 400px;
        text-align: left;
    }
    
    .fm-hero-cta-box {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .fm-hero-cta-box .fm-hero-cta-btn-wrapper {
        align-items: center;
    }
    
    .fm-hero-cta-note {
        text-align: center;
    }
    
    /* Concept */
    .fm-concept-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Pain */
    .fm-pain-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .fm-pain-visual {
        padding: 24px;
    }
    
    /* Measures */
    .fm-measures-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .fm-measure-card {
        padding: 32px 24px;
    }
    
    /* Value */
    .fm-value-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Split Before/After */
    .fm-split-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fm-split-column {
        padding: 32px 24px;
    }
    
    /* Steps */
    .fm-steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Purchase */
    .fm-purchase-card {
        padding: 40px 24px;
    }
    
    .fm-purchase-title {
        font-size: 26px;
    }
    
    .fm-purchase-price {
        font-size: 38px;
    }
    
    /* Pay & Success Cards */
    .fm-card-box {
        padding: 32px 20px;
        border-radius: 20px;
    }
    
    /* Anketa custom grid */
    .fm-channels-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .fm-channel-box {
        flex-direction: row;
        gap: 16px;
        justify-content: flex-start;
        padding: 16px 20px;
    }
    
    .fm-channel-box svg {
        margin-bottom: 0;
    }

    /* Disclaimer Section Mobile */
    .fm-disclaimer-section {
        padding: 40px 0 50px 0;
        font-size: 12px;
    }

    /* Report Accordion Mobile */
    .fm-report-header {
        font-size: 16px;
        padding: 20px 0;
    }
    
    .fm-report-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .fm-report-list-item {
        font-size: 14px;
    }
}

