/* =========================================================
   BYSAMY TOUR SUCCESS PAGE
   File: bysamy-success.css
   Prefix: bst-success-
========================================================= */

.bst-success-page {
    --bst-success-dark: #051f2a;
    --bst-success-navy: #083442;
    --bst-success-blue: #087fa5;
    --bst-success-cyan: #18a9b8;
    --bst-success-gold: #e8b660;
    --bst-success-green: #20c96b;
    --bst-success-green-dark: #15964c;
    --bst-success-text: #304a55;
    --bst-success-muted: #73868f;
    --bst-success-light: #f5f9fa;
    --bst-success-white: #ffffff;
    --bst-success-border: rgba(5, 31, 42, 0.10);

    position: relative;
    overflow: hidden;
    background: #ffffff;
}

/* =========================================================
   HERO
========================================================= */

.bst-success-hero {
    position: relative;
    min-height: 510px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;

    background:
        linear-gradient(
            90deg,
            rgba(3, 22, 31, 0.94) 0%,
            rgba(4, 45, 57, 0.76) 52%,
            rgba(4, 45, 57, 0.35) 100%
        ),
        url('/Sistem/suc1.png')
        center center / cover no-repeat;
}

.bst-success-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        radial-gradient(
            circle at 82% 22%,
            rgba(24, 169, 184, 0.22),
            transparent 34%
        );
}

.bst-success-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 100px;

    background:
        linear-gradient(
            to top,
            #ffffff 0%,
            rgba(255, 255, 255, 0) 100%
        );

    pointer-events: none;
}

.bst-success-hero-content {
    position: relative;
    z-index: 2;
    max-width: 890px;
    padding: 145px 0 110px;
}

.bst-success-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    min-height: 40px;
    margin-bottom: 21px;
    padding: 9px 17px;

    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.bst-success-hero-eyebrow i {
    color: var(--bst-success-green);
    font-size: 13px;
}

.bst-success-hero-title {
    max-width: 850px;
    margin: 0;

    color: #ffffff;

    font-size: clamp(43px, 6vw, 74px);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -2.2px;
    text-wrap: balance;
}

.bst-success-hero-title span {
    color: var(--bst-success-gold);
}

.bst-success-hero-description {
    max-width: 680px;
    margin: 23px 0 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 16px;
    line-height: 1.85;
}

.bst-success-breadcrumb {
    margin-top: 28px;
}

.bst-success-breadcrumb ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.bst-success-breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 13px;
    font-weight: 600;
}

.bst-success-breadcrumb li:not(:last-child)::after {
    content: "\f105";

    color: var(--bst-success-gold);

    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.bst-success-breadcrumb a {
    color: #ffffff;
    text-decoration: none;

    transition: color 0.25s ease;
}

.bst-success-breadcrumb a:hover {
    color: var(--bst-success-gold);
}

/* =========================================================
   MAIN AREA
========================================================= */

.bst-success-main {
    position: relative;
    z-index: 3;

    padding: 30px 0 110px;

    background:
        radial-gradient(
            circle at 6% 18%,
            rgba(24, 169, 184, 0.08),
            transparent 24%
        ),
        radial-gradient(
            circle at 95% 82%,
            rgba(232, 182, 96, 0.08),
            transparent 23%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f9fa 100%
        );
}

.bst-success-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 38px;
    align-items: start;
}

/* =========================================================
   SUCCESS CARD
========================================================= */

.bst-success-card {
    position: relative;

    min-width: 0;
    padding: 46px 42px;

    overflow: hidden;

    border: 1px solid var(--bst-success-border);
    border-radius: 29px;

    background: #ffffff;

    box-shadow:
        0 25px 70px rgba(5, 31, 42, 0.10),
        0 6px 20px rgba(5, 31, 42, 0.04);

    text-align: center;
}

.bst-success-card-decoration {
    position: absolute;
    top: -115px;
    right: -105px;

    width: 300px;
    height: 300px;

    border: 55px solid rgba(24, 169, 184, 0.055);
    border-radius: 50%;

    pointer-events: none;
}

.bst-success-card::before {
    content: "";
    position: absolute;
    left: -85px;
    bottom: -110px;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(232, 182, 96, 0.10),
            transparent 65%
        );

    pointer-events: none;
}

/* =========================================================
   SUCCESS ICON
========================================================= */

.bst-success-icon-area {
    position: relative;

    display: grid;
    place-items: center;

    width: 116px;
    height: 116px;
    margin: 0 auto 27px;
}

.bst-success-check-icon {
    position: relative;
    z-index: 3;

    display: grid;
    place-items: center;

    width: 82px;
    height: 82px;

    border: 7px solid rgba(255, 255, 255, 0.88);
    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--bst-success-green-dark),
            var(--bst-success-green)
        );

    color: #ffffff;

    box-shadow:
        0 18px 42px rgba(32, 201, 107, 0.28),
        0 0 0 8px rgba(32, 201, 107, 0.08);

    font-size: 29px;

    animation:
        bstSuccessCheckEnter 0.7s
        cubic-bezier(0.2, 0.9, 0.3, 1.25)
        both;
}

.bst-success-icon-ripple {
    position: absolute;
    inset: 50% auto auto 50%;

    border: 1px solid rgba(32, 201, 107, 0.28);
    border-radius: 50%;

    transform: translate(-50%, -50%);

    pointer-events: none;
}

.bst-success-icon-ripple-one {
    width: 98px;
    height: 98px;

    animation: bstSuccessRipple 2.4s ease-out infinite;
}

.bst-success-icon-ripple-two {
    width: 98px;
    height: 98px;

    animation: bstSuccessRipple 2.4s 1.1s ease-out infinite;
}

.bst-success-small-title {
    position: relative;
    z-index: 2;

    display: inline-block;
    margin-bottom: 12px;

    color: var(--bst-success-green-dark);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bst-success-title {
    position: relative;
    z-index: 2;

    max-width: 680px;
    margin: 0 auto;

    color: var(--bst-success-dark);

    font-size: clamp(29px, 4vw, 43px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    text-wrap: balance;
}

.bst-success-title span {
    color: var(--bst-success-blue);
}

.bst-success-text {
    position: relative;
    z-index: 2;

    max-width: 650px;
    margin: 20px auto 0;

    color: var(--bst-success-muted);

    font-size: 15px;
    line-height: 1.9;
}

/* =========================================================
   SUCCESS NOTICE
========================================================= */

.bst-success-notice {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-start;
    gap: 15px;

    max-width: 670px;
    margin: 29px auto 0;
    padding: 20px;

    border: 1px solid rgba(8, 127, 165, 0.12);
    border-radius: 17px;

    background:
        linear-gradient(
            135deg,
            rgba(8, 127, 165, 0.055),
            rgba(24, 169, 184, 0.035)
        );

    text-align: left;
}

.bst-success-notice-icon {
    display: grid;
    flex: 0 0 auto;
    place-items: center;

    width: 46px;
    height: 46px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--bst-success-blue),
            var(--bst-success-cyan)
        );

    color: #ffffff;

    box-shadow:
        0 12px 26px rgba(8, 127, 165, 0.20);

    font-size: 16px;
}

.bst-success-notice-content strong {
    display: block;
    margin-bottom: 5px;

    color: var(--bst-success-dark);

    font-size: 13px;
    font-weight: 800;
}

.bst-success-notice-content p {
    margin: 0;

    color: var(--bst-success-muted);

    font-size: 12px;
    line-height: 1.75;
}

/* =========================================================
   ACTION BUTTONS
========================================================= */

.bst-success-actions {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 13px;

    margin-top: 28px;
}

.bst-success-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 53px;
    padding: 13px 23px;

    border: 1px solid transparent;
    border-radius: 999px;

    font-size: 13px;
    font-weight: 800;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.bst-success-button-primary {
    background:
        linear-gradient(
            135deg,
            var(--bst-success-blue),
            var(--bst-success-cyan)
        );

    color: #ffffff;

    box-shadow:
        0 14px 32px rgba(8, 127, 165, 0.22);
}

.bst-success-button-primary:hover {
    transform: translateY(-3px);

    background:
        linear-gradient(
            135deg,
            var(--bst-success-dark),
            var(--bst-success-navy)
        );

    color: #ffffff;

    box-shadow:
        0 18px 38px rgba(5, 31, 42, 0.23);
}

.bst-success-button-secondary {
    border-color: var(--bst-success-border);

    background: var(--bst-success-light);
    color: var(--bst-success-dark);
}

.bst-success-button-secondary:hover {
    transform: translateY(-3px);

    border-color: var(--bst-success-blue);

    background: #ffffff;
    color: var(--bst-success-blue);
}

/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.bst-success-whatsapp-button {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 14px;

    max-width: 670px;
    min-height: 78px;
    margin: 22px auto 0;
    padding: 13px 17px;

    border: 1px solid rgba(32, 201, 107, 0.18);
    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(32, 201, 107, 0.08),
            rgba(32, 201, 107, 0.035)
        );

    color: var(--bst-success-dark);

    text-align: left;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.bst-success-whatsapp-button:hover {
    transform: translateY(-4px);

    border-color: rgba(32, 201, 107, 0.34);

    background:
        linear-gradient(
            135deg,
            rgba(32, 201, 107, 0.12),
            rgba(32, 201, 107, 0.055)
        );

    color: var(--bst-success-dark);

    box-shadow:
        0 17px 38px rgba(32, 201, 107, 0.13);
}

.bst-success-whatsapp-icon {
    display: grid;
    flex: 0 0 auto;
    place-items: center;

    width: 48px;
    height: 48px;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            var(--bst-success-green-dark),
            var(--bst-success-green)
        );

    color: #ffffff;

    box-shadow:
        0 12px 27px rgba(32, 201, 107, 0.25);

    font-size: 20px;
}

.bst-success-whatsapp-text {
    display: block;
    flex: 1;
    min-width: 0;
}

.bst-success-whatsapp-text small {
    display: block;
    margin-bottom: 3px;

    color: var(--bst-success-muted);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.bst-success-whatsapp-text strong {
    display: block;

    color: var(--bst-success-dark);

    font-size: 13px;
    font-weight: 800;
}

.bst-success-whatsapp-arrow {
    color: var(--bst-success-green-dark);
    font-size: 12px;

    transition: transform 0.25s ease;
}

.bst-success-whatsapp-button:hover
.bst-success-whatsapp-arrow {
    transform: translate(3px, -3px);
}

/* =========================================================
   SIDEBAR
========================================================= */

.bst-success-sidebar {
    position: sticky;
    top: 110px;
}

.bst-success-sidebar-card {
    padding: 28px;

    border: 1px solid var(--bst-success-border);
    border-radius: 23px;

    background: #ffffff;

    box-shadow:
        0 17px 48px rgba(5, 31, 42, 0.08);
}

.bst-success-sidebar-card +
.bst-success-sidebar-card {
    margin-top: 22px;
}

.bst-success-sidebar-heading {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 24px;
}

.bst-success-sidebar-icon {
    display: grid;
    flex: 0 0 auto;
    place-items: center;

    width: 50px;
    height: 50px;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            var(--bst-success-blue),
            var(--bst-success-cyan)
        );

    color: #ffffff;

    box-shadow:
        0 13px 28px rgba(8, 127, 165, 0.22);

    font-size: 18px;
}

.bst-success-sidebar-heading small {
    display: block;
    margin-bottom: 3px;

    color: var(--bst-success-blue);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bst-success-sidebar-heading h2 {
    margin: 0;

    color: var(--bst-success-dark);

    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
}

/* =========================================================
   STATUS TIMELINE
========================================================= */

.bst-success-status-list {
    position: relative;
}

.bst-success-status-list::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 20px;
    bottom: 28px;

    width: 2px;

    background:
        linear-gradient(
            180deg,
            var(--bst-success-green),
            var(--bst-success-blue),
            var(--bst-success-border)
        );
}

.bst-success-status-item {
    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding-bottom: 24px;
}

.bst-success-status-item:last-child {
    padding-bottom: 0;
}

.bst-success-status-marker {
    position: relative;
    z-index: 2;

    display: grid;
    flex: 0 0 auto;
    place-items: center;

    width: 42px;
    height: 42px;

    border: 4px solid #ffffff;
    border-radius: 50%;

    background: var(--bst-success-light);
    color: var(--bst-success-muted);

    box-shadow:
        0 0 0 1px var(--bst-success-border);

    font-size: 11px;
}

.bst-success-status-item.is-completed
.bst-success-status-marker {
    background: var(--bst-success-green);
    color: #ffffff;

    box-shadow:
        0 0 0 1px rgba(32, 201, 107, 0.24),
        0 8px 20px rgba(32, 201, 107, 0.20);
}

.bst-success-status-item.is-active
.bst-success-status-marker {
    background: var(--bst-success-blue);
    color: #ffffff;

    box-shadow:
        0 0 0 1px rgba(8, 127, 165, 0.24),
        0 8px 20px rgba(8, 127, 165, 0.20);

    animation: bstSuccessActivePulse 1.9s ease-in-out infinite;
}

.bst-success-status-content {
    padding-top: 2px;
}

.bst-success-status-content > span {
    display: block;
    margin-bottom: 3px;

    color: var(--bst-success-blue);

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bst-success-status-content strong {
    display: block;
    margin-bottom: 5px;

    color: var(--bst-success-dark);

    font-size: 13px;
    font-weight: 800;
}

.bst-success-status-content p {
    margin: 0;

    color: var(--bst-success-muted);

    font-size: 11px;
    line-height: 1.7;
}

/* =========================================================
   SUPPORT CARD
========================================================= */

.bst-success-support-card {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            var(--bst-success-dark),
            var(--bst-success-navy)
        );

    color: #ffffff;
}

.bst-success-support-card::before {
    content: "";
    position: absolute;
    top: -75px;
    right: -65px;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    background: rgba(24, 169, 184, 0.14);
}

.bst-success-support-card::after {
    content: "";
    position: absolute;
    right: 35px;
    bottom: -70px;

    width: 140px;
    height: 140px;

    border: 25px solid rgba(232, 182, 96, 0.08);
    border-radius: 50%;
}

.bst-success-support-icon {
    position: relative;
    z-index: 2;

    display: grid;
    place-items: center;

    width: 56px;
    height: 56px;
    margin-bottom: 18px;

    border-radius: 17px;

    background:
        linear-gradient(
            135deg,
            var(--bst-success-blue),
            var(--bst-success-cyan)
        );

    color: #ffffff;

    box-shadow:
        0 14px 30px rgba(8, 127, 165, 0.25);

    font-size: 21px;
}

.bst-success-support-small {
    position: relative;
    z-index: 2;

    display: block;
    margin-bottom: 8px;

    color: var(--bst-success-gold);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.bst-success-support-card h2 {
    position: relative;
    z-index: 2;

    margin: 0 0 11px;

    color: #ffffff;

    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
}

.bst-success-support-card > p {
    position: relative;
    z-index: 2;

    margin: 0 0 20px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;
    line-height: 1.75;
}

.bst-success-support-list {
    position: relative;
    z-index: 2;

    display: grid;
    gap: 10px;

    margin-bottom: 22px;
}

.bst-success-support-list div {
    display: flex;
    align-items: center;
    gap: 8px;

    color: rgba(255, 255, 255, 0.80);

    font-size: 11px;
    font-weight: 700;
}

.bst-success-support-list i {
    color: var(--bst-success-green);
    font-size: 11px;
}

.bst-success-support-button {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    width: 100%;
    min-height: 51px;
    padding: 13px 19px;

    border: 1px solid rgba(255, 255, 255, 0.27);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    font-size: 12px;
    font-weight: 800;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.bst-success-support-button:hover {
    transform: translateY(-3px);

    border-color: #ffffff;

    background: #ffffff;
    color: var(--bst-success-dark);
}

/* =========================================================
   PROCESS SECTION
========================================================= */

.bst-success-process {
    position: relative;

    padding: 100px 0;

    overflow: hidden;

    background: var(--bst-success-dark);
}

.bst-success-process::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 12% 28%,
            rgba(24, 169, 184, 0.15),
            transparent 30%
        ),
        radial-gradient(
            circle at 88% 75%,
            rgba(232, 182, 96, 0.11),
            transparent 28%
        );

    pointer-events: none;
}

.bst-success-section-heading {
    position: relative;
    z-index: 2;

    max-width: 760px;
    margin: 0 auto 48px;

    text-align: center;
}

.bst-success-section-heading > span {
    display: block;
    margin-bottom: 13px;

    color: var(--bst-success-gold);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bst-success-section-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(31px, 4vw, 49px);
    font-weight: 800;
    line-height: 1.2;
}

.bst-success-section-heading p {
    max-width: 650px;
    margin: 18px auto 0;

    color: rgba(255, 255, 255, 0.64);

    font-size: 14px;
    line-height: 1.8;
}

.bst-success-process-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.bst-success-process-card {
    position: relative;

    min-height: 260px;
    padding: 29px 24px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.055);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.bst-success-process-card:hover {
    transform: translateY(-8px);

    border-color: rgba(232, 182, 96, 0.34);

    background: rgba(255, 255, 255, 0.085);
}

.bst-success-process-number {
    position: absolute;
    top: 18px;
    right: 20px;

    color: rgba(255, 255, 255, 0.12);

    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.bst-success-process-icon {
    display: grid;
    place-items: center;

    width: 56px;
    height: 56px;
    margin-bottom: 20px;

    border-radius: 17px;

    background:
        linear-gradient(
            135deg,
            var(--bst-success-blue),
            var(--bst-success-cyan)
        );

    color: #ffffff;

    box-shadow:
        0 14px 30px rgba(8, 127, 165, 0.23);

    font-size: 20px;
}

.bst-success-process-card h3 {
    margin: 0 0 11px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 800;
}

.bst-success-process-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.61);

    font-size: 12px;
    line-height: 1.75;
}

/* =========================================================
   TRUST STRIP
========================================================= */

.bst-success-trust {
    padding: 42px 0;

    border-bottom: 1px solid var(--bst-success-border);

    background: #ffffff;
}

.bst-success-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.bst-success-trust-item {
    display: flex;
    align-items: center;
    gap: 13px;

    min-height: 78px;
    padding: 16px 18px;

    border: 1px solid var(--bst-success-border);
    border-radius: 18px;

    background: var(--bst-success-light);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.bst-success-trust-item:hover {
    transform: translateY(-4px);

    border-color: rgba(24, 169, 184, 0.28);

    background: #ffffff;
}

.bst-success-trust-item > i {
    display: grid;
    flex: 0 0 auto;
    place-items: center;

    width: 43px;
    height: 43px;

    border-radius: 13px;

    background: rgba(8, 127, 165, 0.09);
    color: var(--bst-success-blue);

    font-size: 15px;
}

.bst-success-trust-item strong {
    display: block;
    margin-bottom: 3px;

    color: var(--bst-success-dark);

    font-size: 12px;
    font-weight: 800;
}

.bst-success-trust-item span {
    display: block;

    color: var(--bst-success-muted);

    font-size: 9px;
    line-height: 1.4;
}

/* =========================================================
   CTA
========================================================= */

.bst-success-cta {
    position: relative;

    padding: 100px 0;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(3, 22, 31, 0.94),
            rgba(6, 61, 76, 0.78)
        ),
        url('/Sistem/suc2.png')
        center center / cover no-repeat;
}

.bst-success-cta::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            125deg,
            transparent 42%,
            rgba(24, 169, 184, 0.18)
        );

    pointer-events: none;
}

.bst-success-cta-content {
    position: relative;
    z-index: 2;

    max-width: 830px;
    margin: 0 auto;

    text-align: center;
}

.bst-success-cta-small-title {
    display: inline-block;
    margin-bottom: 14px;

    color: var(--bst-success-gold);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.bst-success-cta-content h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.17;
    letter-spacing: -1px;
    text-wrap: balance;
}

.bst-success-cta-content p {
    max-width: 660px;
    margin: 20px auto 29px;

    color: rgba(255, 255, 255, 0.74);

    font-size: 15px;
    line-height: 1.8;
}

.bst-success-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 13px;
}

.bst-success-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 54px;
    padding: 13px 24px;

    border: 1px solid transparent;
    border-radius: 999px;

    font-size: 13px;
    font-weight: 800;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.bst-success-cta-button-primary {
    background: var(--bst-success-gold);
    color: var(--bst-success-dark);
}

.bst-success-cta-button-primary:hover {
    transform: translateY(-3px);

    background: #ffffff;
    color: var(--bst-success-dark);
}

.bst-success-cta-button-outline {
    border-color: rgba(255, 255, 255, 0.35);

    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bst-success-cta-button-outline:hover {
    transform: translateY(-3px);

    border-color: #ffffff;

    background: #ffffff;
    color: var(--bst-success-dark);
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes bstSuccessCheckEnter {
    0% {
        opacity: 0;
        transform: scale(0.45) rotate(-22deg);
    }

    65% {
        opacity: 1;
        transform: scale(1.08) rotate(3deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

@keyframes bstSuccessRipple {
    0% {
        opacity: 0.65;
        transform:
            translate(-50%, -50%)
            scale(0.75);
    }

    100% {
        opacity: 0;
        transform:
            translate(-50%, -50%)
            scale(1.55);
    }
}

@keyframes bstSuccessActivePulse {
    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(8, 127, 165, 0.24),
            0 8px 20px rgba(8, 127, 165, 0.20),
            0 0 0 0 rgba(8, 127, 165, 0.18);
    }

    50% {
        box-shadow:
            0 0 0 1px rgba(8, 127, 165, 0.24),
            0 8px 20px rgba(8, 127, 165, 0.20),
            0 0 0 8px rgba(8, 127, 165, 0);
    }
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

.bst-success-button:focus-visible,
.bst-success-whatsapp-button:focus-visible,
.bst-success-support-button:focus-visible,
.bst-success-cta-button:focus-visible,
.bst-success-breadcrumb a:focus-visible {
    outline: 3px solid rgba(232, 182, 96, 0.55);
    outline-offset: 4px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {

    .bst-success-layout {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 30px;
    }

    .bst-success-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bst-success-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 991.98px) {

    .bst-success-layout {
        grid-template-columns: 1fr;
    }

    .bst-success-sidebar {
        position: static;
    }

    .bst-success-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .bst-success-sidebar-card +
    .bst-success-sidebar-card {
        margin-top: 0;
    }

}

@media (max-width: 767.98px) {

    .bst-success-hero {
        min-height: 450px;
    }

    .bst-success-hero-content {
        padding: 125px 0 95px;

        text-align: center;
    }

    .bst-success-hero-title {
        font-size: 42px;
        letter-spacing: -1.2px;
    }

    .bst-success-hero-description {
        margin-right: auto;
        margin-left: auto;

        font-size: 15px;
    }

    .bst-success-breadcrumb ol {
        justify-content: center;
    }

    .bst-success-main {
        padding: 25px 0 75px;
    }

    .bst-success-card {
        padding: 36px 25px;

        border-radius: 23px;
    }

    .bst-success-title {
        font-size: 32px;
    }

    .bst-success-process,
    .bst-success-cta {
        padding: 75px 0;
    }

    .bst-success-sidebar {
        grid-template-columns: 1fr;
    }

    .bst-success-process-grid {
        grid-template-columns: 1fr;
    }

    .bst-success-process-card {
        min-height: auto;
    }

}

@media (max-width: 575.98px) {

    .bst-success-hero {
        min-height: 430px;
    }

    .bst-success-hero-title {
        font-size: 35px;
    }

    .bst-success-hero-eyebrow {
        font-size: 9px;
        letter-spacing: 1.3px;
    }

    .bst-success-card {
        padding: 30px 17px;
    }

    .bst-success-icon-area {
        width: 102px;
        height: 102px;
    }

    .bst-success-check-icon {
        width: 72px;
        height: 72px;

        font-size: 25px;
    }

    .bst-success-title {
        font-size: 28px;
    }

    .bst-success-text {
        font-size: 13px;
        line-height: 1.8;
    }

    .bst-success-notice {
        padding: 16px;
    }

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

    .bst-success-button {
        width: 100%;
    }

    .bst-success-whatsapp-button {
        align-items: center;

        min-height: 72px;
        padding: 12px;
    }

    .bst-success-whatsapp-icon {
        width: 43px;
        height: 43px;

        font-size: 18px;
    }

    .bst-success-whatsapp-arrow {
        display: none;
    }

    .bst-success-sidebar-card {
        padding: 23px;
    }

    .bst-success-trust-grid {
        grid-template-columns: 1fr;
    }

    .bst-success-cta-button {
        width: 100%;
    }

}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .bst-success-check-icon,
    .bst-success-icon-ripple,
    .bst-success-status-item.is-active
    .bst-success-status-marker {
        animation: none !important;
    }

    .bst-success-page *,
    .bst-success-page *::before,
    .bst-success-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

}