/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Negin Rouhi
Author URI: https://neginwebland.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* ========================================
   Responsive Persian Typography System
   Elementor Compatible
======================================== */

/* Body */
body {
    font-size: clamp(15px, 0.25vw + 14px, 17px);
    line-height: 1.9;
    color: var(--e-global-color-text);
}

/* Paragraph */
p {
    font-size: inherit;
    line-height: 1.9;
    color: var(--e-global-color-text);
}

/* Headings */
h1 {
    font-size: clamp(32px, 3.2vw, 52px);
    line-height: 1.35;
    font-weight: 800;
    color: var(--e-global-color-primary);
}

h2 {
    font-size: clamp(26px, 2.4vw, 40px);
    line-height: 1.4;
    font-weight: 800;
    color: var(--e-global-color-primary);
}

h3 {
    font-size: clamp(22px, 1.7vw, 30px);
    line-height: 1.45;
    font-weight: 700;
    color: var(--e-global-color-primary);
}

h4 {
    font-size: clamp(19px, 1.25vw, 24px);
    line-height: 1.5;
    font-weight: 700;
    color: var(--e-global-color-secondary);
}

h5 {
    font-size: clamp(17px, 1vw, 20px);
    line-height: 1.55;
    font-weight: 700;
    color: var(--e-global-color-secondary);
}

h6 {
    font-size: clamp(15px, 0.8vw, 17px);
    line-height: 1.6;
    font-weight: 700;
    color: var(--e-global-color-secondary);
}

/* Links */
a {
    color: var(--e-global-color-accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover,
a:focus {
    color: var(--e-global-color-primary);
}

.kamad-services-header h2 {
	    margin: 0 0 22px;
    color: var(--e-global-color-secondary);
    font-size: clamp(29px, 4vw, 48px);
    font-weight: 800;
}

.kamad-services-header h2 span {
    position: relative;
    color: var(--e-global-color-primary)!important;
    white-space: nowrap;
}

.kamad-services-header h2 span::after {
    content: "";
    position: absolute;
    right: 5%;
    bottom: -5px;
    width: 90%;
    height: 7px;
    border-radius: 20px;
    background: 
color-mix(in srgb, var(--e-global-color-primary) 16%, transparent);
    z-index: -1;
}

/* =========================================================
   KAMAD SYSTEM
   Accounting Consultation Services Grid
   Modern / Luxury / Financial / Enterprise
   ========================================================= */


/* =========================================================
   1. SERVICES GRID
   ========================================================= */

.kamad-services-list {
    --ks-accent: var(--e-global-color-primary, #93B027);
    --ks-text: var(--e-global-color-text, #181b16);
    --ks-muted: var(--e-global-color-secondary, #686e64);

    --ks-surface: #ffffff;
    --ks-border: #e6e9e3;

    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 22px;

    direction: rtl;
    align-items: stretch;
}


/* =========================================================
   2. SERVICE CARD
   ========================================================= */

.kamad-service-card {
    position: relative;
    isolation: isolate;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: clamp(24px, 2.5vw, 34px);

    overflow: hidden;

    direction: rtl;

    background:
        linear-gradient(
            135deg,
            color-mix(
                in srgb,
                var(--ks-accent) 4%,
                var(--ks-surface)
            ) 0%,
            var(--ks-surface) 42%,
            var(--ks-surface) 100%
        );

    border: 1px solid
        color-mix(
            in srgb,
            var(--ks-accent) 13%,
            var(--ks-border)
        );

    border-radius: 24px;

    box-shadow:
        0 1px 2px rgba(13, 18, 11, .02),
        0 8px 24px rgba(13, 18, 11, .035),
        0 20px 50px rgba(13, 18, 11, .035);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


/* =========================================================
   3. SOFT BRAND GLOW
   ========================================================= */

.kamad-service-card::before {
    content: "";

    position: absolute;
    z-index: -1;

    top: -180px;
    right: -120px;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: var(--ks-accent);

    opacity: .075;

    filter: blur(70px);

    pointer-events: none;
}


/* =========================================================
   4. TOP ACCENT LINE
   ========================================================= */

.kamad-service-card::after {
    content: "";

    position: absolute;

    top: 0;
    right: 32px;

    width: 80px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            var(--ks-accent) 50%,
            transparent 100%
        );

    box-shadow:
        0 0 14px
        color-mix(
            in srgb,
            var(--ks-accent) 45%,
            transparent
        );

    pointer-events: none;
}


/* =========================================================
   5. ALTERNATE CARD BACKGROUND
   ========================================================= */

.kamad-services-list
.kamad-service-card:nth-child(even) {
    background:
        linear-gradient(
            225deg,
            color-mix(
                in srgb,
                var(--ks-accent) 4%,
                var(--ks-surface)
            ) 0%,
            var(--ks-surface) 42%,
            var(--ks-surface) 100%
        );
}


.kamad-services-list
.kamad-service-card:nth-child(even)::before {
    right: auto;
    left: -120px;
}


/* =========================================================
   6. CARD INTERNAL LAYOUT
   ========================================================= */

.kamad-service-card__layout {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns:
        64px
        minmax(0, 1fr);

    gap: 20px;

    align-items: start;

    height: 100%;
}


/* =========================================================
   7. ICON
   ========================================================= */

.kamad-service-card__icon {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    flex-shrink: 0;

    color: var(--ks-accent);

    background:
        linear-gradient(
            145deg,
            color-mix(
                in srgb,
                var(--ks-accent) 12%,
                #ffffff
            ),
            color-mix(
                in srgb,
                var(--ks-accent) 3%,
                #ffffff
            )
        );

    border: 1px solid
        color-mix(
            in srgb,
            var(--ks-accent) 22%,
            transparent
        );

    border-radius: 18px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .9),
        0 10px 24px
        color-mix(
            in srgb,
            var(--ks-accent) 9%,
            transparent
        );

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


/* =========================================================
   8. SVG ICON
   ========================================================= */

.kamad-service-card__icon svg {
    display: block;

    width: 27px;
    height: 27px;

    stroke: currentColor;
}


/* =========================================================
   9. ICON STATUS DOT
   ========================================================= */

.kamad-service-card__icon::after {
    content: "";

    position: absolute;

    left: -3px;
    bottom: 6px;

    width: 8px;
    height: 8px;

    box-sizing: content-box;

    background: var(--ks-accent);

    border: 3px solid #ffffff;
    border-radius: 50%;

    box-shadow:
        0 2px 7px rgba(0, 0, 0, .08),
        0 0 0 3px
        color-mix(
            in srgb,
            var(--ks-accent) 8%,
            transparent
        );
}


/* =========================================================
   10. CONTENT
   ========================================================= */

.kamad-service-card__content {
    display: flex;
    flex-direction: column;

    min-width: 0;
    height: 100%;
}


/* =========================================================
   11. META / SMALL LABEL
   ========================================================= */

.kamad-service-card__meta {
    display: flex;
    align-items: center;

    gap: 8px;

    margin: 0 0 7px;

    color: var(--ks-accent);

    font-size: 12px;
    font-weight: 700;

    line-height: 1.8;
}


/* Meta line */
.kamad-service-card__meta::before {
    content: "";

    display: block;

    width: 18px;
    height: 1px;

    flex: 0 0 auto;

    background: currentColor;
}


/* =========================================================
   12. TITLE
   ========================================================= */

.kamad-service-card__title {
    margin: 0 0 12px;

    color: var(--ks-text);

    font-size: clamp(20px, 1.7vw, 26px);
    font-weight: 800;

    line-height: 1.65;

    letter-spacing: -.01em;
}


/* =========================================================
   13. DESCRIPTION
   ========================================================= */

.kamad-service-card__description {
    width: 100%;
    max-width: 100%;

    margin: 0;

    color: var(--ks-muted);

    font-size: clamp(14px, 1vw, 15.5px);
    font-weight: 400;

    line-height: 2.1;

    text-align: right;
}


/* =========================================================
   14. FOOTER
   ========================================================= */

.kamad-service-card__footer {
    display: flex;
    align-items: center;

    gap: 10px;

    /*
     * Push footer to bottom.
     * This keeps footer positions aligned between cards.
     */
    margin-top: auto;

    padding-top: 18px;

    border-top: 1px solid
        color-mix(
            in srgb,
            var(--ks-accent) 10%,
            #e9ece7
        );
}


/*
 * Creates some breathing room between description
 * and footer while keeping footer bottom-aligned.
 */
.kamad-service-card__description
+ .kamad-service-card__footer {
    margin-top: auto;
}


/* =========================================================
   15. STATUS
   ========================================================= */

.kamad-service-card__status {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color:
        color-mix(
            in srgb,
            var(--ks-text) 67%,
            transparent
        );

    font-size: 12px;
    font-weight: 600;

    line-height: 1.8;
}


/* Status dot */
.kamad-service-card__status::before {
    content: "";

    width: 6px;
    height: 6px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: var(--ks-accent);

    box-shadow:
        0 0 0 4px
        color-mix(
            in srgb,
            var(--ks-accent) 10%,
            transparent
        );
}


/* =========================================================
   16. LAST CARD — FULL WIDTH
   Because we have 5 cards
   ========================================================= */

.kamad-services-list
.kamad-service-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}


/*
 * Full-width card can use a slightly wider internal layout.
 */
.kamad-services-list
.kamad-service-card:last-child:nth-child(odd)
.kamad-service-card__description {
    max-width: 1100px;
}


/* =========================================================
   17. HOVER — DESKTOP ONLY
   ========================================================= */

@media (hover: hover) and (pointer: fine) {

    .kamad-service-card:hover {
        transform: translateY(-4px);

        border-color:
            color-mix(
                in srgb,
                var(--ks-accent) 32%,
                var(--ks-border)
            );

        box-shadow:
            0 2px 3px rgba(13, 18, 11, .025),
            0 15px 35px rgba(13, 18, 11, .055),
            0 30px 65px rgba(13, 18, 11, .065);
    }


    .kamad-service-card:hover
    .kamad-service-card__icon {
        transform: translateY(-3px);

        border-color:
            color-mix(
                in srgb,
                var(--ks-accent) 35%,
                transparent
            );

        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, .9),
            0 14px 30px
            color-mix(
                in srgb,
                var(--ks-accent) 15%,
                transparent
            );
    }
}


/* =========================================================
   18. LARGE DESKTOP
   ========================================================= */

@media (min-width: 1200px) {

    .kamad-services-list {
        gap: 24px;
    }

    .kamad-service-card {
        padding: 32px;
    }

}


/* =========================================================
   19. TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .kamad-services-list {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }


    .kamad-service-card {
        padding: 24px;

        border-radius: 21px;
    }


    .kamad-service-card__layout {
        grid-template-columns:
            58px
            minmax(0, 1fr);

        gap: 17px;
    }


    .kamad-service-card__icon {
        width: 58px;
        height: 58px;

        border-radius: 16px;
    }


    .kamad-service-card__icon svg {
        width: 25px;
        height: 25px;
    }


    .kamad-service-card__title {
        font-size: 21px;
        line-height: 1.65;
    }


    .kamad-service-card__description {
        font-size: 14px;
        line-height: 2.05;
    }

}


/* =========================================================
   20. SMALL TABLET
   Switch to one column earlier for readability.
   ========================================================= */

@media (max-width: 850px) {

    .kamad-services-list {
        grid-template-columns: 1fr;
    }


    /*
     * Last card no longer needs explicit spanning.
     */
    .kamad-services-list
    .kamad-service-card:last-child:nth-child(odd) {
        grid-column: auto;
    }

}


/* =========================================================
   21. MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .kamad-services-list {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .kamad-service-card {
        padding: 21px 18px;

        border-radius: 19px;

        box-shadow:
            0 1px 2px rgba(13, 18, 11, .02),
            0 10px 28px rgba(13, 18, 11, .04);
    }


    /* Accent line */
    .kamad-service-card::after {
        right: 21px;

        width: 65px;
    }


    /* Internal layout */
    .kamad-service-card__layout {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    /* Icon */
    .kamad-service-card__icon {
        width: 56px;
        height: 56px;

        border-radius: 16px;
    }


    .kamad-service-card__icon svg {
        width: 24px;
        height: 24px;
    }


    .kamad-service-card__icon::after {
        width: 7px;
        height: 7px;

        bottom: 5px;
    }


    /* Meta */
    .kamad-service-card__meta {
        margin-bottom: 5px;

        font-size: 11px;
    }


    .kamad-service-card__meta::before {
        width: 16px;
    }


    /* Title */
    .kamad-service-card__title {
        margin-bottom: 9px;

        font-size: 20px;

        line-height: 1.7;
    }


    /* Description */
    .kamad-service-card__description {
        font-size: 14px;

        line-height: 2.05;
    }


    /* Footer */
    .kamad-service-card__footer {
        margin-top: 17px;

        padding-top: 14px;
    }


    .kamad-service-card__status {
        font-size: 11px;
    }

}


/* =========================================================
   22. SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .kamad-service-card {
        padding: 19px 16px;

        border-radius: 17px;
    }


    .kamad-service-card__layout {
        gap: 14px;
    }


    .kamad-service-card__icon {
        width: 52px;
        height: 52px;

        border-radius: 14px;
    }


    .kamad-service-card__icon svg {
        width: 23px;
        height: 23px;
    }


    .kamad-service-card__title {
        font-size: 19px;
    }


    .kamad-service-card__description {
        font-size: 13.5px;

        line-height: 2.05;
    }

}


/* =========================================================
   23. ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .kamad-service-card,
    .kamad-service-card__icon {
        transition: none;
    }


    .kamad-service-card:hover,
    .kamad-service-card:hover
    .kamad-service-card__icon {
        transform: none;
    }

}

.kamad-icon-box-icon svg {
	width: 18px;
	height: 18px;

}
.elementor-icon-box-icon .elementor-icon {
		background: #93b0272b;
	padding: 10px;
	border-radius: 50%;
}


/*  Why grid*/
* =========================================================
   KAMAD SYSTEM — Why Choose Us
   Lightweight / Clean / Responsive
   ========================================================= */

.kamad-why {
    --kw-accent: var(--e-global-color-primary, #93B027);
    --kw-text: var(--e-global-color-text, #1c2119);
    --kw-muted: var(--e-global-color-secondary, #666c62);

    direction: rtl;
    width: 100%;
}


/* =========================
   Header
   ========================= */

.kamad-why__header {
    max-width: 720px;
    margin-bottom: 28px;
}

.kamad-why__label {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 8px;

    color: var(--kw-accent);

    font-size: 13px;
    font-weight: 700;
}

.kamad-why__label::before {
    content: "";
    width: 22px;
    height: 2px;

    background: var(--kw-accent);
    border-radius: 2px;
}

.kamad-why__title {
    margin: 0;

    color: var(--kw-text);

    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.6;
}


/* =========================
   Benefits Grid
   ========================= */

.kamad-why__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 16px;
}


/* =========================
   Benefit Card
   ========================= */

.kamad-why-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;
    padding: 26px;

    background: #fff;

    border: 1px solid #e7eae4;
    border-radius: 18px;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


/* Number */
.kamad-why-card__number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-bottom: 22px;

    color: var(--kw-accent);

    background: color-mix(
        in srgb,
        var(--kw-accent) 10%,
        #fff
    );

    border-radius: 12px;

    font-size: 13px;
    font-weight: 800;
}


/* Title */
.kamad-why-card__title {
    margin: 0 0 11px;

    color: var(--kw-text);

    font-size: 19px;
    font-weight: 800;
    line-height: 1.7;
}


/* Description */
.kamad-why-card__text {
    margin: 0;

    color: var(--kw-muted);

    font-size: 14px;
    font-weight: 400;
    line-height: 2.05;
}


/* Bottom accent */
.kamad-why-card::after {
    content: "";

    width: 30px;
    height: 3px;

    margin-top: auto;
    padding-top: 22px;

    background:
        linear-gradient(
            to bottom,
            transparent 22px,
            var(--kw-accent) 22px
        );

    border-radius: 4px;
}


/* =========================
   Hover
   ========================= */

@media (hover: hover) and (pointer: fine) {

    .kamad-why-card:hover {
        transform: translateY(-4px);

        border-color:
            color-mix(
                in srgb,
                var(--kw-accent) 35%,
                #e7eae4
            );

        box-shadow:
            0 12px 30px rgba(20, 28, 15, .07);
    }
}


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

.kamad-why__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 16px;
    padding: 25px 28px;

    background: var(--kw-accent);

    border-radius: 18px;
}


/* CTA content */
.kamad-why__cta-content {
    min-width: 0;
}

.kamad-why__cta-title {
    margin: 0 0 5px;

    color: #17200f;

    font-size: clamp(18px, 2vw, 22px);
    font-weight: 800;
    line-height: 1.7;
}

.kamad-why__cta-text {
    margin: 0;

    color: rgba(20, 28, 14, .78);

    font-size: 14px;
    font-weight: 500;
    line-height: 1.9;
}


/* =========================
   CTA Button
   ========================= */

.kamad-why__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 150px;
    min-height: 48px;

    padding: 0 20px;

    flex-shrink: 0;

    color: #fff;
    background: #171b15;

    border-radius: 12px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition:
        background-color .2s ease,
        transform .2s ease;
}

.kamad-why__button:hover {
    color: #fff;
    background: #000;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 1024px) {

    .kamad-why__grid {
        grid-template-columns: 1fr 1fr;
    }

    .kamad-why-card:last-child {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

    .kamad-why__header {
        margin-bottom: 20px;
    }

    .kamad-why__title {
        font-size: 25px;
    }


    .kamad-why__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .kamad-why-card:last-child {
        grid-column: auto;
    }


    .kamad-why-card {
        padding: 21px;

        border-radius: 16px;
    }

    .kamad-why-card__number {
        width: 38px;
        height: 38px;

        margin-bottom: 17px;

        border-radius: 10px;
    }

    .kamad-why-card__title {
        font-size: 18px;
    }

    .kamad-why-card__text {
        font-size: 14px;
        line-height: 2;
    }


    /* CTA */
    .kamad-why__cta {
        flex-direction: column;
        align-items: stretch;

        gap: 18px;

        margin-top: 12px;
        padding: 22px;

        border-radius: 16px;
    }

    .kamad-why__button {
        width: 100%;
    }
}


/* =========================================================
   Reduced Motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .kamad-why-card,
    .kamad-why__button {
        transition: none;
    }
}

/* =========================
   KAMAD — Benefits Grid
   ========================= */

.kamad-why__grid {
    --kw-accent: var(--e-global-color-primary, #93B027);
    --kw-text: var(--e-global-color-text, #1c2119);
    --kw-muted: var(--e-global-color-secondary, #666c62);

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;

    width: 100%;
    direction: rtl;
}


/* Card */
.kamad-why-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;
    padding: 26px;

    background: #fff;

    border: 1px solid #e7eae4;
    border-radius: 18px;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


/* Number */
.kamad-why-card__number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-bottom: 20px;

    color: var(--kw-accent);

    background: color-mix(
        in srgb,
        var(--kw-accent) 10%,
        #fff
    );

    border-radius: 12px;

    font-size: 13px;
    font-weight: 800;
}


/* Title */
.kamad-why-card__title {
    margin: 0 0 10px;

    color: var(--kw-text);

    font-size: 19px;
    font-weight: 800;
    line-height: 1.7;
}


/* Description */
.kamad-why-card__text {
    margin: 0;

    color: var(--kw-muted);

    font-size: 14px;
    font-weight: 400;
    line-height: 2.05;
}


/* Bottom Accent */
.kamad-why-card::after {
    content: "";

    width: 30px;
    height: 3px;

    margin-top: auto;
    padding-top: 22px;

    border-bottom: 3px solid var(--kw-accent);
}


/* Hover */
@media (hover: hover) and (pointer: fine) {

    .kamad-why-card:hover {
        transform: translateY(-4px);

        border-color: var(--kw-accent);

        box-shadow:
            0 12px 28px rgba(20, 28, 15, .07);
    }
}


/* Tablet */
@media (max-width: 1024px) {

    .kamad-why__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kamad-why-card:last-child {
        grid-column: 1 / -1;
    }
}


/* Mobile */
@media (max-width: 767px) {

    .kamad-why__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .kamad-why-card:last-child {
        grid-column: auto;
    }

    .kamad-why-card {
        padding: 21px;
        border-radius: 16px;
    }

    .kamad-why-card__number {
        width: 38px;
        height: 38px;

        margin-bottom: 16px;

        border-radius: 10px;
    }

    .kamad-why-card__title {
        font-size: 18px;
    }

    .kamad-why-card__text {
        font-size: 14px;
        line-height: 2;
    }
}

/* =========================================
   FAQ — PERFORMANCE OPTIMIZED
========================================= */

.cable-faq {
    --faq-primary: #93B027;
    --faq-dark: #172426;
    --faq-text: #344448;
    --faq-muted: #718083;
    --faq-line: #e7ecec;

    width: 100%;
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 18px;
}


/* =========================================
   HEADER
========================================= */

.cable-faq-head {
    max-width: 720px;
    margin: 0 auto 32px;
    text-align: center;
}

.cable-faq-kicker {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;

    color: var(--faq-primary);
    background: rgba(147, 176, 39, 0.07);
    border: 1px solid rgba(147, 176, 39, 0.15);
    border-radius: 999px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.cable-faq-head h2 {
    margin: 0;

    color: var(--faq-dark);

    font-size: clamp(26px, 4vw, 36px);
    font-weight: 900;
    line-height: 1.6;
}

.cable-faq-head h2 strong {
    color: var(--faq-primary);
}

.cable-faq-head p {
    max-width: 620px;
    margin: 10px auto 0;

    color: var(--faq-muted);

    font-size: 14px;
    line-height: 2;
}


/* =========================================
   LIST
========================================= */

.cable-faq-list {
    display: grid;
    gap: 10px;
}


/* =========================================
   ITEM
========================================= */

.cable-faq-item {
    overflow: hidden;

    background: #fff;
    border: 1px solid var(--faq-line);
    border-radius: 16px;

    transition: border-color 0.2s ease;
}

.cable-faq-item:hover,
.cable-faq-item[open] {
    border-color: rgba(147, 176, 39, 0.4);
}


/* =========================================
   SUMMARY
========================================= */

.cable-faq-item summary {
    display: grid;

    grid-template-columns: 44px minmax(0, 1fr) 32px;

    align-items: center;
    gap: 14px;

    min-height: 70px;
    padding: 12px 16px;

    cursor: pointer;
    list-style: none;
    user-select: none;
}

.cable-faq-item summary::-webkit-details-marker {
    display: none;
}

.cable-faq-item summary::marker {
    content: "";
}


/* =========================================
   NUMBER
========================================= */

.faq-number {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    color: var(--faq-primary);
    background: rgba(147, 176, 39, 0.08);

    border-radius: 12px;

    font-size: 11px;
    font-weight: 800;
}


/* =========================================
   QUESTION
========================================= */

.faq-question {
    min-width: 0;

    color: var(--faq-dark);

    font-size: 15px;
    font-weight: 800;
    line-height: 1.9;
}


/* =========================================
   TOGGLE
========================================= */

.faq-toggle {
    position: relative;

    width: 30px;
    height: 30px;

    border-radius: 9px;

    background: rgba(147, 176, 39, 0.08);
}

.faq-toggle::before,
.faq-toggle::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    background: var(--faq-primary);

    transform: translate(-50%, -50%);
}

.faq-toggle::before {
    width: 12px;
    height: 2px;
}

.faq-toggle::after {
    width: 2px;
    height: 12px;

    transition: transform 0.2s ease;
}


/* =========================================
   OPEN
========================================= */

.cable-faq-item[open] .faq-number {
    color: #fff;
    background: var(--faq-primary);
}

.cable-faq-item[open] .faq-toggle {
    background: var(--faq-primary);
}

.cable-faq-item[open] .faq-toggle::before,
.cable-faq-item[open] .faq-toggle::after {
    background: #fff;
}

.cable-faq-item[open] .faq-toggle::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}


/* =========================================
   ANSWER
========================================= */

.faq-answer {
    padding: 0 72px 18px 60px;
}

.faq-answer p {
    margin: 0;
    padding: 16px 18px;

    color: var(--faq-text);
    background: rgba(147, 176, 39, 0.035);

    border-right: 3px solid var(--faq-primary);
    border-radius: 10px;

    font-size: 14px;
    line-height: 2.1;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .cable-faq {
        margin: 40px auto;
        padding: 0 12px;
    }

    .cable-faq-head {
        margin-bottom: 24px;
    }

    .cable-faq-head h2 {
        font-size: 25px;
    }

    .cable-faq-head p {
        font-size: 13px;
    }

    .cable-faq-item {
        border-radius: 14px;
    }

    .cable-faq-item summary {
        grid-template-columns: 38px minmax(0, 1fr) 30px;

        gap: 10px;

        min-height: 64px;
        padding: 10px 12px;
    }

    .faq-number {
        width: 36px;
        height: 36px;

        border-radius: 10px;

        font-size: 10px;
    }

    .faq-question {
        font-size: 13px;
        line-height: 1.8;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
    }

    .faq-answer {
        padding: 0 12px 14px;
    }

    .faq-answer p {
        padding: 14px 15px;

        font-size: 13px;
        line-height: 2;
    }
}


/* =========================================
   ACCESSIBILITY / PERFORMANCE
========================================= */

@media (prefers-reduced-motion: reduce) {

    .cable-faq-item,
    .faq-toggle::after {
        transition: none;
    }
}
