 @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

 *,
 *::before,
 *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
 }

 :root {
    --bg: #f0f4ff;
    --bg2: #e8eeff;
    --white: #ffffff;
    --border: #dde3f5;
    --border-hov: #b8c4e8;
    --text-main: #1a2040;
    --text-muted: #6b7a9e;
    --light-bg: #f5f7ff;
    --primary: #4361ee;
    --primary-lgt: #eaedff;
    --primary-hov: #3451d1;
    --accent: #000000;
    --accent2: #4cc9f0;
    --green: #06d6a0;
    --accent-blue: #4361ee;
    --red: #ef4444;
    --shadow-sm: 0 2px 8px rgba(67, 97, 238, 0.07), 0 1px 3px rgba(67, 97, 238, 0.05);
    --shadow-md: 0 8px 24px rgba(67, 97, 238, 0.10), 0 2px 6px rgba(67, 97, 238, 0.06);
    --shadow-lg: 0 20px 48px rgba(67, 97, 238, 0.13);
    --radius: 20px;
    --radius-sm: 12px;
 }

 body {
    color: var(--text-main);
    line-height: 1.5;
    background: var(--bg);
 }

 .site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 2px 12px rgba(67, 97, 238, 0.06);
    /* position: relative; */
    overflow: hidden;
 }

 .site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent2), var(--accent));
 }

 .site-header-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 65%;
 }

 .back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    width: fit-content;
 }

 .back-link:hover {
    color: var(--primary);
 }

 .report-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
 }

 .report-sub {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
 }

 .header-contact {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: right;
 }

 .contact-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
 }

 .contact-numbers {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
 }

 .phone-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
 }

 .phone-number:hover {
    text-decoration: underline;
 }

 .checkout-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px 24px 80px;
    /* background: var(--bg); */
    /* background-image:
         radial-gradient(ellipse at 15% 20%, rgba(67,97,238,0.06) 0%, transparent 50%),
         radial-gradient(ellipse at 85% 70%, rgba(76,201,240,0.06) 0%, transparent 50%),
         radial-gradient(ellipse at 50% 50%, rgba(247,37,133,0.03) 0%, transparent 70%); */
 }

 .checkout-header-card {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
 }

 .checkout-header-card h1 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.03em;
 }

 .progress-steps {
    display: flex;
    align-items: center;
    gap: 0;
 }

 .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    position: relative;
    z-index: 2;
 }

 .step-connector {
    width: 64px;
    height: 2px;
    background: var(--border);
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 19px;
    transition: background 0.4s;
    border-radius: 2px;
 }

 .step.completed+.step-connector {
    background: var(--primary);
 }

 .step-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.35s ease;
 }

 .step.active .step-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(67, 97, 238, 0.30);
 }

 .step.completed .step-circle {
    background: var(--primary-lgt);
    border-color: var(--primary);
    color: var(--primary);
 }

 .step-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s;
 }

 .step.active .step-label {
    color: var(--primary);
    font-weight: 700;
 }

 .step.completed .step-label {
    color: var(--primary);
    font-weight: 600;
 }

 .checkout-content {
    width: 100%;
    max-width: 1200px;
 }

 .page-section {
    display: none;
    animation: fadeInUp 0.4s ease;
 }

 .page-section.active {
    display: block;
 }

 @keyframes fadeInUp {
    from {
       opacity: 0;
       transform: translateY(14px);
    }

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

 .checkout-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 24px;
    align-items: start;
 }

 .card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
 }

 .card:hover {
    box-shadow: var(--shadow-md);
 }

 .card-header-accent {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
 }

 .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-lgt);
    display: flex;
    align-items: center;
    justify-content: center;
 }

 .card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
 }

 .card h2 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.01em;
 }

 .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
 }

 .form-grid.full {
    grid-template-columns: 1fr;
 }

 .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
 }

 .form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.4px;
 }

 .form-group label .required {
    color: var(--accent);
 }

 .form-group input,
 .form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    /* background: var(--light-bg); */
    color: var(--text-main);
    transition: all 0.2s;
 }

 .form-group input::placeholder,
 .form-group textarea::placeholder {
    color: #aab4d0;
 }

 .form-group input:focus,
 .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--primary-lgt);
 }

 .form-group textarea {
    resize: vertical;
    min-height: 80px;
 }

 .order-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-lgt);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
 }

 .summary-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f4fd 100%);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
 }

 .summary-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--accent2));
    border-radius: 4px 0 0 4px;
 }

 .summary-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 6px;
 }

 .summary-content {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.5;
 }

 .license-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
 }

 .license-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
 }

 .license-option:hover {
    border-color: var(--primary);
 }

 .license-option:has(input:checked) {
    border-color: var(--primary);
    background: var(--primary-lgt);
    box-shadow: 0 0 0 1px var(--primary);
 }

 .license-option input[type="radio"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
    margin-right: 10px;
    cursor: pointer;
 }

 .license-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
 }

 .license-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
 }

 .promo-wrapper {
    margin-bottom: 20px;
 }

 .promo-label {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
    text-align: left;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.4px;
 }

 .promo-input-group {
    display: flex;
    gap: 10px;
 }

 .promo-input-group input {
    flex: 1;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    background: var(--light-bg);
 }

 .promo-input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-lgt);
    background: var(--white);
 }

 .promo-btn {
    padding: 12px 20px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
    letter-spacing: 0.3px;
 }

 .promo-btn:hover {
    background: var(--primary);
 }

 .summary-footer {
    margin-top: auto;
 }

 .totals {
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-bottom: 20px;
 }

 .total-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 500;
 }

 .total-row.final {
    font-size: 20px;
    font-weight: 700;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 2px dashed var(--border);
    color: var(--text-main);
    margin-bottom: 0;
 }

 .checkbox-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: flex-start;
 }

 .checkbox-wrapper input[type="checkbox"] {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: var(--primary);
    flex-shrink: 0;
    cursor: pointer;
 }

 .checkbox-wrapper label {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 500;
 }

 .checkbox-wrapper a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
 }

 .proceed-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.30);
    letter-spacing: 0.3px;
 }

 .proceed-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(67, 97, 238, 0.40);
 }

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

 .payment-header-section {
    background: linear-gradient(135deg, #1a2040 0%, #2d3561 100%);
    border-radius: var(--radius);
    padding: 32px 40px;
    text-align: left;
    margin-bottom: 28px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
 }

 .payment-header-section::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(76, 201, 240, 0.15), transparent 70%);
    border-radius: 50%;
 }

 .payment-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
 }

 .payment-subtitle {
    font-size: 1rem;
    color: #dce2eaff;
    margin-bottom: 18px;
    font-weight: 600;
 }

 .payment-user-info,
 .payment-license-info {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    margin-bottom: 6px;
 }

 .info-item {
    display: flex;
    align-items: center;
    gap: 6px;
 }

 .info-label {
    font-size: 13px;
    color: #c2ccdb;
    font-weight: 500;
 }

 .info-value {
    font-size: 13px;
    color: #f1f5f9;
    font-weight: 700;
 }

 .info-divider {
    color: #334155;
 }

 .payment-options-container {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
 }

 .payment-options-header {
    text-align: center;
    margin-bottom: 28px;
 }

 .payment-options-title {
    font-size: 19px;
    color: var(--text-main);
    font-weight: 700;
    margin: 0;
 }

 .payment-methods-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 820px;
    margin: 0 auto;
 }

 .payment-method-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
 }

 .payment-method-card:hover {
    border-color: var(--border-hov);
    background: var(--white);
    box-shadow: var(--shadow-md);
 }

 .payment-method-card.selected-method {
    border-color: var(--primary);
    background: var(--primary-lgt);
    box-shadow: 0 4px 20px rgba(67, 97, 238, 0.12);
 }

 .payment-method-card.selected-method::after {
    content: '✓';
    position: absolute;
    top: -11px;
    right: -11px;
    width: 26px;
    height: 26px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(67, 97, 238, 0.30);
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 }

 @keyframes popIn {
    0% {
       transform: scale(0);
       opacity: 0;
    }

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

 .payment-method-radio {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
 }

 .radio-container {
    display: block;
    position: relative;
    cursor: pointer;
    width: 22px;
    height: 22px;
    user-select: none;
 }

 .radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
 }

 .radio-custom {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background: #fff;
    border: 2px solid var(--border-hov);
    border-radius: 50%;
    transition: all 0.2s;
 }

 .radio-container input:checked~.radio-custom {
    border-color: var(--primary);
    background: var(--primary);
 }

 .radio-custom::after {
    content: '';
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
 }

 .radio-container input:checked~.radio-custom::after {
    display: block;
 }

 .payment-method-image {
    display: flex;
    align-items: center;
    justify-content: center;
 }

 .method-logo {
    height: 56px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s;
 }

 .payment-method-card:hover .method-logo {
    transform: scale(1.05);
 }

 .payment-method-form {
    width: 100%;
 }

 .payment-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.3px;
    margin-top: 0.5rem;
 }

 .wire-transfer-btn {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: #fff;
    margin-top: .5rem;
 }

 .wire-transfer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(15, 23, 42, .25);
 }

 .paypal-btn {
    background: linear-gradient(135deg, #0070ba, #003087);
    color: #fff;
 }

 .paypal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 112, 186, .30);
 }

 .confirmation-container {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
 }

 .confirmation-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 52px 44px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
 }

 .success-message {
    display: none !important;
 }

 .failure-message {
    display: none !important;
 }

 .success-message.visible {
    display: block !important;
 }

 .failure-message.visible {
    display: block !important;
 }

 .success-message .success-icon,
 .failure-message .failure-icon {
    font-size: 60px;
    margin-bottom: 20px;
 }

 .confirmation-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-main);
 }

 .success-text {
    color: #059669;
    font-size: 15px;
    margin-bottom: 28px;
    font-weight: 500;
 }

 .failure-text {
    color: var(--red);
    font-size: 15px;
    margin-bottom: 28px;
    font-weight: 500;
 }

 .order-details {
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    padding: 22px;
    margin: 0 0 28px;
    text-align: left;
    border: 1px solid var(--border);
 }

 .order-details h3 {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-muted);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
 }

 .detail-row {
    display: flex;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
 }

 .detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
 }

 .detail-row .label {
    font-weight: 500;
    color: var(--text-muted);
 }

 .detail-row .value {
    font-weight: 700;
    color: var(--text-main);
 }

 .success-actions,
 .failure-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
 }

 .btn-primary,
 .btn-secondary {
    padding: 13px 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    min-width: 150px;
 }

 .btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(67, 97, 238, 0.25);
 }

 .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.35);
 }

 .btn-secondary {
    background: var(--light-bg);
    color: var(--text-main);
    border: 1.5px solid var(--border);
 }

 .btn-secondary:hover {
    background: #e8eeff;
    border-color: var(--primary);
 }

 .wire-transfer-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
 }

 .wire-header {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    padding: 22px 28px;
    border-radius: var(--radius-sm);
    margin-bottom: 28px;
    color: #fff;
    text-align: center;
 }

 .wire-title {
    font-size: 19px;
    font-weight: 700;
    margin: 0;
    color: #fff;
 }

 .wire-order-summary h4,
 .wire-next-steps h4 {
    color: var(--text-muted);
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    margin-top: 1rem;
 }

 .summary-card {
    background: var(--light-bg);
    padding: 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    margin-bottom: 28px;
 }

 .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
 }

 .summary-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
 }

 .summary-row.total {
    margin-top: 8px;
    padding-top: 14px;
    font-weight: 700;
    font-size: 17px;
 }

 .summary-label {
    color: var(--text-muted);
    font-weight: 500;
 }

 .summary-value {
    color: var(--text-main);
    font-weight: 600;
 }

 .summary-value.price {
    color: var(--primary);
    font-weight: 700;
 }

 .contact-numbers svg {
    height: 20px;
    width: 20px;
 }

 .steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
 }

 .step-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px 18px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
 }

 .step-item:hover {
    transform: translateX(4px);
    border-color: var(--primary);
    background: var(--primary-lgt);
    box-shadow: var(--shadow-sm);
 }

 .step-number {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
 }

 .step-content {
    flex: 1;
 }

 .step-content h5 {
    color: var(--text-main);
    margin-bottom: 3px;
    font-weight: 700;
    font-size: 14px;
 }

 .step-content p {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0;
 }

 .wire-success-message {
    text-align: center;
    margin-bottom: 28px;
    padding: 28px;
    background: #ecfdf5;
    border-radius: var(--radius-sm);
    border: 1px solid #a7f3d0;
 }

 .success-icon-wrapper {
    font-size: 44px;
    color: var(--green);
    margin-bottom: 14px;
 }

 .wire-success-message h3 {
    color: #065f46;
    margin-bottom: 10px;
    font-size: 19px;
    font-weight: 700;
 }

 .wire-success-message p {
    color: #065f46;
    font-weight: 500;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
 }

 .wire-navigation {
    margin-top: 20px;
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 20px;
 }

 .nav-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
 }

 .btn-back,
 .btn-change-payment,
 .btn-confirm {
    padding: 11px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
 }

 .btn-back {
    background: var(--light-bg);
    color: var(--text-main);
    border: 1.5px solid var(--border);
 }

 .btn-back:hover {
    background: #e8eeff;
    border-color: var(--primary);
 }

 .btn-change-payment {
    background: #fef3c7;
    color: #92400e;
 }

 .btn-change-payment:hover {
    background: #fde68a;
 }

 .btn-confirm {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(67, 97, 238, 0.25);
 }

 .btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.35);
 }

 .note-text {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
    margin-top: 0;
 }

 .assistance-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    margin: 32px auto 0;
    padding: 0 32px;
    height: 140px;
    background: var(--white);
    border: 1px solid var(--border);
    border-bottom: 5px solid var(--primary);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
 }

 .footer-section {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
 }

 .footer-section:nth-child(2),
 .footer-section:nth-child(3) {
    padding-left: 20px;
 }

 .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
 }

 .text-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
 }

 .text-content h3 {
    color: var(--text-muted);
    font-size: 17px;
    font-weight: 400;
 }

 .text-content h4 {
    color: var(--accent);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
 }

 .text-content p {
    color: var(--text-main);
    font-size: 13px;
    font-weight: 500;
 }

 .text-content p.subtitle {
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
 }

 .page-section.show-immediately {
    display: block !important;
    visibility: visible !important;
    animation: none !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    position: relative !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    z-index: 10 !important;
 }

 @media (max-width: 980px) {
    .checkout-grid {
       grid-template-columns: 1fr;
    }
 }

 @media (max-width: 680px) {
    .checkout-header-card {
       flex-direction: column;
       align-items: flex-start;
    }

    .progress-steps {
       width: 100%;
       justify-content: space-between;
    }

    .step-connector {
       width: 30px;
    }

    .checkout-page {
       padding: 20px 16px 56px;
    }

    .card,
    .payment-header-section,
    .payment-options-container,
    .confirmation-content,
    .wire-transfer-container {
       padding: 24px 20px;
    }

    .form-grid {
       grid-template-columns: 1fr;
    }

    .promo-input-group {
       flex-direction: column;
    }

    .promo-btn {
       width: 100%;
    }

    .payment-title {
       font-size: 19px;
    }

    .payment-methods-grid {
       gap: 14px;
    }

    .payment-method-card {
       min-width: 100%;
       max-width: 100%;
    }

    .nav-buttons {
       flex-direction: column;
    }

    .btn-back,
    .btn-change-payment,
    .btn-confirm {
       width: 100%;
       justify-content: center;
    }

    .detail-row {
       flex-direction: column;
       gap: 3px;
    }

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

    .btn-primary,
    .btn-secondary {
       width: 100%;
       max-width: none;
    }

    .payment-user-info,
    .payment-license-info {
       flex-direction: column;
       gap: 7px;
       align-items: flex-start;
    }

    .info-divider {
       display: none;
    }

    .assistance-footer {
       flex-direction: column;
       height: auto;
       padding: 24px 20px;
       gap: 20px;
       margin-bottom: 1rem;
    }

    .footer-section:nth-child(2),
    .footer-section:nth-child(3) {
       padding-left: 0;
    }

    .site-header {
       padding: 16px 20px;
       flex-direction: column;
       align-items: flex-start;
    }

    .site-header-left {
       max-width: 100%;
    }

    .header-contact {
       text-align: left;
       width: 100%;
       align-items: flex-start;
    }

    .contact-numbers {
       justify-content: flex-start;
       flex-direction: column;
       gap: 7px;
    }
 }

 .report-title-link {
    text-decoration: none;
    color: var(--text-main);
    transition: color 0.2s ease, text-decoration 0.2s ease;
    cursor: pointer;
    display: inline-block;
 }

 .report-title-link:hover {
    color: var(--primary);
    text-decoration: underline;
 }

 .summary-content-link {
    text-decoration: none;
    color: var(--text-main);
    transition: color 0.2s ease, text-decoration 0.2s ease;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
 }

 .summary-content-link:hover {
    color: var(--primary);
    text-decoration: underline;
 }

 .wire-report-link {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.2s ease, text-decoration 0.2s ease;
    cursor: pointer;
    display: inline;
    font-weight: 500;
 }

 .wire-report-link:hover {
    color: var(--primary-hov);
    text-decoration: underline;
 }

 @media print {
    .close-btn,
    .success-actions,
    .failure-actions,
    .wire-navigation {
       display: none !important;
    }
 }