 :root {
            --primary-teal: #1cbdb8;
            --primary-orange: #ff5b2e;
            --text-dark: #000000;
            --text-muted: #666666;
            --bg-light: #f6f9fc;
            --border-color: #e6ebf1;
        }

        @scope (.gigflex-case-study) {

        .gigflex-case-study {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        } */

        /* Hero Section */
        .hero {
            padding: 9rem 0 9rem;
            text-align: center;
            position: relative;
            background: #F2F5F5;
            overflow: hidden;
        }

.gf-faq details[open] summary:after {
    content: "×";
}
.gf-faq summary:after {
    content: "+";
    float: right;
    color: #00b6b8;
    font-size: 22px;
}

        .hero-tag {
            color:#00B6B8;
            font-weight:500;
            text-transform: uppercase;
            letter-spacing:10%;
            font-size:14px;
            margin-bottom: 1.5rem;
            display: block;
            line-height: 100%;
            font-family: inter, sans-serif;
        }

        .hero h1 {
            font-size:49px;
            font-weight:700;
            line-height: 120%;
            max-width: 900px;
            margin: 0 auto 3.5rem;
            font-family: inter, sans-serif;
        }

        .hero h1 span {
            color:#00B6B8;
        }

        .hero-subtitle {
            font-size: 16px;
            color:#535353 !important;
            max-width: 750px;
            margin: 0 auto 2.5rem;
            font-weight: 400;
             font-family: inter, sans-serif;
        }
        

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 4rem;
        }

        .btn {
            padding: 0.875rem 2rem;
            border-radius: 9999px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 15px;
             font-family: inter, sans-serif;
        
        }

        .btn-primary {
            background-color: #F04D23;
            color: white;
        }

        .btn-primary:hover {
            background-color: #e44d2d;
        }

        .btn-outline {
           border: 1px solid #F04D23;
            color: #F04D23;
        }

        .btn-outline:hover {
            background-color: rgba(255, 94, 58, 0.05);
        }

        /* Decorative circles */
        .circles-decor {
            position: absolute;
            top: -50px;
            right: -50px;
            width: 300px;
            height: 300px;
            pointer-events: none;
            z-index: 0;
        }

        .circles-decor div {
            position: absolute;
            border-radius: 50%;
            border: 1px solid #949695;
        }

        .circle-1 { 
            width: 100%;
        height: 100%;
        top: -65px;
        right: -48px; 
        }
        .circle-2 { width: 80%; height: 80%; top: 10%; right: 10%; }
        .circle-3 { width: 60%; height: 60%; top: 20%; right: 20%; }
        .circle-orange { 
            width: 150px; 
            height: 150px; 
            background: var(--primary-orange); 
           top: 28%;
        right: -61px; 
            border: none !important;
        }

        /* Hero Stats */
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            /* border-top: 1px solid var(--border-color); */
            padding-top: 2rem;
            text-align: left;
            max-width: 880px;
            margin: 0 auto;
        }

        .stat-item span {
            display: block;
            font-size: 13px;
            font-weight:500;
            color:#F04D23;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
             font-family: inter, sans-serif;
        
        }

        .stat-item p {
            font-weight: 500;
            font-size:14px;
            line-height: 1.4;
            color:#2F2F2F;
             font-family: inter, sans-serif;
        
        }

        .stat-item{
            text-align: center;
        }

        /* Content Sections */
        .section {
             /* padding: 9rem 0 0.5rem; */
        }

        .section-1{
            /* padding: 9rem 0 9rem; */
        }

        .section-2{
            /* padding: 9rem 0 9rem; */
            background: #F2F5F5;

        }

        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .section-image {
            width: 100%;
            border-radius: 1rem;
            object-fit: cover;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .section h2 {
            font-size:32px;
            font-weight: 700;
            margin-bottom: 2rem;
            font-family: inter, sans-serif;

        }

        .section p {
            color:#535353;
            margin-bottom: 1.5rem;
            font-size: 16px;
            font-weight: 400;
            line-height: 28px;
            font-family: inter, sans-serif;
        }

        /* Solution Section */
        .solution-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .solution-header h2 {
            font-size:38px;
            line-height: 1.2;
            font-weight: 700;
            font-family: inter, sans-serif;
                    margin-bottom: 20px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
           background: #00B6B80D;

            border: 1px solid #ccfbf1;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary-teal);
            font-size: 1.25rem;
        }

        .feature-card h3 {
            font-size: 16px;
            margin-bottom:15px;
            font-weight:600;
            line-height: 100%;
            letter-spacing: 0%;
            font-family: inter, sans-serif;
        }

        .feature-card p {
            font-size:15px;
            font-weight: 400;
            color: #535353 !important;
            margin-bottom: 0;
            line-height: 24px;
            font-family: inter, sans-serif;
        }

        /* Rotation Steps */
        .rotation-section {
             /* padding: 9rem 0 9rem; */
            background-color: #fff;
        }

        .rotation-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .rotation-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0rem 3rem;
            max-width: 1000px;
            margin: 0 auto;
            
        }

        /* .rotation-grid h2{
            color: #000;
    font-weight: 700;
    line-height: normal;
    font-size:38px;
        } */
.day-1{
    font-weight: 700;
    font-size: 32px;
    line-height: 110%;
    letter-spacing: 0%;
    margin-bottom: 15px;
    font-family: inter, sans-serif;

}

.look-1{
    font-weight: 400;
    font-size: 16px;
    color:#535353 !important;
    font-family: inter, sans-serif;
}
        .step-item {
            display: flex;
            gap: 1.5rem;
            /* margin-bottom: 2rem; */
            border-bottom: 1px solid #E9E9E9;
            padding: 25px 0px;
        }

        .step-number {
            flex-shrink: 0;
            width: 46px;
            height: 46px;
            background-color:#F04D23;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size:18px;
            font-family: inter, sans-serif;
        }

        .step-content h4 {
            font-size: 16px;
            font-weight:600;
            margin-bottom: 0.5rem;
            line-height: 22px;
            letter-spacing: 0%;
            font-family: inter, sans-serif;
        }

        .step-content p {
            font-size:15px;
            color:#535353;
            font-weight: 400;
            line-height: 24px;
            font-family: inter, sans-serif;
        }

        .step-full {
            grid-column: span 2;
        }

        /* Testimonial */
        .testimonial {
            margin: 1rem auto;
            max-width: 900px;
            padding: 3rem;
            border: 1px dashed #00B6B8;
            
            border-radius: 1rem;
            position: relative;
            background: #00B6B805;

        }

        .stars {
            color: #fbbf24;
            margin-bottom: 1.5rem;
            display: block;
        }

        .testimonial-text {
            font-size: 18px;
            font-style: italic;
            color:#535353 !important;
            margin-bottom: 2rem;
            font-weight: 400;
            border-bottom: 1px solid #E9E9E9;
            font-family: inter, sans-serif;
            padding-bottom: 25px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            background-color:#00C48C;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight:800;
            font-size:15px;
            font-family: inter, sans-serif;
        }

        .author-info h5 {
            font-weight:600;
            font-size: 15px;
            font-family: inter, sans-serif;
        }

        .author-info p {
            font-size:13px;
            font-weight: 400;
            color:#9D9D9D;
            margin: 0;
            font-family: inter, sans-serif;
        }

        /* CTA Section */
        .cta-section {
            background-color: #00B6B8;
            color: white;
            padding: 6rem 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size:38px;
            margin-bottom: 1rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 700;
            color: white;
            font-family: inter, sans-serif;
        }

        .cta-section p {
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 3rem;
            /* opacity: 0.9; */
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 28px;
            font-family: inter, sans-serif;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .btn-white {
            background-color: white;
            color: var(--primary-teal);
        }

        .btn-outline-white {
            border: 1px solid white;
            color: white;
        }

        faq question

        .gf-overline {
    color: #00b6b8;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.12px;
    text-transform: uppercase;
}

.gf-figma h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;}

    .gf-faq details {
    text-align: left;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    margin-top: 20px;
    padding: 18px 26px;
}

.gf-faq summary {
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    list-style: none;
}

summary {
    display: list-item;
    /* cursor: pointer; */
}

.gf-faq summary:after {
    content: "+";
    float: right;
    color: #00b6b8;
    font-size: 22px;
}



        .gf-faq {
            width: min(854px, calc(100% - 56px));
              padding: 80px 0 83px;
                   text-align: center;
                   
}


.gf-figma {
    font-family: Inter, Arial, sans-serif;
    color: #000;}


    .gf-cta {
    height: 380px;
    padding-top: 70px;
    background: #00b6b8;
    color: #fff;
    text-align: center;
}

.gf-demo-btn {
    display: inline-block;
    border-radius: 50px;
    margin: 0 4px;
    padding: 16px 30px;
    background: #fff;
    color: #00B6B8 !important;
    font-size: 15px;
    font-weight: 700;
    font-family: Inter;
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration: none !important;
}

.gf-call-btn {
    display: inline-block;
    border-radius: 50px;
    margin: 0 4px;
    padding: 16px 30px;
    border: 1px solid #FFFFFF;
    background: transparent !important;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    font-family: Inter;
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration: none !important;
}

        /* FAQ Section */
        /* .faq-section {
            padding: 6rem 0;
            background-color: #fff;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid var(--border-color);
            border-radius: 0.75rem;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px 28px 5px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight:600;
            font-size: 16px;
            transition: background 0.2s;
            color:#000000 !important;
            font-family: inter, sans-serif;
        }

        .active.faq-question{
             padding: 20px 28px 5px;
        }

        .faq-question:hover {
            background-color: #f9fafb;
        }

        .faq-answer {
            padding: 0 28px 25px;
            color: #535353;
            font-size:15px;
            font-weight: 400;
            display: none;
                    line-height: 24px;
                    font-family: inter, sans-serif;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-icon {
            color: var(--primary-teal);
            font-size: 1.25rem;
        } */

        /* Responsive */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero h1 { font-size: 2.75rem; }
        }

        @media (max-width: 768px) {
            .grid-2 {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .section-image { order: -1; }
            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .rotation-grid {
                grid-template-columns: 1fr;
            }
            .step-full { grid-column: span 1; }
            .hero h1 { font-size: 2.25rem; }
            .cta-section h2 { font-size: 2rem; }
        }

        }