/* =========================================================
   ContractGauge — Main Styles
   ========================================================= */

/* ---------- Design Tokens ---------- */

:root {
    --cg-navy-950: #081a2f;
    --cg-navy-900: #0b2340;
    --cg-navy-800: #12365c;

    --cg-green-600: #2f9e44;
    --cg-green-500: #38a94f;
    --cg-green-100: #eaf7ed;

    --cg-text: #142033;
    --cg-text-muted: #64748b;

    --cg-border: #e6eaf0;
    --cg-bg: #ffffff;
    --cg-bg-soft: #f7f9fc;

    --cg-radius-sm: 8px;
    --cg-radius-md: 12px;
    --cg-radius-lg: 18px;

    --cg-shadow-sm: 0 1px 3px rgba(8, 26, 47, 0.06);
    --cg-shadow-md: 0 10px 30px rgba(8, 26, 47, 0.08);

    --cg-container: 1240px;
}


/* ---------- Reset / Base ---------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cg-bg);
    color: var(--cg-text);
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.cg-container {
    width: min(calc(100% - 48px), var(--cg-container));
    margin-inline: auto;
}


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

.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--cg-border);
}

.site-header__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}


/* ---------- Branding ---------- */

.site-branding {
    flex: 0 0 auto;
}

.site-branding__link {
    display: inline-flex;
    align-items: center;
}

.site-branding__logo {
    width: auto;
    max-width: 220px;
    max-height: 46px;
}

.site-branding__text {
    color: var(--cg-navy-950);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.7px;
}

.site-branding__text span {
    color: var(--cg-green-600);
}


/* ---------- Primary Navigation ---------- */

.primary-navigation {
    margin-left: auto;
}

.primary-navigation__menu {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-navigation__menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: #344054;
    font-size: 15px;
    font-weight: 600;
    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.primary-navigation__menu a:hover,
.primary-navigation__menu .current-menu-item > a {
    color: var(--cg-green-600);
}


/* ---------- Header Actions ---------- */

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cg-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--cg-radius-sm);
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.cg-button--header {
    min-height: 44px;
    padding: 0 19px;
    background: var(--cg-green-600);
    color: #ffffff;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(47, 158, 68, 0.18);
}

.cg-button--header:hover {
    background: #298c3c;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(47, 158, 68, 0.23);
}


/* ---------- Mobile Menu Toggle ---------- */

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 1px solid var(--cg-border);
    border-radius: var(--cg-radius-sm);
    background: #ffffff;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    border-radius: 99px;
    background: var(--cg-navy-950);
}


/* =========================================================
   Temporary Front Page Base
   ========================================================= */

.site-main {
    display: block;
}

.cg-home {
    width: 100%;
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 900px) {

    .cg-container {
        width: min(calc(100% - 32px), var(--cg-container));
    }

    .site-header__inner {
        min-height: 68px;
        gap: 16px;
    }

    .site-branding__text {
        font-size: 22px;
    }

    .primary-navigation {
        display: none;
    }

    .cg-button--header {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}


/* =========================================================
   Homepage — Hero
   ========================================================= */

.cg-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 104px;
    background:
        radial-gradient(
            circle at 83% 18%,
            rgba(47, 158, 68, 0.10),
            transparent 29%
        ),
        radial-gradient(
            circle at 72% 75%,
            rgba(18, 54, 92, 0.06),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfcfe 100%
        );
}

.cg-hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(47, 158, 68, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.cg-hero::after {
    content: "";
    position: absolute;
    right: 9%;
    bottom: -250px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(11, 35, 64, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.cg-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(460px, 0.92fr);
    align-items: center;
    gap: 80px;
}


/* ---------- Hero Content ---------- */

.cg-hero__content {
    max-width: 670px;
}

.cg-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 7px 12px;
    border: 1px solid #dcefe0;
    border-radius: 999px;
    background: rgba(234, 247, 237, 0.72);
    color: #247d36;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.cg-hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: var(--cg-green-600);
    box-shadow: 0 0 0 4px rgba(47, 158, 68, 0.12);
}

.cg-hero__title {
    max-width: 700px;
    margin: 0;
    color: var(--cg-navy-950);
    font-size: clamp(48px, 5.1vw, 70px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.cg-hero__title span {
    display: block;
    color: var(--cg-green-600);
}

.cg-hero__description {
    max-width: 625px;
    margin: 27px 0 0;
    color: var(--cg-text-muted);
    font-size: 18px;
    line-height: 1.75;
}


/* ---------- Hero CTA ---------- */

.cg-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.cg-button--primary,
.cg-button--secondary {
    min-height: 52px;
    padding: 0 23px;
    font-size: 15px;
}

.cg-button--primary {
    background: var(--cg-green-600);
    color: #ffffff;
    box-shadow: 0 10px 26px rgba(47, 158, 68, 0.22);
}

.cg-button--primary:hover {
    background: #298c3c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(47, 158, 68, 0.27);
}

.cg-button--secondary {
    border: 1px solid #d8dee8;
    background: #ffffff;
    color: var(--cg-navy-900);
    box-shadow: var(--cg-shadow-sm);
}

.cg-button--secondary:hover {
    border-color: #bcc6d3;
    background: #fbfcfe;
    color: var(--cg-navy-950);
    transform: translateY(-1px);
}


/* ---------- Proof Points ---------- */

.cg-hero__proof {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 24px;
    margin-top: 28px;
    color: #536174;
    font-size: 13px;
    font-weight: 600;
}

.cg-hero__proof-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.cg-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--cg-green-100);
    color: var(--cg-green-600);
    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   Dashboard Visual
   ========================================================= */

.cg-hero__visual {
    position: relative;
    width: 100%;
    max-width: 570px;
    margin-left: auto;
    padding: 23px 0 22px;
}

.cg-dashboard {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    border: 1px solid rgba(214, 222, 232, 0.95);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow:
        0 30px 70px rgba(8, 26, 47, 0.14),
        0 5px 15px rgba(8, 26, 47, 0.05);
}

.cg-dashboard__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    border-bottom: 1px solid #e9edf2;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfcfd 100%
        );
}

.cg-dashboard__topbar > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cg-dashboard__label {
    color: #8491a3;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.12em;
}

.cg-dashboard__name {
    color: var(--cg-navy-950);
    font-size: 17px;
    font-weight: 800;
}

.cg-dashboard__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    background: var(--cg-green-100);
    color: #247d36;
    font-size: 11px;
    font-weight: 800;
}


/* ---------- Dashboard Summary ---------- */

.cg-dashboard__summary {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 10px;
    padding: 18px 20px 8px;
}

.cg-metric {
    min-width: 0;
    padding: 14px;
    border: 1px solid #e8edf2;
    border-radius: 12px;
    background: #fbfcfd;
}

.cg-metric span {
    display: block;
    margin-bottom: 5px;
    color: #7a8798;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.cg-metric strong {
    display: block;
    color: var(--cg-navy-950);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cg-metric--large {
    background:
        linear-gradient(
            135deg,
            #f1faf3,
            #fbfefc
        );
    border-color: #dcefe0;
}

.cg-metric--large strong {
    color: var(--cg-green-600);
}


/* ---------- Cost Breakdown ---------- */

.cg-dashboard__breakdown {
    padding: 18px 22px 21px;
}

.cg-cost-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 14px;
    color: #667386;
    font-size: 12px;
    font-weight: 600;
}

.cg-cost-row:first-child {
    margin-top: 0;
}

.cg-cost-row > div {
    display: flex;
    align-items: center;
    min-width: 0;
}

.cg-cost-row strong {
    flex: 0 0 auto;
    color: var(--cg-navy-900);
    font-size: 12px;
}

.cg-cost-row__dot {
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
}

.cg-cost-row__dot--labor {
    background: var(--cg-navy-800);
}

.cg-cost-row__dot--overhead {
    background: #6f91ba;
}

.cg-cost-row__dot--supplies {
    background: var(--cg-green-500);
}

.cg-progress {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 6px;
    margin-top: 7px;
    border-radius: 999px;
    background: #edf1f5;
}

.cg-progress span {
    position: absolute;
    inset: 0 auto 0 0;
    display: block;
    border-radius: inherit;
    background: var(--cg-navy-800);
}

.cg-progress--overhead span {
    background: #6f91ba;
}

.cg-progress--supplies span {
    background: var(--cg-green-500);
}


/* ---------- Dashboard Profit Alert ---------- */

.cg-dashboard__alert {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    margin: 0 20px 20px;
    padding: 14px 15px;
    border: 1px solid #d7ebdc;
    border-radius: 13px;
    background:
        linear-gradient(
            135deg,
            #f0faf2,
            #f8fcf9
        );
}

.cg-dashboard__alert-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    background: var(--cg-green-600);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}

.cg-dashboard__alert > div:nth-child(2) {
    min-width: 0;
}

.cg-dashboard__alert span {
    display: block;
    color: #6a786d;
    font-size: 10px;
    font-weight: 700;
}

.cg-dashboard__alert strong {
    display: block;
    margin-top: 2px;
    color: var(--cg-navy-950);
    font-size: 16px;
    font-weight: 800;
}

.cg-dashboard__alert-margin {
    color: var(--cg-green-600);
    font-size: 15px;
    font-weight: 800;
}


/* ---------- Floating Cards ---------- */

.cg-floating-card {
    position: absolute;
    z-index: 3;
    min-width: 155px;
    padding: 12px 14px;
    border: 1px solid rgba(219, 225, 233, 0.92);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 15px 35px rgba(8, 26, 47, 0.11);
}

.cg-floating-card span {
    display: block;
    margin-bottom: 2px;
    color: #8591a1;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cg-floating-card strong {
    display: block;
    color: var(--cg-navy-950);
    font-size: 14px;
    font-weight: 800;
}

.cg-floating-card--hours {
    top: 7px;
    right: -28px;
}

.cg-floating-card--actual {
    left: -34px;
    bottom: 3px;
}

.cg-floating-card--actual strong {
    color: var(--cg-green-600);
}


/* =========================================================
   Hero Responsive
   ========================================================= */

@media (max-width: 1100px) {

    .cg-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
        gap: 50px;
    }

    .cg-floating-card--hours {
        right: -10px;
    }

    .cg-floating-card--actual {
        left: -10px;
    }
}


@media (max-width: 920px) {

    .cg-hero {
        padding: 68px 0 80px;
    }

    .cg-hero__grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .cg-hero__content {
        max-width: 760px;
    }

    .cg-hero__title {
        max-width: 720px;
    }

    .cg-hero__visual {
        width: min(100%, 620px);
        max-width: 620px;
        margin-inline: auto;
    }
}


@media (max-width: 620px) {

    .cg-hero {
        padding: 48px 0 60px;
    }

    .cg-hero__eyebrow {
        margin-bottom: 18px;
        font-size: 11px;
    }

    .cg-hero__title {
        font-size: clamp(40px, 12vw, 54px);
        line-height: 1.04;
    }

    .cg-hero__description {
        margin-top: 21px;
        font-size: 16px;
        line-height: 1.65;
    }

    .cg-hero__actions {
        align-items: stretch;
        margin-top: 26px;
    }

    .cg-button--primary,
    .cg-button--secondary {
        width: 100%;
    }

    .cg-hero__proof {
        gap: 12px 18px;
        margin-top: 23px;
    }

    .cg-dashboard__summary {
        grid-template-columns: 1fr 1fr;
    }

    .cg-metric--large {
        grid-column: 1 / -1;
    }

    .cg-floating-card {
        display: none;
    }

    .cg-dashboard__topbar,
    .cg-dashboard__breakdown {
        padding-left: 16px;
        padding-right: 16px;
    }

    .cg-dashboard__summary {
        padding-left: 14px;
        padding-right: 14px;
    }

    .cg-dashboard__alert {
        margin-left: 14px;
        margin-right: 14px;
    }
}

/* Hero visual fine-tuning */
.cg-floating-card--hours {
    top: -20px;
    right: -24px;
}


/* =========================================================
   Homepage — Problems / Margin Leakage
   ========================================================= */

.cg-problems {
    position: relative;
    padding: 110px 0;
    background: #ffffff;
}

.cg-problems::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 12% 8%,
            rgba(47, 158, 68, 0.045),
            transparent 24%
        );
}


/* ---------- Section Heading ---------- */

.cg-section-heading {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.cg-section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.cg-section-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--cg-green-600);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.12em;
}

.cg-section-title {
    margin: 0;
    color: var(--cg-navy-950);
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.cg-section-title span {
    color: var(--cg-green-600);
}

.cg-section-description {
    max-width: 680px;
    margin: 20px auto 0;
    color: var(--cg-text-muted);
    font-size: 17px;
    line-height: 1.75;
}


/* ---------- Problem Cards ---------- */

.cg-problems__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 58px;
}

.cg-problem-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: 30px;
    border: 1px solid var(--cg-border);
    border-radius: 18px;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfcfe 100%
        );
    box-shadow: 0 10px 34px rgba(8, 26, 47, 0.055);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.cg-problem-card:hover {
    transform: translateY(-5px);
    border-color: #d6e8da;
    box-shadow: 0 20px 48px rgba(8, 26, 47, 0.09);
}

.cg-problem-card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -65px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(47, 158, 68, 0.045);
}

.cg-problem-card__number {
    position: absolute;
    top: 24px;
    right: 26px;
    color: #dbe2ea;
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
}

.cg-problem-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 24px;
    border-radius: 13px;
    background: var(--cg-green-100);
    color: var(--cg-green-600);
    font-size: 23px;
    font-weight: 800;
}

.cg-problem-card h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    max-width: 270px;
    color: var(--cg-navy-950);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.cg-problem-card p {
    position: relative;
    z-index: 2;
    margin: 16px 0 0;
    color: var(--cg-text-muted);
    font-size: 15px;
    line-height: 1.75;
}

.cg-problem-card__signal {
    position: relative;
    z-index: 2;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--cg-border);
    color: var(--cg-navy-800);
    font-size: 13px;
    font-weight: 700;
}


/* ---------- Margin Example ---------- */

.cg-margin-example {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.8fr 1.6fr;
    align-items: center;
    gap: 44px;
    margin-top: 28px;
    padding: 30px 32px;
    border: 1px solid #dfe7e2;
    border-radius: 18px;
    background:
        linear-gradient(
            120deg,
            #f5fbf6 0%,
            #ffffff 52%,
            #f8fafc 100%
        );
    box-shadow: 0 12px 34px rgba(8, 26, 47, 0.05);
}

.cg-margin-example__intro span {
    display: block;
    margin-bottom: 5px;
    color: var(--cg-green-600);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cg-margin-example__intro strong {
    display: block;
    max-width: 320px;
    color: var(--cg-navy-950);
    font-size: 21px;
    line-height: 1.35;
}

.cg-margin-example__math {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.cg-margin-example__math > div {
    min-width: 112px;
    padding: 12px 13px;
    border: 1px solid #e5eaf0;
    border-radius: 11px;
    background: #ffffff;
}

.cg-margin-example__math span {
    display: block;
    color: #8190a3;
    font-size: 10px;
    font-weight: 700;
}

.cg-margin-example__math strong {
    display: block;
    margin-top: 3px;
    color: var(--cg-navy-950);
    font-size: 15px;
    font-weight: 800;
}

.cg-margin-example__operator {
    color: #9aa6b5 !important;
    font-size: 18px !important;
    font-weight: 800 !important;
}

.cg-margin-example__math .cg-margin-example__result {
    border-color: #d1ead7;
    background: var(--cg-green-100);
}

.cg-margin-example__result span {
    color: #5e7663;
}

.cg-margin-example__result strong {
    color: var(--cg-green-600);
    font-size: 18px;
}


/* =========================================================
   Problems Responsive
   ========================================================= */

@media (max-width: 1000px) {

    .cg-problems {
        padding: 88px 0;
    }

    .cg-problems__grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin-inline: auto;
    }

    .cg-problem-card {
        min-height: 0;
    }

    .cg-margin-example {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin-inline: auto;
        margin-top: 24px;
    }

    .cg-margin-example__math {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}


@media (max-width: 620px) {

    .cg-problems {
        padding: 68px 0;
    }

    .cg-section-title {
        font-size: 36px;
    }

    .cg-section-description {
        font-size: 16px;
    }

    .cg-problems__grid {
        margin-top: 42px;
    }

    .cg-problem-card {
        padding: 25px;
    }

    .cg-problem-card__number {
        top: 22px;
        right: 22px;
        font-size: 36px;
    }

    .cg-margin-example {
        padding: 24px;
    }

    .cg-margin-example__math {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .cg-margin-example__operator {
        display: none !important;
    }

    .cg-margin-example__math > div {
        min-width: 0;
    }

    .cg-margin-example__result {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   Homepage — How It Works
   ========================================================= */

.cg-how {
    position: relative;
    overflow: hidden;
    padding: 112px 0;
    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 100%
        );
    border-top: 1px solid #edf1f4;
}

.cg-how::before {
    content: "";
    position: absolute;
    top: -220px;
    left: 50%;
    width: 680px;
    height: 680px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(47, 158, 68, 0.035);
    pointer-events: none;
}


/* ---------- Workflow ---------- */

.cg-how__workflow {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        42px
        minmax(0, 1fr)
        42px
        minmax(0, 1fr)
        42px
        minmax(0, 1fr);
    align-items: stretch;
    gap: 10px;
    margin-top: 62px;
}


/* ---------- Step Card ---------- */

.cg-how-step {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 390px;
    padding: 27px 25px 25px;
    border: 1px solid #e3e9ef;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(8, 26, 47, 0.05);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.cg-how-step:hover {
    transform: translateY(-5px);
    border-color: #d4e7d8;
    box-shadow: 0 20px 44px rgba(8, 26, 47, 0.08);
}

.cg-how-step--final {
    border-color: #d2ead8;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f4fbf6 100%
        );
}


/* ---------- Step Header ---------- */

.cg-how-step__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 28px;
}

.cg-how-step__number {
    color: var(--cg-navy-950);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.cg-how-step__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    background: #f0f3f6;
    color: #738094;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.09em;
}

.cg-how-step--final .cg-how-step__tag {
    background: var(--cg-green-100);
    color: #247d36;
}


/* ---------- Step Content ---------- */

.cg-how-step h3 {
    margin: 0;
    color: var(--cg-navy-950);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.025em;
}

.cg-how-step p {
    margin: 16px 0 0;
    color: var(--cg-text-muted);
    font-size: 14px;
    line-height: 1.75;
}

.cg-how-step ul {
    margin: auto 0 0;
    padding: 26px 0 0;
    list-style: none;
    border-top: 1px solid var(--cg-border);
}

.cg-how-step li {
    position: relative;
    margin-top: 10px;
    padding-left: 20px;
    color: #516074;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.cg-how-step li:first-child {
    margin-top: 0;
}

.cg-how-step li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--cg-green-600);
    font-size: 11px;
    font-weight: 800;
}


/* ---------- Connectors ---------- */

.cg-how__connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b1bbc7;
    font-size: 24px;
    font-weight: 800;
}


/* ---------- Outcome ---------- */

.cg-how__outcome {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 870px;
    margin: 34px auto 0;
    padding: 20px 24px;
    border: 1px solid #d7eadb;
    border-radius: 16px;
    background:
        linear-gradient(
            120deg,
            #f0faf2,
            #ffffff
        );
    box-shadow: 0 8px 26px rgba(8, 26, 47, 0.045);
}

.cg-how__outcome-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 13px;
    background: var(--cg-green-600);
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
}

.cg-how__outcome span {
    display: block;
    margin-bottom: 3px;
    color: var(--cg-green-600);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cg-how__outcome strong {
    display: block;
    color: var(--cg-navy-950);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.45;
}


/* =========================================================
   How It Works — Responsive
   ========================================================= */

@media (max-width: 1100px) {

    .cg-how__workflow {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        max-width: 820px;
        margin-inline: auto;
        margin-top: 54px;
    }

    .cg-how__connector {
        display: none;
    }

    .cg-how-step {
        min-height: 360px;
    }
}


@media (max-width: 700px) {

    .cg-how {
        padding: 72px 0;
    }

    .cg-how__workflow {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 42px;
    }

    .cg-how-step {
        min-height: 0;
        padding: 24px;
    }

    .cg-how-step ul {
        margin-top: 24px;
    }

    .cg-how__outcome {
        align-items: flex-start;
        margin-top: 24px;
        padding: 18px;
    }

    .cg-how__outcome strong {
        font-size: 15px;
    }
}


/* =========================================================
   Homepage — Product System Overview
   ========================================================= */

.cg-system {
    position: relative;
    overflow: hidden;
    padding: 118px 0;
    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(47, 158, 68, 0.055),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafc 100%
        );
    border-top: 1px solid #edf1f4;
}

.cg-system::before {
    content: "";
    position: absolute;
    left: -260px;
    bottom: -300px;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(11, 35, 64, 0.045);
    border-radius: 50%;
    pointer-events: none;
}

.cg-system__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1.18fr);
    align-items: center;
    gap: 78px;
}


/* ---------- Content ---------- */

.cg-system__content .cg-section-title {
    max-width: 570px;
}

.cg-system__content .cg-section-title span {
    display: block;
    margin-top: 4px;
}

.cg-system__description {
    max-width: 570px;
    margin-left: 0;
    margin-right: 0;
}


/* ---------- Stages ---------- */

.cg-system__stages {
    display: grid;
    gap: 13px;
    margin-top: 38px;
}

.cg-system-stage {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 17px;
    padding: 18px 20px;
    border: 1px solid #e3e9ef;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    transition:
        border-color 0.22s ease,
        background-color 0.22s ease,
        transform 0.22s ease;
}

.cg-system-stage:hover {
    transform: translateX(4px);
    border-color: #d3e7d7;
    background: #ffffff;
}

.cg-system-stage__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--cg-green-100);
    color: var(--cg-green-600);
    font-size: 12px;
    font-weight: 800;
}

.cg-system-stage strong {
    display: block;
    color: var(--cg-navy-950);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.cg-system-stage p {
    margin: 5px 0 0;
    color: var(--cg-text-muted);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   Product Panel
   ========================================================= */

.cg-system__panel {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border: 1px solid #dce4ec;
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.99),
            rgba(248,250,252,0.98)
        );
    box-shadow:
        0 30px 70px rgba(8, 26, 47, 0.12),
        0 6px 18px rgba(8, 26, 47, 0.045);
}

.cg-system__panel::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(47, 158, 68, 0.055);
    pointer-events: none;
}


/* ---------- Panel Header ---------- */

.cg-system__panel-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 19px;
    padding: 4px 3px 17px;
    border-bottom: 1px solid #e8edf2;
}

.cg-system__panel-top > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cg-system__panel-top span {
    color: #8793a4;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.11em;
}

.cg-system__panel-top strong {
    color: var(--cg-navy-950);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.25;
}

.cg-system__panel-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 31px;
    padding: 0 11px;
    border: 1px solid #d5ead9;
    border-radius: 999px;
    background: var(--cg-green-100);
    color: #247d36;
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}


/* ---------- Modules ---------- */

.cg-module-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 11px;
}

.cg-module-card {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    min-height: 78px;
    padding: 13px;
    border: 1px solid #e5eaf0;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(8, 26, 47, 0.025);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.cg-module-card:hover {
    transform: translateY(-3px);
    border-color: #d5e6d9;
    box-shadow: 0 10px 22px rgba(8, 26, 47, 0.06);
}

.cg-module-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 9px;
    background: #f1f4f7;
    color: var(--cg-navy-800);
    font-size: 9px;
    font-weight: 800;
}

.cg-module-card > div {
    min-width: 0;
}

.cg-module-card strong {
    display: block;
    overflow: hidden;
    color: var(--cg-navy-950);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    text-overflow: ellipsis;
}

.cg-module-card small {
    display: block;
    margin-top: 3px;
    overflow: hidden;
    color: #8894a5;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.3;
    text-overflow: ellipsis;
}

.cg-module-card--highlight {
    border-color: #cfe8d5;
    background:
        linear-gradient(
            135deg,
            #f0faf2,
            #ffffff
        );
}

.cg-module-card--highlight .cg-module-card__icon {
    background: var(--cg-green-600);
    color: #ffffff;
}

.cg-module-card--profit {
    border-color: #cfe8d5;
    background:
        linear-gradient(
            135deg,
            #ebf8ee,
            #f9fdf9
        );
}

.cg-module-card--profit .cg-module-card__icon {
    background: var(--cg-green-600);
    color: #ffffff;
}

.cg-module-card--profit strong {
    color: #237a34;
}


/* ---------- Flow ---------- */

.cg-system__flow {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 17px;
    padding: 13px 14px;
    border: 1px solid #e3e9ef;
    border-radius: 12px;
    background: #f8fafc;
}

.cg-system__flow span,
.cg-system__flow strong {
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
}

.cg-system__flow span {
    color: #6f7d90;
}

.cg-system__flow strong {
    color: var(--cg-green-600);
}

.cg-system__flow i {
    color: #a8b2bf;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}


/* =========================================================
   Product System Responsive
   ========================================================= */

@media (max-width: 1080px) {

    .cg-system {
        padding: 92px 0;
    }

    .cg-system__grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .cg-system__content {
        max-width: 720px;
    }

    .cg-system__panel {
        max-width: 780px;
    }
}


@media (max-width: 700px) {

    .cg-system {
        padding: 72px 0;
    }

    .cg-system__stages {
        margin-top: 30px;
    }

    .cg-system-stage {
        grid-template-columns: 40px 1fr;
        padding: 16px;
    }

    .cg-system-stage__number {
        width: 38px;
        height: 38px;
    }

    .cg-system__panel {
        padding: 16px;
        border-radius: 17px;
    }

    .cg-system__panel-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .cg-module-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cg-system__flow {
        flex-wrap: wrap;
    }
}


@media (max-width: 440px) {

    .cg-module-grid {
        grid-template-columns: 1fr;
    }

    .cg-module-card {
        min-height: 70px;
    }
}


/* =========================================================
   Homepage — Estimate vs Actual / Margin Drift
   ========================================================= */

.cg-drift {
    position: relative;
    overflow: hidden;
    padding: 118px 0;
    background:
        linear-gradient(
            180deg,
            #f7faf8 0%,
            #ffffff 100%
        );
    border-top: 1px solid #edf1f4;
}

.cg-drift::before {
    content: "";
    position: absolute;
    top: -260px;
    right: -220px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: rgba(47, 158, 68, 0.045);
    pointer-events: none;
}

.cg-drift__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
    align-items: center;
    gap: 82px;
}


/* ---------- Content ---------- */

.cg-drift__content .cg-section-title {
    max-width: 600px;
}

.cg-drift__content .cg-section-title span {
    display: block;
    margin-top: 4px;
}

.cg-drift__description {
    max-width: 590px;
    margin-left: 0;
    margin-right: 0;
}


/* ---------- Key Points ---------- */

.cg-drift__points {
    display: grid;
    gap: 16px;
    margin-top: 36px;
}

.cg-drift-point {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 15px;
    align-items: flex-start;
}

.cg-drift-point__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--cg-green-100);
    color: var(--cg-green-600);
    font-size: 14px;
    font-weight: 800;
}

.cg-drift-point strong {
    display: block;
    color: var(--cg-navy-950);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
}

.cg-drift-point p {
    max-width: 500px;
    margin: 5px 0 0;
    color: var(--cg-text-muted);
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   Drift Visual
   ========================================================= */

.cg-drift__visual {
    position: relative;
    width: 100%;
}

.cg-drift-card {
    overflow: hidden;
    width: 100%;
    border: 1px solid #dce4ec;
    border-radius: 22px;
    background: #ffffff;
    box-shadow:
        0 30px 70px rgba(8, 26, 47, 0.12),
        0 6px 18px rgba(8, 26, 47, 0.045);
}


/* ---------- Card Header ---------- */

.cg-drift-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 21px 23px;
    border-bottom: 1px solid #e8edf2;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fafbfd 100%
        );
}

.cg-drift-card__header > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cg-drift-card__header div > span {
    color: #8a96a6;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.11em;
}

.cg-drift-card__header div > strong {
    color: var(--cg-navy-950);
    font-size: 17px;
    font-weight: 800;
}

.cg-drift-card__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    background: #fff3e6;
    color: #b65b0a;
    font-size: 10px;
    font-weight: 800;
}


/* ---------- Compare Columns ---------- */

.cg-drift-compare {
    display: grid;
    grid-template-columns: 1fr 44px 1fr;
    align-items: center;
    gap: 10px;
    padding: 22px;
}

.cg-drift-column {
    padding: 18px;
    border: 1px solid #e6ebf0;
    border-radius: 15px;
    background: #fbfcfd;
}

.cg-drift-column--estimated {
    background:
        linear-gradient(
            180deg,
            #f9fbfd,
            #ffffff
        );
}

.cg-drift-column--actual {
    border-color: #efd8c1;
    background:
        linear-gradient(
            180deg,
            #fffaf5,
            #ffffff
        );
}

.cg-drift-column__label {
    display: inline-flex;
    margin-bottom: 15px;
    color: #8290a2;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.11em;
}

.cg-drift-column--actual .cg-drift-column__label {
    color: #b65b0a;
}

.cg-drift-metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 11px 0;
    border-top: 1px solid #edf1f4;
}

.cg-drift-metric:first-of-type {
    border-top: 0;
}

.cg-drift-metric span {
    color: #748195;
    font-size: 11px;
    font-weight: 600;
}

.cg-drift-metric strong {
    color: var(--cg-navy-950);
    font-size: 16px;
    font-weight: 800;
}

.cg-drift-column--estimated .cg-drift-metric:last-child strong {
    color: var(--cg-green-600);
}

.cg-drift-column--actual .cg-drift-metric:last-child strong {
    color: #c35e07;
}

.cg-drift-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f0f3f6;
    color: #8591a1;
    font-size: 20px;
    font-weight: 800;
}


/* ---------- Impact ---------- */

.cg-drift-impact {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 12px;
    padding: 0 22px 20px;
}

.cg-drift-impact > div {
    padding: 14px 15px;
    border: 1px solid #e5eaf0;
    border-radius: 12px;
    background: #f8fafc;
}

.cg-drift-impact > div:first-child {
    border-color: #efd8c1;
    background: #fff8f1;
}

.cg-drift-impact span {
    display: block;
    margin-bottom: 4px;
    color: #8491a2;
    font-size: 9px;
    font-weight: 700;
}

.cg-drift-impact strong {
    display: block;
    color: var(--cg-navy-950);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
}

.cg-drift-impact > div:first-child strong {
    color: #c35e07;
    font-size: 18px;
}


/* ---------- Warning Message ---------- */

.cg-drift-message {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 0 22px 22px;
    padding: 14px 16px;
    border: 1px solid #efd8c1;
    border-radius: 13px;
    background:
        linear-gradient(
            120deg,
            #fff8f1,
            #ffffff
        );
}

.cg-drift-message__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 10px;
    background: #f59e0b;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
}

.cg-drift-message p {
    margin: 0;
    color: #6b7482;
    font-size: 12px;
    line-height: 1.5;
}

.cg-drift-message strong {
    color: var(--cg-navy-950);
}


/* ---------- Note ---------- */

.cg-drift__note {
    margin: 11px 0 0;
    color: #9aa5b4;
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
}


/* =========================================================
   Drift Responsive
   ========================================================= */

@media (max-width: 1080px) {

    .cg-drift {
        padding: 92px 0;
    }

    .cg-drift__grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .cg-drift__content {
        max-width: 720px;
    }

    .cg-drift__visual {
        max-width: 760px;
    }
}


@media (max-width: 620px) {

    .cg-drift {
        padding: 72px 0;
    }

    .cg-drift-compare {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .cg-drift-arrow {
        width: 38px;
        height: 38px;
        margin-inline: auto;
        transform: rotate(90deg);
    }

    .cg-drift-impact {
        grid-template-columns: 1fr;
        padding: 0 16px 16px;
    }

    .cg-drift-message {
        align-items: flex-start;
        margin: 0 16px 16px;
    }

    .cg-drift-card__header {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px;
    }

    .cg-drift-column {
        padding: 16px;
    }
}


/* =========================================================
   Homepage — Pricing / Offer
   ========================================================= */

.cg-pricing {
    position: relative;
    overflow: hidden;
    padding: 118px 0 110px;
    background:
        radial-gradient(
            circle at 82% 25%,
            rgba(47, 158, 68, 0.07),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7faf8 100%
        );
    border-top: 1px solid #edf1f4;
}

.cg-pricing::before {
    content: "";
    position: absolute;
    left: -220px;
    bottom: -300px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    border: 1px solid rgba(11, 35, 64, 0.045);
    pointer-events: none;
}


/* ---------- Main Layout ---------- */

.cg-pricing__wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.75fr);
    align-items: center;
    gap: 72px;
    max-width: 1080px;
    margin: 62px auto 0;
}


/* =========================================================
   Value Side
   ========================================================= */

.cg-pricing__value {
    min-width: 0;
}

.cg-pricing__value-label {
    display: inline-flex;
    margin-bottom: 13px;
    color: var(--cg-green-600);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.12em;
}

.cg-pricing__value h3 {
    max-width: 560px;
    margin: 0;
    color: var(--cg-navy-950);
    font-size: 31px;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.cg-pricing__value > p {
    max-width: 560px;
    margin: 14px 0 0;
    color: var(--cg-text-muted);
    font-size: 15px;
    line-height: 1.7;
}


/* ---------- Features ---------- */

.cg-pricing__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin-top: 31px;
}

.cg-pricing-feature {
    display: grid;
    grid-template-columns: 31px 1fr;
    gap: 11px;
    align-items: flex-start;
    padding: 15px;
    border: 1px solid #e4e9ef;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.86);
}

.cg-pricing-feature > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    border-radius: 9px;
    background: var(--cg-green-100);
    color: var(--cg-green-600);
    font-size: 12px;
    font-weight: 800;
}

.cg-pricing-feature strong {
    display: block;
    color: var(--cg-navy-950);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.cg-pricing-feature small {
    display: block;
    margin-top: 4px;
    color: #7c8999;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.5;
}


/* =========================================================
   Price Card
   ========================================================= */

.cg-price-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid #cfe5d4;
    border-radius: 22px;
    background:
        linear-gradient(
            160deg,
            #ffffff 0%,
            #f4fbf6 100%
        );
    box-shadow:
        0 30px 70px rgba(8, 26, 47, 0.13),
        0 8px 20px rgba(8, 26, 47, 0.05);
}

.cg-price-card::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(47, 158, 68, 0.07);
    pointer-events: none;
}


/* ---------- Badge ---------- */

.cg-price-card__badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--cg-green-100);
    color: #247d36;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
}


/* ---------- Heading ---------- */

.cg-price-card__heading {
    position: relative;
    z-index: 2;
    margin-top: 19px;
}

.cg-price-card__heading span {
    display: block;
    color: var(--cg-green-600);
    font-size: 13px;
    font-weight: 800;
}

.cg-price-card__heading strong {
    display: block;
    margin-top: 4px;
    color: var(--cg-navy-950);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.4;
}


/* ---------- Price ---------- */

.cg-price-card__price {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-top: 25px;
}

.cg-price-card__price > strong {
    color: var(--cg-navy-950);
    font-size: 58px;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.cg-price-card__price > div {
    padding-bottom: 3px;
}

.cg-price-card__price span {
    display: block;
    color: var(--cg-navy-800);
    font-size: 11px;
    font-weight: 800;
}

.cg-price-card__price small {
    display: block;
    margin-top: 2px;
    color: #8b96a5;
    font-size: 10px;
    font-weight: 600;
}


/* ---------- Divider ---------- */

.cg-price-card__divider {
    position: relative;
    z-index: 2;
    height: 1px;
    margin: 25px 0 20px;
    background: #dfe7e2;
}


/* ---------- List ---------- */

.cg-price-card__list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cg-price-card__list li {
    position: relative;
    padding-left: 23px;
    color: #536173;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.5;
}

.cg-price-card__list li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--cg-green-600);
    font-weight: 800;
}


/* ---------- Purchase Button ---------- */

.cg-button--purchase {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    min-height: 54px;
    margin-top: 26px;
    padding: 0 20px;
    background: var(--cg-green-600);
    color: #ffffff;
    font-size: 15px;
    box-shadow: 0 12px 28px rgba(47, 158, 68, 0.24);
}

.cg-button--purchase span {
    margin-left: 9px;
    font-size: 17px;
    transition: transform 0.2s ease;
}

.cg-button--purchase:hover {
    background: #298c3c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(47, 158, 68, 0.29);
}

.cg-button--purchase:hover span {
    transform: translateX(3px);
}


/* ---------- Note ---------- */

.cg-price-card__note {
    position: relative;
    z-index: 2;
    max-width: 340px;
    margin: 15px auto 0;
    color: #7e8a99;
    font-size: 10px;
    line-height: 1.55;
    text-align: center;
}


/* =========================================================
   Pricing Bottom Note
   ========================================================= */

.cg-pricing__bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 820px;
    margin: 33px auto 0;
    padding: 15px 19px;
    border: 1px solid #dfe8e2;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.82);
}

.cg-pricing__bottom-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    flex: 0 0 29px;
    border-radius: 9px;
    background: var(--cg-green-100);
    color: var(--cg-green-600);
    font-size: 12px;
    font-weight: 800;
}

.cg-pricing__bottom p {
    margin: 0;
    color: #718093;
    font-size: 11px;
    line-height: 1.5;
}

.cg-pricing__bottom strong {
    color: var(--cg-navy-900);
}


/* =========================================================
   Pricing Responsive
   ========================================================= */

@media (max-width: 980px) {

    .cg-pricing {
        padding: 92px 0;
    }

    .cg-pricing__wrap {
        grid-template-columns: 1fr;
        gap: 46px;
        max-width: 760px;
    }

    .cg-price-card {
        max-width: 500px;
        width: 100%;
        margin-inline: auto;
    }
}


@media (max-width: 620px) {

    .cg-pricing {
        padding: 72px 0;
    }

    .cg-pricing__wrap {
        margin-top: 44px;
    }

    .cg-pricing__features {
        grid-template-columns: 1fr;
    }

    .cg-pricing__value h3 {
        font-size: 26px;
    }

    .cg-price-card {
        padding: 24px;
        border-radius: 18px;
    }

    .cg-price-card__price > strong {
        font-size: 50px;
    }

    .cg-pricing__bottom {
        align-items: flex-start;
        margin-top: 25px;
    }
}


/* =========================================================
   Homepage — FAQ
   ========================================================= */

.cg-faq {
    position: relative;
    overflow: hidden;
    padding: 112px 0;
    background: #ffffff;
    border-top: 1px solid #edf1f4;
}

.cg-faq::before {
    content: "";
    position: absolute;
    top: -240px;
    left: -220px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(47, 158, 68, 0.035);
    pointer-events: none;
}

.cg-faq__list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 12px;
    max-width: 860px;
    margin: 55px auto 0;
}


/* ---------- FAQ Item ---------- */

.cg-faq-item {
    overflow: hidden;
    border: 1px solid #e3e9ef;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 5px 18px rgba(8, 26, 47, 0.035);
    transition:
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.cg-faq-item:hover {
    border-color: #d4e6d8;
    box-shadow: 0 10px 26px rgba(8, 26, 47, 0.055);
}

.cg-faq-item[open] {
    border-color: #cee6d4;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fcf9 100%
        );
}


/* ---------- Question ---------- */

.cg-faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 72px;
    padding: 20px 64px 20px 23px;
    color: var(--cg-navy-950);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

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

.cg-faq-item summary::before,
.cg-faq-item summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    width: 14px;
    height: 2px;
    border-radius: 99px;
    background: var(--cg-green-600);
    transform: translateY(-50%);
    transition: transform 0.22s ease;
}

.cg-faq-item summary::after {
    transform:
        translateY(-50%)
        rotate(90deg);
}

.cg-faq-item[open] summary::after {
    transform:
        translateY(-50%)
        rotate(0deg);
}

.cg-faq-item summary:focus-visible {
    outline: 2px solid rgba(47, 158, 68, 0.35);
    outline-offset: -2px;
}


/* ---------- Answer ---------- */

.cg-faq-item__content {
    padding: 0 64px 21px 23px;
}

.cg-faq-item__content p {
    max-width: 720px;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid #e8edf2;
    color: var(--cg-text-muted);
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   FAQ Responsive
   ========================================================= */

@media (max-width: 700px) {

    .cg-faq {
        padding: 72px 0;
    }

    .cg-faq__list {
        margin-top: 40px;
    }

    .cg-faq-item summary {
        min-height: 66px;
        padding:
            18px
            54px
            18px
            18px;
        font-size: 14px;
    }

    .cg-faq-item summary::before,
    .cg-faq-item summary::after {
        right: 19px;
    }

    .cg-faq-item__content {
        padding:
            0
            18px
            19px;
    }

    .cg-faq-item__content p {
        font-size: 13px;
    }
}


/* =========================================================
   Homepage — Final CTA
   ========================================================= */

.cg-final-cta {
    position: relative;
    overflow: hidden;
    padding: 86px 0;
    background: #ffffff;
    border-top: 1px solid #edf1f4;
}

.cg-final-cta__box {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 50px;
    padding: 52px 56px;
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 88% 20%,
            rgba(56, 169, 79, 0.18),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            var(--cg-navy-950) 0%,
            var(--cg-navy-900) 100%
        );
    box-shadow:
        0 28px 65px rgba(8, 26, 47, 0.18);
}

.cg-final-cta__box::before {
    content: "";
    position: absolute;
    top: -145px;
    right: -100px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    pointer-events: none;
}

.cg-final-cta__box::after {
    content: "";
    position: absolute;
    right: 90px;
    bottom: -190px;
    width: 410px;
    height: 410px;
    border: 1px solid rgba(56, 169, 79, 0.08);
    border-radius: 50%;
    pointer-events: none;
}


/* ---------- Content ---------- */

.cg-final-cta__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.cg-final-cta__eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    color: #76d389;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.13em;
}

.cg-final-cta h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(35px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.cg-final-cta h2 span {
    color: #65c979;
}

.cg-final-cta p {
    max-width: 620px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.7;
}


/* ---------- Actions ---------- */

.cg-final-cta__actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
}

.cg-button--final {
    min-width: 220px;
    min-height: 54px;
    padding: 0 24px;
    background: var(--cg-green-600);
    color: #ffffff;
    font-size: 15px;
    box-shadow: 0 13px 28px rgba(0, 0, 0, 0.16);
}

.cg-button--final > span {
    margin-left: 9px;
    font-size: 17px;
    transition: transform 0.2s ease;
}

.cg-button--final:hover {
    background: #36ad4e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 17px 34px rgba(0, 0, 0, 0.20);
}

.cg-button--final:hover > span {
    transform: translateX(3px);
}

.cg-final-cta__actions small {
    display: block;
    margin-top: 11px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    font-weight: 600;
}


/* =========================================================
   Final CTA Responsive
   ========================================================= */

@media (max-width: 820px) {

    .cg-final-cta {
        padding: 68px 0;
    }

    .cg-final-cta__box {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 42px;
    }

    .cg-final-cta__actions {
        align-items: flex-start;
    }
}


@media (max-width: 520px) {

    .cg-final-cta__box {
        padding: 32px 24px;
        border-radius: 19px;
    }

    .cg-final-cta h2 {
        font-size: 34px;
    }

    .cg-button--final {
        width: 100%;
        min-width: 0;
    }

    .cg-final-cta__actions {
        width: 100%;
        align-items: stretch;
        text-align: center;
    }
}


/* =========================================================
   Site Footer
   ========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 76px 0 28px;
    background: var(--cg-navy-950);
    color: #ffffff;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: -240px;
    right: -180px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: 50%;
    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;
    left: -190px;
    bottom: -330px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(47, 158, 68, 0.045);
    pointer-events: none;
}


/* ---------- Main Layout ---------- */

.site-footer__main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(280px, 1.35fr)
        minmax(130px, 0.55fr)
        minmax(130px, 0.55fr)
        minmax(250px, 0.9fr);
    gap: 56px;
    padding-bottom: 58px;
}


/* ---------- Brand ---------- */

.site-footer__brand {
    max-width: 420px;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.8px;
}

.site-footer__logo span {
    color: #59c970;
}

.site-footer__description {
    max-width: 400px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.75;
}

.site-footer__positioning {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    padding: 7px 10px;
    border: 1px solid rgba(89, 201, 112, 0.18);
    border-radius: 999px;
    background: rgba(89, 201, 112, 0.08);
    color: #73d486;
    font-size: 10px;
    font-weight: 700;
}


/* ---------- Footer Columns ---------- */

.site-footer__column h3 {
    margin: 2px 0 18px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.04em;
}

.site-footer__column ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__column a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 600;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.site-footer__column a:hover {
    color: #73d486;
}


/* ---------- Footer CTA ---------- */

.site-footer__cta {
    align-self: start;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
}

.site-footer__cta > span {
    display: block;
    color: #73d486;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.11em;
}

.site-footer__cta > strong {
    display: block;
    margin-top: 8px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.4;
}

.cg-button--footer {
    width: 100%;
    min-height: 46px;
    margin-top: 19px;
    padding: 0 17px;
    background: var(--cg-green-600);
    color: #ffffff;
    font-size: 12px;
}

.cg-button--footer:hover {
    background: #36ad4e;
    color: #ffffff;
    transform: translateY(-2px);
}

.cg-button--footer > span {
    margin-left: 7px;
    font-size: 15px;
}


/* ---------- Bottom Bar ---------- */

.site-footer__bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.46);
    font-size: 10px;
    line-height: 1.6;
}

.site-footer__disclaimer {
    max-width: 500px;
    text-align: right;
}


/* =========================================================
   Footer Responsive
   ========================================================= */

@media (max-width: 1000px) {

    .site-footer__main {
        grid-template-columns: 1.4fr 0.7fr 0.7fr;
        gap: 40px;
    }

    .site-footer__cta {
        grid-column: 1 / -1;
        max-width: 430px;
    }
}


@media (max-width: 700px) {

    .site-footer {
        padding: 58px 0 24px;
    }

    .site-footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 38px 28px;
        padding-bottom: 42px;
    }

    .site-footer__brand,
    .site-footer__cta {
        grid-column: 1 / -1;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .site-footer__disclaimer {
        text-align: left;
    }
}


@media (max-width: 440px) {

    .site-footer__main {
        grid-template-columns: 1fr;
    }

    .site-footer__brand,
    .site-footer__cta {
        grid-column: auto;
    }

    .site-footer__logo {
        font-size: 23px;
    }
}

/* Header navigation state fix for same-page anchor links */
.primary-navigation__menu .current-menu-item > a {
    color: #344054;
}

.primary-navigation__menu .current-menu-item > a:hover {
    color: var(--cg-green-600);
}
CSScat >> /home/pharaoyq/contractgauge/wp-content/themes/contractgauge/assets/css/main.css <<'CSS'

/* Header navigation state fix for same-page anchor links */
.primary-navigation__menu .current-menu-item > a {
    color: #344054;
}

.primary-navigation__menu .current-menu-item > a:hover {
    color: var(--cg-green-600);
}

/* Desktop navigation positioning */
@media (min-width: 901px) {
    .primary-navigation {
        margin-left: auto;
        margin-right: 28px;
    }
}


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

@media (max-width: 900px) {

    .site-header {
        position: relative;
    }

    .primary-navigation {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        display: none;
        margin: 0;
        padding: 10px;
        border: 1px solid var(--cg-border);
        border-radius: 14px;
        background: #ffffff;
        box-shadow: 0 18px 45px rgba(8, 26, 47, 0.13);
    }

    .primary-navigation.is-open {
        display: block;
    }

    .primary-navigation__menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
    }

    .primary-navigation__menu li {
        width: 100%;
    }

    .primary-navigation__menu a {
        width: 100%;
        min-height: 46px;
        padding: 0 13px;
        border-radius: 9px;
        color: var(--cg-navy-900);
        font-size: 14px;
    }

    .primary-navigation__menu a:hover {
        background: var(--cg-green-100);
        color: var(--cg-green-600);
    }

    .mobile-menu-toggle {
        position: relative;
        display: block;
    }

    .mobile-menu-toggle span {
        transition:
            transform 0.22s ease,
            opacity 0.22s ease;
    }

    .mobile-menu-toggle.is-active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .mobile-menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.is-active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}


/* =========================================================
   Standard Internal Pages
   ========================================================= */

.cg-page {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    padding: 92px 0 110px;
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(47, 158, 68, 0.055),
            transparent 24%
        ),
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 420px
        );
}

.cg-page::before {
    content: "";
    position: absolute;
    top: -260px;
    right: -220px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(11, 35, 64, 0.045);
    border-radius: 50%;
    pointer-events: none;
}

.cg-page__article {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-inline: auto;
}


/* ---------- Page Header ---------- */

.cg-page__header {
    max-width: 760px;
    margin-bottom: 44px;
}

.cg-page__eyebrow {
    display: inline-flex;
    margin-bottom: 13px;
    color: var(--cg-green-600);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.13em;
}

.cg-page__title {
    margin: 0;
    color: var(--cg-navy-950);
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.04em;
}


/* ---------- Content Card ---------- */

.cg-page__content {
    padding: 42px 46px;
    border: 1px solid #e1e7ed;
    border-radius: 20px;
    background: #ffffff;
    box-shadow:
        0 18px 50px rgba(8, 26, 47, 0.07);
    color: #4f5f72;
    font-size: 15px;
    line-height: 1.8;
}

.cg-page__content > *:first-child {
    margin-top: 0;
}

.cg-page__content > *:last-child {
    margin-bottom: 0;
}

.cg-page__content h2,
.cg-page__content h3,
.cg-page__content h4 {
    color: var(--cg-navy-950);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cg-page__content h2 {
    margin: 42px 0 14px;
    font-size: 27px;
    line-height: 1.25;
}

.cg-page__content h3 {
    margin: 32px 0 12px;
    font-size: 20px;
    line-height: 1.35;
}

.cg-page__content h4 {
    margin: 26px 0 10px;
    font-size: 16px;
}

.cg-page__content p {
    margin: 0 0 19px;
}

.cg-page__content ul,
.cg-page__content ol {
    margin: 18px 0 24px;
    padding-left: 24px;
}

.cg-page__content li {
    margin: 8px 0;
}

.cg-page__content a {
    color: var(--cg-green-600);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.cg-page__content a:hover {
    color: #247d36;
}

.cg-page__content strong {
    color: var(--cg-navy-900);
}

.cg-page__content hr {
    height: 1px;
    margin: 36px 0;
    border: 0;
    background: #e6ebf0;
}

.cg-page__content blockquote {
    margin: 28px 0;
    padding: 18px 22px;
    border-left: 4px solid var(--cg-green-600);
    border-radius: 0 10px 10px 0;
    background: var(--cg-green-100);
    color: var(--cg-navy-800);
}


/* =========================================================
   Internal Pages Responsive
   ========================================================= */

@media (max-width: 700px) {

    .cg-page {
        padding: 62px 0 78px;
    }

    .cg-page__header {
        margin-bottom: 30px;
    }

    .cg-page__title {
        font-size: 39px;
    }

    .cg-page__content {
        padding: 28px 22px;
        border-radius: 16px;
        font-size: 14px;
    }

    .cg-page__content h2 {
        font-size: 23px;
    }

    .cg-page__content h3 {
        font-size: 18px;
    }
}

/* Footer legal links */
.site-footer__legal-separator {
    margin: 0 7px;
    color: rgba(255, 255, 255, 0.25);
}

.site-footer__legal-link {
    color: rgba(255, 255, 255, 0.58);
    transition: color 0.2s ease;
}

.site-footer__legal-link:hover {
    color: #73d486;
}
