    /* ----------------------------- */
/* GIFTROCKET FORECASTER STYLES  */
/* ----------------------------- */

#gr-forecaster-wrap {
    max-width: 780px;
    margin: 40px auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1e1b2e;
    padding: 0 20px;
}

/* Header */
.grt-header {
    text-align: center;
    margin-bottom: 30px;
}

.grt-badge {
    background: #f3f0ff;
    color: #6d28d9;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: inline-block;
    margin-bottom: 12px;
}

.grt-header h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 8px 0;
}

.grt-highlight {
    background: linear-gradient(120deg, #f59e0b 0%, #f59e0b 40%, #fcd34d 90%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 70%;
    padding: 0 6px;
}

.grt-header p {
    color: #6b7280;
    font-size: 16px;
    max-width: 480px;
    margin: 0 auto;
}

/* Calculator Card */
.grt-calculator-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.02);
    padding: 35px 30px;
    border: 1px solid #f1f3f5;
    transition: box-shadow 0.3s ease;
}

/* Input Group */
.grt-input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 28px;
}

.grt-field {
    display: flex;
    flex-direction: column;
}

.grt-field:last-child {
    grid-column: span 2;
}

.grt-field label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.grt-field.has-error .grt-input-wrapper,
.grt-field.has-error > input[type="number"] {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.grt-tooltip {
    background: #e5e7eb;
    color: #4b5563;
    font-size: 10px;
    font-weight: 700;
    padding: 0 6px;
    border-radius: 4px;
}

.grt-input-wrapper {
    display: flex;
    align-items: center;
    background: #f9fafb;
    border-radius: 12px;
    border: 1.5px solid #e5e7eb;
    transition: border 0.2s ease;
}

.grt-input-wrapper:focus-within {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
    background: #ffffff;
}

.grt-currency {
    padding: 0 12px;
    font-weight: 600;
    color: #9ca3af;
    font-size: 15px;
}

.grt-input-wrapper input {
    width: 100%;
    padding: 14px 12px 14px 0;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    color: #1f2937;
}

.grt-input-wrapper input::placeholder {
    color: #b0b8c4;
    font-weight: 400;
}

/* Remove number arrows */
.grt-input-wrapper input[type=number]::-webkit-inner-spin-button,
.grt-input-wrapper input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.grt-input-wrapper input[type=number] {
    -moz-appearance: textfield;
}

/* CTA Button */
.grt-cta-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px rgba(109, 40, 217, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.grt-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(109, 40, 217, 0.4);
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.grt-cta-button:active {
    transform: scale(0.98);
}

/* Result Area */
.grt-result-area {
    margin-top: 32px;
    animation: fadeSlideUp 0.5s ease forwards;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.grt-divider {
    text-align: center;
    margin-bottom: 22px;
    position: relative;
}

.grt-divider span {
    background: #f9fafb;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.grt-divider::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1.5px;
    background: #e5e7eb;
    z-index: 0;
}

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

.grt-result-item {
    background: #f9fafb;
    padding: 18px 16px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid #f1f3f5;
}

.grt-highlight-item {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1.5px solid #f59e0b;
}

.grt-result-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 6px;
}

.grt-result-number {
    font-size: 28px;
    font-weight: 800;
    color: #1f2937;
    letter-spacing: -0.5px;
}

.grt-highlight-item .grt-result-number {
    color: #b45309;
    font-size: 32px;
}

/* Upsell Box */
.grt-upsell-box {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border-radius: 16px;
    padding: 20px 22px;
    border: 1px solid #ddd6fe;
    margin-bottom: 20px;
}

.grt-upsell-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.grt-upsell-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.grt-upsell-content h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #4c1d95;
}

.grt-upsell-content p {
    margin: 2px 0 0 0;
    font-size: 14px;
    color: #5b21b6;
}

.grt-upsell-button {
    margin-left: auto;
    background: #4c1d95;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.grt-upsell-button:hover {
    background: #2e1065;
    color: #fff;
}

/* Trust Footer */
.grt-trust-footer {
    display: flex;
    justify-content: center;
    gap: 28px;
    font-size: 13px;
    color: #6b7280;
    padding-top: 12px;
    border-top: 1px solid #f1f3f5;
    flex-wrap: wrap;
}

.grt-trust-footer strong {
    color: #1f2937;
}

/* ----------------------------- */
/* LEAD MODAL STYLES             */
/* ----------------------------- */
.grt-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.grt-modal-box {
    background: #ffffff;
    max-width: 460px;
    width: 100%;
    padding: 40px 34px;
    border-radius: 28px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: center;
    animation: slideUp 0.4s ease;
}

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

.grt-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.2s;
}

.grt-modal-close:hover {
    color: #374151;
}

.grt-modal-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.grt-modal-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #1f2937;
}

.grt-modal-box p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

#grl_lead_form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#grl_lead_form input {
    padding: 14px 18px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    transition: border 0.2s;
    width: 100%;
    box-sizing: border-box;
}

#grl_lead_form input:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.12);
}

.grt-modal-submit {
    padding: 14px;
    background: #1f2937;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s;
}

.grt-modal-submit:hover {
    background: #111827;
}

.grt-modal-note {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 16px;
}

/* Responsive */
@media (prefers-reduced-motion: reduce) {
    .grt-result-area,
    .grt-cta-button,
    .grt-modal-overlay,
    .grt-modal-box {
        animation: none;
        transition: none;
    }
}

@media (max-width: 600px) {
    .grt-input-group {
        grid-template-columns: 1fr;
    }
    .grt-field:last-child {
        grid-column: span 1;
    }
    .grt-result-grid {
        grid-template-columns: 1fr;
    }
    .grt-upsell-content {
        flex-direction: column;
        text-align: center;
    }
    .grt-upsell-button {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    .grt-header h2 {
        font-size: 22px;
    }
    .grt-calculator-card {
        padding: 22px 16px;
    }
    .grt-trust-footer {
        gap: 14px;
        font-size: 12px;
    }
}
