/* =========================================================
   COMPLIANCE AUDIT
   PREMIUM BLUE THEME
========================================================= */

:root {

    --blue-dark: #071a33;
    --blue-deep: #0a2344;
    --blue: #0d5bd7;
    --blue-main: #1264d8;
    --blue-light: #eaf3ff;
    --blue-soft: #f5f9ff;
    --blue-border: #d8e6f8;

    --white: #ffffff;
    --black: #08111f;

    --text: #334155;
    --text-light: #64748b;
    --muted: #718096;

    --gold: #d8b45a;

    --shadow:
        0 15px 45px rgba(9, 49, 95, 0.10);

    --shadow-blue:
        0 20px 50px rgba(13, 91, 215, 0.16);

    --radius: 14px;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: "Inter", sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.7;

    overflow-x: hidden;

}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;

}


/* =========================================================
   COMMON SECTION
========================================================= */

.section-pad {

    padding: 100px 0;

}

.blue-light-section {

    background:
        linear-gradient(
            180deg,
            #f5f9ff 0%,
            #edf5ff 100%
        );

}

.section-heading {

    max-width: 800px;

    margin: 0 auto 55px;

    text-align: center;

}

.section-label {

    display: inline-block;

    font-family: "Cinzel", serif;

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 0.18em;

    color: var(--blue);

    margin-bottom: 12px;

}

.section-title {

    font-family: "Playfair Display", serif;

    font-size: clamp(2rem, 4vw, 3rem);

    line-height: 1.2;

    color: var(--blue-dark);

    margin-bottom: 18px;

}

.section-title span {

    color: var(--blue);

}

.section-subtitle {

    color: var(--text-light);

    font-size: 1rem;

    max-width: 700px;

    margin: 0 auto;

}

.section-text {

    color: var(--text-light);

    font-size: 0.98rem;

    margin-bottom: 18px;

}

.blue-divider {

    width: 70px;

    height: 3px;

    background: var(--blue);

    margin: 18px 0 28px;

    border-radius: 10px;

}

.blue-divider.center {

    margin-left: auto;
    margin-right: auto;

}


/* =========================================================
   HERO
========================================================= */

.audit-hero {

    min-height: 720px;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 80% 30%,
            rgba(30, 112, 230, 0.35),
            transparent 35%
        ),

        linear-gradient(
            120deg,
            #06162c,
            #092957 55%,
            #0d4eaa
        );

}

.audit-hero::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.08);

    right: -150px;

    top: 50px;

}

.audit-hero::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.06);

    right: 80px;

    bottom: -170px;

}

.audit-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4,15,31,0.96),
            rgba(6,29,61,0.72),
            rgba(10,75,155,0.35)
        );

}

.audit-hero-container {

    position: relative;

    z-index: 2;

}

.hero-content {

    max-width: 760px;

}

.hero-label {

    display: inline-block;

    font-family: "Cinzel", serif;

    font-size: 0.75rem;

    letter-spacing: 0.2em;

    color: #b8d6ff;

    margin-bottom: 18px;

}

.hero-content h1 {

    font-family: "Playfair Display", serif;

    font-size: clamp(3rem, 6vw, 5rem);

    line-height: 1.08;

    color: var(--white);

    margin-bottom: 20px;

}

.hero-content h1 span {

    display: block;

    color: #71b0ff;

}

.hero-divider {

    width: 80px;

    height: 3px;

    background: #68a9ff;

    margin: 25px 0;

}

.hero-content > p {

    color: rgba(255,255,255,0.78);

    font-size: 1.05rem;

    max-width: 680px;

    margin-bottom: 32px;

}

.hero-buttons {

    display: flex;

    gap: 14px;

    flex-wrap: wrap;

}

.btn-blue {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 14px 25px;

    border-radius: 7px;

    background: linear-gradient(
        135deg,
        #1773ec,
        #0755c8
    );

    color: white;

    font-size: 0.88rem;

    font-weight: 700;

    border: 1px solid rgba(255,255,255,0.05);

    box-shadow:
        0 12px 30px rgba(5,70,160,0.25);

    transition: 0.3s ease;

}

.btn-blue:hover {

    transform: translateY(-3px);

    box-shadow:
        0 16px 35px rgba(5,70,160,0.35);

}

.btn-outline-light {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 13px 24px;

    border: 1px solid rgba(255,255,255,0.35);

    border-radius: 7px;

    color: white;

    font-size: 0.88rem;

    font-weight: 600;

    transition: 0.3s;

}

.btn-outline-light:hover {

    background: rgba(255,255,255,0.1);

    border-color: white;

}

.hero-trust {

    display: flex;

    gap: 45px;

    margin-top: 55px;

    flex-wrap: wrap;

}

.hero-trust div {

    display: flex;

    flex-direction: column;

}

.hero-trust strong {

    font-family: "Playfair Display", serif;

    font-size: 1.6rem;

    color: white;

}

.hero-trust span {

    font-size: 0.72rem;

    text-transform: uppercase;

    letter-spacing: 0.08em;

    color: rgba(255,255,255,0.55);

}


/* =========================================================
   TWO COLUMN
========================================================= */

.two-column {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}


/* =========================================================
   HIGHLIGHT
========================================================= */

.audit-highlight {

    padding: 42px;

    background: white;

    border: 1px solid var(--blue-border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-blue);

    position: relative;

    overflow: hidden;

}

.audit-highlight::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background: rgba(13,91,215,0.06);

    right: -80px;

    top: -80px;

}

.highlight-icon {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: var(--blue-light);

    color: var(--blue);

    font-size: 1.5rem;

    margin-bottom: 22px;

}

.small-heading {

    font-family: "Cinzel", serif;

    color: var(--blue);

    font-size: 0.68rem;

    letter-spacing: 0.14em;

}

.audit-highlight h3 {

    font-family: "Playfair Display", serif;

    color: var(--blue-dark);

    font-size: 1.65rem;

    line-height: 1.3;

    margin: 10px 0 25px;

}

.audit-highlight ul {

    list-style: none;

}

.audit-highlight li {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 9px 0;

    border-bottom: 1px solid #edf2f7;

    font-size: 0.9rem;

    color: var(--text);

}

.audit-highlight li i {

    color: var(--blue);

}


/* =========================================================
   AUDIT GRID
========================================================= */

.audit-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

}

.audit-card {

    padding: 30px 25px;

    background: white;

    border: 1px solid var(--blue-border);

    border-radius: 12px;

    transition: 0.35s ease;

    position: relative;

    overflow: hidden;

}

.audit-card::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    height: 3px;

    width: 0;

    background: var(--blue);

    transition: 0.35s;

}

.audit-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow-blue);

    border-color: #b8d2f4;

}

.audit-card:hover::after {

    width: 100%;

}

.card-icon {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--blue-light);

    color: var(--blue);

    border-radius: 10px;

    font-size: 1.25rem;

    margin-bottom: 20px;

}

.audit-card h3 {

    color: var(--blue-dark);

    font-size: 1rem;

    margin-bottom: 10px;

}

.audit-card p {

    font-size: 0.84rem;

    color: var(--text-light);

}


/* =========================================================
   RISK GRID
========================================================= */

.risk-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

}

.risk-card {

    position: relative;

    padding: 35px 28px;

    border-radius: 12px;

    background: #f8fbff;

    border: 1px solid var(--blue-border);

    transition: 0.3s;

}

.risk-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow);

}

.risk-card > span {

    position: absolute;

    right: 20px;

    top: 15px;

    font-size: 2rem;

    font-weight: 800;

    color: rgba(13,91,215,0.07);

}

.risk-card i {

    color: var(--blue);

    font-size: 1.5rem;

    margin-bottom: 18px;

}

.risk-card h3 {

    font-size: 1rem;

    color: var(--blue-dark);

    margin-bottom: 10px;

}

.risk-card p {

    font-size: 0.85rem;

    color: var(--text-light);

}


/* =========================================================
   PROCESS
========================================================= */

.process-section {

    background:
        linear-gradient(
            180deg,
            #f5f9ff,
            #eaf3ff
        );

}

.process-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 25px;

}

.process-item {

    text-align: center;

    position: relative;

    padding: 25px 20px;

}

.process-number {

    font-family: "Playfair Display", serif;

    font-size: 3.2rem;

    font-weight: 700;

    color: rgba(13,91,215,0.1);

}

.process-icon {

    width: 70px;

    height: 70px;

    margin: -10px auto 20px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: white;

    border: 2px solid #cfe0f7;

    color: var(--blue);

    font-size: 1.4rem;

    box-shadow: 0 10px 25px rgba(13,91,215,0.08);

}

.process-item h3 {

    color: var(--blue-dark);

    font-size: 1rem;

    margin-bottom: 10px;

}

.process-item p {

    color: var(--text-light);

    font-size: 0.84rem;

}


/* =========================================================
   DELIVERABLE
========================================================= */

.deliverable-layout {

    align-items: stretch;

}

.deliverable-box {

    padding: 45px;

    background:
        linear-gradient(
            135deg,
            #08224a,
            #0c4da2
        );

    border-radius: 15px;

    color: white;

}

.deliverable-box .section-title {

    color: white;

}

.deliverable-box p {

    color: rgba(255,255,255,0.72);

    margin-bottom: 28px;

}

.deliverable-list {

    display: flex;

    flex-direction: column;

    gap: 15px;

}

.deliverable {

    display: flex;

    gap: 17px;

    padding: 18px;

    border: 1px solid var(--blue-border);

    border-radius: 10px;

    background: #fbfdff;

}

.deliverable > i {

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--blue-light);

    color: var(--blue);

    flex-shrink: 0;

}

.deliverable h4 {

    color: var(--blue-dark);

    margin-bottom: 3px;

}

.deliverable p {

    font-size: 0.8rem;

    color: var(--text-light);

}


/* =========================================================
   DARK BLUE SECTION
========================================================= */

.blue-dark-section {

    background:
        linear-gradient(
            135deg,
            #06162e,
            #092b59
        );

}

.light-heading .section-title {

    color: white;

}

.light-heading .section-subtitle {

    color: rgba(255,255,255,0.68);

}

.light-heading .section-label {

    color: #82baff;

}

.industry-grid {

    display: grid;

    grid-template-columns: repeat(6,1fr);

    gap: 15px;

}

.industry-card {

    padding: 30px 15px;

    text-align: center;

    border: 1px solid rgba(255,255,255,0.1);

    background: rgba(255,255,255,0.04);

    border-radius: 10px;

    transition: 0.3s;

}

.industry-card:hover {

    background: rgba(255,255,255,0.08);

    transform: translateY(-5px);

}

.industry-card i {

    color: #6daeff;

    font-size: 1.6rem;

    margin-bottom: 15px;

}

.industry-card h3 {

    color: white;

    font-size: 0.85rem;

}


/* =========================================================
   CASE STUDY
========================================================= */

.case-study {

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    background: white;

    border-radius: 15px;

    overflow: hidden;

    box-shadow: var(--shadow-blue);

    border: 1px solid var(--blue-border);

}

.case-image {

    min-height: 500px;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(65,150,255,0.35),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #071a35,
            #0d5bd7
        );

    display: flex;

    align-items: center;

    justify-content: center;

}

.case-image-content {

    text-align: center;

    color: white;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 12px;

}

.case-image-content i {

    font-size: 4rem;

    color: #78b5ff;

    margin-bottom: 10px;

}

.case-image-content span {

    font-family: "Cinzel", serif;

    font-size: 0.7rem;

    letter-spacing: 0.16em;

    color: #a9ccf8;

}

.case-image-content strong {

    font-family: "Playfair Display", serif;

    font-size: 1.7rem;

    max-width: 300px;

    line-height: 1.25;

}

.case-content {

    padding: 50px;

}

.case-badge {

    display: inline-block;

    padding: 7px 12px;

    background: var(--blue-light);

    color: var(--blue);

    font-size: 0.67rem;

    font-weight: 700;

    letter-spacing: 0.1em;

    border-radius: 4px;

    margin-bottom: 18px;

}

.case-content h3 {

    font-family: "Playfair Display", serif;

    font-size: 1.7rem;

    color: var(--blue-dark);

    margin-bottom: 25px;

}

.case-block {

    border-left: 3px solid;

    padding-left: 16px;

    margin-bottom: 22px;

}

.case-block span {

    display: block;

    font-family: "Cinzel", serif;

    font-size: 0.67rem;

    letter-spacing: 0.12em;

    margin-bottom: 6px;

}

.case-block p {

    color: var(--text-light);

    font-size: 0.86rem;

}

.case-block.challenge {

    border-color: #e15c5c;

}

.case-block.challenge span {

    color: #c53d3d;

}

.case-block.approach {

    border-color: var(--blue);

}

.case-block.approach span {

    color: var(--blue);

}

.case-block.result {

    border-color: #25a567;

}

.case-block.result span {

    color: #21935b;

}

.case-stats {

    display: flex;

    gap: 30px;

    flex-wrap: wrap;

    margin-top: 28px;

}

.case-stats div {

    text-align: center;

}

.case-stats strong {

    display: block;

    font-family: "Playfair Display", serif;

    color: var(--blue-dark);

    font-size: 1.6rem;

}

.case-stats span {

    display: block;

    color: var(--text-light);

    font-size: 0.72rem;

}


/* =========================================================
   FAQ
========================================================= */

.faq-container {

    max-width: 850px;

    margin: auto;

}

.faq-item {

    background: white;

    border: 1px solid var(--blue-border);

    border-radius: 9px;

    margin-bottom: 12px;

    overflow: hidden;

}

.faq-question {

    width: 100%;

    border: 0;

    background: white;

    padding: 21px 23px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    text-align: left;

    cursor: pointer;

    color: var(--blue-dark);

    font-size: 0.92rem;

    font-weight: 700;

}

.faq-question i {

    color: var(--blue);

    transition: 0.3s;

}

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.35s ease;

}

.faq-answer p {

    padding: 0 23px 22px;

    color: var(--text-light);

    font-size: 0.86rem;

}

.faq-item.open .faq-answer {

    max-height: 300px;

}

.faq-item.open .faq-question i {

    transform: rotate(180deg);

}


/* =========================================================
   TESTIMONIAL
========================================================= */

.testimonial-grid {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 22px;

}

.testimonial-card {

    padding: 35px;

    background: #fbfdff;

    border: 1px solid var(--blue-border);

    border-radius: 12px;

    transition: 0.3s;

}

.testimonial-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow-blue);

}

.stars {

    color: #f1b83a;

    letter-spacing: 3px;

    margin-bottom: 18px;

}

.testimonial-card p {

    color: var(--text-light);

    font-size: 0.88rem;

    margin-bottom: 22px;

}

.testimonial-card strong {

    display: block;

    color: var(--blue-dark);

    font-size: 0.9rem;

}

.testimonial-card span {

    color: var(--muted);

    font-size: 0.72rem;

}


/* =========================================================
   RELATED
========================================================= */

.related-grid {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 20px;

}

.related-card {

    display: block;

    padding: 30px;

    background: white;

    border: 1px solid var(--blue-border);

    border-radius: 12px;

    transition: 0.3s;

}

.related-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow-blue);

    border-color: #b8d2f4;

}

.related-card i {

    color: var(--blue);

    font-size: 1.8rem;

    margin-bottom: 15px;

}

.related-card h3 {

    color: var(--blue-dark);

    font-size: 1rem;

    margin-bottom: 8px;

}

.related-card p {

    color: var(--text-light);

    font-size: 0.83rem;

}


/* =========================================================
   CLIENTS
========================================================= */

.clients-section {

    padding: 65px 0;

    background: #f7fbff;

    overflow: hidden;

    border-top: 1px solid var(--blue-border);

    border-bottom: 1px solid var(--blue-border);

}

.clients-label {

    text-align: center;

    font-family: "Cinzel", serif;

    font-size: 0.72rem;

    letter-spacing: 0.18em;

    color: var(--blue);

    margin-bottom: 35px;

}

.clients-track-wrap {

    width: 100%;

    overflow: hidden;

    margin-bottom: 20px;

}

.clients-track {

    display: flex;

    width: max-content;

    animation: clientMove 35s linear infinite;

}

.clients-track.reverse {

    animation: clientMoveReverse 42s linear infinite;

}

.clients-track span {

    white-space: nowrap;

    margin-right: 25px;

    padding: 13px 20px;

    background: white;

    border: 1px solid var(--blue-border);

    border-radius: 5px;

    color: #52657e;

    font-size: 0.78rem;

    font-weight: 600;

}

@keyframes clientMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

@keyframes clientMoveReverse {

    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }

}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    padding: 100px 0;

    background:
        linear-gradient(
            135deg,
            #06162d,
            #092b59
        );

}

.contact-grid {

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 65px;

}

.light-heading .section-title {

    color: white;

}

.contact-details h3 {

    color: #78b5ff;

    font-family: "Playfair Display", serif;

    margin-bottom: 28px;

}

.contact-item {

    display: flex;

    gap: 18px;

    margin-bottom: 28px;

}

.contact-icon {

    width: 46px;

    height: 46px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background: rgba(75,151,255,0.12);

    border: 1px solid rgba(100,170,255,0.2);

    color: #72afff;

}

.contact-item span {

    display: block;

    color: rgba(255,255,255,0.45);

    font-family: "Cinzel", serif;

    font-size: 0.65rem;

    letter-spacing: 0.13em;

    margin-bottom: 5px;

}

.contact-item a {

    display: block;

    color: white;

    font-weight: 600;

    font-size: 0.95rem;

    margin-bottom: 3px;

}

.contact-item p {

    color: white;

    font-size: 0.9rem;

}

.contact-item small {

    color: rgba(255,255,255,0.5);

}

.small-call-btn {

    display: inline-block !important;

    color: #7eb8ff !important;

    font-size: 0.75rem !important;

}

.contact-form {

    padding: 40px;

    border-radius: 14px;

    background: white;

    box-shadow: 0 25px 60px rgba(0,0,0,0.2);

}

.contact-form h3 {

    font-family: "Playfair Display", serif;

    color: var(--blue-dark);

    margin-bottom: 25px;

}

.form-two {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;

}

.form-group {

    margin-bottom: 17px;

}

.form-group label {

    display: block;

    color: var(--blue-dark);

    font-size: 0.75rem;

    font-weight: 700;

    margin-bottom: 7px;

}

.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    padding: 12px 14px;

    border: 1px solid #d8e3f0;

    border-radius: 6px;

    background: #fbfdff;

    color: var(--text);

    outline: none;

    font-size: 0.84rem;

    transition: 0.25s;

}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color: var(--blue);

    box-shadow:
        0 0 0 3px rgba(13,91,215,0.08);

}

.form-group textarea {

    resize: vertical;

}

.form-submit {

    width: 100%;

    padding: 14px;

    border: 0;

    border-radius: 7px;

    background: linear-gradient(
        135deg,
        #1672e8,
        #0754c7
    );

    color: white;

    font-size: 0.88rem;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s;

}

.form-submit:hover {

    transform: translateY(-2px);

}

.privacy-text {

    text-align: center;

    margin-top: 12px;

    color: #8795a8;

    font-size: 0.7rem;

}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {

    padding: 95px 0;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(44,127,229,0.35),
            transparent 45%
        ),
        #06172f;

}

.final-content {

    max-width: 800px;

    margin: auto;

    text-align: center;

}

.final-content .section-label {

    color: #76b1ff;

}

.final-content h2 {

    font-family: "Playfair Display", serif;

    color: white;

    font-size: clamp(2rem, 4vw, 3.3rem);

    line-height: 1.2;

    margin-bottom: 18px;

}

.final-content h2 span {

    color: #72afff;

}

.final-content p {

    color: rgba(255,255,255,0.68);

    max-width: 650px;

    margin: 0 auto 30px;

}

.final-buttons {

    display: flex;

    justify-content: center;

    gap: 14px;

    flex-wrap: wrap;

}

.btn-outline-blue {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 13px 24px;

    border: 1px solid rgba(120,181,255,0.5);

    border-radius: 7px;

    color: #8bc1ff;

    font-size: 0.86rem;

    font-weight: 700;

    transition: 0.3s;

}

.btn-outline-blue:hover {

    background: rgba(100,170,255,0.1);

    border-color: #8bc1ff;

}


/* =========================================================
   RESOURCES
========================================================= */

.resource-grid {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 22px;

}

.resource-card {

    padding: 32px;

    border: 1px solid var(--blue-border);

    border-radius: 12px;

    background: white;

    transition: 0.3s;

}

.resource-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow-blue);

}

.resource-icon {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--blue-light);

    color: var(--blue);

    border-radius: 10px;

    font-size: 1.3rem;

    margin-bottom: 18px;

}

.resource-card > span {

    color: var(--blue);

    font-family: "Cinzel", serif;

    font-size: 0.64rem;

    letter-spacing: 0.12em;

}

.resource-card h3 {

    color: var(--blue-dark);

    font-family: "Playfair Display", serif;

    font-size: 1.15rem;

    line-height: 1.35;

    margin: 10px 0;

}

.resource-card p {

    color: var(--text-light);

    font-size: 0.82rem;

    margin-bottom: 18px;

}

.resource-card a {

    color: var(--blue);

    font-family: "Cinzel", serif;

    font-size: 0.68rem;

    font-weight: 700;

    letter-spacing: 0.08em;

}


/* =========================================================
   FLOATING BUTTONS
========================================================= */

.floating-wa {

    position: fixed;

    right: 22px;

    bottom: 90px;

    z-index: 999;

}

.floating-wa a {

    width: 56px;

    height: 56px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #20b85a;

    color: white;

    font-size: 1.7rem;

    box-shadow: 0 8px 25px rgba(0,0,0,0.2);

    transition: 0.3s;

}

.floating-wa a:hover {

    transform: scale(1.08);

}

.floating-call {

    position: fixed;

    right: 22px;

    bottom: 155px;

    z-index: 999;

}

.floating-call a {

    width: 52px;

    height: 52px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--blue);

    color: white;

    font-size: 1.1rem;

    box-shadow: 0 8px 25px rgba(0,0,0,0.18);

    transition: 0.3s;

}

.floating-call a:hover {

    transform: scale(1.08);

}

.sticky-consultation {

    position: fixed;

    left: 0;

    bottom: 25px;

    z-index: 998;

}

.sticky-consultation a {

    display: block;

    background: var(--blue);

    color: white;

    padding: 12px 22px;

    border-radius: 0 30px 30px 0;

    font-size: 0.75rem;

    font-weight: 700;

    box-shadow: 0 7px 25px rgba(0,0,0,0.2);

}


/* =========================================================
   BACK TOP
========================================================= */

.back-top {

    position: fixed;

    right: 22px;

    bottom: 22px;

    width: 42px;

    height: 42px;

    border: 0;

    border-radius: 7px;

    background: var(--blue-dark);

    color: white;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transition: 0.3s;

    z-index: 997;

}

.back-top.show {

    opacity: 1;

    visibility: visible;

}


/* =========================================================
   ANIMATION
========================================================= */

.fade-up {

    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;

}

.fade-up.visible {

    opacity: 1;

    transform: translateY(0);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .audit-grid,
    .risk-grid {

        grid-template-columns: repeat(2,1fr);

    }

    .industry-grid {

        grid-template-columns: repeat(3,1fr);

    }

}


@media (max-width: 900px) {

    .section-pad {

        padding: 75px 0;

    }

    .two-column,
    .case-study,
    .contact-grid {

        grid-template-columns: 1fr;

    }

    .case-image {

        min-height: 350px;

    }

    .process-grid {

        grid-template-columns: repeat(2,1fr);

    }

    .testimonial-grid,
    .related-grid,
    .resource-grid {

        grid-template-columns: repeat(2,1fr);

    }

}


@media (max-width: 650px) {

    .container {

        width: min(100% - 28px, 1180px);

    }

    .section-pad {

        padding: 60px 0;

    }

    .audit-hero {

        min-height: 680px;

    }

    .hero-content h1 {

        font-size: 2.7rem;

    }

    .hero-content > p {

        font-size: 0.9rem;

    }

    .hero-trust {

        gap: 25px;

        margin-top: 38px;

    }

    .hero-trust strong {

        font-size: 1.35rem;

    }

    .hero-trust span {

        font-size: 0.62rem;

    }

    .audit-grid,
    .risk-grid,
    .process-grid,
    .testimonial-grid,
    .related-grid,
    .resource-grid,
    .industry-grid {

        grid-template-columns: 1fr;

    }

    .audit-highlight {

        padding: 28px;

    }

    .case-content {

        padding: 30px 22px;

    }

    .case-image {

        min-height: 280px;

    }

    .case-content h3 {

        font-size: 1.4rem;

    }

    .case-stats {

        gap: 20px;

    }

    .contact-form {

        padding: 25px 20px;

    }

    .form-two {

        grid-template-columns: 1fr;

        gap: 0;

    }

    .floating-wa {

        right: 15px;

        bottom: 80px;

    }

    .floating-call {

        right: 15px;

        bottom: 145px;

    }

    .sticky-consultation {

        bottom: 0;

        width: 100%;

    }

    .sticky-consultation a {

        border-radius: 0;

        text-align: center;

        padding: 11px;

    }

    .back-top {

        bottom: 65px;

    }

}


@media (max-width: 420px) {

    .hero-content h1 {

        font-size: 2.35rem;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }

    .hero-buttons a {

        width: 100%;

    }

    .hero-trust {

        display: grid;

        grid-template-columns: repeat(3,1fr);

        gap: 10px;

    }

    .hero-trust strong {

        font-size: 1.1rem;

    }

    .hero-trust span {

        font-size: 0.55rem;

    }

}