

    .why-choose-section {
        background: #ffffff;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }
.title1 {
    font-size: 2rem;
}

@media (max-width: 590px) {
    .title1 {
        font-size: calc(1.325rem + .9vw);
    }
}
    .why-choose-section::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.04), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .why-choose-section::after {
        content: '';
        position: absolute;
        bottom: -20%;
        left: -5%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.03), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    /* Section Head */
    .why-choose-section .section-head {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
        z-index: 1;
    }

   


    /* Grid */
    .why-choose-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    /* Card */
    .why-choose-card {
        background: #ffc10778;
        border: 1px solid #eee;
        border-radius: 20px;
        padding: 35px 25px 30px;
        text-align: center;
        transition: 0.4s;
        position: relative;
        overflow: hidden;
    }

    .why-choose-card::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #d4a017, #ffd700, #d4a017);
        transition: 0.4s;
    }

    .why-choose-card:hover::before {
        width: 70%;
    }

    .why-choose-card:hover {
        transform: translateY(-8px);
        border-color: #d4a017;
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.08);
    }

    .why-choose-icon {
        width: 65px;
        height: 65px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
        font-size: 28px;
        color: #d4a017;
        transition: 0.3s;
    }

    .why-choose-card:hover .why-choose-icon {
        background: #d4a017;
        color: #000;
        transform: scale(1.1) rotate(10deg);
    }

    .why-choose-card h3 {
        font-size: 18px;
        font-weight: 700;
        color: #222;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .why-choose-card p {
        color: #555;
        font-size: 14px;
        line-height: 1.7;
        text-align: justify;
        margin: 0;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .why-choose-section .section-head h2 {
            font-size: 32px;
        }

        .why-choose-grid {
            gap: 20px;
        }

        .why-choose-card {
            padding: 30px 20px 25px;
        }

        .why-choose-card h3 {
            font-size: 17px;
        }
    }

    @media (max-width: 991px) {
        .why-choose-section {
            padding: 40px 0;
        }

        .why-choose-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 768px) {
        .why-choose-section .section-head h2 {
            font-size: 28px;
        }

        .why-choose-card {
            padding: 25px 18px;
            border-radius: 16px;
        }

        .why-choose-card h3 {
            font-size: 16px;
        }

        .why-choose-card p {
            font-size: 13px;
        }

        .why-choose-icon {
            width: 55px;
            height: 55px;
            font-size: 24px;
        }
    }

    @media (max-width: 576px) {
        .why-choose-section {
            padding: 40px 0;
        }

        .why-choose-section .section-head {
            margin-bottom: 30px;
        }

        .why-choose-section .section-head .sm-title {
            font-size: 11px;
            padding: 4px 14px;
        }

        .why-choose-section .section-head h2 {
            font-size: 24px;
        }

        .why-choose-grid {
            grid-template-columns: 1fr;
            gap: 16px;
            max-width: 450px;
        }

        .why-choose-card {
            padding: 22px 18px;
            border-radius: 14px;
        }

        .why-choose-card h3 {
            font-size: 16px;
        }

        .why-choose-card p {
            font-size: 13px;
            line-height: 1.6;
        }

        .why-choose-icon {
            width: 50px;
            height: 50px;
            font-size: 22px;
            margin-bottom: 12px;
        }
    }

    @media (max-width: 380px) {
        .why-choose-section .section-head h2 {
            font-size: 22px;
        }

        .why-choose-card {
            padding: 18px 14px;
        }

        .why-choose-card h3 {
            font-size: 15px;
        }

        .why-choose-card p {
            font-size: 12px;
        }

        .why-choose-icon {
            width: 45px;
            height: 45px;
            font-size: 20px;
        }
    }



    .services-cards-section {
        background: #000000;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .services-cards-section::before {
        content: '';
        position: absolute;
        top: -40%;
        left: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.03), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .services-cards-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        right: -5%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.02), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    /* Section Head */
    .services-cards-section .section-head {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
        z-index: 1;
    }

   
    /* Grid */
    .services-cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    /* Base Card Styles */
    .s-card {
        background: #111111;
        border: 1px solid #222;
        border-radius: 20px;
        padding: 30px 25px;
        text-decoration: none;
        transition: 0.4s;
        position: relative;
        overflow: hidden;
        display: block;
        cursor: pointer;
    }

    .s-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #d4a017, #ffd700, #d4a017);
        transform: scaleX(0);
        transition: 0.4s;
        transform-origin: left;
    }

    .s-card:hover::before {
        transform: scaleX(1);
    }

    .s-card:hover {
        transform: translateY(-8px);
        border-color: #d4a017;
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.08);
        background: #1a1a1a;
    }

    .s-card:active {
        transform: scale(0.98);
    }

    /* Card Icon */
    .s-card-icon {
        width: 55px;
        height: 55px;
        background: rgba(212, 175, 55, 0.08);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #d4a017;
        margin-bottom: 14px;
        transition: 0.3s;
        border: 1px solid rgba(212, 175, 55, 0.05);
    }

    .s-card:hover .s-card-icon {
        background: #d4a017;
        color: #000;
        transform: scale(1.1) rotate(10deg);
        border-color: #d4a017;
    }

    /* Card Title */
    .s-card-title {
        font-size: 19px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 4px;
        line-height: 1.3;
    }

    /* Card Subtitle */
    .s-card-subtitle {
        font-size: 13px;
        font-weight: 600;
        color: #d4a017;
        margin-bottom: 10px;
    }

    /* Card Description */
    .s-card-desc {
        color: #bdbdbd;
        font-size: 13px;
        line-height: 1.7;
        text-align: justify;
        margin-bottom: 8px;
    }

    .s-card-desc:last-of-type {
        margin-bottom: 12px;
    }

    /* Card List */
    .s-card-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3px 15px;
        margin-top: 10px;
        padding-top: 12px;
        border-top: 1px solid #222;
    }

    .s-list-item {
        color: #bdbdbd;
        font-size: 12px;
        line-height: 1.5;
        padding: 2px 0;
        transition: 0.3s;
    }

    .s-card:hover .s-list-item {
        color: #d9d9d9;
    }

    .s-list-item:hover {
        color: #d4a017 !important;
        transform: translateX(3px);
    }

    /* Card Button */
    .s-card-btn {
        display: inline-block;
        color: #d4a017;
        font-weight: 600;
        font-size: 13px;
        margin-top: 14px;
        transition: 0.3s;
        text-decoration: none;
        border-bottom: 2px solid transparent;
    }

    .s-card:hover .s-card-btn {
        color: #ffd700;
        transform: translateX(5px);
        border-bottom-color: #d4a017;
    }

    /* Individual Card Class Names for Unique Styling */
    .seo-card:hover {
        border-color: #ffd700;
    }
    .seo-card:hover .s-card-icon {
        background: #ffd700;
        color: #000;
    }

    .social-card:hover {
        border-color: #ffd700;
    }
    .social-card:hover .s-card-icon {
        background: #ffd700;
        color: #fff;
    }

    .ads-card:hover {
        border-color: #ffd700;
    }
    .ads-card:hover .s-card-icon {
        background: #ffd700;
        color: #fff;
    }

    .meta-card:hover {
        border-color: #ffd700;
    }
    .meta-card:hover .s-card-icon {
        background: #ffd700;
        color: #fff;
    }

    .gbp-card:hover {
        border-color: #FBBC04;
    }
    .gbp-card:hover .s-card-icon {
        background: #FBBC04;
        color: #000;
    }

    .design-card:hover {
        border-color: #ffd700;
    }
    .design-card:hover .s-card-icon {
        background: #ffd700;
        color: #fff;
    }

    .video-card:hover {
        border-color: #ffd700;
    }
    .video-card:hover .s-card-icon {
        background: #ffd700;
        color: #fff;
    }

    .reel-card:hover {
        border-color: #ffd700;
    }
    .reel-card:hover .s-card-icon {
        background: #ffd700;
        color: #fff;
    }

    .ppc-card:hover {
        border-color: #ffd700;
    }
    .ppc-card:hover .s-card-icon {
        background: #ffd700;
        color: #fff;
    }

    .branding-card:hover {
        border-color: #ffd700;
    }
    .branding-card:hover .s-card-icon {
        background: #ffd700;
        color: #fff;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .services-cards-grid {
            gap: 20px;
        }
        .s-card {
            padding: 25px 20px;
        }
        .s-card-title {
            font-size: 17px;
        }
       
    }

    @media (max-width: 768px) {
        .services-cards-section {
            padding: 40px 0;
        }
        .services-cards-grid {
            grid-template-columns: 1fr;
            gap: 18px;
            max-width: 500px;
        }
        .s-card {
            padding: 22px 18px;
            border-radius: 16px;
        }
        .s-card-title {
            font-size: 17px;
        }
        .s-card-desc {
            font-size: 13px;
        }
        .s-card-list {
            grid-template-columns: 1fr 1fr;
            gap: 2px 12px;
        }
        .s-list-item {
            font-size: 12px;
        }
        .services-cards-section .section-head h2 {
            font-size: 28px;
        }
        .services-cards-section .section-head {
            margin-bottom: 35px;
        }
    }

    @media (max-width: 480px) {
        .services-cards-section {
            padding: 40px 0;
        }
        .services-cards-grid {
            gap: 15px;
        }
        .s-card {
            padding: 18px 14px;
            border-radius: 14px;
        }
        .s-card-title {
            font-size: 16px;
        }
        .s-card-subtitle {
            font-size: 12px;
        }
        .s-card-desc {
            font-size: 12px;
            line-height: 1.6;
        }
        .s-card-list {
            grid-template-columns: 1fr;
            gap: 2px;
        }
        .s-list-item {
            font-size: 11px;
        }
        .s-card-icon {
            width: 45px;
            height: 45px;
            font-size: 20px;
            margin-bottom: 10px;
        }
        .s-card-btn {
            font-size: 12px;
            margin-top: 10px;
        }
        .services-cards-section .section-head h2 {
            font-size: 24px;
        }
        .services-cards-section .section-head .sm-title {
            font-size: 11px;
            padding: 4px 14px;
        }
        .services-cards-section .section-head {
            margin-bottom: 25px;
        }
    }

    @media (max-width: 380px) {
        .s-card {
            padding: 15px 12px;
        }
        .s-card-title {
            font-size: 15px;
        }
        .s-card-desc {
            font-size: 11px;
        }
        .s-list-item {
            font-size: 10px;
        }
        .services-cards-section .section-head h2 {
            font-size: 22px;
        }
        .s-card-icon {
            width: 40px;
            height: 40px;
            font-size: 18px;
        }
    }



    .strategic-section {
        background: #ffffff;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .strategic-section::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.04), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    /* Section Head */
    .strategic-content .section-head {
        margin-bottom: 20px;
    }

    .strategic-content .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .strategic-content .section-head h2 {
        font-size: 36px;
        font-weight: 800;
        color: #222;
        line-height: 1.2;
        margin: 0;
    }

    .strategic-content .section-head h2 span {
        color: #d4a017;
    }

    /* Wrapper */
    .strategic-wrapper {
        display: flex;
        align-items: center;
        gap: 60px;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    /* Image Side */
    .strategic-image {
        flex: 1;
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    }

    .strategic-image img {
        width: 100%;
        height: 480px;
        object-fit: cover;
        display: block;
        transition: 0.5s;
        border-radius: 24px;
        border: 3px solid #d4a017;
    }

    .strategic-image:hover img {
        transform: scale(1.03);
    }

    .strategic-badge {
        position: absolute;
        bottom: 25px;
        left: 25px;
        background: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(10px);
        padding: 12px 24px;
        border-radius: 50px;
        border: 1px solid rgba(212, 175, 55, 0.3);
    }

    .strategic-badge span {
        color: #fff;
        font-size: 14px;
        font-weight: 600;
    }

    .strategic-badge span::before {
        content: '🚀 ';
        color: #d4a017;
    }

    /* Content Side */
    .strategic-content {
        flex: 1.2;
        padding: 20px 0;
    }

    .strategic-desc {
        color: #555;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        margin-bottom: 14px;
    }

    .strategic-desc:last-of-type {
        margin-bottom: 25px;
    }

    .strategic-buttons {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .strategic-btn-primary {
        display: inline-block;
        background: #d4a017;
        color: #000;
        padding: 13px 32px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 15px;
        transition: 0.3s;
        border: 2px solid #d4a017;
    }

    .strategic-btn-primary:hover {
        background: #000;
        color: #d4a017;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }

    .strategic-btn-secondary {
        display: inline-block;
        background: transparent;
        color: #d4a017;
        padding: 13px 32px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 15px;
        transition: 0.3s;
        border: 2px solid #d4a017;
    }

    .strategic-btn-secondary:hover {
        background: #d4a017;
        color: #000;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .strategic-wrapper {
            gap: 40px;
        }

        .strategic-content .section-head h2 {
            font-size: 30px;
        }

        .strategic-image img {
            height: 400px;
        }
    }

    @media (max-width: 991px) {
        .strategic-section {
            padding: 40px 0;
        }

        .strategic-wrapper {
            flex-direction: column;
            gap: 35px;
        }

        .strategic-image {
            width: 100%;
        }

        .strategic-image img {
            height: 350px;
            width: 100%;
        }

        .strategic-content {
            padding: 0;
            width: 100%;
        }

        .strategic-content .section-head h2 {
            font-size: 28px;
        }

        .strategic-desc {
            font-size: 14px;
        }
    }

    @media (max-width: 768px) {
        .strategic-content .section-head h2 {
            font-size: 24px;
        }

        .strategic-image img {
            height: 280px;
        }

        .strategic-desc {
            font-size: 14px;
        }

        .strategic-badge {
            bottom: 18px;
            left: 18px;
            padding: 10px 18px;
        }

        .strategic-badge span {
            font-size: 12px;
        }

        .strategic-buttons {
            flex-direction: column;
            width: 100%;
        }

        .strategic-btn-primary,
        .strategic-btn-secondary {
            width: 100%;
            text-align: center;
            padding: 12px 20px;
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .strategic-section {
            padding: 40px 0;
        }

        .strategic-content .section-head .sm-title {
            font-size: 11px;
            padding: 4px 14px;
        }

        .strategic-content .section-head h2 {
            font-size: 22px;
        }

        .strategic-image img {
            height: 220px;
            border-radius: 16px;
        }

        .strategic-desc {
            font-size: 13px;
            line-height: 1.7;
        }

        .strategic-badge {
            bottom: 12px;
            left: 12px;
            padding: 8px 14px;
        }

        .strategic-badge span {
            font-size: 11px;
        }

        .strategic-btn-primary,
        .strategic-btn-secondary {
            font-size: 13px;
            padding: 10px 16px;
        }

        .strategic-image {
            border-radius: 16px;
        }

        .strategic-image img {
            border-radius: 16px;
        }
    }

    @media (max-width: 380px) {
        .strategic-content .section-head h2 {
            font-size: 20px;
        }

        .strategic-image img {
            height: 180px;
        }

        .strategic-desc {
            font-size: 12px;
        }

        .strategic-badge {
            bottom: 10px;
            left: 10px;
            padding: 6px 12px;
        }

        .strategic-badge span {
            font-size: 10px;
        }
    }



    .results-cta-section {
        background: #ffffff;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .results-cta-section::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.04), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .results-cta-section::after {
        content: '';
        position: absolute;
        bottom: -20%;
        left: -5%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.03), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    /* Wrapper */
    .results-wrapper {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    /* Section Head */
    .results-content .section-head {
        text-align: center;
        margin-bottom: 20px;
    }

   
    /* Description */
    .results-desc {
        color: #555;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        margin-bottom: 14px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .results-desc:last-of-type {
        margin-bottom: 0;
    }

    /* CTA Box */
    .results-cta-box {
        background: #ffc10778;
        border: 1px solid #eee;
        border-radius: 24px;
        padding: 45px 40px;
        text-align: center;
        margin-top: 35px;
        transition: 0.3s;
    }

    .results-cta-box:hover {
        border-color: #d4a017;
        box-shadow: 0 10px 40px rgba(212, 175, 55, 0.06);
    }

    .results-cta-box h3 {
        font-size: 30px;
        font-weight: 800;
        color: #222;
        margin-bottom: 20px;
    }

    .results-cta-box h3 span {
        color: #d4a017;
    }

    .results-cta-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .results-btn-primary {
        display: inline-block;
        background: #d4a017;
        color: #000;
        padding: 14px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
        transition: 0.3s;
        border: 2px solid #d4a017;
    }

    .results-btn-primary:hover {
        background: #000;
        color: #d4a017;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }

    .results-btn-secondary {
        display: inline-block;
        background: transparent;
        color: #d4a017;
        padding: 14px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
        transition: 0.3s;
        border: 2px solid #d4a017;
    }

    .results-btn-secondary:hover {
        background: #d4a017;
        color: #000;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .results-content .section-head h2 {
            font-size: 32px;
        }

        .results-cta-box {
            padding: 40px 30px;
        }

        .results-cta-box h3 {
            font-size: 28px;
        }
    }

    @media (max-width: 991px) {
        .results-cta-section {
            padding: 40px 0;
        }

        .results-content .section-head h2 {
            font-size: 28px;
        }

        .results-desc {
            font-size: 14px;
        }
    }

    @media (max-width: 768px) {
        .results-content .section-head h2 {
            font-size: 26px;
        }

        .results-cta-box {
            padding: 30px 20px;
            border-radius: 18px;
            margin-top: 28px;
        }

        .results-cta-box h3 {
            font-size: 24px;
        }

        .results-cta-buttons {
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .results-btn-primary,
        .results-btn-secondary {
            width: 100%;
            max-width: 400px;
            text-align: center;
            padding: 12px 20px;
            font-size: 14px;
        }

        .results-desc {
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .results-cta-section {
            padding: 40px 0;
        }

        .results-content .section-head .sm-title {
            font-size: 11px;
            padding: 4px 14px;
        }

        .results-content .section-head h2 {
            font-size: 22px;
        }

        .results-desc {
            font-size: 13px;
            line-height: 1.7;
        }

        .results-cta-box {
            padding: 25px 16px;
            border-radius: 14px;
            margin-top: 22px;
        }

        .results-cta-box h3 {
            font-size: 20px;
            margin-bottom: 16px;
        }

        .results-btn-primary,
        .results-btn-secondary {
            font-size: 13px;
            padding: 10px 16px;
            max-width: 100%;
        }
    }

    @media (max-width: 380px) {
        .results-content .section-head h2 {
            font-size: 20px;
        }

        .results-desc {
            font-size: 12px;
        }

        .results-cta-box {
            padding: 20px 12px;
        }

        .results-cta-box h3 {
            font-size: 18px;
        }

        .results-btn-primary,
        .results-btn-secondary {
            font-size: 12px;
            padding: 8px 14px;
        }
    }


.fq-section {
--fq-accent: #D4AF37;      /* Rich Gold */
    --fq-accent2: #FFD700;     /* Bright Gold */
    --fq-dark: #0d1117;
    --fq-card: #141b22;

    --fq-border: rgba(212, 175, 55, 0.25);

    --fq-text: #c9d1d9;
    --fq-muted: #8b949e;
    --fq-white: #ffffff;
  --fq-radius: 14px;
  --fq-trans: 0.32s cubic-bezier(.4, 0, .2, 1);
  background:#000;
  padding: 72px 0 80px;
  overflow: hidden
}

.fq-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: .18
}

.fq-blob--1 {
  width: 400px;
  height: 400px;
  background: var(--fq-accent);
  top: -120px;
  left: -100px
}

.fq-blob--2 {
  width: 300px;
  height: 300px;
  background: var(--fq-accent2);
  bottom: -80px;
  right: -80px
}

.fq-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1
}

.fq-header {
  text-align: center;
  margin-bottom: 48px
}

.fq-badge {
  display: inline-block;
  background: rgb(145 217 4 / .12);
  border: 1px solid var(--fq-border);
  color: var(--fq-accent);
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px
}

.fq-title {
  color: var(--fq-white);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.22;
  margin: 0 0 14px;
  letter-spacing: -.02em
}

.fq-title span {
  color: var(--fq-accent)
}

.fq-sub {
  color: var(--fq-muted);
  font-size: .97rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65
}

.fq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.fq-item {
  background: var(--fq-card);
  border: 1px solid var(--fq-border);
  border-radius: var(--fq-radius);
  overflow: hidden;
  transition: border-color var(--fq-trans), box-shadow var(--fq-trans)
}

.fq-item:hover {
  border-color: #D4AF37;   
}

.fq-item.fq-open {
  border-color: var(--fq-accent);
  box-shadow: 0 0 0 1px rgb(145 217 4 / .25), 0 8px 32px rgb(0 0 0 / .35)
}

.fq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  outline: none
}

.fq-btn:focus-visible {
  outline: 2px solid var(--fq-accent);
  outline-offset: -2px
}

.fq-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgb(145 217 4 / .1);
  border: 1px solid var(--fq-border);
  color: var(--fq-accent);
  font-size: .7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .05em;
  transition: background var(--fq-trans), border-color var(--fq-trans)
}

.fq-open .fq-num {
  background: var(--fq-accent);
  border-color: var(--fq-accent);
  color: var(--fq-dark)
}

h2.fq-q-text {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  flex: 1;
  color: var(--fq-white);
  transition: color var(--fq-trans)
}

.fq-open h2.fq-q-text {
  color: var(--fq-accent)
}

.fq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:#000;
  border: 1px solid var(--fq-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--fq-trans), transform var(--fq-trans)
}

.fq-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--fq-accent);
  transition: transform var(--fq-trans)
}

.fq-open .fq-icon {
  background: var(--fq-accent)
}

.fq-open .fq-icon svg {
  stroke: var(--fq-dark);
  transform: rotate(45deg)
}

.fq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--fq-trans)
}

.fq-answer-inner {
  padding: 0 22px 20px 70px;
  text-align: justify;
  color: var(--fq-text);
  font-size: .94rem;
  line-height: 1.72
}

.fq-more-wrap {
  text-align: center;
  margin-top: 40px
}

.fq-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--fq-accent);
  color: var(--fq-dark);
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--fq-trans), transform var(--fq-trans), box-shadow var(--fq-trans);
  box-shadow: 0 4px 20px rgb(145 217 4 / .25)
}

.fq-more-btn:hover {
  background: var(--fq-accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgb(145 217 4 / .35)
}

.fq-more-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--fq-dark);
  flex-shrink: 0;
  transition: transform var(--fq-trans)
}

.fq-more-btn:hover svg {
  transform: translateX(3px)
}

.fq-answer {
  cursor: pointer
}

@media (max-width:600px) {
  .fq-section {
    padding: 52px 0 60px
  }
  .fq-answer-inner {
    padding-left: 22px
  }
  .fq-btn {
    padding: 16px 16px;
    gap: 12px
  }
}