
        /* =========================================
           RESET & GLOBAL
        ========================================== */

       
        button {
            font-family: inherit;
        }

        .fc-container {
            width: min(1180px, calc(100% - 40px));
            margin: 0 auto;
        }

        /* =========================================
           TYPOGRAPHY
        ========================================== */

        .fc-eyebrow {
            display: inline-block;
            margin-bottom: 15px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            color: #e87522;
        }

        .fc-section-heading {
            max-width: 800px;
            margin: 0 auto 55px;
            text-align: center;
        }

        .fc-section-heading h2 {
            margin: 0 0 18px;
            font-size: clamp(32px, 5vw, 52px);
            line-height: 1.1;
            color: #202020;
        }

        .fc-section-heading p {
            margin: 0;
            font-size: 18px;
            color: #666666;
        }

        /* =========================================
           BUTTONS
        ========================================== */

        .fc-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 54px;
            padding: 14px 28px;
            border-radius: 5px;
            font-size: 15px;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .fc-btn-primary {
            background: #e87522;
            color: #ffffff;
            border: 2px solid #e87522;
        }

        .fc-btn-primary:hover {
            background: #c95f14;
            border-color: #c95f14;
            transform: translateY(-2px);
        }

        .fc-btn-outline {
            color: #e87522;
            border: 2px solid #e87522;
            background: transparent;
        }

        .fc-btn-outline:hover {
            background: #e87522;
            color: #ffffff;
        }

        .fc-btn-white {
            background: #ffffff;
            color: #e87522;
            border: 2px solid #ffffff;
        }

        .fc-btn-white:hover {
            background: transparent;
            color: #ffffff;
        }

        /* =========================================
           HERO
        ========================================== */

        .fc-hero {
            padding: 120px 0;
            background:
                linear-gradient(
                    135deg,
                    #fff7f0 0%,
                    #ffffff 60%,
                    #fff3e8 100%
                );
        }

        .fc-hero-content {
            max-width: 900px;
        }

        .fc-hero h1 {
            margin: 0 0 25px;
            font-size: clamp(42px, 7vw, 76px);
            line-height: 1.05;
            letter-spacing: -2px;
            color: #202020;
        }

        .fc-hero h1 span {
            display: block;
            color: #e87522;
        }

        .fc-hero p {
            max-width: 720px;
            margin: 0 0 35px;
            font-size: 20px;
            color: #5d5d5d;
        }

        .fc-hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        /* =========================================
           SCORECARD
        ========================================== */

        .fc-scorecard-section {
            padding:  0;
            background: #ffffff;
        }

        .fc-scorecard {
            max-width: 900px;
            margin: 0 auto;
            padding: 50px;
            border: 1px solid #eeeeee;
            border-radius: 14px;
            background: #ffffff;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .fc-progress-wrapper {
            margin-bottom: 45px;
        }

        .fc-progress-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 14px;
            color: #666666;
        }

        .fc-progress {
            height: 8px;
            overflow: hidden;
            border-radius: 20px;
            background: #eeeeee;
        }

        .fc-progress-bar {
            width: 10%;
            height: 100%;
            border-radius: 20px;
            background: #e87522;
            transition: width 0.4s ease;
        }

        /* QUESTIONS */

        .fc-question {
            display: none;
        }

        .fc-question.active {
            display: block;
            animation: fcFadeIn 0.4s ease;
        }

        @keyframes fcFadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fc-question-number {
            display: block;
            margin-bottom: 15px;
            font-size: 14px;
            font-weight: 700;
            color: #e87522;
            letter-spacing: 1px;
        }

        .fc-question h3 {
            max-width: 700px;
            margin: 0 0 35px;
            font-size: 30px;
            line-height: 1.25;
            color: #222222;
        }

        .fc-answer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .fc-answer {
            min-height: 65px;
            padding: 15px;
            border: 2px solid #e6e6e6;
            border-radius: 6px;
            background: #ffffff;
            color: #333333;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .fc-answer:hover {
            border-color: #e87522;
            color: #e87522;
            transform: translateY(-2px);
        }

        /* RESULT */

        .fc-result {
            display: none;
            text-align: center;
        }

        .fc-result.show {
            display: block;
            animation: fcFadeIn 0.5s ease;
        }

        .fc-result-circle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 160px;
            height: 160px;
            margin: 0 auto 30px;
            border: 8px solid #e87522;
            border-radius: 50%;
        }

        .fc-result-circle span {
            font-size: 38px;
            font-weight: 800;
            color: #e87522;
        }

        .fc-result h3 {
            margin: 5px 0 15px;
            font-size: 32px;
        }

        .fc-result p {
            max-width: 600px;
            margin: 0 auto 30px;
            color: #666666;
        }

        /* =========================================
           SITUATION SECTION
        ========================================== */

        .fc-situation-section {
            padding:  0;
            background: #f5f5f5 ;
        }

        .fc-situation-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .fc-situation-card {
            position: relative;
            min-height: 250px;
            padding: 35px;
            border: 1px solid #e5e5e5;
            border-radius: 10px;
            background: #ffffff;
            color: #222222;
            transition: all 0.3s ease;
        }

        .fc-situation-card:hover {
            border-color: #e87522;
            transform: translateY(-7px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }

        .fc-card-number {
            display: block;
            margin-bottom: 35px;
            font-size: 13px;
            font-weight: 700;
            color: #e87522;
            display: none;
        }

        .fc-situation-card h3 {
            margin: 0 0 12px;
            font-size: 22px;
            line-height: 1.3;
        }

        .fc-situation-card p {
            margin: 0;
            color: #777777;
        }

        .fc-card-arrow {
            position: absolute;
            right: 30px;
            bottom: 25px;
            font-size: 25px;
            color: #e87522;
        }

        /* =========================================
           CASE STUDIES
        ========================================== */

        .fc-case-study-section {
            padding:  0;
            background: #ffffff;
        }

        .fc-case-study-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .fc-case-card {
            position: relative;
            min-height: 230px;
            padding: 35px;
            text-align: left;
            border: 1px solid #e5e5e5;
            border-radius: 10px;
            background: #ffffff;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .fc-case-card:last-child {
            grid-column: 1 / -1;
        }

        .fc-case-card:hover {
            border-color: #e87522;
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }

        .fc-case-icon {
            display: block;
            margin-bottom: 30px;
            font-size: 13px;
            font-weight: 700;
            color: #e87522;
              display: none;
        }

        .fc-case-card h3 {
            max-width: 650px;
            margin: 0 0 25px;
            font-size: 22px;
            line-height: 1.35;
            color: #222222;
        }

        .fc-case-link {
            font-size: 14px;
            font-weight: 700;
            color: #e87522;
        }

        /* CASE PREVIEW */

        .fc-case-preview {
            position: relative;
            display: none;
            margin-top: 30px;
            padding: 45px;
            border-radius: 10px;
            background: #fff5ec;
        }

        .fc-case-preview.show {
            display: block;
            animation: fcFadeIn 0.4s ease;
        }

        .fc-case-preview h3 {
            margin: 0 0 15px;
            font-size: 32px;
        }

        .fc-case-preview p {
            max-width: 750px;
            margin: 0 0 25px;
            color: #666666;
        }

        .fc-case-close {
            position: absolute;
            top: 15px;
            right: 20px;
            border: 0;
            background: transparent;
            font-size: 30px;
            color: #777777;
            cursor: pointer;
        }

        /* =========================================
           FINAL CTA
        ========================================== */

        .fc-consultation {
            padding: 100px 0;
            background: #e87522;
        }

        .fc-consultation-box {
            max-width: 850px;
            margin: 0 auto;
            text-align: center;
        }

        .fc-consultation .fc-eyebrow {
            color: #ffffff;
        }

        .fc-consultation h2 {
            margin: 0 0 20px;
            font-size: clamp(34px, 5vw, 54px);
            line-height: 1.1;
            color: #ffffff;
        }

        .fc-consultation p {
            max-width: 650px;
            margin: 0 auto 30px;
            font-size: 18px;
            color: #ffffff;
        }

        /* =========================================
           RESPONSIVE
        ========================================== */

        @media (max-width: 900px) {

            .fc-hero {
                padding: 90px 0;
            }

            .fc-situation-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .fc-scorecard {
                padding: 35px;
            }
        }

        @media (max-width: 700px) {

            .fc-container {
                width: min(100% - 30px, 1180px);
            }

            .fc-hero {
                padding: 70px 0;
            }

            .fc-hero h1 {
                letter-spacing: -1px;
            }

            .fc-hero p {
                font-size: 17px;
            }

            .fc-hero-buttons {
                flex-direction: column;
            }

            .fc-btn {
                width: 100%;
            }

            .fc-scorecard-section,
            .fc-situation-section,
            .fc-case-study-section {
                padding: 75px 0;
            }

            .fc-scorecard {
                padding: 25px 20px;
            }

            .fc-question h3 {
                font-size: 24px;
            }

            .fc-answer-grid {
                grid-template-columns: 1fr;
            }

            .fc-situation-grid {
                grid-template-columns: 1fr;
            }

            .fc-case-study-grid {
                grid-template-columns: 1fr;
            }

            .fc-case-card:last-child {
                grid-column: auto;
            }

            .fc-case-preview {
                padding: 35px 25px;
            }

            .fc-case-preview h3 {
                font-size: 26px;
            }

            .fc-consultation {
                padding: 75px 0;
            }
        }

        @media (max-width: 480px) {

            .fc-section-heading {
                margin-bottom: 35px;
            }

            .fc-section-heading h2 {
                font-size: 32px;
            }

            .fc-scorecard {
                border-radius: 8px;
            }

            .fc-result-circle {
                width: 130px;
                height: 130px;
            }

            .fc-result-circle span {
                font-size: 32px;
            }

            .fc-situation-card,
            .fc-case-card {
                min-height: 220px;
                padding: 25px;
            }
        }
   