:root {
    --re-bg: #f4efe7;
    --re-surface: rgba(255, 255, 255, 0.8);
    --re-ink: #142033;
    --re-muted: #5b6472;
    --re-gold: #d4af37;
    --re-gold-deep: #b78e17;
    --re-green: #2c7a63;
    --re-line: rgba(20, 32, 51, 0.12);
    --re-shadow: 0 18px 60px rgba(20, 32, 51, 0.12);
}

body.re-offer-page {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--re-ink);
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.14), transparent 24%),
        linear-gradient(180deg, #fbf8f2 0%, var(--re-bg) 100%);
}

.re-shell {
    position: relative;
    overflow: hidden;
}

.re-shell::before,
.re-shell::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(60px);
    pointer-events: none;
}

.re-shell::before {
    width: 380px;
    height: 380px;
    top: 120px;
    right: -140px;
    background: rgba(212, 175, 55, 0.16);
}

.re-shell::after {
    width: 320px;
    height: 320px;
    top: 520px;
    left: -120px;
    background: rgba(44, 122, 99, 0.12);
}

.re-container {
    width: min(1180px, calc(100vw - 2rem));
    margin: 0 auto;
}

.re-hero {
    padding: 9rem 0 4rem;
}

.re-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 2rem;
    align-items: start;
}

.re-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(20, 32, 51, 0.06);
    color: var(--re-green);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.re-display {
    margin: 0 0 1rem;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.7rem, 6vw, 5.4rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.re-lead {
    max-width: 58ch;
    margin: 0 0 1.5rem;
    color: var(--re-muted);
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.8;
}

.re-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.re-proof-card,
.re-stat-card,
.re-detail-card,
.re-faq-item,
.re-form-card,
.re-process-card {
    border: 1px solid var(--re-line);
    background: var(--re-surface);
    backdrop-filter: blur(14px);
    box-shadow: var(--re-shadow);
}

.re-proof-card {
    padding: 1rem;
    border-radius: 22px;
}

.re-proof-card strong,
.re-proof-card span {
    display: block;
}

.re-proof-card strong {
    font-size: 1rem;
}

.re-proof-card span {
    margin-top: 0.2rem;
    color: var(--re-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.re-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.re-btn,
.re-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    border: none;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.re-btn {
    background: linear-gradient(135deg, var(--re-gold), var(--re-gold-deep));
    color: #111827;
    box-shadow: 0 18px 36px rgba(183, 142, 23, 0.24);
}

.re-btn-secondary {
    background: #172335;
    color: #fff;
}

.re-btn:hover,
.re-btn-secondary:hover {
    transform: translateY(-2px);
}

.re-form-card {
    border-radius: 30px;
    padding: 1.35rem;
}

.re-form-card h2 {
    margin: 0 0 0.4rem;
    font-size: 1.55rem;
    line-height: 1.15;
}

.re-form-card p {
    margin: 0 0 1rem;
    color: var(--re-muted);
    line-height: 1.6;
}

.re-form {
    display: grid;
    gap: 0.85rem;
}

.re-field,
.re-field textarea,
.re-field select {
    width: 100%;
    box-sizing: border-box;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(20, 32, 51, 0.12);
    background: rgba(255, 255, 255, 0.92);
    color: var(--re-ink);
    font: inherit;
}

.re-field:focus,
.re-field textarea:focus,
.re-field select:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.9);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
}

.re-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.re-form-note {
    color: var(--re-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.re-status {
    display: none;
    margin-top: 0.8rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
}

.re-status.is-visible {
    display: block;
}

.re-status.is-success {
    background: rgba(44, 122, 99, 0.12);
    color: #0f5132;
}

.re-status.is-error {
    background: rgba(185, 28, 28, 0.1);
    color: #991b1b;
}

.re-section {
    padding: 1.5rem 0 4rem;
}

.re-section-head {
    max-width: 720px;
    margin-bottom: 1.5rem;
}

.re-section-head h2 {
    margin: 0 0 0.5rem;
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.re-section-head p {
    margin: 0;
    color: var(--re-muted);
    line-height: 1.75;
}

.re-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.re-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.re-detail-card,
.re-process-card,
.re-stat-card {
    padding: 1.35rem;
    border-radius: 24px;
}

.re-detail-card h3,
.re-process-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    line-height: 1.2;
}

.re-detail-card p,
.re-process-card p,
.re-stat-card p {
    margin: 0;
    color: var(--re-muted);
    line-height: 1.7;
}

.re-stat-card strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--re-green);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.re-process-card .re-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 0.8rem;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.14);
    color: var(--re-gold-deep);
    font-size: 0.95rem;
    font-weight: 800;
}

.re-faq {
    display: grid;
    gap: 0.85rem;
}

.re-faq-item {
    border-radius: 20px;
    overflow: hidden;
}

.re-faq-trigger {
    width: 100%;
    padding: 1rem 1.1rem;
    border: none;
    background: transparent;
    color: var(--re-ink);
    text-align: left;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.re-faq-panel {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.1rem;
    color: var(--re-muted);
    line-height: 1.7;
    transition: max-height 0.4s cubic-bezier(.2,.8,.2,1), padding 0.4s cubic-bezier(.2,.8,.2,1);
}

.re-faq-item.is-open .re-faq-panel {
    max-height: 500px;
    padding: 0 1.1rem 1rem;
}

.re-footer {
    padding: 2rem 0 3.5rem;
    color: var(--re-muted);
    font-size: 0.92rem;
}

@media (max-width: 960px) {
    .re-hero-grid,
    .re-proof,
    .re-grid-3,
    .re-grid-2 {
        grid-template-columns: 1fr;
    }

    .re-form-grid {
        grid-template-columns: 1fr;
    }
}
