.agency-page {
    --agency-ink: #17243c;
    --agency-copy: #56657b;
    --agency-blue: #2e63d5;
    --agency-blue-dark: #20499c;
    --agency-teal: #188b7f;
    --agency-teal-dark: #0f675f;
    --agency-coral: #e66e4f;
    --agency-gold: #efad43;
    --agency-cream: #fff8ec;
    --agency-mist: #f3f7fb;
    --agency-line: #dce6ef;
    color: var(--agency-ink);
    overflow: hidden;
}

.agency-page h1,
.agency-page h2,
.agency-page h3,
.agency-page h4 {
    color: var(--agency-ink);
}

.agency-page p {
    color: var(--agency-copy);
}

.agency-page a:focus-visible,
.agency-page summary:focus-visible {
    outline: 3px solid rgba(46, 99, 213, .35);
    outline-offset: 4px;
}

.agency-section {
    position: relative;
    padding: 6.5rem 0;
}

.agency-kicker {
    margin-bottom: .85rem;
    color: var(--agency-teal-dark);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.agency-section-heading {
    max-width: 820px;
    margin: 0 auto 3.3rem;
    text-align: center;
}

.agency-section-heading h2,
.agency-ownership-copy h2,
.agency-platform-copy h2,
.agency-pricing-heading h2,
.agency-fit-copy h2 {
    margin: 0;
    font-size: clamp(2.1rem, 4.1vw, 3.45rem);
    font-weight: 900;
    letter-spacing: -.044em;
    line-height: 1.05;
}

.agency-section-heading > p {
    max-width: 730px;
    margin: 1.1rem auto 0;
    font-size: 1.08rem;
    line-height: 1.75;
}

.agency-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 3.2rem;
    padding: .85rem 1.35rem;
    border: 1px solid transparent;
    border-radius: .82rem;
    font-size: .98rem;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}

.agency-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.agency-btn-primary {
    background: var(--agency-blue);
    box-shadow: 0 .9rem 1.9rem rgba(46, 99, 213, .23);
    color: #fff;
}

.agency-btn-primary:hover {
    background: var(--agency-blue-dark);
    color: #fff;
}

.agency-btn-secondary {
    border-color: rgba(32, 73, 156, .2);
    background: rgba(255, 255, 255, .78);
    color: var(--agency-blue-dark);
}

.agency-btn-secondary:hover {
    border-color: rgba(32, 73, 156, .38);
    background: #fff;
    box-shadow: 0 .7rem 1.5rem rgba(23, 36, 60, .09);
    color: var(--agency-blue-dark);
}

.agency-btn-light {
    background: #fff;
    box-shadow: 0 .9rem 1.9rem rgba(8, 28, 54, .2);
    color: var(--agency-blue-dark);
}

.agency-btn-light:hover {
    background: #fff;
    color: var(--agency-blue-dark);
}

.agency-text-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: 1rem;
    color: var(--agency-blue-dark);
    font-weight: 900;
    text-decoration: none;
}

.agency-text-link:hover {
    color: var(--agency-blue);
    text-decoration: none;
}

.agency-hero {
    position: relative;
    padding: 6.45rem 0 6rem;
    border-bottom: 1px solid var(--agency-line);
    background:
        radial-gradient(circle at 9% 12%, rgba(46, 99, 213, .15), transparent 28rem),
        radial-gradient(circle at 92% 10%, rgba(24, 139, 127, .16), transparent 26rem),
        linear-gradient(180deg, #fbfdff 0%, #f2f7fb 100%);
}

.agency-hero::before {
    position: absolute;
    right: -14rem;
    bottom: -20rem;
    width: 40rem;
    height: 40rem;
    border: 1px solid rgba(46, 99, 213, .09);
    border-radius: 50%;
    box-shadow: 0 0 0 5rem rgba(46, 99, 213, .025), 0 0 0 10rem rgba(46, 99, 213, .015);
    content: "";
    pointer-events: none;
}

.agency-hero::after {
    position: absolute;
    top: 2.8rem;
    left: 50%;
    width: 1px;
    height: calc(100% - 5.6rem);
    background: linear-gradient(180deg, transparent, rgba(46, 99, 213, .09), transparent);
    content: "";
    pointer-events: none;
}

.agency-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(520px, 1.05fr);
    gap: 4.7rem;
    align-items: center;
}

.agency-hero-copy {
    animation: agency-rise .55s ease both;
}

.agency-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.25rem;
    padding: .48rem .82rem;
    border: 1px solid rgba(46, 99, 213, .2);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    color: var(--agency-blue-dark);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.agency-eyebrow span {
    width: .55rem;
    height: .55rem;
    border-radius: 50%;
    background: var(--agency-teal);
    box-shadow: 0 0 0 .3rem rgba(24, 139, 127, .13);
}

.agency-hero h1 {
    max-width: 720px;
    margin: 0 0 1.35rem;
    font-size: clamp(3rem, 5.45vw, 5rem);
    font-weight: 900;
    letter-spacing: -.057em;
    line-height: .98;
}

.agency-hero h1 em {
    color: var(--agency-blue);
    font-style: normal;
}

.agency-hero-intro {
    max-width: 680px;
    margin: 0;
    font-size: 1.14rem;
    line-height: 1.75;
}

.agency-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.8rem;
}

.agency-start-terms {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1rem;
    margin-top: 1.3rem;
    color: #65758b;
    font-size: .82rem;
    font-weight: 700;
}

.agency-start-terms span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.agency-start-terms i {
    color: var(--agency-teal);
}

.agency-hero-visual {
    position: relative;
    animation: agency-rise .55s .1s ease both;
}

.agency-hero-visual::before {
    position: absolute;
    top: -1.2rem;
    right: -1.2rem;
    width: 9rem;
    height: 9rem;
    border-radius: 2.2rem;
    background: repeating-linear-gradient(135deg, rgba(230, 110, 79, .14) 0, rgba(230, 110, 79, .14) 2px, transparent 2px, transparent 10px);
    content: "";
}

.agency-console {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(23, 36, 60, .12);
    border-radius: 1.45rem;
    background: #fff;
    box-shadow: 0 2.2rem 5rem rgba(31, 57, 91, .2);
}

.agency-console-bar {
    display: flex;
    align-items: center;
    gap: .38rem;
    min-height: 2.55rem;
    padding: 0 1rem;
    border-bottom: 1px solid #e6ebf1;
    background: #f6f8fb;
}

.agency-console-bar > span {
    width: .58rem;
    height: .58rem;
    border-radius: 50%;
    background: #d2d9e3;
}

.agency-console-bar > span:first-child {
    background: #ef876e;
}

.agency-console-bar > span:nth-child(2) {
    background: #f2bd5f;
}

.agency-console-bar > span:nth-child(3) {
    background: #70c99a;
}

.agency-console-bar b {
    margin: 0 auto;
    padding-right: 2.75rem;
    color: #8793a5;
    font-size: .68rem;
    font-weight: 800;
}

.agency-console-head {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1.05rem 1.2rem;
    border-bottom: 1px solid #e8edf3;
}

.agency-demo-logo {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 2.55rem;
    height: 2.55rem;
    border-radius: .75rem;
    background: linear-gradient(145deg, var(--agency-teal), var(--agency-teal-dark));
    box-shadow: 0 .55rem 1rem rgba(24, 139, 127, .18);
    color: #fff;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .03em;
}

.agency-console-head > div:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.agency-console-head strong {
    color: var(--agency-ink);
    font-size: .86rem;
    font-weight: 900;
}

.agency-console-head small {
    color: #8a95a5;
    font-size: .65rem;
    font-weight: 700;
}

.agency-status {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-left: auto;
    padding: .4rem .58rem;
    border-radius: 999px;
    background: #e8f6ef;
    color: #277a55;
    font-size: .63rem;
    font-weight: 900;
}

.agency-status i {
    width: .43rem;
    height: .43rem;
    border-radius: 50%;
    background: #38a66f;
}

.agency-console-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .7rem;
    padding: 1rem 1.2rem;
    background: #f8fafc;
}

.agency-console-stats > div {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: .82rem;
    border: 1px solid #e4eaf1;
    border-radius: .85rem;
    background: #fff;
}

.agency-console-stats span {
    color: #738096;
    font-size: .63rem;
    font-weight: 800;
}

.agency-console-stats strong {
    margin: .16rem 0 .08rem;
    color: var(--agency-ink);
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.05;
}

.agency-console-stats small {
    overflow: hidden;
    color: #98a2af;
    font-size: .55rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.agency-client-list {
    padding: .35rem 1.2rem .7rem;
}

.agency-client-list-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .8rem .1rem .55rem;
}

.agency-client-list-head strong {
    color: var(--agency-ink);
    font-size: .72rem;
    font-weight: 900;
}

.agency-client-list-head span {
    color: #98a2af;
    font-size: .58rem;
    font-weight: 800;
    text-transform: uppercase;
}

.agency-client-row {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr) auto auto;
    gap: .65rem;
    align-items: center;
    padding: .68rem .7rem;
    border-top: 1px solid #edf1f5;
}

.agency-client-row > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: .58rem;
    background: rgba(46, 99, 213, .1);
    color: var(--agency-blue);
    font-size: .8rem;
}

.agency-client-row > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.agency-client-row strong {
    overflow: hidden;
    color: #2d394c;
    font-size: .69rem;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.agency-client-row small {
    color: #98a2af;
    font-size: .56rem;
    font-weight: 700;
}

.agency-client-row b {
    padding: .3rem .5rem;
    border-radius: 999px;
    background: #e8f6ef;
    color: #277a55;
    font-size: .55rem;
    font-weight: 900;
}

.agency-client-row em {
    color: var(--agency-blue);
    font-size: .58rem;
    font-style: normal;
    font-weight: 900;
}

.agency-console-foot {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #e8edf3;
    background: #f8fafc;
}

.agency-console-foot span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    min-height: 2.75rem;
    border-right: 1px solid #e8edf3;
    color: #657389;
    font-size: .58rem;
    font-weight: 900;
}

.agency-console-foot span:last-child {
    border-right: 0;
}

.agency-console-foot i {
    color: var(--agency-blue);
}

.agency-proof {
    border-bottom: 1px solid var(--agency-line);
    background: #fff;
}

.agency-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.agency-proof-grid > div {
    display: flex;
    align-items: center;
    gap: .8rem;
    min-height: 7rem;
    padding: 1rem 1.2rem;
    border-right: 1px solid var(--agency-line);
}

.agency-proof-grid > div:first-child {
    border-left: 1px solid var(--agency-line);
}

.agency-proof-grid > div > i {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: .82rem;
    background: rgba(46, 99, 213, .08);
    color: var(--agency-blue);
    font-size: 1.05rem;
}

.agency-proof-grid span {
    display: flex;
    flex-direction: column;
    color: #7c899d;
    font-size: .73rem;
    font-weight: 700;
    line-height: 1.45;
}

.agency-proof-grid strong {
    color: var(--agency-ink);
    font-size: .84rem;
    font-weight: 900;
}

.agency-meaning {
    background: #fff;
}

.agency-meaning-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
    max-width: 1040px;
    margin: 0 auto;
}

.agency-meaning-card {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border: 1px solid var(--agency-line);
    border-radius: 1.35rem;
    box-shadow: 0 1.1rem 2.8rem rgba(36, 58, 84, .08);
}

.agency-meaning-client {
    background: linear-gradient(145deg, #f8fbff, #eff5fc);
}

.agency-meaning-clear {
    background: linear-gradient(145deg, #fffcf7, #fff5e6);
}

.agency-card-label {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: 1.25rem;
    color: var(--agency-ink);
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.agency-card-label i {
    color: var(--agency-blue);
}

.agency-brand-preview {
    overflow: hidden;
    margin-bottom: 1.45rem;
    border: 1px solid #d8e3ef;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 .8rem 1.8rem rgba(31, 65, 105, .08);
}

.agency-brand-preview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 3.15rem;
    padding: .65rem 1rem;
    border-bottom: 1px solid #e8edf3;
}

.agency-brand-preview-head span {
    padding: .5rem .7rem;
    border-radius: .55rem;
    background: var(--agency-teal);
    color: #fff;
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .07em;
}

.agency-brand-preview-head b {
    color: #8a96a8;
    font-size: .64rem;
    font-weight: 900;
}

.agency-brand-preview-body {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: 1.15rem 1rem;
}

.agency-brand-preview-body > i {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: .78rem;
    background: rgba(46, 99, 213, .1);
    color: var(--agency-blue);
}

.agency-brand-preview-body span {
    display: flex;
    flex-direction: column;
}

.agency-brand-preview-body strong {
    color: var(--agency-ink);
    font-size: .82rem;
    font-weight: 900;
}

.agency-brand-preview-body small {
    color: #8793a5;
    font-size: .65rem;
    font-weight: 700;
}

.agency-domain-preview {
    display: grid;
    gap: .7rem;
    margin-bottom: 1.45rem;
}

.agency-domain-preview span {
    display: flex;
    align-items: center;
    gap: .65rem;
    min-height: 3.35rem;
    padding: .75rem 1rem;
    border: 1px solid #eadfcf;
    border-radius: .85rem;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 .6rem 1.5rem rgba(105, 73, 32, .06);
    color: #445267;
    font-size: .78rem;
    font-weight: 900;
}

.agency-domain-preview i {
    color: var(--agency-teal);
}

.agency-meaning-card ul,
.agency-price-main ul {
    display: grid;
    gap: .75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.agency-meaning-card li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    color: #4e5d72;
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.5;
}

.agency-meaning-card li i {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    margin-top: .02rem;
    border-radius: 50%;
    background: rgba(24, 139, 127, .12);
    color: var(--agency-teal);
    font-size: .72rem;
}

.agency-ownership {
    border-top: 1px solid var(--agency-line);
    border-bottom: 1px solid var(--agency-line);
    background:
        radial-gradient(circle at 0 50%, rgba(46, 99, 213, .09), transparent 28rem),
        var(--agency-mist);
}

.agency-ownership-grid {
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(600px, 1.28fr);
    gap: 4.3rem;
    align-items: center;
}

.agency-ownership-copy > p,
.agency-platform-copy > p,
.agency-fit-copy > p {
    margin: 1.25rem 0 0;
    font-size: 1.06rem;
    line-height: 1.75;
}

.agency-responsibility-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(23, 36, 60, .12);
    border-radius: 1.35rem;
    background: #fff;
    box-shadow: 0 1.5rem 3.4rem rgba(36, 58, 84, .13);
}

.agency-responsibility-column {
    padding: 1.65rem;
}

.agency-responsibility-platform {
    border-left: 1px solid var(--agency-line);
    background: #f9fbfd;
}

.agency-responsibility-title {
    display: block;
    margin-bottom: .75rem;
    color: var(--agency-teal-dark);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.agency-responsibility-platform .agency-responsibility-title {
    color: var(--agency-blue-dark);
}

.agency-responsibility-column > div {
    display: flex;
    gap: .72rem;
    padding: .9rem 0;
    border-top: 1px solid #edf1f5;
}

.agency-responsibility-column > div > i {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: .62rem;
    background: rgba(24, 139, 127, .1);
    color: var(--agency-teal);
    font-size: .85rem;
}

.agency-responsibility-platform > div > i {
    background: rgba(46, 99, 213, .09);
    color: var(--agency-blue);
}

.agency-responsibility-column > div > span {
    display: flex;
    flex-direction: column;
}

.agency-responsibility-column strong {
    color: #303d51;
    font-size: .81rem;
    font-weight: 900;
}

.agency-responsibility-column small {
    color: #7e8a9d;
    font-size: .68rem;
    font-weight: 700;
    line-height: 1.45;
}

.agency-path {
    background: #fff;
}

.agency-path-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.agency-path-grid article {
    position: relative;
    min-height: 15.5rem;
    padding: 1.65rem;
    border: 1px solid var(--agency-line);
    border-radius: 1.15rem;
    background: #fff;
    box-shadow: 0 .9rem 2.1rem rgba(36, 58, 84, .07);
}

.agency-path-grid article::after {
    position: absolute;
    top: 3.1rem;
    right: -1.05rem;
    z-index: 2;
    width: 1.1rem;
    height: 1px;
    background: var(--agency-line);
    content: "";
}

.agency-path-grid article:last-child::after {
    display: none;
}

.agency-path-grid article > span {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #dce4ed;
    font-size: 1.55rem;
    font-weight: 900;
}

.agency-path-grid article > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.1rem;
    height: 3.1rem;
    margin-bottom: 1.25rem;
    border-radius: .9rem;
    background: rgba(46, 99, 213, .1);
    color: var(--agency-blue);
    font-size: 1.15rem;
}

.agency-path-grid article:nth-child(2) > i,
.agency-path-grid article:nth-child(4) > i {
    background: rgba(24, 139, 127, .11);
    color: var(--agency-teal);
}

.agency-path-grid h3 {
    margin: 0 0 .6rem;
    font-size: 1.12rem;
    font-weight: 900;
    letter-spacing: -.02em;
}

.agency-path-grid p {
    margin: 0;
    font-size: .88rem;
    line-height: 1.65;
}

.agency-platform {
    border-top: 1px solid var(--agency-line);
    border-bottom: 1px solid var(--agency-line);
    background:
        radial-gradient(circle at 95% 15%, rgba(24, 139, 127, .1), transparent 26rem),
        #f3f7fb;
}

.agency-platform-grid {
    display: grid;
    grid-template-columns: minmax(560px, 1.1fr) minmax(360px, .9fr);
    gap: 4.5rem;
    align-items: center;
}

.agency-platform-window {
    overflow: hidden;
    border: 1px solid rgba(23, 36, 60, .13);
    border-radius: 1.35rem;
    background: #fff;
    box-shadow: 0 1.8rem 4rem rgba(31, 57, 91, .19);
    transform: rotate(-1.15deg);
}

.agency-platform-top {
    display: flex;
    align-items: center;
    gap: .38rem;
    min-height: 2.6rem;
    padding: 0 1rem;
    border-bottom: 1px solid #e6ebf1;
    background: #f7f9fb;
}

.agency-platform-top > span {
    width: .56rem;
    height: .56rem;
    border-radius: 50%;
    background: #d6dce4;
}

.agency-platform-top > span:first-child {
    background: #ef876e;
}

.agency-platform-top > span:nth-child(2) {
    background: #f2bd5f;
}

.agency-platform-top > span:nth-child(3) {
    background: #70c99a;
}

.agency-platform-top b {
    margin-left: auto;
    color: #8793a5;
    font-size: .62rem;
    font-weight: 900;
}

.agency-platform-body {
    display: grid;
    grid-template-columns: 4.1rem minmax(0, 1fr);
    min-height: 23rem;
}

.agency-platform-nav {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: .8rem;
    padding: 1rem .65rem;
    background: #172b4b;
}

.agency-platform-nav strong {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    margin-bottom: .6rem;
    border-radius: .7rem;
    background: var(--agency-teal);
    color: #fff;
    font-size: .75rem;
    font-weight: 900;
}

.agency-platform-nav i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: .6rem;
    color: #91a4c1;
    font-size: .85rem;
}

.agency-platform-nav i:first-of-type {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.agency-platform-content {
    padding: 1.3rem;
    background: #f8fafc;
}

.agency-platform-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}

.agency-platform-title > span {
    display: flex;
    flex-direction: column;
}

.agency-platform-title strong {
    color: var(--agency-ink);
    font-size: .9rem;
    font-weight: 900;
}

.agency-platform-title small {
    color: #8b97a8;
    font-size: .61rem;
    font-weight: 700;
}

.agency-platform-title > b {
    padding: .46rem .62rem;
    border-radius: .5rem;
    background: var(--agency-blue);
    color: #fff;
    font-size: .58rem;
    font-weight: 900;
}

.agency-platform-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .65rem;
}

.agency-platform-metrics > div {
    display: flex;
    flex-direction: column;
    padding: .8rem;
    border: 1px solid #e3e9f0;
    border-radius: .75rem;
    background: #fff;
}

.agency-platform-metrics small {
    color: #7e8b9e;
    font-size: .57rem;
    font-weight: 800;
}

.agency-platform-metrics strong {
    margin: .22rem 0;
    color: var(--agency-ink);
    font-size: 1.4rem;
    font-weight: 900;
}

.agency-platform-metrics span {
    color: #a0a9b5;
    font-size: .53rem;
    font-weight: 700;
}

.agency-platform-chart {
    display: flex;
    align-items: flex-end;
    gap: .55rem;
    height: 9.8rem;
    margin-top: .8rem;
    padding: 1.1rem 1rem .7rem;
    border: 1px solid #e3e9f0;
    border-radius: .75rem;
    background:
        repeating-linear-gradient(180deg, transparent 0, transparent 2.25rem, #edf1f5 2.25rem, #edf1f5 2.3rem),
        #fff;
}

.agency-platform-chart span {
    flex: 1;
    min-width: .6rem;
    border-radius: .3rem .3rem 0 0;
    background: linear-gradient(180deg, #5d8bea, #2e63d5);
}

.agency-platform-chart span:nth-child(3n) {
    background: linear-gradient(180deg, #55b7aa, #188b7f);
}

.agency-platform-copy > p {
    max-width: 610px;
}

.agency-capability-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    margin-top: 1.6rem;
}

.agency-capability-grid > div {
    display: flex;
    gap: .65rem;
    padding: .85rem;
    border: 1px solid var(--agency-line);
    border-radius: .8rem;
    background: rgba(255, 255, 255, .78);
}

.agency-capability-grid > div > i {
    flex: 0 0 auto;
    margin-top: .08rem;
    color: var(--agency-blue);
    font-size: .9rem;
}

.agency-capability-grid span {
    display: flex;
    flex-direction: column;
}

.agency-capability-grid strong {
    color: #354258;
    font-size: .73rem;
    font-weight: 900;
}

.agency-capability-grid small {
    color: #7d899c;
    font-size: .62rem;
    font-weight: 700;
    line-height: 1.45;
}

.agency-pricing {
    background: #fff;
}

.agency-pricing-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
    gap: 3rem;
    align-items: end;
    margin-bottom: 2rem;
}

.agency-pricing-heading p {
    max-width: 520px;
    margin: 0 0 .2rem auto;
    font-size: 1.02rem;
    line-height: 1.7;
}

.agency-currency {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: 1.2rem;
    padding: .38rem;
    border: 1px solid var(--agency-line);
    border-radius: .72rem;
    background: #f5f8fb;
}

.agency-currency > span {
    padding: 0 .55rem;
    color: #718096;
    font-size: .72rem;
    font-weight: 800;
}

.agency-currency-option {
    min-width: 3.8rem;
    padding: .48rem .7rem;
    border-radius: .5rem;
    color: #657389;
    font-size: .72rem;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
}

.agency-currency-option:hover {
    background: #fff;
    color: var(--agency-blue-dark);
    text-decoration: none;
}

.agency-currency-option.is-active {
    background: var(--agency-ink);
    box-shadow: 0 .45rem .85rem rgba(23, 36, 60, .16);
    color: #fff;
}

.agency-currency-option.is-active:hover {
    color: #fff;
}

.agency-price-layout {
    display: grid;
    grid-template-columns: minmax(360px, .8fr) minmax(550px, 1.2fr);
    gap: 1.2rem;
}

.agency-price-main {
    position: relative;
    overflow: hidden;
    padding: 2.2rem;
    border: 1px solid rgba(46, 99, 213, .2);
    border-radius: 1.4rem;
    background:
        radial-gradient(circle at 100% 0, rgba(46, 99, 213, .16), transparent 18rem),
        linear-gradient(155deg, #f8fbff, #eef4fc);
    box-shadow: 0 1.3rem 3rem rgba(31, 65, 105, .12);
}

.agency-price-main::after {
    position: absolute;
    right: -4rem;
    bottom: -5rem;
    width: 13rem;
    height: 13rem;
    border: 1px solid rgba(46, 99, 213, .1);
    border-radius: 50%;
    box-shadow: 0 0 0 2.3rem rgba(46, 99, 213, .025), 0 0 0 4.6rem rgba(46, 99, 213, .018);
    content: "";
    pointer-events: none;
}

.agency-price-badge {
    position: absolute;
    top: 1.3rem;
    right: 1.3rem;
    padding: .4rem .65rem;
    border-radius: 999px;
    background: var(--agency-teal);
    color: #fff;
    font-size: .64rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.agency-price-label {
    display: block;
    color: var(--agency-blue-dark);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.agency-price {
    display: flex;
    align-items: flex-start;
    margin: .85rem 0 .1rem;
}

.agency-price sup {
    margin-top: .85rem;
    color: var(--agency-ink);
    font-size: 1.3rem;
    font-weight: 900;
}

.agency-price > strong {
    color: var(--agency-ink);
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -.07em;
    line-height: .95;
}

.agency-price > span {
    display: flex;
    align-self: flex-end;
    align-items: flex-end;
    margin: 0 0 .5rem .25rem;
    color: #718096;
    font-size: 1.1rem;
    font-weight: 800;
}

.agency-price > span small {
    font-size: .74rem;
}

.agency-price-main > p {
    margin: 0 0 1.4rem;
    font-size: .82rem;
    font-weight: 700;
}

.agency-price-main ul {
    position: relative;
    z-index: 1;
    gap: .82rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(46, 99, 213, .14);
}

.agency-price-main li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    color: #526177;
    font-size: .84rem;
    font-weight: 700;
    line-height: 1.45;
}

.agency-price-main li > i {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    background: rgba(24, 139, 127, .12);
    color: var(--agency-teal);
    font-size: .72rem;
}

.agency-price-main li strong {
    color: #2f3d52;
    font-weight: 900;
}

.agency-price-cta {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: 1.5rem;
}

.agency-price-side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.agency-addon-card {
    display: flex;
    gap: 1rem;
    padding: 1.55rem;
    border: 1px solid var(--agency-line);
    border-radius: 1.15rem;
    background: #fff;
    box-shadow: 0 .9rem 2rem rgba(36, 58, 84, .07);
}

.agency-addon-card > i {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: .82rem;
    background: rgba(46, 99, 213, .09);
    color: var(--agency-blue);
    font-size: 1rem;
}

.agency-addon-card:nth-child(2) > i {
    background: rgba(24, 139, 127, .1);
    color: var(--agency-teal);
}

.agency-addon-card > div {
    display: flex;
    flex-direction: column;
}

.agency-addon-card > div > span {
    color: #6f7d91;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.agency-addon-card strong {
    margin: .3rem 0;
    color: var(--agency-ink);
    font-size: 1.75rem;
    font-weight: 900;
}

.agency-addon-card strong small {
    color: #7b889b;
    font-size: .65rem;
    font-weight: 800;
}

.agency-addon-card p {
    margin: 0;
    font-size: .77rem;
    line-height: 1.5;
}

.agency-margin-card {
    grid-column: 1 / -1;
    padding: 1.65rem;
    border: 1px solid rgba(24, 139, 127, .2);
    border-radius: 1.15rem;
    background:
        radial-gradient(circle at 100% 0, rgba(24, 139, 127, .12), transparent 18rem),
        #f3fbf8;
}

.agency-margin-label {
    margin-bottom: 1rem;
    color: var(--agency-teal-dark);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.agency-margin-equation {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: .8rem;
    align-items: center;
}

.agency-margin-equation > span {
    display: flex;
    flex-direction: column;
    padding: .8rem;
    border: 1px solid rgba(24, 139, 127, .13);
    border-radius: .75rem;
    background: rgba(255, 255, 255, .75);
}

.agency-margin-equation small {
    color: #708195;
    font-size: .6rem;
    font-weight: 800;
}

.agency-margin-equation strong {
    margin-top: .15rem;
    color: var(--agency-ink);
    font-size: 1.45rem;
    font-weight: 900;
}

.agency-margin-equation > i {
    color: #8491a3;
    font-size: .85rem;
}

.agency-margin-equation .agency-margin-result {
    border-color: rgba(24, 139, 127, .25);
    background: var(--agency-teal);
}

.agency-margin-result small,
.agency-margin-result strong {
    color: #fff;
}

.agency-margin-card > p {
    margin: 1rem 0 0;
    color: #6c7b8f;
    font-size: .68rem;
    line-height: 1.55;
}

.agency-billing-note {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-top: 1.2rem;
    padding: 1rem 1.15rem;
    border: 1px solid #eadabf;
    border-radius: .85rem;
    background: var(--agency-cream);
    color: #66563e;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.55;
}

.agency-billing-note > i {
    flex: 0 0 auto;
    margin-top: .15rem;
    color: #c78320;
}

.agency-billing-note strong {
    color: #58482f;
    font-weight: 900;
}

.agency-fit {
    border-top: 1px solid var(--agency-line);
    border-bottom: 1px solid var(--agency-line);
    background:
        radial-gradient(circle at 10% 80%, rgba(239, 173, 67, .13), transparent 25rem),
        #fffaf2;
}

.agency-fit-shell {
    display: grid;
    grid-template-columns: minmax(350px, .8fr) minmax(540px, 1.2fr);
    gap: 4rem;
    align-items: center;
}

.agency-fit-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
}

.agency-fit-list > div {
    display: flex;
    gap: .8rem;
    padding: 1.1rem;
    border: 1px solid #eadfce;
    border-radius: .9rem;
    background: rgba(255, 255, 255, .78);
}

.agency-fit-list > div > i {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: .7rem;
    background: rgba(230, 110, 79, .1);
    color: var(--agency-coral);
    font-size: .92rem;
}

.agency-fit-list span {
    display: flex;
    flex-direction: column;
}

.agency-fit-list strong {
    color: #3b4657;
    font-size: .79rem;
    font-weight: 900;
}

.agency-fit-list small {
    color: #7c8695;
    font-size: .67rem;
    font-weight: 700;
    line-height: 1.5;
}

.agency-faq {
    background: #fff;
}

.agency-faq-list {
    display: grid;
    gap: .75rem;
    max-width: 920px;
    margin: 0 auto;
}

.agency-faq-list details {
    border: 1px solid var(--agency-line);
    border-radius: .9rem;
    background: #fff;
    box-shadow: 0 .55rem 1.4rem rgba(36, 58, 84, .045);
}

.agency-faq-list details[open] {
    border-color: rgba(46, 99, 213, .26);
    box-shadow: 0 .8rem 1.9rem rgba(36, 58, 84, .08);
}

.agency-faq-list summary {
    position: relative;
    padding: 1.25rem 3.5rem 1.25rem 1.35rem;
    color: #2d3a4e;
    cursor: pointer;
    font-size: .96rem;
    font-weight: 900;
    list-style: none;
}

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

.agency-faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: rgba(46, 99, 213, .08);
    color: var(--agency-blue);
    content: "+";
    font-size: 1.2rem;
    line-height: 1;
    transform: translateY(-50%);
}

.agency-faq-list details[open] summary::after {
    content: "-";
}

.agency-faq-list details > div {
    padding: 0 1.35rem 1.35rem;
    color: #5c6b80;
    font-size: .9rem;
    line-height: 1.7;
}

.agency-faq-list details > div strong {
    color: #344259;
}

.agency-final {
    padding: 2rem 0 6.5rem;
    background: #fff;
}

.agency-final-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    gap: 3rem;
    align-items: center;
    overflow: hidden;
    padding: 3.4rem;
    border-radius: 1.6rem;
    background:
        radial-gradient(circle at 100% 0, rgba(63, 127, 240, .33), transparent 28rem),
        linear-gradient(145deg, #162a4a, #213e6e);
    box-shadow: 0 2rem 4.5rem rgba(22, 42, 74, .22);
}

.agency-final-shell::after {
    position: absolute;
    right: -5rem;
    bottom: -7rem;
    width: 19rem;
    height: 19rem;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 50%;
    box-shadow: 0 0 0 3.5rem rgba(255, 255, 255, .03), 0 0 0 7rem rgba(255, 255, 255, .018);
    content: "";
}

.agency-final-shell > div {
    position: relative;
    z-index: 1;
}

.agency-final-shell > div:first-child > span {
    color: #79d7c4;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.agency-final h2 {
    max-width: 720px;
    margin: .65rem 0 .8rem;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: 1.05;
}

.agency-final p {
    max-width: 680px;
    margin: 0;
    color: #c7d5e9;
    font-size: 1rem;
    line-height: 1.7;
}

.agency-final-actions {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: .85rem;
}

.agency-final-login {
    color: #d3dfef;
    font-size: .78rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.agency-final-login:hover {
    color: #fff;
    text-decoration: underline;
}

.agency-mobile-cta {
    display: none;
}

@keyframes agency-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1199.98px) {
    .agency-hero-grid {
        grid-template-columns: minmax(0, .9fr) minmax(470px, 1.1fr);
        gap: 3rem;
    }

    .agency-ownership-grid,
    .agency-platform-grid,
    .agency-fit-shell {
        gap: 3rem;
    }

    .agency-ownership-grid {
        grid-template-columns: minmax(280px, .65fr) minmax(560px, 1.35fr);
    }

    .agency-platform-grid {
        grid-template-columns: minmax(510px, 1.05fr) minmax(330px, .95fr);
    }

    .agency-price-layout {
        grid-template-columns: minmax(340px, .75fr) minmax(500px, 1.25fr);
    }

    .agency-client-row {
        grid-template-columns: 2rem minmax(0, 1fr) auto;
    }

    .agency-client-row em {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .agency-section {
        padding: 5.4rem 0;
    }

    .agency-hero {
        padding: 5.5rem 0 5rem;
    }

    .agency-hero::after {
        display: none;
    }

    .agency-hero-grid,
    .agency-ownership-grid,
    .agency-platform-grid,
    .agency-fit-shell {
        grid-template-columns: 1fr;
    }

    .agency-hero-grid {
        gap: 3.4rem;
    }

    .agency-hero-copy {
        max-width: 760px;
    }

    .agency-hero-visual {
        max-width: 680px;
    }

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

    .agency-proof-grid > div:nth-child(2) {
        border-right: 0;
    }

    .agency-proof-grid > div:nth-child(n+3) {
        border-top: 1px solid var(--agency-line);
    }

    .agency-proof-grid > div:nth-child(3) {
        border-left: 1px solid var(--agency-line);
    }

    .agency-ownership-copy,
    .agency-platform-copy,
    .agency-fit-copy {
        max-width: 760px;
    }

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

    .agency-path-grid article:nth-child(2)::after {
        display: none;
    }

    .agency-path-grid article:nth-child(n+3) {
        margin-top: .25rem;
    }

    .agency-platform-window {
        max-width: 720px;
        transform: none;
    }

    .agency-platform-copy {
        order: -1;
    }

    .agency-pricing-heading {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .agency-pricing-heading p {
        margin-left: 0;
    }

    .agency-price-layout {
        grid-template-columns: 1fr;
    }

    .agency-price-main {
        max-width: none;
    }

    .agency-final-shell {
        grid-template-columns: 1fr;
        padding: 3rem;
    }

    .agency-final-actions {
        max-width: 360px;
    }
}

@media (max-width: 767.98px) {
    .agency-page {
        padding-bottom: 4.8rem;
    }

    .agency-section {
        padding: 4.5rem 0;
    }

    .agency-section-heading {
        margin-bottom: 2.5rem;
        text-align: left;
    }

    .agency-section-heading > p {
        margin-left: 0;
    }

    .agency-hero {
        padding: 4.55rem 0 4.3rem;
    }

    .agency-hero h1 {
        font-size: clamp(2.75rem, 12vw, 4rem);
    }

    .agency-hero-intro {
        font-size: 1.04rem;
    }

    .agency-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .agency-actions .agency-btn {
        width: 100%;
    }

    .agency-start-terms {
        align-items: flex-start;
        flex-direction: column;
    }

    .agency-console-stats {
        grid-template-columns: repeat(3, minmax(105px, 1fr));
        overflow-x: auto;
    }

    .agency-console-foot span {
        min-height: 2.5rem;
        font-size: .52rem;
    }

    .agency-proof-grid {
        grid-template-columns: 1fr;
    }

    .agency-proof-grid > div,
    .agency-proof-grid > div:nth-child(2),
    .agency-proof-grid > div:nth-child(3) {
        min-height: 5.3rem;
        border-top: 1px solid var(--agency-line);
        border-right: 1px solid var(--agency-line);
        border-left: 1px solid var(--agency-line);
    }

    .agency-proof-grid > div:first-child {
        border-top: 0;
    }

    .agency-meaning-grid,
    .agency-responsibility-board,
    .agency-price-side,
    .agency-fit-list {
        grid-template-columns: 1fr;
    }

    .agency-responsibility-platform {
        border-top: 1px solid var(--agency-line);
        border-left: 0;
    }

    .agency-path-grid {
        grid-template-columns: 1fr;
    }

    .agency-path-grid article {
        min-height: 0;
    }

    .agency-path-grid article::after {
        display: none;
    }

    .agency-path-grid article:nth-child(n+2) {
        margin-top: 0;
    }

    .agency-platform-body {
        grid-template-columns: 3.25rem minmax(450px, 1fr);
        overflow-x: auto;
    }

    .agency-platform-nav {
        padding-right: .4rem;
        padding-left: .4rem;
    }

    .agency-platform-nav strong {
        width: 2rem;
        height: 2rem;
    }

    .agency-capability-grid {
        grid-template-columns: 1fr;
    }

    .agency-currency {
        display: flex;
        width: 100%;
    }

    .agency-currency > span {
        margin-right: auto;
    }

    .agency-price-main,
    .agency-addon-card,
    .agency-margin-card,
    .agency-meaning-card {
        padding: 1.45rem;
    }

    .agency-price-main {
        padding-top: 2rem;
    }

    .agency-margin-equation {
        grid-template-columns: 1fr;
    }

    .agency-margin-equation > i {
        transform: rotate(90deg);
        text-align: center;
    }

    .agency-margin-card {
        grid-column: auto;
    }

    .agency-final {
        padding-bottom: 4.5rem;
    }

    .agency-final-shell {
        padding: 2.1rem 1.5rem;
        border-radius: 1.2rem;
    }

    .agency-mobile-cta {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1050;
        display: flex;
        align-items: center;
        gap: 1rem;
        min-height: 4.8rem;
        padding: .7rem 1rem;
        border-top: 1px solid rgba(23, 36, 60, .12);
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 -.65rem 2rem rgba(23, 36, 60, .13);
        backdrop-filter: blur(12px);
    }

    .agency-mobile-cta > span {
        display: flex;
        min-width: 0;
        flex-direction: column;
        color: #718096;
        font-size: .66rem;
        font-weight: 800;
    }

    .agency-mobile-cta strong {
        color: var(--agency-ink);
        font-size: .82rem;
        font-weight: 900;
    }

    .agency-mobile-cta > a {
        min-width: 5.8rem;
        margin-left: auto;
        padding: .7rem 1rem;
        border-radius: .65rem;
        background: var(--agency-blue);
        color: #fff;
        font-size: .8rem;
        font-weight: 900;
        text-align: center;
        text-decoration: none;
    }
}

@media (max-width: 575.98px) {
    .agency-hero-visual::before {
        display: none;
    }

    .agency-console-head {
        align-items: flex-start;
    }

    .agency-status {
        display: none;
    }

    .agency-client-row {
        grid-template-columns: 1.8rem minmax(0, 1fr) auto;
        gap: .5rem;
        padding-right: .2rem;
        padding-left: .2rem;
    }

    .agency-client-row > i {
        width: 1.7rem;
        height: 1.7rem;
    }

    .agency-console-foot span i {
        display: none;
    }

    .agency-card-label {
        font-size: .7rem;
    }

    .agency-domain-preview span {
        overflow-wrap: anywhere;
    }

    .agency-price-badge {
        position: static;
        display: inline-block;
        margin-bottom: .8rem;
    }

    .agency-price > strong {
        font-size: 4.2rem;
    }

    .agency-addon-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .agency-currency > span {
        display: none;
    }

    .agency-currency-option {
        flex: 1;
    }

    .agency-faq-list summary {
        padding-left: 1.05rem;
        font-size: .88rem;
    }

    .agency-faq-list details > div {
        padding-right: 1.05rem;
        padding-left: 1.05rem;
        font-size: .84rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .agency-hero-copy,
    .agency-hero-visual {
        animation: none;
    }

    .agency-btn {
        transition: none;
    }
}
