/* =========================================================
   HIMscript FAQ PAGE
   BRAND PALETTE
========================================================= */

:root {

    --navy: #0c1d31;

    --slate: #3e4f67;

    --gold: #c2995a;

    --white: #fefefe;

    --light: #f4f6f8;

    --border: #e3e7eb;

    --text: #667482;

}


/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    background: var(--white);

    color: var(--navy);

}


button {
    font-family: inherit;
}


a {
    transition: all .3s ease;
}


/* =========================================================
   HERO
========================================================= */

.hm-faq-hero {

    position: relative;

    min-height: 470px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 80% 20%,
            rgba(194,153,90,.18),
            transparent 27%
        ),

        linear-gradient(
            135deg,
            var(--navy),
            var(--slate)
        );

    color: var(--white);

}


.hm-faq-hero::before {

    content: "";

    position: absolute;

    left: -180px;
    bottom: -260px;

    width: 520px;
    height: 520px;

    border: 1px solid
        rgba(194,153,90,.18);

    border-radius: 50%;

    animation:
        heroRotate 18s linear infinite;

}


.hm-faq-hero::after {

    content: "";

    position: absolute;

    right: -180px;
    top: -180px;

    width: 500px;
    height: 500px;

    border: 1px solid
        rgba(254,254,254,.08);

    border-radius: 50%;

    animation:
        heroRotate 20s linear infinite reverse;

}


@keyframes heroRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   HERO CONTENT
========================================================= */

.hm-faq-hero .container {
    position: relative;
    z-index: 5;
}


.faq-hero-label {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    color: var(--gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;

}


.faq-hero-label span {

    display: inline-block;

    width: 35px;

    height: 1px;

    background: var(--gold);

}


.faq-hero-label i {
    font-size: 14px;
}


.hm-faq-hero h1 {

    margin: 22px 0 15px;

    font-size: 58px;

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -1px;

}


.hm-faq-hero h1 strong {

    display: block;

    color: var(--gold);

    font-family: Georgia, serif;

    font-style: italic;

}


.hm-faq-hero p {

    max-width: 650px;

    margin: auto;

    color: rgba(254,254,254,.68);

    font-size: 15px;

    line-height: 1.8;

}


.hero-decoration {

    margin-top: 28px;

    color: var(--gold);

    font-size: 8px;

}


.hero-decoration::before,
.hero-decoration::after {

    content: "";

    display: inline-block;

    vertical-align: middle;

    width: 60px;

    height: 1px;

    margin: 0 12px;

    background: rgba(194,153,90,.45);

}


/* =========================================================
   FLOATING SYMBOLS
========================================================= */

.faq-floating-icon {

    position: absolute;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: center;

    color: rgba(194,153,90,.22);

    border: 1px solid
        rgba(194,153,90,.15);

    animation:
        floatIcon 5s ease-in-out infinite;

}


.icon-question {

    right: 17%;

    top: 17%;

    width: 80px;
    height: 80px;

    border-radius: 50%;

    font-size: 26px;

}


.icon-chat {

    right: 7%;

    bottom: 20%;

    width: 55px;
    height: 55px;

    border-radius: 50%;

    font-size: 17px;

    animation-delay: 1s;

}


.icon-file {

    left: 7%;

    top: 23%;

    width: 48px;
    height: 48px;

    border-radius: 10px;

    font-size: 15px;

    animation-delay: 2s;

}


@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

}


/* =========================================================
   MAIN FAQ AREA
========================================================= */

.hm-faq-main {

    position: relative;

    padding: 100px 0;

    overflow: hidden;

    background: var(--light);

}


.faq-bg-symbol {

    position: absolute;

    right: -80px;

    top: 50px;

    color: rgba(12,29,49,.025);

    font-family: Georgia, serif;

    font-size: 550px;

    font-weight: bold;

    line-height: .8;

    pointer-events: none;

}


/* =========================================================
   SECTION HEADING
========================================================= */

.faq-section-heading {

    position: relative;

    z-index: 2;

    margin-bottom: 55px;

}


.faq-section-heading > span {

    color: var(--gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.faq-section-heading h2 {

    margin: 12px 0;

    color: var(--navy);

    font-size: 42px;

    font-weight: 800;

}


.faq-section-heading h2 strong {
    color: var(--gold);
}


.faq-section-heading p {

    margin: 0;

    color: #7a8792;

    font-size: 13px;

}


/* =========================================================
   FAQ CARD
========================================================= */

.hm-faq-card {

    position: relative;

    z-index: 3;

    max-width: 950px;

    margin: 0 auto 16px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 10px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(12,29,49,.04);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    animation:
        faqReveal .7s ease both;

}


.hm-faq-card:hover {

    transform: translateY(-4px);

    border-color:
        rgba(194,153,90,.45);

    box-shadow:
        0 18px 40px rgba(12,29,49,.09);

}


@keyframes faqReveal {

    from {

        opacity: 0;

        transform: translateY(25px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


.faq-card-01 {
    animation-delay: .1s;
}

.faq-card-02 {
    animation-delay: .2s;
}

.faq-card-03 {
    animation-delay: .3s;
}

.faq-card-04 {
    animation-delay: .4s;
}

.faq-card-05 {
    animation-delay: .5s;
}

.faq-card-06 {
    animation-delay: .6s;
}

.faq-card-07 {
    animation-delay: .7s;
}


/* =========================================================
   QUESTION BUTTON
========================================================= */

.hm-faq-question {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 22px 25px;

    border: 0;

    outline: none !important;

    background: var(--white);

    cursor: pointer;

    text-align: left;

}


.hm-faq-question:hover {
    background: #fcfcfc;
}


.faq-question-content {

    display: flex;

    align-items: center;

    gap: 18px;

}


.faq-symbol {

    width: 54px;
    height: 54px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--navy);

    color: var(--gold);

    border-radius: 9px;

    font-size: 18px;

    transition:
        all .4s ease;

}


.hm-faq-card:hover .faq-symbol {

    color: var(--navy);

    background: var(--gold);

    transform:
        rotate(-7deg)
        scale(1.08);

}


/* Different icon shapes */

.faq-card-02 .faq-symbol {
    border-radius: 50%;
}

.faq-card-03 .faq-symbol {
    border-radius: 50% 10px 50% 10px;
}

.faq-card-04 .faq-symbol {
    border-radius: 5px 50% 5px 50%;
}

.faq-card-05 .faq-symbol {
    border-radius: 50%;
}

.faq-card-06 .faq-symbol {
    border-radius: 50% 10px 50% 10px;
}

.faq-card-07 .faq-symbol {
    border-radius: 50%;
}


.faq-question-content small {

    display: block;

    margin-bottom: 5px;

    color: var(--gold);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.faq-question-content h3 {

    margin: 0;

    color: var(--navy);

    font-size: 16px;

    font-weight: 700;

    line-height: 1.4;

}


/* =========================================================
   PLUS BUTTON
========================================================= */

.faq-plus {

    width: 36px;
    height: 36px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--gold);

    border: 1px solid #dfe3e7;

    border-radius: 50%;

    transition:
        all .4s ease;

}


.hm-faq-question[aria-expanded="true"]
.faq-plus {

    color: var(--navy);

    background: var(--gold);

    border-color: var(--gold);

    transform: rotate(45deg);

}


.faq-plus i {
    font-size: 11px;
}


/* =========================================================
   ANSWER
========================================================= */

.hm-faq-answer {

    position: relative;

    display: flex;

    gap: 18px;

    padding: 0 35px 30px 98px;

    color: var(--text);

    font-size: 13px;

    line-height: 1.85;

}


.answer-line {

    position: absolute;

    left: 70px;

    top: 0;

    bottom: 30px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            var(--gold),
            transparent
        );

}


.answer-icon {

    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--gold);

    background:
        rgba(194,153,90,.08);

    border: 1px solid
        rgba(194,153,90,.25);

    border-radius: 50%;

    font-size: 15px;

    transition: all .5s ease;

}


.hm-faq-card:hover .answer-icon {

    transform:
        rotate(360deg);

}


.answer-content {
    flex: 1;
}


.answer-label {

    display: block;

    margin-bottom: 5px;

    color: var(--gold);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.answer-content h4 {

    margin: 0 0 8px;

    color: var(--navy);

    font-size: 17px;

    font-weight: 800;

}


.answer-content p {
    margin-bottom: 12px;
}


.answer-content strong {
    color: var(--navy);
}


/* =========================================================
   ANSWER HIGHLIGHT
========================================================= */

.answer-highlight {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 13px;

    color: var(--slate);

    background:
        rgba(194,153,90,.08);

    border-left: 3px solid var(--gold);

    font-size: 13px;

}


.answer-highlight i {
    color: var(--gold);
}


/* =========================================================
   FORMAT GRID
========================================================= */

.faq-format-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 8px;

    margin: 18px 0;

}


.faq-format-grid span {

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 10px;

    color: var(--slate);

    background: var(--light);

    border: 1px solid #e7eaed;

    border-radius: 5px;

    font-size: 12px;

    transition: all .3s ease;

}


.faq-format-grid i {

    color: var(--gold);

}


.faq-format-grid span:hover {

    color: var(--white);

    background: var(--navy);

    transform: translateY(-3px);

}


/* =========================================================
   DELIVERY
========================================================= */

.faq-delivery-list {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

    margin-top: 18px;

}


.faq-delivery-list div {

    padding: 12px;

    color: var(--slate);

    background: var(--light);

    border-radius: 5px;

    font-size: 13px;

    transition: all .3s ease;

}


.faq-delivery-list i {

    width: 23px;

    color: var(--gold);

}


.faq-delivery-list div:hover {

    color: var(--white);

    background: var(--navy);

    transform: translateX(5px);

}


/* =========================================================
   PILLS
========================================================= */

.faq-pills {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 18px;

}


.faq-pills span {

    padding: 8px 12px;

    color: var(--slate);

    background: var(--light);

    border: 1px solid #e2e6e9;

    border-radius: 20px;

    font-size: 12px;

    transition: all .3s ease;

}


.faq-pills i {

    margin-right: 5px;

    color: var(--gold);

}


.faq-pills span:hover {

    color: var(--white);

    background: var(--navy);

}


/* =========================================================
   SECURITY
========================================================= */

.security-icon {

    color: var(--navy);

    background:
        rgba(12,29,49,.07);

}


.security-banner {

    display: flex;

    align-items: center;

    gap: 12px;

    max-width: 400px;

    margin-top: 18px;

    padding: 13px 15px;

    background: var(--navy);

    color: var(--gold);

    border-radius: 5px;

}


.security-banner > i {

    font-size: 21px;

}


.security-banner strong {

    display: block;

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 1px;

}


.security-banner small {

    display: block;

    margin-top: 3px;

    color: rgba(254,254,254,.5);

    font-size: 12px;

}


/* =========================================================
   SPEAKER DEMO
========================================================= */

.speaker-demo {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin-top: 18px;

}


.speaker-demo div {

    padding: 13px;

    background: var(--light);

    border-top: 3px solid var(--gold);

    border-radius: 4px;

}


.speaker-demo span {

    display: block;

    color: var(--gold);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

}


.speaker-demo strong {

    display: block;

    margin-top: 5px;

    color: var(--navy);

    font-size: 11px;

}


/* =========================================================
   ACCURACY
========================================================= */

.accuracy-icon {

    border-radius: 50%;

}


.accuracy-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 8px;

    margin: 16px 0;

}


.accuracy-grid span {

    padding: 10px;

    color: var(--slate);

    background: var(--light);

    border-radius: 5px;

    font-size: 13px;

    transition: all .3s ease;

}


.accuracy-grid i {

    margin-right: 6px;

    color: var(--gold);

}


.accuracy-grid span:hover {

    color: var(--white);

    background: var(--slate);

    transform: scale(1.02);

}


.accuracy-message {

    padding: 13px;

    color: var(--slate);

    background:
        rgba(194,153,90,.08);

    border-left: 3px solid var(--gold);

    font-size: 13px;

}


.accuracy-message i {

    margin-right: 6px;

    color: var(--gold);

}


/* =========================================================
   CTA
========================================================= */

.hm-faq-cta {

    padding: 70px 0;

    background: var(--navy);

}


.faq-cta-inner {

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 35px;

    background: #172c43;

    border: 1px solid
        rgba(194,153,90,.25);

    border-radius: 10px;

}


.cta-icon {

    width: 60px;
    height: 60px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--gold);

    background:
        rgba(194,153,90,.08);

    border: 1px solid
        rgba(194,153,90,.3);

    border-radius: 50%;

    font-size: 20px;

}


.cta-text {
    flex: 1;
}


.cta-text > span {

    color: var(--gold);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.cta-text h2 {

    margin: 5px 0;

    color: var(--white);

    font-size: 25px;

    font-weight: 800;

}


.cta-text p {

    margin: 0;

    color: rgba(254,254,254,.5);

    font-size: 11px;

}


.cta-button {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 22px;

    background: var(--gold);

    color: var(--navy) !important;

    font-size: 11px;

    font-weight: 800;

    text-decoration: none !important;

    white-space: nowrap;

    transition: all .35s ease;

}


.cta-button:hover {

    background: var(--white);

    transform: translateY(-3px);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .hm-faq-hero h1 {
        font-size: 48px;
    }


    .faq-cta-inner {
        flex-wrap: wrap;
    }


    .cta-text {
        flex: 1;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hm-faq-hero {
        min-height: 430px;
    }


    .hm-faq-hero h1 {
        font-size: 38px;
    }


    .hm-faq-hero p {
        padding: 0 15px;
        font-size: 13px;
    }


    .faq-floating-icon {
        opacity: .35;
    }


    .icon-file {
        display: none;
    }


    .hm-faq-main {
        padding: 70px 0;
    }


    .faq-section-heading h2 {
        font-size: 33px;
    }


    .hm-faq-question {
        padding: 17px 14px;
    }


    .faq-question-content {
        gap: 11px;
    }


    .faq-symbol {
        width: 43px;
        height: 43px;
        font-size: 14px;
    }


    .faq-question-content h3 {
        font-size: 12px;
    }


    .faq-question-content small {
        font-size: 12px;
    }


    .faq-plus {
        width: 30px;
        height: 30px;
    }


    .hm-faq-answer {
        padding:
            0 15px 25px 67px;

        font-size: 12px;

        gap: 10px;
    }


    .answer-line {
        left: 52px;
    }


    .answer-icon {
        width: 37px;
        height: 37px;
        font-size: 12px;
    }


    .faq-format-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .faq-delivery-list {
        grid-template-columns:
            1fr;
    }


    .speaker-demo {
        grid-template-columns:
            1fr;
    }


    .accuracy-grid {
        grid-template-columns:
            1fr;
    }


    .faq-cta-inner {
        padding: 28px 20px;

        text-align: center;

        justify-content: center;
    }


    .cta-text {
        flex: 0 0 100%;
    }


    .cta-text h2 {
        font-size: 21px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hm-faq-hero h1 {
        font-size: 32px;
    }


    .faq-hero-label {
        font-size: 8px;
        letter-spacing: 1.5px;
    }


    .faq-hero-label span {
        width: 20px;
    }


    .faq-section-heading h2 {
        font-size: 29px;
    }


    .faq-question-content h3 {
        max-width: 190px;
    }


    .hm-faq-answer {
        padding-left: 58px;
    }


    .answer-line {
        left: 43px;
    }


    .faq-bg-symbol {
        font-size: 350px;
    }

}