:root {
    --cc-ink: #001F3F;
    --cc-ink-2: #082d55;
    --cc-ink-3: #0d3a6a;
    --cc-cream: #FDFDF7;
    --cc-cream-2: #F4F1E9;
    --cc-white: #ffffff;
    --cc-silver: #C0C0C0;
    --cc-silver-2: #e8e7e1;
    --cc-muted: #596777;
    --cc-line: rgba(0,31,63,.14);
    --cc-shadow: 0 26px 70px rgba(0,31,63,.14);
    --cc-wrap: 1180px;
}

body.ccadv-landing-active #site-header,
body.ccadv-landing-active #top-bar-wrap,
body.ccadv-landing-active .page-header,
body.ccadv-landing-active #footer-widgets,
body.ccadv-landing-active #footer-bottom,
body.ccadv-landing-active .site-breadcrumbs {
    display: none !important;
}

body.ccadv-landing-active #content-wrap,
body.ccadv-landing-active #primary,
body.ccadv-landing-active #content,
body.ccadv-landing-active .single-page-article,
body.ccadv-landing-active .entry {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.ccadv-landing-active {
    background: var(--cc-cream);
    color: var(--cc-ink);
    overflow-x: hidden;
}

.ccadv-site,
.ccadv-site * {
    box-sizing: border-box;
}

.ccadv-site {
    min-height: 100vh;
    overflow: hidden;
    background: var(--cc-cream);
    color: var(--cc-ink);
    font-family: 'Barlow', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

.ccadv-site a {
    color: inherit;
    text-decoration: none;
}

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

.ccadv-wrap {
    width: min(calc(100% - 64px), var(--cc-wrap));
    margin: 0 auto;
}

.ccadv-site h1,
.ccadv-site h2,
.ccadv-site h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    line-height: .98;
    letter-spacing: .005em;
    color: inherit;
}

.ccadv-site p {
    margin: 0;
}

.ccadv-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    min-height: 92px;
    padding: 12px max(28px, calc((100vw - var(--cc-wrap)) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: rgba(253,253,247,.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,31,63,.08);
    box-shadow: 0 12px 30px rgba(0,31,63,.06);
}

.ccadv-logo {
    display: block;
    width: 245px;
    max-width: 31vw;
    flex: 0 0 auto;
}

.ccadv-logo img {
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
}

.ccadv-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-left: auto;
}

.ccadv-nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 12px;
    color: var(--cc-ink);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.ccadv-nav a:hover {
    background: rgba(0,31,63,.07);
    transform: translateY(-1px);
}

.ccadv-nav .ccadv-nav__cta {
    margin-left: 12px;
    padding: 0 22px;
    min-height: 48px;
    background: var(--cc-ink);
    color: var(--cc-white);
    box-shadow: 0 14px 34px rgba(0,31,63,.24);
}

.ccadv-nav .ccadv-nav__cta::before,
.ccadv-btn--primary::before,
.ccadv-btn--light::before {
    content: "◉";
    display: inline-block;
    margin-right: 9px;
    font-size: 12px;
    color: var(--cc-silver);
}

.ccadv-menu-toggle {
    display: none;
    width: 48px;
    height: 44px;
    border: 1px solid rgba(0,31,63,.14);
    border-radius: 12px;
    background: var(--cc-ink);
    padding: 10px;
    cursor: pointer;
}

.ccadv-menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--cc-white);
    border-radius: 99px;
}

.ccadv-menu-toggle em {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

.ccadv-hero {
    position: relative;
    min-height: 690px;
    padding: 120px 0 0;
    background:
        linear-gradient(105deg, var(--cc-ink) 0%, var(--cc-ink) 50.2%, var(--cc-cream) 50.3%, #f7f6f0 100%);
    overflow: hidden;
}

.ccadv-hero::before {
    content: "";
    position: absolute;
    inset: 92px auto 0 44%;
    width: 280px;
    background: linear-gradient(100deg, transparent 8%, rgba(255,255,255,.16) 14%, rgba(192,192,192,.62) 18%, rgba(255,255,255,.78) 22%, rgba(192,192,192,.33) 31%, transparent 42%);
    transform: skewX(-8deg);
    pointer-events: none;
}

.ccadv-hero::after {
    content: "";
    position: absolute;
    right: -13%;
    bottom: -38%;
    width: 62%;
    height: 82%;
    border-radius: 50%;
    border-top: 1px solid rgba(0,31,63,.08);
    box-shadow:
        0 -12px 0 -11px rgba(0,31,63,.08),
        0 -24px 0 -23px rgba(0,31,63,.07),
        0 -36px 0 -35px rgba(0,31,63,.055),
        0 -48px 0 -47px rgba(0,31,63,.04);
    pointer-events: none;
}

.ccadv-hero__lines {
    position: absolute;
    inset: 92px 0 0;
    pointer-events: none;
    overflow: hidden;
}

.ccadv-hero__lines::before {
    content: "⚖";
    position: absolute;
    left: 4%;
    bottom: 6%;
    font-family: Georgia, serif;
    font-size: 270px;
    line-height: 1;
    color: rgba(255,255,255,.038);
}

.ccadv-hero__lines::after {
    content: "";
    position: absolute;
    left: -8%;
    bottom: -24%;
    width: 62%;
    height: 46%;
    border-radius: 50%;
    border-top: 1px solid rgba(192,192,192,.22);
    box-shadow:
        0 -12px 0 -11px rgba(192,192,192,.18),
        0 -24px 0 -23px rgba(192,192,192,.14),
        0 -36px 0 -35px rgba(192,192,192,.10);
}

.ccadv-hero__grid {
    position: relative;
    z-index: 1;
    min-height: 570px;
    display: grid;
    grid-template-columns: 1fr .96fr;
    gap: 58px;
    align-items: end;
}

.ccadv-hero__content {
    align-self: center;
    padding: 40px 0 58px;
    color: var(--cc-white);
}

.ccadv-hero h1 {
    max-width: 620px;
    font-size: clamp(44px, 4.5vw, 76px);
    color: var(--cc-white);
    text-shadow: 0 12px 26px rgba(0,0,0,.18);
}

.ccadv-title-line {
    width: min(420px, 100%);
    margin: 24px 0 26px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--cc-silver);
}

.ccadv-title-line::before,
.ccadv-title-line::after {
    content: "";
    height: 1px;
    flex: 1 1 auto;
    background: rgba(192,192,192,.72);
}

.ccadv-title-line span {
    font-family: Georgia, serif;
    font-size: 22px;
    line-height: 1;
}

.ccadv-title-line--dark {
    width: 300px;
    margin: 18px 0 26px;
    color: var(--cc-silver);
}

.ccadv-title-line--dark::before,
.ccadv-title-line--dark::after {
    background: rgba(0,31,63,.18);
}

.ccadv-lead {
    max-width: 650px;
    font-size: clamp(18px, 1.55vw, 23px);
    line-height: 1.45;
    color: rgba(255,255,255,.92);
}

.ccadv-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 34px;
}

.ccadv-btn {
    min-height: 56px;
    min-width: 216px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 28px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 16px;
    line-height: 1;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
    border: 1px solid transparent;
}

.ccadv-btn:hover {
    transform: translateY(-2px);
}

.ccadv-btn--primary {
    background: var(--cc-ink);
    border-color: rgba(255,255,255,.34);
    color: var(--cc-white);
    box-shadow: 0 18px 38px rgba(0,0,0,.22);
}

.ccadv-btn--ghost {
    background: transparent;
    border-color: rgba(255,255,255,.58);
    color: var(--cc-white);
}

.ccadv-btn--ghost:hover {
    background: rgba(255,255,255,.08);
}

.ccadv-btn--light {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.46);
    color: var(--cc-white);
}

.ccadv-btn--compact {
    min-width: 0;
    min-height: 50px;
    font-size: 14px;
    padding: 0 24px;
}

.ccadv-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: 610px;
    margin-top: 42px;
}

.ccadv-trust article {
    min-height: 112px;
    padding: 0 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-right: 1px solid rgba(255,255,255,.25);
}

.ccadv-trust article:first-child {
    padding-left: 0;
}

.ccadv-trust article:last-child {
    border-right: 0;
}

.ccadv-trust__icon {
    display: block;
    margin-bottom: 12px;
    color: var(--cc-silver);
    font-size: 34px;
    line-height: 1;
}

.ccadv-trust strong {
    color: var(--cc-white);
    font-size: 16px;
    line-height: 1.25;
}

.ccadv-hero__portrait {
    position: relative;
    z-index: 2;
    align-self: end;
    justify-self: center;
    width: min(520px, 100%);
    height: 570px;
    overflow: hidden;
}

.ccadv-hero__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    mix-blend-mode: multiply;
    filter: saturate(1.03) contrast(1.03);
}

.ccadv-heading {
    position: relative;
}

.ccadv-heading--center {
    text-align: center;
    margin-bottom: 42px;
}

.ccadv-heading h2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--cc-ink);
    font-size: clamp(34px, 3.2vw, 48px);
}

.ccadv-heading h2::before,
.ccadv-heading h2::after {
    content: "";
    width: 84px;
    height: 1px;
    background: rgba(0,31,63,.28);
}

.ccadv-heading span {
    display: block;
    margin-top: 7px;
    color: var(--cc-silver);
    font-family: Georgia, serif;
    font-size: 22px;
}

.ccadv-heading--light h2 {
    color: var(--cc-white);
}

.ccadv-heading--light h2::before,
.ccadv-heading--light h2::after {
    background: rgba(192,192,192,.5);
}

.ccadv-areas {
    padding: 38px 0 58px;
    background:
        radial-gradient(circle at center, rgba(192,192,192,.11), transparent 50%),
        var(--cc-cream);
}

.ccadv-area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--cc-line);
    border-bottom: 1px solid var(--cc-line);
}

.ccadv-area-grid article {
    min-height: 150px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid var(--cc-line);
}

.ccadv-area-grid article:nth-child(4n) {
    border-right: 0;
}

.ccadv-area-grid article:nth-child(n+5) {
    border-top: 1px solid var(--cc-line);
}

.ccadv-area-grid i {
    display: block;
    min-height: 50px;
    margin-bottom: 14px;
    color: var(--cc-ink);
    font-style: normal;
    font-size: 48px;
    line-height: 1;
}

.ccadv-area-grid h3 {
    font-family: 'Barlow', system-ui, sans-serif;
    color: var(--cc-ink);
    font-size: 20px;
    line-height: 1.1;
    font-weight: 600;
}

.ccadv-process {
    position: relative;
    padding: 36px 0 50px;
    background:
        radial-gradient(circle at 88% 50%, rgba(255,255,255,.06), transparent 34%),
        linear-gradient(135deg, #00162d 0%, var(--cc-ink) 60%, #031b36 100%);
    color: var(--cc-white);
    overflow: hidden;
}

.ccadv-process::before,
.ccadv-final-cta::before,
.ccadv-footer::before {
    content: "";
    position: absolute;
    right: -12%;
    bottom: -52%;
    width: 64%;
    height: 105%;
    border-top: 1px solid rgba(192,192,192,.18);
    border-radius: 50%;
    box-shadow:
        0 -12px 0 -11px rgba(192,192,192,.14),
        0 -24px 0 -23px rgba(192,192,192,.11),
        0 -36px 0 -35px rgba(192,192,192,.08),
        0 -48px 0 -47px rgba(192,192,192,.06);
    pointer-events: none;
}

.ccadv-process__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

.ccadv-process__grid article {
    position: relative;
    text-align: center;
}

.ccadv-process__grid article:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 34px;
    right: -34px;
    color: var(--cc-silver);
    font-size: 34px;
    line-height: 1;
}

.ccadv-process__grid span {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 26%, var(--cc-white), var(--cc-silver) 58%, #828282 100%);
    color: var(--cc-ink);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-weight: 700;
    box-shadow: inset 0 1px 2px rgba(255,255,255,.9), 0 12px 24px rgba(0,0,0,.24);
}

.ccadv-process__grid h3 {
    margin-bottom: 8px;
    color: var(--cc-white);
    font-size: 26px;
}

.ccadv-process__grid p {
    max-width: 230px;
    margin: 0 auto;
    color: rgba(255,255,255,.86);
    font-size: 15px;
}

.ccadv-about {
    padding: 42px 0 48px;
    background: linear-gradient(180deg, #fffdfa 0%, var(--cc-cream) 100%);
}

.ccadv-about__grid {
    display: grid;
    grid-template-columns: 300px 1fr 330px;
    gap: 44px;
    align-items: center;
}

.ccadv-about__photo {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--cc-shadow);
    background: var(--cc-cream-2);
}

.ccadv-about__photo img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center top;
}

.ccadv-about__content h2 {
    color: var(--cc-ink);
    font-size: clamp(32px, 2.8vw, 44px);
    line-height: 1.1;
}

.ccadv-about__content p {
    max-width: 610px;
    margin-bottom: 16px;
    color: #27354a;
    font-size: 16px;
}

.ccadv-benefits {
    display: grid;
    gap: 18px;
}

.ccadv-benefits span {
    position: relative;
    padding-left: 34px;
    color: #20314a;
    font-size: 16px;
    line-height: 1.3;
}

.ccadv-benefits span::before {
    content: "⊙";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--cc-ink);
    font-weight: 900;
}

.ccadv-faq {
    padding: 20px 0 58px;
    background: var(--cc-cream);
}

.ccadv-faq__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.ccadv-faq details {
    min-height: 156px;
    padding: 20px 22px;
    border-radius: 8px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(0,31,63,.09);
    box-shadow: 0 12px 34px rgba(0,31,63,.07);
}

.ccadv-faq summary {
    position: relative;
    list-style: none;
    padding-right: 24px;
    cursor: pointer;
    color: var(--cc-ink);
    font-weight: 800;
    line-height: 1.2;
}

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

.ccadv-faq summary::after {
    content: "+";
    position: absolute;
    top: 0;
    right: 0;
    color: var(--cc-ink);
    font-size: 20px;
    line-height: 1;
}

.ccadv-faq details[open] summary::after {
    content: "–";
}

.ccadv-faq p {
    margin-top: 16px;
    color: #27354a;
    font-size: 14px;
    line-height: 1.45;
}

.ccadv-final-cta {
    position: relative;
    padding: 48px 0;
    background: linear-gradient(135deg, #00162d 0%, var(--cc-ink) 62%, #06294e 100%);
    color: var(--cc-white);
    overflow: hidden;
}

.ccadv-final-cta__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 320px 220px;
    gap: 38px;
    align-items: center;
}

.ccadv-final-cta h2 {
    max-width: 620px;
    color: var(--cc-white);
    font-size: clamp(34px, 3.4vw, 56px);
    line-height: 1.02;
}

.ccadv-final-cta p {
    margin-top: 12px;
    color: rgba(255,255,255,.82);
}

.ccadv-final-cta__actions {
    display: grid;
    gap: 14px;
}

.ccadv-scales {
    color: rgba(192,192,192,.78);
    font-family: Georgia, serif;
    font-size: 150px;
    line-height: 1;
    text-align: right;
    text-shadow: 0 12px 30px rgba(0,0,0,.24);
}

.ccadv-footer {
    position: relative;
    padding: 38px 0 12px;
    background: #00162d;
    color: var(--cc-white);
    overflow: hidden;
}

.ccadv-footer__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr .75fr .9fr 1.1fr;
    gap: 44px;
    padding-bottom: 26px;
}

.ccadv-footer__brand img {
    width: 210px;
    max-width: 100%;
    padding: 12px 10px;
    border-radius: 4px;
    background: rgba(253,253,247,.94);
    mix-blend-mode: normal;
}

.ccadv-footer__brand p {
    margin-top: 18px;
    color: rgba(255,255,255,.78);
    line-height: 1.35;
}

.ccadv-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.ccadv-social a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;
    font-size: 0;
}

.ccadv-social a::before {
    font-size: 16px;
}

.ccadv-social a:first-child::before {
    content: "☎";
}

.ccadv-social a:last-child::before {
    content: "◎";
}

.ccadv-footer h3 {
    margin: 0 0 13px;
    color: var(--cc-white);
    font-size: 23px;
}

.ccadv-footer__links a,
.ccadv-footer__contact p {
    display: block;
    margin: 5px 0;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.35;
    font-style: normal;
}

.ccadv-footer__contact {
    font-style: normal;
}

.ccadv-footer__bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.72);
    font-size: 13px;
}

@media (max-width: 1120px) {
    .ccadv-header {
        min-height: 82px;
        padding: 10px 22px;
    }

    .ccadv-logo {
        width: 205px;
    }

    .ccadv-nav {
        gap: 2px;
    }

    .ccadv-nav a {
        padding: 0 8px;
        font-size: 13px;
    }

    .ccadv-nav .ccadv-nav__cta {
        padding: 0 14px;
    }

    .ccadv-about__grid {
        grid-template-columns: 260px 1fr;
    }

    .ccadv-benefits {
        grid-column: 1 / -1;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px 22px;
    }

    .ccadv-final-cta__grid {
        grid-template-columns: 1fr 300px;
    }

    .ccadv-scales {
        display: none;
    }
}

@media (max-width: 920px) {
    .ccadv-wrap {
        width: min(calc(100% - 32px), var(--cc-wrap));
    }

    .ccadv-menu-toggle {
        display: block;
        flex: 0 0 auto;
    }

    .ccadv-header {
        min-height: 74px;
        border-radius: 0;
    }

    .ccadv-logo {
        width: 185px;
        max-width: 70vw;
    }

    .ccadv-nav {
        position: fixed;
        top: 74px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 14px;
        background: rgba(253,253,247,.98);
        border: 1px solid rgba(0,31,63,.12);
        border-radius: 0 0 18px 18px;
        box-shadow: 0 24px 60px rgba(0,31,63,.22);
    }

    .ccadv-nav.is-open {
        display: flex;
    }

    .ccadv-nav a {
        justify-content: flex-start;
        color: var(--cc-ink);
    }

    .ccadv-nav .ccadv-nav__cta {
        margin: 8px 0 0;
        color: var(--cc-white);
    }

    .ccadv-hero {
        min-height: auto;
        padding-top: 74px;
        background: linear-gradient(180deg, var(--cc-ink) 0%, var(--cc-ink) 63%, var(--cc-cream) 63.2%, var(--cc-cream) 100%);
    }

    .ccadv-hero::before {
        inset: auto -20% 31% auto;
        width: 80%;
        height: 35%;
        transform: skewX(-12deg);
    }

    .ccadv-hero__grid {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ccadv-hero__content {
        padding: 46px 0 24px;
    }

    .ccadv-hero h1 {
        font-size: clamp(38px, 10vw, 56px);
    }

    .ccadv-lead {
        font-size: 18px;
    }

    .ccadv-hero__portrait {
        width: min(390px, 96%);
        height: auto;
        max-height: none;
        margin: 0 auto;
        border-radius: 8px 8px 0 0;
        background: var(--cc-cream);
    }

    .ccadv-hero__portrait img {
        height: auto;
        object-fit: contain;
    }

    .ccadv-trust {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ccadv-trust article {
        min-height: auto;
        padding: 14px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.18);
        flex-direction: row;
        align-items: center;
        gap: 14px;
    }

    .ccadv-trust article:last-child {
        border-bottom: 0;
    }

    .ccadv-trust__icon {
        margin: 0;
    }

    .ccadv-area-grid,
    .ccadv-process__grid,
    .ccadv-faq__grid,
    .ccadv-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ccadv-area-grid article:nth-child(2n) {
        border-right: 0;
    }

    .ccadv-area-grid article:nth-child(4n) {
        border-right: 0;
    }

    .ccadv-area-grid article:nth-child(n+3) {
        border-top: 1px solid var(--cc-line);
    }

    .ccadv-process__grid article:not(:last-child)::after {
        display: none;
    }

    .ccadv-final-cta__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .ccadv-site {
        font-size: 15px;
    }

    .ccadv-header {
        padding: 8px 14px;
    }

    .ccadv-logo {
        width: 162px;
    }

    .ccadv-actions {
        gap: 12px;
    }

    .ccadv-btn {
        width: 100%;
        min-width: 0;
        min-height: 52px;
        font-size: 15px;
    }

    .ccadv-heading h2 {
        gap: 12px;
        font-size: 34px;
    }

    .ccadv-heading h2::before,
    .ccadv-heading h2::after {
        width: 46px;
    }

    .ccadv-areas {
        padding-top: 32px;
    }

    .ccadv-area-grid,
    .ccadv-process__grid,
    .ccadv-faq__grid,
    .ccadv-about__grid,
    .ccadv-footer__grid,
    .ccadv-benefits {
        grid-template-columns: 1fr;
    }

    .ccadv-area-grid article {
        min-height: 122px;
        border-right: 0 !important;
    }

    .ccadv-area-grid article + article {
        border-top: 1px solid var(--cc-line) !important;
    }

    .ccadv-about__photo {
        max-width: 320px;
        margin: 0 auto;
    }

    .ccadv-about__photo img {
        height: auto;
    }

    .ccadv-final-cta,
    .ccadv-footer {
        text-align: left;
    }

    .ccadv-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
