/* ============================================================
   Supplemental styles for the SOC 2 landing page.
   Fills gaps the WordPress theme normally handles via ACF/CF7.
   Brand tokens mirror the theme: dark #131416 / purple #560BF5 #7336F7
   ============================================================ */

:root {
    --s-purple: #560BF5;
    --s-purple-2: #7336F7;
    --s-purple-hover: #4809d4;
    --s-dark: #131416;
    --s-dark-2: #160734;
    --s-form-text: #111827;
    --s-form-muted: #6b7280;
    --s-form-input-border: #d1d5db;
    --s-form-input-focus: #560BF5;
    --hq-surface: #f9f9fa;
    --hq-border: #ebebee;
    --hq-input-bg: #ffffff;
    --hq-input-border: #d4d4d8;
    --hq-text: #18181b;
    --hq-muted: #71717a;
}

/* keep header readable over the dark banner */
#wcl-main-header-new.wcl-new-header--without-menu {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 22px 0;
}
.wcl-logo-holder img {
    display: block;
    filter: none;
    width: auto;
    height: auto;
    max-width: 215px;
    max-height: 43px;
}

/* floating quote CTA after scrolling past hero */
.wcl-floating-quote-cta {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 110;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px) scale(0.96);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
}
.wcl-floating-quote-cta.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
body.past-hero .wcl-header-quote-cta {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}
@media (max-width: 768px) {
    .wcl-floating-quote-cta {
        top: 12px;
        right: 12px;
    }
    .wcl-floating-quote-cta .wcl-button {
        padding: 11px 16px;
        font-size: 14px;
    }
}

/* ---------- Hero / banner extra polish ---------- */
.wcl-new-banner .data-description {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255,255,255,0.82);
    max-width: 620px;
    margin-bottom: 34px;
}
.wcl-new-banner .data-eyebrow {
    display: inline-block;
    font-family: "Gilroy", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(90deg, var(--s-purple) 0%, var(--s-purple-2) 100%);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 22px;
}
.wcl-new-banner .data-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
/* ---------- Professional CTAs (override theme web3 gradients) ---------- */
.wcl-button-wrapper .wcl-button {
    display: inline-block;
    padding: 14px 28px;
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.25;
    letter-spacing: 0.01em;
    text-transform: none;
    color: #fff;
    background: var(--s-purple) !important;
    background-size: auto !important;
    border: none;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.12) !important;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.wcl-button-wrapper .wcl-button:hover {
    background: var(--s-purple-hover) !important;
    background-size: auto !important;
    background-position: unset !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.14) !important;
    transform: translateY(-1px);
}
.wcl-button-wrapper .wcl-button:active {
    transform: translateY(0);
}

/* secondary (outline) button variant */
.wcl-button-wrapper.button-outline .wcl-button {
    background: transparent !important;
    box-shadow: none !important;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    color: #fff;
}
.wcl-button-wrapper.button-outline .wcl-button:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
    transform: none;
}

/* ---------- Hero with form (two-column) ---------- */
.hero-with-form { padding: 150px 0 90px; }
@media (max-width: 991px) { .hero-with-form { padding-top: 120px; } }
.hero-with-form .hero-copy-col { padding-right: 30px; }
@media (max-width: 991px) {
    .hero-with-form .hero-copy-col { padding-right: 12px; margin-bottom: 40px; }
    .hero-with-form .hero-copy-col .data-title { margin-top: 40px; }
}

/* ---------- Hero quote card (light grey) ---------- */
.hero-quote-card {
    position: relative;
    border-radius: 14px;
    background: var(--hq-surface);
    border: 1px solid var(--hq-border);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.06),
        0 12px 32px rgba(0, 0, 0, 0.12);
}
.hero-quote-card__glow {
    display: none;
}
.hero-quote-card__inner {
    padding: 28px 28px 22px;
    background: #fdfdfd;
    border-radius: 13px;
}
.hero-quote-card__head h3 {
    font-family: "Gilroy", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: var(--hq-text);
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}
.hero-quote-card__head p {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--hq-muted);
    margin: 0 0 22px;
}
.hero-quote-form__honeypot {
    display: none;
}
.hero-quote-form__fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hero-quote-field label {
    display: block;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #3f3f46;
    margin-bottom: 6px;
}
.hero-quote-field input,
.hero-quote-field select {
    width: 100%;
    padding: 12px 14px;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--hq-text);
    background: var(--hq-input-bg);
    border: 1px solid var(--hq-input-border);
    border-radius: 10px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.hero-quote-field input::placeholder {
    color: #a1a1aa;
}
.hero-quote-field input:focus {
    outline: none;
    border-color: #a1a1aa;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}
.hero-quote-field select:focus {
    outline: none;
    border-color: #a1a1aa;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}
.hero-quote-field select {
    appearance: none;
    background-color: var(--hq-input-bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2371717a' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}
.hero-quote-field select option {
    color: #131416;
    background: #fff;
}
.hero-quote-form__submit {
    width: 100%;
    margin-top: 6px;
    padding: 14px 24px;
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.01em;
    color: #fff;
    background: var(--s-purple);
    border: none;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.hero-quote-form__submit:hover {
    background: var(--s-purple-hover);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}
.hero-quote-form__submit:active {
    transform: translateY(0);
}
.hero-quote-card__foot {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--hq-border);
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    line-height: 1.45;
    color: var(--hq-muted);
}
.hero-quote-card__foot .sayfer-verified-icon {
    flex-shrink: 0;
    margin-top: 1px;
    color: #71717a;
    font-size: 18px;
}
@media (max-width: 991px) {
    .hero-quote-card__inner {
        padding: 24px 22px 20px;
    }
    .hero-quote-card__head h3 {
        font-size: 22px;
    }
}

/* hero trust stats */
.hero-trust-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 26px 48px;
    margin-top: 42px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-trust-stats .stat-value {
    font-family: "Gilroy", sans-serif;
    font-weight: 900;
    font-size: 34px;
    color: #fff;
    line-height: 1;
}
.hero-trust-stats .stat-value span { color: var(--s-purple-2); }
.hero-trust-stats .stat-label {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 6px;
}

/* ---------- Comparison / why section (tier cards) ---------- */
.wcl-why-section { background: linear-gradient(180deg, #131416 0%, #160734 100%); padding: 70px 0; }

.why-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 44px;
    align-items: stretch;
}
.why-tier-card {
    display: flex;
    flex-direction: column;
    padding: 32px 28px 28px;
    border-radius: 20px;
    background: #151a24;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.why-tier-card--red {
    background: #1c1418;
    border-color: rgba(232, 93, 93, 0.28);
}
.why-tier-card--red .why-tier-card__label {
    color: #f4a4a4;
}
.why-tier-card--red .why-tier-card__features li::before {
    background-color: #e85d5d;
}

.why-tier-card--blue {
    background: #131a26;
    border-color: rgba(91, 156, 245, 0.28);
}
.why-tier-card--blue .why-tier-card__label {
    color: #9ec5f7;
}
.why-tier-card--blue .why-tier-card__features li::before {
    background-color: #5b9cf5;
}

.why-tier-card--featured {
    background: #161b28;
    border-color: rgba(115, 54, 247, 0.35);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.why-tier-card--featured .why-tier-card__label {
    color: #c4b5fd;
}
.why-tier-card--featured .why-tier-card__features li::before {
    background-color: var(--s-purple);
}
.why-tier-card__label {
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 8px;
}
.why-tier-card__title {
    font-family: "Gilroy", sans-serif;
    font-weight: 800;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 14px;
}
.why-tier-card__desc {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 22px;
}
.why-tier-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}
.why-tier-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.72);
}
.why-tier-card__features li::before {
    content: "";
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border-radius: 50%;
    background-color: var(--s-purple);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10'%3E%3Cpath fill='%23fff' d='M4.2 9.4L.4 5.6 1.8 4.2l2.4 2.4L10.2.6l1.4 1.4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px 9px;
}
.why-tier-card__cta {
    display: block;
    width: 100%;
    margin-top: 24px;
    padding: 14px 20px;
    font-family: "Gilroy", sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    color: #131416;
    background: #c4b5fd;
    border-radius: 12px;
    transition: background-color 0.2s ease, transform 0.15s ease;
}
.why-tier-card__cta:hover {
    background: #d4c8ff;
    color: #131416;
    transform: translateY(-1px);
}
@media (max-width: 900px) {
    .why-tier-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ---------- "What's covered" — dark cards ---------- */
.wcl-coverage-section {
    padding: 70px 0 80px;
}
.wcl-coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    align-items: stretch;
}
.wcl-coverage-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 32px 28px 28px;
    background: linear-gradient(180deg, rgba(20, 22, 38, 0.92) 0%, rgba(13, 14, 26, 0.92) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.wcl-coverage-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -22px rgba(139, 92, 246, 0.55);
}
.coverage-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, 0.45);
    background: rgba(139, 92, 246, 0.08);
    color: #fff;
    margin-bottom: 28px;
    line-height: 0;
    position: relative;
    z-index: 1;
}
.coverage-card__icon .coverage-logo {
    width: 28px;
    height: 28px;
    display: block;
    stroke-width: 1.6;
}
.coverage-card__title {
    font-family: "Gilroy", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
    margin: 0 0 14px;
    max-width: 14em;
    position: relative;
    z-index: 1;
}
.coverage-card__accent {
    display: block;
    width: 36px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #8b5cf6 0%, rgba(139, 92, 246, 0) 100%);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.coverage-card__desc {
    font-family: "Roboto", sans-serif;
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 28px;
    flex: 1;
    position: relative;
    z-index: 1;
}
.coverage-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    text-decoration: none;
    margin-top: auto;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
    position: relative;
    z-index: 1;
}
.coverage-card__arrow svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}
.coverage-card__arrow:hover {
    border-color: rgba(139, 92, 246, 0.7);
    background-color: rgba(139, 92, 246, 0.15);
    transform: translateX(3px);
    color: #fff;
}
@media (max-width: 1200px) {
    .coverage-card__title { font-size: 18px; }
    .wcl-coverage-card { padding: 28px 22px 24px; }
}
@media (max-width: 992px) {
    .wcl-coverage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 575px) {
    .wcl-coverage-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .coverage-card__title { font-size: 19px; }
}

/* ---------- FAQ ---------- */
.wcl-faq-section { padding: 70px 0; }
.wcl-faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    padding: 22px 26px;
    margin-bottom: 14px;
}
.wcl-faq-item summary {
    cursor: pointer; list-style: none;
    font-family: "Gilroy", sans-serif; font-weight: 700; font-size: 17px; color: #fff;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.wcl-faq-item summary::-webkit-details-marker { display: none; }
.wcl-faq-item summary::after { content: "+"; color: var(--s-purple-2); font-size: 24px; line-height: 1; }
.wcl-faq-item[open] summary::after { content: "\2212"; }
.wcl-faq-item .faq-body {
    margin-top: 14px; color: rgba(255,255,255,0.75);
    font-family: "Roboto", sans-serif; font-size: 15.5px; line-height: 1.6;
}

/* ---------- Lead form (CF7 replacement) ---------- */
.wcl-contract-sales-form .wcl-form-container { display: flex; flex-direction: column; gap: 18px; }
.wcl-contract-sales-form .wcl-input-row { display: flex; gap: 18px; }
@media (max-width: 576px) { .wcl-contract-sales-form .wcl-input-row { flex-direction: column; } }
.wcl-form-wrapper label {
    display: block;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
    color: #374151;
    margin-bottom: 6px;
}
.wcl-form-wrapper .wcl-input-container { flex: 1; margin-bottom: 0; }
.wcl-form-wrapper input:not([type=submit]),
.wcl-form-wrapper select {
    width: 100%;
    padding: 11px 14px;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--s-form-text) !important;
    background: #fff !important;
    border: 1px solid var(--s-form-input-border) !important;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.wcl-form-wrapper input:not([type=submit]):focus,
.wcl-form-wrapper select:focus {
    outline: none;
    border-color: var(--s-form-input-focus) !important;
    box-shadow: 0 0 0 3px rgba(86, 11, 245, 0.12);
}
.wcl-form-wrapper select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    padding-right: 40px !important;
}
.wcl-form-wrapper select option { color: #131416; }
.wcl-form-wrapper input::placeholder { color: #9ca3af; }
.wcl-form-wrapper input[type=submit] {
    width: 100%;
    padding: 13px 24px;
    margin-top: 4px;
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.01em;
    color: #fff;
    background: var(--s-purple) !important;
    background-size: auto !important;
    border: none;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.12) !important;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.wcl-form-wrapper input[type=submit]:hover {
    background: var(--s-purple-hover) !important;
    background-position: unset !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.14) !important;
}
.wcl-form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--s-form-muted);
    font-size: 13px;
    line-height: 1.4;
}

/* ---------- client trust logos ("Pentests delivered for") ---------- */
.wcl-new-our-clients-section .client-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px 28px;
    max-width: 1100px;
    margin: 30px auto 0;
    padding: 0 16px;
}
.wcl-new-our-clients-section .client-logo-item {
    flex: 0 1 150px;
    display: flex;
    justify-content: center;
}
.wcl-new-our-clients-section .client-logo-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    width: 100%;
}
.wcl-new-our-clients-section .client-logo-img {
    max-height: 88px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}
@media (max-width: 767px) {
    .wcl-new-our-clients-section .client-logos-grid {
        gap: 16px 20px;
    }
    .wcl-new-our-clients-section .client-logo-item {
        flex: 0 1 calc(33.333% - 16px);
        min-width: 100px;
    }
    .wcl-new-our-clients-section .client-logo-holder { height: 80px; }
    .wcl-new-our-clients-section .client-logo-img {
        max-height: 64px;
    }
}
@media (max-width: 480px) {
    .wcl-new-our-clients-section .client-logo-item {
        flex: 0 1 calc(50% - 12px);
    }
}

/* ---------- supported standard badges: invert dark logos so they show on dark bg ---------- */
.wcl-new-supported-standard-section .wcl-standard-item-wrapper {
    justify-content: center !important;
    gap: 20px !important;
    row-gap: 24px !important;
    column-gap: 20px !important;
    padding: 28px 0 40px !important;
}
.wcl-new-supported-standard-section .wcl-standard-item {
    max-width: 220px !important;
    flex: 0 1 auto;
}
.wcl-new-supported-standard-section .wcl-standard-item img {
    filter: brightness(0) invert(1);
    opacity: 0.85;
    width: 110px !important;
    height: 110px !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain;
}
@media (max-width: 767px) {
    .wcl-new-supported-standard-section .wcl-standard-item-wrapper {
        gap: 16px !important;
        padding: 20px 0 28px !important;
    }
    .wcl-new-supported-standard-section .wcl-standard-item {
        max-width: calc(50% - 12px) !important;
    }
    .wcl-new-supported-standard-section .wcl-standard-item img {
        width: 110px !important;
        height: 110px !important;
    }
}

/* ---------- sticky mobile CTA ---------- */
.wcl-sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
    display: none; gap: 10px; padding: 12px 14px;
    background: rgba(19,20,22,0.97); border-top: 1px solid #2a2440;
    backdrop-filter: blur(6px);
}
.wcl-sticky-cta .wcl-button { width: 100%; padding: 13px; text-align: center; }
@media (max-width: 768px) {
    .wcl-sticky-cta { display: flex; }
    body { padding-bottom: 78px; }
}

/* ---------- Final CTA band ---------- */
.wcl-final-cta-box {
    background:
        radial-gradient(ellipse at top right, rgba(115,54,247,0.35), transparent 55%),
        linear-gradient(135deg, #1a0b3d 0%, #160734 100%);
    border: 1px solid rgba(115,54,247,0.45);
    border-radius: 20px;
    padding: 56px;
    text-align: center;
}
.wcl-final-cta-box .data-title {
    font-family: "Gilroy", sans-serif;
    font-weight: 700;
    font-size: 34px;
    color: #fff;
    margin-bottom: 12px;
}
.wcl-final-cta-box p {
    font-family: "Roboto", sans-serif;
    color: rgba(255,255,255,0.78);
    font-size: 18px;
    margin-bottom: 28px;
}
.wcl-final-cta-box .data-buttons { display: flex; flex-wrap: wrap; gap: 18px; }
@media (max-width: 768px) { .wcl-final-cta-box { padding: 36px 22px; } }

/* ---------- Calendly inline embed ---------- */
/* Widget stays in .wcl-calendly-embed; --eager pins it to the viewport for load, then CSS only. */
.wcl-calendly-embed {
    min-height: 1000px;
}
.wcl-calendly-preload--eager {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.01;
    pointer-events: none;
    z-index: -1;
}
.wcl-calendly-preload {
    line-height: 0;
}
.wcl-calendly-preload .calendly-inline-widget,
.wcl-calendly-preload iframe {
    display: block;
    width: 100%;
    height: 700px;
    min-height: 620px;
}
.thank-you-page .wcl-calendly-section {
    margin-top: 48px;
    padding-bottom: 20px;
}
.wcl-calendly-section {
    margin-top: 56px;
}
.wcl-calendly-heading {
    text-align: center;
    font-family: "Gilroy", sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #fff;
    margin-bottom: 28px;
}
.wcl-calendly-embed {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    border: 1px solid rgba(115, 54, 247, 0.35);
    background: #fff;
    line-height: 0;
}
.wcl-calendly-embed .calendly-inline-widget,
.wcl-calendly-embed iframe {
    display: block;
    width: 100%;
    height: 1000px;
    min-height: 1000px;
    border: 0;
    border-radius: 16px;
}
@media (max-width: 768px) {
    .wcl-calendly-embed { min-height: 620px; }
    .wcl-calendly-preload .calendly-inline-widget,
    .wcl-calendly-preload iframe { height: 620px; min-height: 560px; }
    .wcl-calendly-section { margin-top: 40px; }
    .wcl-calendly-heading { font-size: 22px; margin-bottom: 20px; }
    .wcl-calendly-embed .calendly-inline-widget,
    .wcl-calendly-embed iframe { height: 620px; min-height: 560px; }
}

/* small heading helper */
.wcl-section-sub {
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 720px;
    margin: 0 auto 10px;
}
.wcl-new-heading .data-title { color: #fff; }
.text-accent-purple { color: var(--s-purple-2); }
