/* Litepaper Page Styles */

/* Header Override */
.litepaper-header {
    padding: 1.5rem 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

.litepaper-main {
    padding-top: 8rem;
    /* Space for fixed header */
    padding-bottom: 5rem;
    min-height: 100vh;
    background: var(--color-bg-primary);
    /* Standard homepage black */
    color: #ffffff;
}

/* Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Content wider than form */
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-column {
        order: -1;
        /* Form first on mobile */
    }
}

/* Typography */
.lp-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFE5B4 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-subtitle {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
}

/* Content Sections */
.lp-section {
    margin-bottom: 3rem;
}

.lp-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #bb9954;
    /* Gold accent */
}

.lp-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
}

/* Feature List with Icons */
.lp-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lp-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #bb9954;
    margin-top: 2px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-content strong {
    display: block;
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.feature-content p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Impact Grid Cards */
.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.impact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: #bb9954;
}

.card-icon {
    width: 32px;
    height: 32px;
    color: #bb9954;
    margin-bottom: 1rem;
}

.impact-card h4 {
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.impact-card p {
    font-size: 0.95rem;
    color: #aeaeae;
    line-height: 1.6;
}

/* Quote */
.lp-quote {
    border-left: 4px solid #bb9954;
    padding-left: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: #fff;
    margin: 4rem 0;
}

/* Form Styles */
.form-wrapper {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    color: #333;
    position: sticky;
    top: 2rem;
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a2a44;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: #444;
}

.lp-input,
.lp-select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.lp-input:focus,
.lp-select:focus {
    outline: none;
    border-color: #1a2a44;
}

.form-check {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-check input {
    margin-top: 0.2rem;
}

.form-check label {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.lp-btn {
    width: 100%;
    padding: 1rem;
    background: #1a2a44;
    /* Dark Blue */
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.lp-btn:hover {
    background: #2c4266;
}

.lp-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}

.form-footer a {
    color: #1a2a44;
    text-decoration: underline;
}