:root {
    --bg-color: #030014;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --accent-color: #7000ff;
    --accent-gradient: linear-gradient(135deg, #7000ff 0%, #00c6ff 100%);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --nav-glass: rgba(3, 0, 20, 0.7);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.highlight {
    color: #00c6ff;
}

/* Beta Badges */
.beta-badge {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: #00c6ff;
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid rgba(0, 198, 255, 0.3);
    vertical-align: middle;
    margin-left: 8px;
    font-weight: 500;
}

.badge-text {
    font-size: 0.9rem;
    color: #a0a0b0;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 15px;
    display: inline-block;
    border: 1px solid var(--glass-border);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: radial-gradient(circle at center, #1a0b36 0%, #030014 70%);
    padding-top: 120px;
    padding-bottom: 50px;
}

.hero-bg-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Box */
.search-box {
    display: flex;
    padding: 0.8rem;
    gap: 0.8rem;
    background: rgba(13, 11, 28, 0.6);
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
}

.input-group {
    flex: 1;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0 1.2rem;
    min-width: 200px;
    transition: var(--transition);
}

.input-group:focus-within {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.input-group i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 1.1rem;
}

.input-group input,
.input-group select {
    width: 100%;
    background: transparent;
    border: none;
    color: white;
    padding: 1.2rem 0;
    outline: none;
    font-size: 1.1rem;
}

.input-group select option {
    background: #111029;
}

.btn-search {
    background: var(--accent-gradient);
    border: none;
    color: white;
    padding: 0 2.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(112, 0, 255, 0.3);
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(112, 0, 255, 0.5);
}

/* --- MODAL STYLES --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #111029;
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: white;
}

.loader-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.platform-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.platform-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: all 0.3s;
}

.platform-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    border-color: var(--accent-color);
}

.platform-card h3 {
    color: white;
    font-size: 1.1rem;
}

.platform-card p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 0;
}

.platform-card i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.badge {
    position: absolute;
    top: -8px;
    left: 10px;
    background: #e63946;
    color: white;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.results-hidden {
    display: none;
    opacity: 0;
    transition: opacity 0.5s;
}

.results-visible {
    display: block;
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.full-width {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/* Footer */
footer {
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    background: transparent;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-col {
    text-align: left;
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .search-box {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }

    .input-group {
        background: rgba(13, 11, 28, 0.9);
        border: 1px solid var(--glass-border);
        width: 100%;
    }

    .btn-search {
        width: 100%;
        padding: 1.2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-col {
        text-align: center;
    }
}

/* AI Widget Styles */
.ai-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9000;
}

.ai-button {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(112, 0, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 9002;
}

.ai-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(112, 0, 255, 0.6);
}

.ai-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: #111;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.ai-button:hover .ai-tooltip {
    opacity: 1;
    visibility: visible;
}

.ai-chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: #0b0a1e;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform-origin: bottom right;
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9001;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-chat-window.active {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.ai-header {
    background: var(--accent-gradient);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ai-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.ai-header h3 {
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
}

.ai-header span {
    font-size: 0.75rem;
    opacity: 0.9;
}

.ai-whatsapp {
    margin-left: auto;
    background: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #25D366;
    font-size: 1.2rem;
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.ai-whatsapp:hover {
    transform: scale(1.1);
    background: #25D366;
    color: white;
}

.ai-close {
    margin-left: 0;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.1rem;
}

.ai-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
    max-width: 85%;
    animation: fadeInUp 0.3s ease;
}

.bot-message {
    background: rgba(255, 255, 255, 0.1);
    align-self: flex-start;
    border-top-left-radius: 2px;
}

.user-message {
    background: var(--accent-color);
    align-self: flex-end;
    border-top-right-radius: 2px;
}

.ai-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
}

.ai-opt-btn {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.ai-opt-btn:hover {
    background: var(--accent-color);
}

@media (max-width: 480px) {
    .ai-chat-window {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        margin: 0;
        z-index: 10000;
        display: flex;
        flex-direction: column;
    }
}

.ai-input-area {
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#aiInput {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 8px 15px;
    color: white;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
}

#aiInput:focus {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color);
}

#aiSendBtn {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

/* Request Section */
.request-section {
    padding: 2rem 0 4rem 0;
    margin-top: 2rem;
}

.request-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--glass-border);
    max-width: 800px;
    margin: 0 auto;
}

.request-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.request-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 2rem;
    text-align: left;
}

.form-group {
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.form-group:focus-within {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.2);
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

/* Adjust icon for textarea */
.form-group:has(textarea) i {
    top: 20px;
}

/* Fallback if :has not supported on old browser but whatever */
.form-group textarea+i {
    top: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    padding: 15px 15px 15px 45px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    outline: none;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: #111;
    color: white;
}

.form-group textarea {
    height: 100px;
    resize: none;
    padding-top: 15px;
}

.form-group.full {
    grid-column: span 2;
}

.btn-glow {
    background: #25D366;
    /* WhatsApp Green */
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    background: #20b85a;
}

.secure-note {
    font-size: 0.8rem !important;
    margin-top: 1rem;
    opacity: 0.6;
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }
}

/* Legal Links & Modal */
.legal-links {
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.legal-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.sep {
    margin: 0 5px;
    color: var(--glass-border);
}

.legal-content {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.legal-text-body {
    text-align: left;
    overflow-y: auto;
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.legal-text-body h3 {
    color: white;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-text-body ul {
    margin-left: 20px;
    margin-bottom: 1rem;
}

/* Professional Layout Helpers */
.section-padding {
    padding: 5rem 1rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: white;
    font-weight: 300;
    letter-spacing: 1px;
}

.section-title span {
    color: var(--accent-color);
    font-weight: 600;
}

/* Calculator Styles Refined */
.calculator-section {
    position: relative;
    z-index: 10;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.calc-card {
    width: 100%;
    max-width: 600px;
    padding: 2.5rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.calc-header h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.calc-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.calc-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calc-input-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.calc-input-group label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.calc-input-group input,
.calc-input-group select {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    padding: 10px;
    border-radius: 8px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
}

.btn-calc {
    background: var(--accent-gradient);
    border: none;
    padding: 12px;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    transition: transform 0.2s;
}

.btn-calc:hover {
    transform: scale(1.02);
}

.calc-result-area {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    display: none;
    /* Hidden by default */
}

.calc-result-area.visible {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Side-by-Side Tools Layout */
.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 968px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.result-row span {
    color: var(--text-secondary);
}

.result-row strong {
    font-size: 1.4rem;
    color: #4cd964;
    /* Green for money */
}

/* FAQ Styles */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-color);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* How It Works Styles */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    color: white;
    position: relative;
    box-shadow: 0 10px 20px rgba(52, 120, 255, 0.3);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: white;
    color: var(--accent-color);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #1a1a1a;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Valuation Section */
.val-card {
    padding: 2rem;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.val-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .val-grid {
        grid-template-columns: 1fr;
    }
}

.result-row.small {
    font-size: 0.85rem;
    margin-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 5px;
}