/* ══════════════════════════════════════════════════════════
 *  THANK YOU PAGE
 *  Prefix: ty-
 * ══════════════════════════════════════════════════════════ */

/* ── Hero ── */
.ty-hero {
    position: relative;
    padding: 6rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--tsw-ink, #1a2332) 0%, #1e3a2a 100%);
    color: #fff;
}
.ty-hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.ty-hero .tsw-shape--1 {
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(94,142,62,.15), transparent 70%);
    top: -100px; right: -100px;
    border-radius: 50%;
}
.ty-hero .tsw-shape--2 {
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(94,142,62,.1), transparent 70%);
    bottom: -80px; left: -80px;
    border-radius: 50%;
}
.ty-hero .tsw-shape--3 {
    position: absolute;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,.03), transparent 70%);
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.ty-icon {
    margin-bottom: 1.5rem;
}
.ty-icon i {
    font-size: 5rem;
    color: var(--tsw-green, #5e8e3e);
    animation: tyPulse 2s ease-in-out infinite;
}
@keyframes tyPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.85; }
}

.ty-title {
    font-family: var(--tsw-font-display, 'Qilka', serif);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #fff;
}
.ty-title .tsw-highlight {
    color: var(--tsw-green, #5e8e3e);
}
.ty-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,.75);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Steps ── */
.ty-steps {
    padding: 4rem 0;
    background: var(--tsw-cloud, #f6f8f4);
}
.ty-steps-title {
    font-family: var(--tsw-font-display, 'Qilka', serif);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--tsw-ink, #1a2332);
}
.ty-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.ty-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    border: 1px solid rgba(0,0,0,.06);
}
.ty-step-num {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--tsw-green, #5e8e3e);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ty-step-content h4 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    color: var(--tsw-ink, #1a2332);
}
.ty-step-content p {
    margin: 0;
    color: var(--tsw-graphite, #4a5568);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ── Contact ── */
.ty-contact {
    padding: 4rem 0;
}
.ty-contact-title {
    font-family: var(--tsw-font-display, 'Qilka', serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tsw-ink, #1a2332);
    margin-bottom: 0.5rem;
}
.ty-contact-desc {
    color: var(--tsw-graphite, #4a5568);
    margin-bottom: 0;
}

/* Buttons now use global .tsw-btn-primary / .tsw-btn-outline from theme.css */

/* ── Responsive ── */
@media (max-width: 767.98px) {
    .ty-hero { padding: 4rem 0 3rem; }
    .ty-step { flex-direction: column; text-align: center; align-items: center; }
    .ty-steps, .ty-contact { padding: 3rem 0; }
}
