@media(max-width:991px) {

    .left-panel,
    .right-panel {
        min-height: auto;
    }
}

/* ════════════════════════
     LEFT PANEL — Dark branded
  ════════════════════════ */
.left-panel {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.left-inner {
    position: relative;
    z-index: 1;
    height: 100%;
}

/* Headline */
.left-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(241, 137, 17, .12);
    border: 1px solid rgba(241, 137, 17, .25);
    border-radius: var(--radius-md);
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 600;
    color: var(--S);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 20px;
}

.left-kicker .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--S);
    animation: kpulse 1.8s ease-in-out infinite;
}

@keyframes kpulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

/* Feature list */
.feat-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--r12);
    padding: 14px 16px;
    transition: background .2s;
}

.feat-item:hover {
    /* background: rgba(0, 0, 0, 0.09); */
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.feat-ico {
    width: 36px;
    height: 36px;
    border-radius: var(--r8);
    background: var(--PL);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    margin-top: 1px;
}

.feat-title {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark);
    display: block;
    margin-bottom: 2px;
}

.feat-desc {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.45);
    line-height: 1.4;
    display: inline-block;
}

/* Stats row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 36px;
}

.stat-box {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--r12);
    padding: 14px;
    text-align: center;
}

.stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1;
}

.stat-num span {
    color: var(--S);
}

.stat-lbl {
    font-size: 10.5px;
    color: rgba(0, 0, 0, 0.35);
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: .4px;
}



/* ════════════════════════
     RIGHT PANEL — Form
  ════════════════════════ */
.right-panel {
    background: var(--g50);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r24);
    padding: 36px 32px;
    width: 100%;
    max-width: 540px;
    box-shadow: var(--shadow-lg);
}

@media(max-width:575px) {
    .form-card {
        padding: 28px 20px;
        border-radius: var(--r20);
    }
}

.fc-header {
    margin-bottom: 28px;
}

.fc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--PL);
    color: var(--P);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(46, 54, 253, .15);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.fc-badge .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--P);
    animation: kpulse 1.8s ease-in-out infinite;
}

.fc-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 6px;
    letter-spacing: -.4px;
}

.fc-sub {
    font-size: 13.5px;
    color: var(--ink60);
    line-height: 1.6;
}

/* Form elements */
.form-group {
    margin-bottom: 14px;
}

.form-label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink);
    display: block;
    margin-bottom: 6px;
}

.form-label span {
    color: #dc2626;
}

.form-control,
.form-select {
    height: 46px;
    padding: 0 14px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--r12);
    outline: none;
    width: 100%;
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
}

.form-control::placeholder {
    color: var(--ink30);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--P);
    box-shadow: 0 0 0 3px rgba(46, 54, 253, .1);
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 36px;
}

/* Phone group */
.phone-group {
    display: flex;
    gap: 8px;
}

.phone-group .form-select {
    width: 130px;
    flex-shrink: 0;
}

.phone-group .form-control {
    flex: 1;
}

@media(max-width:400px) {
    .phone-group {
        flex-direction: column;
    }

    .phone-group .form-select {
        width: 100%;
    }
}


/* Input icon wrapper */
.input-icon-wrap {
    position: relative;
}

.input-icon-wrap .form-control {
    padding-left: 40px;
}

.input-icon-wrap .inp-ico {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: var(--ink30);
    pointer-events: none;
}

.input-icon-wrap .form-control:focus+.inp-ico,
.input-icon-wrap .form-control:focus~.inp-ico {
    color: var(--P);
}

/* Two columns */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media(max-width:420px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Step indicator */
.step-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.si-step {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink30);
}

.si-step.active {
    color: var(--P);
}

.si-step.done {
    color: #16a34a;
}

.si-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    background: var(--ink10);
    color: var(--ink30);
    flex-shrink: 0;
}

.si-step.active .si-num {
    background: var(--P);
    color: #fff;
}

.si-step.done .si-num {
    background: #16a34a;
    color: #fff;
}

.si-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.si-line.done {
    background: #16a34a;
}

/* Submit button */
.btn-submit {
    width: 100%;
    height: 52px;
    background: var(--P);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--r12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: all .25s;
    box-shadow: 0 1px 2px rgba(46, 54, 253, .2), 0 0 0 1px var(--P);
    margin-top: 8px;
}

.btn-submit:hover {
    background: var(--PH);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46, 54, 253, .35);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit .spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .7s linear infinite;
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .spinner {
    display: block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Trust badges below form */
.trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--ink30);
    font-weight: 500;
}

.trust-item i {
    color: var(--P);
    font-size: 13px;
}

/* Form notice */
.form-notice {
    background: var(--g50);
    border: 1px solid var(--border);
    border-radius: var(--r8);
    padding: 10px 12px;
    font-size: 12px;
    color: var(--ink60);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 14px;
}

.form-notice i {
    color: var(--S);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ════════════════════════
     OTP MODAL
  ════════════════════════ */
.otp-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(13, 17, 23, .6);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity .3s;
}

.otp-overlay.show {
    display: flex;
    animation: fadeIn .3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.otp-card {
    background: #fff;
    border-radius: var(--r24);
    padding: 40px 36px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .2);
    position: relative;
    animation: slideUp .35s cubic-bezier(.16, 1, .3, 1);
    text-align: center;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media(max-width:480px) {
    .otp-card {
        padding: 32px 24px;
    }
}

.otp-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--g50);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink30);
    font-size: 16px;
    transition: all .2s;
}

.otp-close:hover {
    background: var(--ink10);
    color: var(--ink);
}

/* OTP icon */
.otp-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--PL), rgba(46, 54, 253, .08));
    border: 2px solid rgba(46, 54, 253, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    position: relative;
}

.otp-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(46, 54, 253, .2);
    animation: rotateDash 12s linear infinite;
}

@keyframes rotateDash {
    to {
        transform: rotate(360deg);
    }
}

.otp-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -.3px;
}

.otp-sub {
    font-size: 14px;
    color: var(--ink60);
    line-height: 1.65;
    margin-bottom: 8px;
}

.otp-phone {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--P);
    display: block;
    margin-bottom: 28px;
}

/* OTP input boxes */
.otp-inputs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.otp-digit {
    width: 60px;
    height: 64px;
    border: 2px solid var(--border);
    border-radius: var(--r12);
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    color: var(--ink);
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    caret-color: var(--P);
}

.otp-digit:focus {
    border-color: var(--P);
    box-shadow: 0 0 0 3px rgba(46, 54, 253, .12);
}

.otp-digit.filled {
    border-color: var(--P);
    background: var(--PL);
}

.otp-digit.error {
    border-color: #dc2626;
    background: rgba(220, 38, 38, .05);
}

@media(max-width:400px) {
    .otp-digit {
        width: 52px;
        height: 58px;
        font-size: 24px;
    }
}

/* OTP error */
.otp-error {
    display: none;
    align-items: center;
    gap: 7px;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #dc2626;
    background: rgba(220, 38, 38, .07);
    border: 1px solid rgba(220, 38, 38, .15);
    border-radius: var(--r8);
    padding: 8px 14px;
    margin-bottom: 16px;
}

.otp-error.show {
    display: flex;
}

/* OTP timer */
.otp-timer {
    font-size: 13px;
    color: var(--ink30);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.otp-timer strong {
    color: var(--ink60);
}

.btn-resend {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--P);
    font-size: 13px;
    font-weight: 600;
    padding: 0;
    display: none;
    text-decoration: underline;
    transition: opacity .2s;
}

.btn-resend:hover {
    opacity: .75;
}

.btn-resend.visible {
    display: inline;
}

/* OTP verify button */
.btn-otp-verify {
    width: 100%;
    height: 50px;
    background: var(--P);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--r12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .25s;
    box-shadow: 0 0 0 1px var(--P);
}

.btn-otp-verify:hover {
    background: var(--PH);
    transform: translateY(-1px);
    box-shadow: var(--sh-b);
}

/* OTP progress dots */
.otp-progress {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 24px;
}

.otp-progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: all .3s;
}

.otp-progress-dot.active {
    background: var(--P);
    transform: scale(1.2);
}

.otp-progress-dot.filled {
    background: var(--P);
}

/* OTP success state */
.otp-success {
    display: none;
    text-align: center;
}

.otp-success.show {
    display: block;
}

.otp-main-content.hidden {
    display: none;
}

.success-check {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(22, 163, 74, .1), rgba(22, 163, 74, .05));
    border: 2px solid rgba(22, 163, 74, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    animation: checkPop .4s cubic-bezier(.16, 1, .3, 1);
}

@keyframes checkPop {
    from {
        transform: scale(.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ── TICKER ── */
.ticker-wrap {
    background: var(--P);
    padding: 10px 0;
    overflow: hidden;
}

.ticker-inner {
    display: flex;
    animation: tickScroll 20s linear infinite;
    white-space: nowrap;
}

.tick-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    padding: 0 24px;
    flex-shrink: 0;
}

.tick-dot {
    color: rgba(255, 255, 255, .35);
    font-size: 14px;
}

@keyframes tickScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive hide left on small */
@media(max-width:991px) {
    .left-panel {
        min-height: auto;
    }

    .feat-list {
        display: none;
    }

    .left-quote {
        display: none;
    }

    .stats-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .left-footer {
        display: none;
    }
}

@media(max-width:575px) {
    .stats-row {
        display: none;
    }

    .app-row {
        display: none;
    }
}

/* ════════════════════
   RIGHT PANEL — Thank you
════════════════════ */
.right-panel {
    background: var(--g50);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width:1199px) {
    .right-panel {
        padding: 40px 36px;
    }
}

@media(max-width:991px) {
    .right-panel {
        padding: 40px 24px;
    }
}

@media(max-width:575px) {
    .right-panel {
        padding: 32px 16px;
    }
}

.ty-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r24);
    padding: 40px 36px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

@media(max-width:575px) {
    .ty-card {
        padding: 32px 20px;
        border-radius: var(--r20);
    }
}

/* Success animation */
.ty-check-wrap {
    position: relative;
    width: 96px;
    height: 96px;
    margin: 0 auto 28px;
}

.ty-check-bg {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(22, 163, 74, .1), rgba(22, 163, 74, .05));
    border: 2px solid rgba(22, 163, 74, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    animation: checkPop .5s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes checkPop {
    0% {
        transform: scale(.3);
        opacity: 0;
    }

    60% {
        transform: scale(1.15);
    }

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

/* Orbiting ring */
.ty-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1.5px dashed rgba(22, 163, 74, .25);
    animation: tyRingSpin 16s linear infinite;
}

@keyframes tyRingSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Orbit dots */
.ty-ring::before,
.ty-ring::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.ty-ring::before {
    background: var(--S);
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.ty-ring::after {
    background: var(--P);
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
}

/* Confetti particles */
.confetti-wrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    pointer-events: none;
    overflow: visible;
}

.confetti-wrap span {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    animation: confettiFall 1.2s ease-out both;
    opacity: 0;
}

@keyframes confettiFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(100px) rotate(720deg);
        opacity: 0;
    }
}

.ty-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(22, 163, 74, .08);
    border: 1px solid rgba(22, 163, 74, .2);
    border-radius: var(--radius-md);
    padding: 4px 14px;
    font-size: 11px;
    font-weight: 700;
    color: #16a34a;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 14px;
}

.ty-label .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #16a34a;
    animation: kpulse 1.8s ease-in-out infinite;
}

.ty-title {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -.5px;
    margin-bottom: 10px;
}

.ty-sub {
    font-size: 14.5px;
    color: var(--ink60);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* Confirmation detail box */
.confirm-box {
    background: var(--g50);
    border: 1px solid var(--border);
    border-radius: var(--r16);
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
}

.cb-title {
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink30);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.cb-title i {
    color: var(--P);
}

.cb-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.cb-row:last-child {
    border-bottom: none;
}

.cb-ico {
    width: 32px;
    height: 32px;
    border-radius: var(--r8);
    background: var(--PL);
    color: var(--P);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}

.cb-label {
    font-size: 11.5px;
    color: var(--ink60);
    display: block;
    margin-bottom: 2px;
}

.cb-value {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
}

/* Timeline progress */
.timeline-strip {
    background: var(--g50);
    border: 1px solid var(--border);
    border-radius: var(--r16);
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
}

.ts-title {
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink30);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 16px;
}

.ts-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
}

.ts-item:last-child {
    padding-bottom: 0;
}

.ts-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.ts-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.ts-done {
    background: var(--P);
    color: #fff;
}

.ts-active {
    background: var(--S);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(241, 137, 17, .2);
}

.ts-pending {
    background: var(--g50);
    border: 1px solid var(--border);
    color: var(--ink30);
}

.ts-line {
    width: 2px;
    flex: 1;
    background: var(--border);
    margin: 3px 0;
    border-radius: 2px;
    min-height: 32px;
}

.ts-line.done {
    background: var(--P);
}

.ts-body {
    padding-top: 4px;
    padding-bottom: 18px;
}

.ts-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    display: block;
    margin-bottom: 2px;
}

.ts-meta {
    font-size: 11.5px;
    color: var(--ink60);
}

.ts-meta.orange {
    color: var(--S);
    font-weight: 600;
}

/* Action buttons */
.ty-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

/* Share social row */
.share-row {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.share-label {
    font-size: 12px;
    color: var(--ink30);
    font-weight: 500;
    margin-bottom: 12px;
}

.share-btns {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: var(--r8);
    font-size: 12.5px;
    font-weight: 600;
    border: 1.5px solid var(--border);
    color: var(--ink60);
    transition: all .2s;
    cursor: pointer;
    background: #fff;
}

.share-btn:hover {
    border-color: var(--P);
    color: var(--P);
    background: var(--PL);
}

.share-btn i {
    font-size: 15px;
}

/* Related services */
.services-strip {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: 4px;
}

.ss-label {
    font-size: 12px;
    color: var(--ink30);
    font-weight: 500;
    margin-bottom: 12px;
    text-align: left;
}

.ss-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.ss-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: var(--g50);
    border: 1px solid var(--border);
    border-radius: var(--r8);
    padding: 10px 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink60);
    text-align: center;
    line-height: 1.3;
    transition: all .2s;
    cursor: pointer;
}

.ss-item:hover {
    border-color: var(--P);
    color: var(--P);
    background: var(--PL);
}

.ss-item i {
    font-size: 18px;
    color: var(--);
}

/* Responsive */
@media(max-width:991px) {
    .left-panel {
        min-height: auto;
    }

    .next-steps {
        display: none;
    }

    .demo-covers {
        display: none;
    }

    .left-quote {
        display: none;
    }

    .left-footer {
        display: none;
    }
}

/* Animated background particles */
.bg-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: .08;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
    }
}

/* What happens next steps */
.next-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 36px;
}

.ns-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    position: relative;
}

.ns-item:last-child {
    border-bottom: none;
}

.ns-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
    margin-top: 2px;
    transition: all .3s;
}

.ns-item:hover .ns-num {
    background: var(--P);
    border-color: var(--P);
    color: var(--white);
}

.ns-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}

.ns-desc {
    font-size: 12.5px;
    color: rgba(0, 0, 0, 0.45);
    line-height: 1.55;
    display: inline-block;
}

.ns-time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--S);
    margin-top: 5px;
    display: block;
}


/* Demo covers */
.demo-covers {
    margin-bottom: 36px;
}

.dc-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.dc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.dc-item {
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--r8);
    padding: 10px 12px;
}

.demo-covers .dc-ico {
    font-size: 16px;
    flex-shrink: 0;
    margin: 0;
}

.dc-name {
    font-size: 12px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
}