/* ===== CHECKOUT MODAL ===== */
.checkout-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.checkout-modal {
    background: #0A0A0F;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 32px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.9);
    max-height: 90vh;
    overflow-y: auto;
    color: #FFFFFF;
}

.checkout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.checkout-step-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E8EAED;
    transition: background 0.3s;
}

.step-dot.active {
    background: #4285F4;
}

.step-dot.done {
    background: #34A853;
}

.step-line {
    width: 24px;
    height: 2px;
    background: #E8EAED;
}

.checkout-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: #71717A;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.checkout-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.checkout-group-badge {
    display: inline-flex;
    padding: 4px 12px;
    background: rgba(66, 133, 244, 0.1);
    color: #4285F4;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.checkout-step h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.checkout-sub {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* FORM */
.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-label .required {
    font-weight: 400;
    color: var(--g-red);
    font-size: 0.75rem;
    margin-left: 4px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--gray-900);
    outline: none;
    transition: all 0.2s;
    background: var(--gray-50);
}

.form-input:focus {
    border-color: var(--g-blue);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.12);
}

.form-input.error {
    border-color: var(--g-red);
}

.phone-input {
    display: flex;
    align-items: center;
    border: 1.5px solid #3C4043;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
}

.phone-input:focus-within {
    border-color: #4285F4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.12);
}

.phone-flag {
    padding: 12px 14px;
    background: #161B22;
    border-right: 1.5px solid #3C4043;
    font-size: 0.9rem;
    font-weight: 600;
    color: #9AA0A6;
    white-space: nowrap;
}

.phone-input .form-input {
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.form-error {
    font-size: 0.8rem;
    color: #EA4335;
    margin-bottom: 16px;
    padding: 10px 14px;
    background: rgba(234, 67, 53, 0.06);
    border-radius: 8px;
}

/* SUMMARY */
.checkout-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.summary-row.total {
    font-weight: 700;
    font-size: 1rem;
    color: var(--gray-900);
}

.summary-confirm {
    font-size: 0.85rem;
    color: var(--g-blue);
    font-weight: 500;
}

.badge-blue-text {
    color: var(--g-blue);
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 8px 0;
}

/* PAYMENT METHODS */
.checkout-payment-methods {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid #3C4043;
    border-radius: 8px;
    font-size: 0.78rem;
    color: #E8EAED;
}

/* SUCCESS */
.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #34A853, #0F9D58);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(52, 168, 83, 0.3);
}

.success-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.success-step {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #E8EAED;
}

.ss-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(52, 168, 83, 0.1);
    color: #34A853;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.checkout-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #9AA0A6;
    margin-top: 12px;
    text-align: center;
}

.btn-ghost-small {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    background: none;
    border: none;
    color: #5F6368;
    font-size: 0.85rem;
    cursor: pointer;
    margin-top: 8px;
    font-family: inherit;
}

.btn-ghost-small:hover {
    color: #202124;
}

.save-badge {
    display: inline-block;
    background: rgba(52, 168, 83, 0.1);
    color: #34A853;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== FLOW SECTION ===== */
.flow-section {
    background: #000000;
    padding: 96px 0;
    overflow: hidden;
    position: relative;
}

.flow-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.flow-container {
    display: flex;
    align-items: center;
    gap: 64px;
}

.flow-text {
    flex: 1;
    color: var(--gray-900);
}

.flow-text .overline {
    color: var(--g-blue);
}

.flow-text h2 {
    color: var(--gray-900);
    margin-bottom: 16px;
}

.flow-text p {
    color: var(--gray-600);
    margin-bottom: 28px;
    line-height: 1.7;
}

.flow-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.flow-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.flow-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.flow-3d-img {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(66, 133, 244, 0.25);
}

.flow-badge {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(66, 133, 244, 0.95);
    color: white;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(66, 133, 244, 0.4);
}

/* ===== NAVBAR UPDATES ===== */
.navbar-logo {
    height: 22px;
    vertical-align: middle;
}

.navbar-dot {
    color: #4285F4;
    font-weight: 700;
    font-size: 1.1rem;
}

.navbar-account-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid #DADCE0;
    border-radius: 999px;
    font-size: 0.875rem;
    color: #5F6368;
    transition: all 0.2s;
}

.navbar-account-link:hover {
    border-color: #4285F4;
    color: #4285F4;
}

.navbar-account-link::after {
    display: none !important;
}

/* ===== TRUST PILLS ===== */
.hero-trust {
    display: flex;
    gap: 10px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(52, 168, 83, 0.08);
    border: 1px solid rgba(52, 168, 83, 0.2);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #34A853;
}

/* ===== HERO CARD UPDATES ===== */
.hero-card-stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC05, #34A853);
}

.g-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #4285F4, #7B68EE);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.g-icon span {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
}

.plan-photo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
}

.slot-dot {
    width: 28px;
    height: 8px;
    border-radius: 4px;
}

.slot-dot.filled {
    background: #4285F4;
}

.slot-dot.empty {
    background: rgba(255, 255, 255, 0.15);
}

.hero-slots {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #E8EAED;
}

.slots-visual {
    display: flex;
    gap: 4px;
}

/* ===== STEPS UPDATES ===== */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
}

.step-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #4285F4, #FBBC05);
    margin-top: 32px;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.blue-step {
    background: linear-gradient(135deg, #4285F4, #3367D6);
}

.yellow-step {
    background: linear-gradient(135deg, #FBBC05, #E6A800);
}

.green-step {
    background: linear-gradient(135deg, #34A853, #2D9249);
}

/* ===== BENEFITS UPDATES ===== */
.benefit-card.highlight {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(66, 133, 244, 0.3);
}

.benefit-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon-wrap.blue {
    background: rgba(66, 133, 244, 0.1);
}

.benefit-icon-wrap.red {
    background: rgba(234, 67, 53, 0.1);
}

.benefit-icon-wrap.green {
    background: rgba(52, 168, 83, 0.1);
}

.benefit-icon-wrap.yellow {
    background: rgba(251, 188, 5, 0.1);
}

/* ===== CHECK ICON ===== */
.check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(52, 168, 83, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== BTN GHOST ===== */
.btn-ghost {
    background: transparent;
    color: #5F6368;
    border: 1.5px solid #DADCE0;
}

.btn-ghost:hover {
    border-color: #202124;
    color: #202124;
}

/* ===== LOGO TEXT ===== */
.logo-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: inline-flex;
}

.logo-text-footer {
    font-size: 1.1rem;
}

/* ===== RESPONSIVE CHECKOUT ===== */
@media (max-width: 600px) {
    .checkout-modal {
        padding: 24px 20px;
        border-radius: 20px 20px 0 0;
    }

    .checkout-overlay {
        align-items: flex-end;
        padding: 0;
    }
}

/* ===== FLOW RESPONSIVE ===== */
@media (max-width: 900px) {
    .flow-container {
        flex-direction: column;
    }

    .flow-3d-img {
        max-width: 100%;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .step-connector {
        display: none;
    }
}