/* ── Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.from-left {
    transform: translateX(-30px);
}

.reveal.from-right {
    transform: translateX(30px);
}

.reveal.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ══════════════════════════════
       01  CONVERSION HERO
    ══════════════════════════════ */

/* Amount preset buttons */
.amount-btn {
    border: 1.5px solid rgba(196, 154, 60, 0.25);
    color: rgba(247, 243, 237, 0.7);
    transition: all 0.25s ease;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

.amount-btn:hover,
.amount-btn.active {
    border-color: #C49A3C;
    background: rgba(196, 154, 60, 0.12);
    color: #C49A3C;
}

.amount-btn.active {
    background: rgba(196, 154, 60, 0.18);
}

/* Frequency toggle */
.freq-toggle {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(196, 154, 60, 0.2);
}

.freq-btn {
    transition: background 0.25s ease, color 0.25s ease;
    color: rgba(247, 243, 237, 0.5);
}

.freq-btn.active {
    background: #C49A3C;
    color: white;
}

/* Custom amount input */
.custom-amount {
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(196, 154, 60, 0.3);
    color: #F7F3ED;
    transition: border-color 0.3s;
}

.custom-amount:focus {
    outline: none;
    border-color: #C49A3C;
}

.custom-amount::placeholder {
    color: rgba(247, 243, 237, 0.25);
}

/* ══════════════════════════════
       03  IMPACT CALCULATOR
    ══════════════════════════════ */
.calc-wrap {
    background: #F7F3ED;
}

/* Custom range slider */
input[type="range"].impact-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, #C49A3C var(--slider-pct, 10%), rgba(28, 58, 42, 0.15) var(--slider-pct, 10%));
    outline: none;
    cursor: pointer;
}

input[type="range"].impact-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #C49A3C;
    border: 3px solid #F7F3ED;
    box-shadow: 0 2px 10px rgba(196, 154, 60, 0.4);
    cursor: pointer;
    transition: transform 0.2s ease;
}

input[type="range"].impact-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

input[type="range"].impact-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #C49A3C;
    border: 3px solid #F7F3ED;
    cursor: pointer;
}

/* Outcome transition */
.outcome-item {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.outcome-item.fade-out {
    opacity: 0;
    transform: translateY(8px);
}

/* Amount display */
.calc-amount {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1;
}

/* ══════════════════════════════
       04  WAYS TO GIVE
    ══════════════════════════════ */
.ways-rule {
    border: none;
    height: 2px;
    background: #2C2C2C;
}

.ways-col {
    border-right: 1px solid rgba(28, 58, 42, 0.1);
}

.ways-col:last-child {
    border-right: none;
}

/* ══════════════════════════════
       05  BEYOND MONEY GRID
    ══════════════════════════════ */
.beyond-cell {
    transition: transform 0.3s ease;
}

.beyond-cell:hover {
    transform: scale(1.01);
}

/* ══════════════════════════════
       06  MENTOR FORM
    ══════════════════════════════ */
.mentor-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(196, 154, 60, 0.2);
    color: #F7F3ED;
    border-radius: 12px;
    padding: 12px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    width: 100%;
    transition: border-color 0.25s ease;
    outline: none;
}

.mentor-input:focus {
    border-color: #C49A3C;
}

.mentor-input::placeholder {
    color: rgba(247, 243, 237, 0.28);
}

/* ══════════════════════════════
       07  PARTNERSHIP PACK
    ══════════════════════════════ */
.pack-card {
    background: linear-gradient(110deg, #1C3A2A 0%, #0E2019 100%);
    position: relative;
    overflow: hidden;
}

.pack-card::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 154, 60, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Landscape doc icon */
.doc-landscape {
    width: 80px;
    height: 60px;
    background: rgba(196, 154, 60, 0.1);
    border: 1.5px solid rgba(196, 154, 60, 0.25);
    border-radius: 10px;
    position: relative;
    flex-shrink: 0;
}

.doc-landscape::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 10px;
    right: 10px;
    height: 1.5px;
    background: rgba(196, 154, 60, 0.25);
    box-shadow: 0 5px 0 rgba(196, 154, 60, 0.15), 0 10px 0 rgba(196, 154, 60, 0.1);
}

/* ══════════════════════════════
       08  TRUST SIGNALS
    ══════════════════════════════ */
.trust-badge {
    border: 1px solid rgba(28, 58, 42, 0.15);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.trust-badge:hover {
    border-color: #C49A3C;
    box-shadow: 0 4px 16px rgba(196, 154, 60, 0.08);
}

/* ══════════════════════════════
       09  GIVING FAQ
    ══════════════════════════════ */
.gfaq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.gfaq-body.open {
    max-height: 300px;
}

.gfaq-chevron {
    transition: transform 0.3s ease;
}

.gfaq-item.open .gfaq-chevron {
    transform: rotate(180deg);
}

/* ══════════════════════════════
       10  EMOTIONAL CLOSE
    ══════════════════════════════ */
.close-bg {
    background: linear-gradient(to bottom, #0E2019 0%, #1C3A2A 100%);
}

.close-overlay {
    background: linear-gradient(to top, rgba(14, 32, 25, 0.97) 0%, rgba(14, 32, 25, 0.6) 50%, rgba(14, 32, 25, 0.97) 100%);
}

/* HR */
.hr-sand {
    border: none;
    height: 1px;
    background: rgba(28, 58, 42, 0.1);
}

.hr-gold {
    border: none;
    height: 1px;
    background: linear-gradient(to right, #C49A3C, transparent);
}

.hr-dark {
    border: none;
    height: 1px;
    background: rgba(247, 243, 237, 0.06);
}